generator.views.datagroups

Generate datagroup lkml files for each namespace.

  1"""Generate datagroup lkml files for each namespace."""
  2
  3import logging
  4from dataclasses import dataclass
  5from pathlib import Path
  6from typing import Any, Dict, Optional
  7
  8import lkml
  9
 10from generator.dryrun import DryRunError, Errors
 11from generator.namespaces import DEFAULT_GENERATED_SQL_URI
 12from generator.utils import get_file_from_looker_hub
 13from generator.views import TableView, View, lookml_utils
 14from generator.views.lookml_utils import BQViewReferenceMap
 15
 16DEFAULT_MAX_CACHE_AGE = "24 hours"
 17
 18SQL_TRIGGER_TEMPLATE = """
 19    SELECT MAX(storage_last_modified_time)
 20    FROM `{project_id}`.`region-us`.INFORMATION_SCHEMA.TABLE_STORAGE
 21    WHERE table_schema = '{dataset_id}'
 22    AND table_name = '{table_id}'
 23"""
 24
 25# To map views to their underlying tables:
 26DATASET_VIEW_MAP = lookml_utils.get_bigquery_view_reference_map(
 27    DEFAULT_GENERATED_SQL_URI
 28)
 29
 30FILE_HEADER = """# *Do not manually modify this file*
 31
 32# This file has been generated via https://github.com/mozilla/lookml-generator
 33
 34# Using a datagroup in an Explore: https://cloud.google.com/looker/docs/reference/param-explore-persist-with
 35# Using a datagroup in a derived table: https://cloud.google.com/looker/docs/reference/param-view-datagroup-trigger
 36
 37"""
 38
 39
 40@dataclass(frozen=True, eq=True)
 41class Datagroup:
 42    """Represents a Datagroup."""
 43
 44    name: str
 45    label: str
 46    sql_trigger: str
 47    description: str
 48    max_cache_age: str = DEFAULT_MAX_CACHE_AGE
 49
 50    def __str__(self) -> str:
 51        """Return the LookML string representation of a Datagroup."""
 52        return lkml.dump({"datagroups": [self.__dict__]})  # type: ignore
 53
 54    def __lt__(self, other) -> bool:
 55        """Make datagroups sortable."""
 56        return self.name < other.name
 57
 58
 59def _get_datagroup_from_bigquery_table(
 60    project_id, dataset_id, table_id, table_metadata: Dict[str, Any]
 61) -> Datagroup:
 62    """Use template and default values to create a Datagroup from a BQ Table."""
 63    full_table_id = f"{project_id}.{dataset_id}.{table_id}"
 64    return Datagroup(
 65        name=f"{table_id}_last_updated",
 66        label=f"{table_metadata.get('friendlyName', table_id) or table_id} Last Updated",
 67        description=f"Updates when {full_table_id} is modified.",
 68        sql_trigger=SQL_TRIGGER_TEMPLATE.format(
 69            project_id=project_id,
 70            dataset_id=dataset_id,
 71            table_id=table_id,
 72        ),
 73        # Note: Ideally we'd use the table's ETL schedule as the `maximum_cache_age` but we don't have schedule
 74        # metadata here.
 75    )
 76
 77
 78def _get_datagroup_from_bigquery_view(
 79    project_id,
 80    dataset_id,
 81    table_id,
 82    table_metadata: Dict[str, Any],
 83    dataset_view_map: BQViewReferenceMap,
 84    dryrun,
 85) -> Optional[Datagroup]:
 86    # Dataset view map only contains references for shared-prod views.
 87    full_table_id = f"{project_id}.{dataset_id}.{table_id}"
 88    if project_id not in ("moz-fx-data-shared-prod", "mozdata"):
 89        logging.debug(
 90            f"Unable to get sources for non shared-prod/mozdata view: {full_table_id} in generated-sql."
 91        )
 92        return None
 93
 94    dataset_view_references = dataset_view_map.get(dataset_id)
 95    if dataset_view_references is None:
 96        logging.debug(f"Unable to find dataset {dataset_id} in generated-sql.")
 97        return None
 98
 99    view_references = dataset_view_references.get(table_id)
100    if not view_references or len(view_references) > 1:
101        # For views with multiple sources it's unclear which table to check for updates.
102        logging.debug(
103            f"Unable to find a single source for {full_table_id} in generated-sql."
104        )
105        return None
106
107    source_table_id = ".".join(view_references[0])
108    try:
109        table_metadata = dryrun.create(
110            project=view_references[0][0],
111            dataset=view_references[0][1],
112            table=view_references[0][2],
113        ).get_table_metadata()
114        if "TABLE" == table_metadata.get("tableType"):
115            return _get_datagroup_from_bigquery_table(
116                view_references[0][0],
117                view_references[0][1],
118                view_references[0][2],
119                table_metadata,
120            )
121        elif "VIEW" == table_metadata.get("tableType"):
122            return _get_datagroup_from_bigquery_view(
123                view_references[0][0],
124                view_references[0][1],
125                view_references[0][2],
126                table_metadata,
127                dataset_view_map,
128                dryrun=dryrun,
129            )
130    except DryRunError as e:
131        raise ValueError(
132            f"Unable to find {source_table_id} referenced in {full_table_id}"
133        ) from e
134
135    return None
136
137
138def _generate_view_datagroup(
139    view: View,
140    dataset_view_map: BQViewReferenceMap,
141    dryrun,
142) -> Optional[Datagroup]:
143    """Generate the Datagroup LookML for a Looker View."""
144    # Only generate datagroup for views that can be linked to a BigQuery table:
145    if view.view_type != TableView.type:
146        return None
147
148    # Use the release channel table or the first available table (usually the only one):
149    view_table = next(
150        (table for table in view.tables if table.get("channel") == "release"),
151        view.tables[0],
152    )["table"]
153
154    [project, dataset, table] = view_table.split(".")
155    table_metadata = dryrun.create(
156        project=project,
157        dataset=dataset,
158        table=table,
159    ).get_table_metadata()
160
161    if "TABLE" == table_metadata.get("tableType"):
162        datagroup: Optional[Datagroup] = _get_datagroup_from_bigquery_table(
163            project, dataset, table, table_metadata
164        )
165        return datagroup
166    elif "VIEW" == table_metadata.get("tableType"):
167        datagroup = _get_datagroup_from_bigquery_view(
168            project,
169            dataset,
170            table,
171            table_metadata,
172            dataset_view_map,
173            dryrun,
174        )
175        return datagroup
176
177    return None
178
179
180def generate_datagroup(
181    view: View,
182    target_dir: Path,
183    namespace: str,
184    dryrun,
185) -> Optional[Path]:
186    """Generate and write a datagroups.lkml file to the namespace folder."""
187    datagroups_folder_path = target_dir / namespace / "datagroups"
188
189    datagroup = None
190    try:
191        datagroup = _generate_view_datagroup(view, DATASET_VIEW_MAP, dryrun)
192    except DryRunError as e:
193        if e.error == Errors.PERMISSION_DENIED and e.use_cloud_function:
194            path = datagroups_folder_path / f"{e.table_id}_last_updated.datagroup.lkml"
195            print(
196                f"Permission error dry running: {path}. Copy existing file from looker-hub."
197            )
198            try:
199                get_file_from_looker_hub(path)
200            except Exception as ex:
201                print(f"Skip generating datagroup for {path}: {ex}")
202        else:
203            raise
204
205    if datagroup:
206        datagroups_folder_path.mkdir(exist_ok=True)
207        datagroup_lkml_path = (
208            datagroups_folder_path / f"{datagroup.name}.datagroup.lkml"
209        )
210        datagroup_lkml_path.write_text(FILE_HEADER + str(datagroup))
211        return datagroup_lkml_path
212
213    return None
DEFAULT_MAX_CACHE_AGE = '24 hours'
SQL_TRIGGER_TEMPLATE = "\n SELECT MAX(storage_last_modified_time)\n FROM `{project_id}`.`region-us`.INFORMATION_SCHEMA.TABLE_STORAGE\n WHERE table_schema = '{dataset_id}'\n AND table_name = '{table_id}'\n"
DATASET_VIEW_MAP = defaultdict(<class 'dict'>, {'accounts_backend': {'accounts': [['moz-fx-data-shared-prod', 'accounts_backend_external', 'accounts_v1']], 'accounts_events': [['moz-fx-data-shared-prod', 'accounts_backend_stable', 'accounts_events_v1']], 'events': [['moz-fx-data-shared-prod', 'accounts_backend_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'accounts_backend_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'accounts_backend', 'events']], 'nonprod_accounts': [['moz-fx-data-shared-prod', 'accounts_backend_external', 'nonprod_accounts_v1']], 'users_services_daily': [['moz-fx-data-shared-prod', 'accounts_backend_derived', 'users_services_daily_v1']], 'users_services_last_seen': [['moz-fx-data-shared-prod', 'accounts_backend_derived', 'users_services_last_seen_v1']]}, 'accounts_cirrus': {'baseline': [['moz-fx-data-shared-prod', 'accounts_cirrus_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'accounts_cirrus_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'accounts_cirrus_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'accounts_cirrus_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'accounts_cirrus_stable', 'deletion_request_v1']], 'enrollment': [['moz-fx-data-shared-prod', 'accounts_cirrus_stable', 'enrollment_v1']], 'enrollment_status': [['moz-fx-data-shared-prod', 'accounts_cirrus_stable', 'enrollment_status_v1']], 'events': [['moz-fx-data-shared-prod', 'accounts_cirrus_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'accounts_cirrus_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'accounts_cirrus', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'accounts_cirrus_stable', 'metrics_v1']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'accounts_cirrus_derived', 'metrics_clients_daily_v1']], 'startup': [['moz-fx-data-shared-prod', 'accounts_cirrus_stable', 'startup_v1']]}, 'accounts_db': {'accounts_aggregates': [['moz-fx-data-shared-prod', 'accounts_db_derived', 'accounts_aggregates_v1']], 'fxa_accounts': [['moz-fx-data-shared-prod', 'accounts_db_external', 'fxa_accounts_v1']], 'fxa_oauth_clients': [['moz-fx-data-shared-prod', 'accounts_db_external', 'fxa_oauth_clients_v1']]}, 'accounts_frontend': {'accounts_events': [['moz-fx-data-shared-prod', 'accounts_frontend_stable', 'accounts_events_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'accounts_frontend_stable', 'deletion_request_v1']], 'email_first_reg_login_funnels_by_service': [['moz-fx-data-shared-prod', 'accounts_db', 'fxa_oauth_clients'], ['moz-fx-data-shared-prod', 'accounts_frontend_derived', 'email_first_reg_login_funnels_by_service_v1']], 'events': [['moz-fx-data-shared-prod', 'accounts_frontend_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'accounts_frontend_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'accounts_frontend', 'events']], 'login_funnels_by_service': [['moz-fx-data-shared-prod', 'accounts_db', 'fxa_oauth_clients'], ['moz-fx-data-shared-prod', 'accounts_frontend_derived', 'login_funnels_by_service_v1']], 'registration_funnels_by_service': [['moz-fx-data-shared-prod', 'accounts_db', 'fxa_oauth_clients'], ['moz-fx-data-shared-prod', 'accounts_frontend_derived', 'registration_funnels_by_service_v1']]}, 'acoustic': {'contact': [['moz-fx-data-shared-prod', 'acoustic_derived', 'contact_v1']], 'contact_current_snapshot': [['moz-fx-data-shared-prod', 'acoustic_derived', 'contact_current_snapshot_v1']], 'raw_recipient': [['moz-fx-data-shared-prod', 'acoustic_derived', 'raw_recipient_v1']]}, 'activity_stream': {'events': [['moz-fx-data-shared-prod', 'activity_stream_stable', 'events_v1']], 'impression_stats': [['moz-fx-data-shared-prod', 'activity_stream_stable', 'impression_stats_v1']], 'impression_stats_by_experiment': [['moz-fx-data-shared-prod', 'activity_stream_bi', 'impression_stats_by_experiment_v1'], ['moz-fx-data-shared-prod', 'pocket', 'spoc_tile_ids']], 'impression_stats_flat': [['moz-fx-data-shared-prod', 'activity_stream_bi', 'impression_stats_flat_v1'], ['moz-fx-data-shared-prod', 'pocket', 'spoc_tile_ids']], 'impression_stats_live': [['moz-fx-data-shared-prod', 'activity_stream_live', 'impression_stats_v1']], 'on_save_recs': [['moz-fx-data-shared-prod', 'activity_stream_stable', 'on_save_recs_v1']], 'pocket_button': [['moz-fx-data-shared-prod', 'activity_stream_stable', 'pocket_button_v1']], 'sessions': [['moz-fx-data-shared-prod', 'activity_stream_stable', 'sessions_v1']], 'spoc_fills': [['moz-fx-data-shared-prod', 'activity_stream_stable', 'spoc_fills_v1']], 'tile_id_types': [['pocket-tiles', 'pocket_tiles_data', 'tile_id_types']]}, 'adjust': {'adjust_cohort': [['moz-fx-data-shared-prod', 'adjust_derived', 'adjust_cohort_v1']], 'adjust_kpi_deliverables': [['moz-fx-data-shared-prod', 'adjust_derived', 'adjust_deliverables_v1']]}, 'ads': {'fakespot_daily_events_rollup': [['moz-fx-data-shared-prod', 'fakespot_syndicate', 'daily_events_rollup']], 'nt_visits_to_sessions_conversion_factors_daily': [['moz-fx-data-shared-prod', 'ads_derived', 'nt_visits_to_sessions_conversion_factors_daily_v1']], 'ppa_measurements': [['moz-fx-ads-prod', 'ppa', 'measurements']], 'ppa_measurements_limited': [['moz-fx-ads-prod', 'ppa', 'measurements']]}, 'ads_backend': {'events': [['moz-fx-data-shared-prod', 'ads_backend_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'ads_backend_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'ads_backend', 'events']]}, 'amo_dev': {'amo_stats_dau': [['moz-fx-data-shared-prod', 'amo_dev', 'amo_stats_dau_v2']], 'amo_stats_installs': [['moz-fx-data-shared-prod', 'amo_dev', 'amo_stats_installs_v3']]}, 'amo_prod': {'amo_stats_dau': [['moz-fx-data-shared-prod', 'amo_prod', 'amo_stats_dau_v2']], 'amo_stats_installs': [['moz-fx-data-shared-prod', 'amo_prod', 'amo_stats_installs_v3']]}, 'app_store': {'firefox_app_store_territory_source_type_report': [['moz-fx-data-shared-prod', 'app_store_syndicate', 'app_store_territory_source_type_report']], 'firefox_app_store_territory_web_referrer_report': [['moz-fx-data-shared-prod', 'app_store_syndicate', 'app_store_territory_web_referrer_report']], 'firefox_downloads_territory_source_type_report': [['moz-fx-data-shared-prod', 'app_store_syndicate', 'downloads_territory_source_type_report']], 'firefox_downloads_territory_web_referrer_report': [['moz-fx-data-shared-prod', 'app_store_syndicate', 'downloads_territory_web_referrer_report']], 'firefox_usage_territory_source_type_report': [['moz-fx-data-shared-prod', 'app_store_syndicate', 'usage_territory_source_type_report']], 'firefox_usage_territory_web_referrer_report': [['moz-fx-data-shared-prod', 'app_store_syndicate', 'usage_territory_web_referrer_report']]}, 'apple_ads': {'ad_group_report': [['moz-fx-data-shared-prod', 'apple_ads_external', 'ad_group_report_v1']], 'campaign_report': [['moz-fx-data-shared-prod', 'apple_ads_external', 'campaign_report_v1']], 'ios_app_campaign_stats': [['moz-fx-data-shared-prod', 'apple_ads_external', 'ios_app_campaign_stats_v1']], 'keyword_report': [['moz-fx-data-shared-prod', 'apple_ads_external', 'keyword_report_v1']], 'organization_report': [['moz-fx-data-shared-prod', 'apple_ads_external', 'organization_report_v1']], 'search_term_report': [['moz-fx-data-shared-prod', 'apple_ads_external', 'search_term_report_v1']]}, 'bedrock': {'deletion_request': [['moz-fx-data-shared-prod', 'bedrock_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'bedrock_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'bedrock_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'bedrock', 'events']], 'interaction': [['moz-fx-data-shared-prod', 'bedrock_stable', 'interaction_v1']], 'non_interaction': [['moz-fx-data-shared-prod', 'bedrock_stable', 'non_interaction_v1']], 'page_view': [['moz-fx-data-shared-prod', 'bedrock_stable', 'page_view_v1']]}, 'bergamot': {'custom': [['moz-fx-data-shared-prod', 'org_mozilla_bergamot', 'custom']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_bergamot', 'deletion_request']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_bergamot', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_bergamot', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_bergamot', 'events']]}, 'burnham': {'baseline': [['moz-fx-data-shared-prod', 'burnham_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'burnham_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'burnham_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'burnham_derived', 'baseline_clients_last_seen_v1']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'burnham_derived', 'clients_last_seen_joined_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'burnham_stable', 'deletion_request_v1']], 'discovery': [['moz-fx-data-shared-prod', 'burnham_stable', 'discovery_v1']], 'events': [['moz-fx-data-shared-prod', 'burnham_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'burnham_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'burnham', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'burnham_stable', 'metrics_v1']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'burnham_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'burnham_derived', 'metrics_clients_last_seen_v1']], 'space_ship_ready': [['moz-fx-data-shared-prod', 'burnham_stable', 'space_ship_ready_v1']], 'starbase46': [['moz-fx-data-shared-prod', 'burnham_stable', 'starbase46_v1']]}, 'cloudflare': {'browser_usage': [['moz-fx-data-shared-prod', 'cloudflare_derived', 'browser_usage_v1'], ['moz-fx-data-shared-prod', 'static', 'country_codes_v1']], 'device_usage': [['moz-fx-data-shared-prod', 'cloudflare_derived', 'device_usage_v1'], ['moz-fx-data-shared-prod', 'static', 'country_codes_v1']], 'os_usage': [['moz-fx-data-shared-prod', 'cloudflare_derived', 'os_usage_v1'], ['moz-fx-data-shared-prod', 'static', 'country_codes_v1']]}, 'contextual_services': {'adm_forecasting': [['moz-fx-data-shared-prod', 'contextual_services_derived', 'adm_forecasting_v1']], 'event_aggregates': [['moz-fx-data-shared-prod', 'contextual_services_derived', 'event_aggregates_v1']], 'event_aggregates_spons_tiles': [['moz-fx-data-shared-prod', 'contextual_services_derived', 'event_aggregates_spons_tiles_v1']], 'event_aggregates_suggest': [['moz-fx-data-shared-prod', 'contextual_services_derived', 'event_aggregates_suggest_v1']], 'quicksuggest_block': [['moz-fx-data-shared-prod', 'contextual_services_stable', 'quicksuggest_block_v1']], 'quicksuggest_click': [['moz-fx-data-shared-prod', 'contextual_services_stable', 'quicksuggest_click_v1']], 'quicksuggest_click_live': [['moz-fx-data-shared-prod', 'contextual_services_live', 'quicksuggest_click_v1']], 'quicksuggest_impression': [['moz-fx-data-shared-prod', 'contextual_services_stable', 'quicksuggest_impression_v1']], 'quicksuggest_impression_live': [['moz-fx-data-shared-prod', 'contextual_services_live', 'quicksuggest_impression_v1']], 'request_payload_suggest': [['moz-fx-data-shared-prod', 'contextual_services_derived', 'request_payload_suggest_v2']], 'request_payload_tiles': [['moz-fx-data-shared-prod', 'contextual_services_derived', 'request_payload_tiles_v2']], 'suggest_revenue_levers_daily': [['moz-fx-data-shared-prod', 'contextual_services_derived', 'suggest_revenue_levers_daily_v1']], 'topsites_click': [['moz-fx-data-shared-prod', 'contextual_services_stable', 'topsites_click_v1']], 'topsites_click_live': [['moz-fx-data-shared-prod', 'contextual_services_live', 'topsites_click_v1']], 'topsites_impression': [['moz-fx-data-shared-prod', 'contextual_services_stable', 'topsites_impression_v1']], 'topsites_impression_live': [['moz-fx-data-shared-prod', 'contextual_services_live', 'topsites_impression_v1']]}, 'coverage': {'coverage': [['moz-fx-data-shared-prod', 'coverage_stable', 'coverage_v1']]}, 'debug_ping_view': {'deletion_request': [['moz-fx-data-shared-prod', 'debug_ping_view_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'debug_ping_view_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'debug_ping_view_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'debug_ping_view', 'events']]}, 'default_browser_agent': {'default_browser': [['moz-fx-data-shared-prod', 'default_browser_agent_stable', 'default_browser_v1']]}, 'eng_workflow': {'bmobugs': [['moz-fx-data-shared-prod', 'eng_workflow_stable', 'bmobugs_v1']], 'build': [['moz-fx-data-shared-prod', 'eng_workflow_stable', 'build_v1']], 'hgpush': [['moz-fx-data-shared-prod', 'eng_workflow_stable', 'hgpush_v1']]}, 'fenix': {'activation': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'activation'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'activation'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'activation'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'activation'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'activation']], 'active_users': [['moz-fx-data-shared-prod', 'fenix', 'baseline_clients_last_seen']], 'active_users_aggregates': [['moz-fx-data-shared-prod', 'fenix_derived', 'active_users_aggregates_v3']], 'addresses_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'addresses_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'addresses_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'addresses_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'addresses_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'addresses_sync']], 'attributable_clients': [['moz-fx-data-shared-prod', 'fenix_derived', 'attributable_clients_v1']], 'attributable_clients_v2': [['moz-fx-data-shared-prod', 'fenix', 'firefox_android_clients'], ['moz-fx-data-shared-prod', 'fenix', 'new_profile_activation'], ['moz-fx-data-shared-prod', 'fenix_derived', 'attributable_clients_v2']], 'attribution_clients': [['moz-fx-data-shared-prod', 'fenix_derived', 'attribution_clients_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'baseline_clients_last_seen']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'bookmarks_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'bookmarks_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'bookmarks_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'bookmarks_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'bookmarks_sync']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'bounce_tracking_protection'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'bounce_tracking_protection'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'bounce_tracking_protection'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'bounce_tracking_protection'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'bounce_tracking_protection']], 'broken_site_report': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'broken_site_report'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'broken_site_report'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'broken_site_report'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'broken_site_report'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'broken_site_report']], 'client_adclicks_history': [['moz-fx-data-shared-prod', 'fenix_derived', 'client_adclicks_history_v1']], 'client_ltv': [['moz-fx-data-shared-prod', 'fenix', 'ltv_state_values'], ['moz-fx-data-shared-prod', 'fenix_derived', 'client_ltv_v1']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'fenix_derived', 'clients_last_seen_joined_v1']], 'clients_yearly': [['moz-fx-data-shared-prod', 'fenix_derived', 'clients_yearly_v1']], 'cookie_banner_report_site': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'cookie_banner_report_site'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'cookie_banner_report_site'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'cookie_banner_report_site'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'cookie_banner_report_site'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'cookie_banner_report_site']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'crash'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'crash'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'crash'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'crash'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'crash']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'creditcards_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'creditcards_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'creditcards_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'creditcards_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'creditcards_sync']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'deletion_request']], 'engagement': [['moz-fx-data-shared-prod', 'fenix_derived', 'engagement_v1']], 'engagement_clients': [['moz-fx-data-shared-prod', 'fenix', 'active_users'], ['moz-fx-data-shared-prod', 'fenix_derived', 'firefox_android_clients_v1']], 'event_types': [['moz-fx-data-shared-prod', 'fenix_derived', 'event_types_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'events']], 'events_daily': [['moz-fx-data-shared-prod', 'fenix_derived', 'events_daily_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'events_stream'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'events_stream'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'events_stream'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'events_stream'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'events']], 'feature_usage_events': [['moz-fx-data-shared-prod', 'fenix_derived', 'feature_usage_events_v1']], 'feature_usage_metrics': [['moz-fx-data-shared-prod', 'fenix_derived', 'feature_usage_metrics_v1']], 'fenix_use_counters': [['mozilla-public-data', 'fenix_derived', 'fenix_use_counters_v2']], 'firefox_android_clients': [['moz-fx-data-shared-prod', 'fenix_derived', 'firefox_android_clients_v1']], 'first_session': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'first_session'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'first_session'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'first_session'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'first_session'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'first_session']], 'fog_validation': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'fog_validation'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'fog_validation'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'fog_validation'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'fog_validation'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'fog_validation']], 'font_list': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'font_list'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'font_list'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'font_list'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'font_list'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'font_list']], 'funnel_retention_clients': [['moz-fx-data-shared-prod', 'fenix_derived', 'funnel_retention_clients_week_2_v1'], ['moz-fx-data-shared-prod', 'fenix_derived', 'funnel_retention_clients_week_4_v1']], 'funnel_retention_week_4': [['moz-fx-data-shared-prod', 'fenix_derived', 'funnel_retention_week_4_v1']], 'fx_suggest': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'fx_suggest'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'fx_suggest'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'fx_suggest'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'fx_suggest'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'fx_suggest']], 'history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'history_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'history_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'history_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'history_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'history_sync']], 'installation': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'installation'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'installation'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'installation'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'installation'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'installation']], 'logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'logins_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'logins_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'logins_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'logins_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'logins_sync']], 'ltv_state_values': [['moz-fx-data-shared-prod', 'fenix_derived', 'ltv_state_values_v2']], 'ltv_states': [['moz-fx-data-shared-prod', 'fenix_derived', 'ltv_states_v1']], 'marketing_attributable_metrics': [['moz-fx-data-shared-prod', 'fenix', 'attributable_clients']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'metrics'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'metrics'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'metrics'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'metrics'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'fenix_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'fenix_derived', 'metrics_clients_last_seen_v1']], 'migrated_clients': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'migrated_clients_v1']], 'migration': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'migration'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'migration'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'migration'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'migration'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'migration']], 'new_profile_activation': [['moz-fx-data-shared-prod', 'fenix_derived', 'new_profile_activation_v1']], 'new_profile_clients': [['moz-fx-data-shared-prod', 'fenix', 'active_users'], ['moz-fx-data-shared-prod', 'fenix', 'attribution_clients']], 'new_profiles': [['moz-fx-data-shared-prod', 'fenix_derived', 'new_profiles_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'pageload'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'pageload'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'pageload'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'pageload'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'pageload']], 'retention': [['moz-fx-data-shared-prod', 'fenix_derived', 'retention_v1']], 'retention_clients': [['moz-fx-data-shared-prod', 'fenix', 'active_users'], ['moz-fx-data-shared-prod', 'fenix', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'fenix_derived', 'firefox_android_clients_v1']], 'spoc': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'spoc'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'spoc'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'spoc'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'spoc'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'spoc']], 'startup_timeline': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'startup_timeline'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'startup_timeline'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'startup_timeline'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'startup_timeline'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'startup_timeline']], 'sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'sync']], 'tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'tabs_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'tabs_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'tabs_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'tabs_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'tabs_sync']], 'topsites_impression': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'topsites_impression'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'topsites_impression'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'topsites_impression'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'topsites_impression'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'topsites_impression']], 'use_counters': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'use_counters'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'use_counters'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'use_counters'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'use_counters'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'use_counters']], 'user_characteristics': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'user_characteristics'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'user_characteristics'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'user_characteristics'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'user_characteristics'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'user_characteristics']]}, 'firefox_accounts': {'activity_flow_metrics': [['moz-fx-data-shared-prod', 'firefox_accounts_stable', 'activity_flow_metrics_v1']], 'amplitude_event': [['moz-fx-data-shared-prod', 'firefox_accounts_stable', 'amplitude_event_v1']], 'docker_fxa_admin_server_sanitized': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'docker_fxa_admin_server_sanitized_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'docker_fxa_admin_server_sanitized_v2']], 'docker_fxa_customs_sanitized': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'docker_fxa_customs_sanitized_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'docker_fxa_customs_sanitized_v2']], 'event_types': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'event_types_v1']], 'events_daily': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'events_daily_v1']], 'funnel_events_source': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'funnel_events_source_v1']], 'fxa_all_events': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_auth_bounce_events_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_auth_events_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_content_events_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_gcp_stderr_events_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_gcp_stdout_events_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_oauth_events_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_stdout_events_v1']], 'fxa_content_auth_events': [['moz-fx-data-shared-prod', 'firefox_accounts', 'fxa_all_events']], 'fxa_content_auth_oauth_events': [['moz-fx-data-shared-prod', 'firefox_accounts', 'fxa_all_events']], 'fxa_content_auth_stdout_events': [['moz-fx-data-shared-prod', 'firefox_accounts', 'fxa_all_events']], 'fxa_delete_events': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_delete_events_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_delete_events_v2']], 'fxa_log_auth_events': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_log_auth_events_v1']], 'fxa_log_content_events': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_log_content_events_v1']], 'fxa_log_device_command_events': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_log_device_command_events_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_log_device_command_events_v2']], 'fxa_log_performance_events': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_log_content_events_v1']], 'fxa_users_daily': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_users_daily_v1']], 'fxa_users_first_seen': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_users_first_seen_v1']], 'fxa_users_last_seen': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_users_last_seen_v1']], 'fxa_users_services_daily': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_users_services_daily_v1'], ['moz-fx-data-shared-prod', 'static', 'country_names_v1']], 'fxa_users_services_devices_daily': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_users_services_devices_daily_v1'], ['moz-fx-data-shared-prod', 'static', 'country_names_v1']], 'fxa_users_services_devices_first_seen': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_users_services_devices_first_seen_v1']], 'fxa_users_services_devices_last_seen': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_users_services_devices_last_seen_v1'], ['moz-fx-data-shared-prod', 'static', 'country_names_v1']], 'fxa_users_services_first_seen': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_users_services_first_seen_v2']], 'fxa_users_services_last_seen': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'fxa_users_services_last_seen_v1']], 'nonprod_fxa_all_events': [['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'nonprod_fxa_auth_events_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'nonprod_fxa_content_events_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'nonprod_fxa_gcp_stderr_events_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'nonprod_fxa_gcp_stdout_events_v1'], ['moz-fx-data-shared-prod', 'firefox_accounts_derived', 'nonprod_fxa_stdout_events_v1']], 'nonprod_fxa_content_auth_stdout_events': [['moz-fx-data-shared-prod', 'firefox_accounts', 'nonprod_fxa_all_events']]}, 'firefox_crashreporter': {'baseline': [['moz-fx-data-shared-prod', 'firefox_crashreporter_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'firefox_crashreporter_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'firefox_crashreporter_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_crashreporter_derived', 'baseline_clients_last_seen_v1']], 'crash': [['moz-fx-data-shared-prod', 'firefox_crashreporter_stable', 'crash_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'firefox_crashreporter_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'firefox_crashreporter_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'firefox_crashreporter_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'firefox_crashreporter', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'firefox_crashreporter_stable', 'metrics_v1']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'firefox_crashreporter_derived', 'metrics_clients_daily_v1']]}, 'firefox_desktop': {'active_users_aggregates': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'active_users_aggregates_v3']], 'adclick_history': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'adclick_history_v1']], 'baseline': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'baseline_clients_last_seen_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'broken_site_report_v1']], 'client_ltv': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'client_ltv_v1']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'clients_last_seen_joined_v1']], 'crash': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'crash_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'deletion_request_v1']], 'desktop_installs': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'desktop_installs_v1']], 'events': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'firefox_desktop', 'events']], 'firefox_desktop_use_counters': [['mozilla-public-data', 'firefox_desktop_derived', 'firefox_desktop_use_counters_v2']], 'first_startup': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'first_startup_v1']], 'fog_validation': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'fog_validation_v1']], 'fx_accounts': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'fx_accounts_v1']], 'ltv_states': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'ltv_states_v1']], 'messaging_system': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'messaging_system_v1']], 'metrics': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'metrics_v1']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'metrics_clients_last_seen_v1']], 'new_metric_capture_emulation': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'new_metric_capture_emulation_v1']], 'newtab': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'newtab_v1']], 'newtab_live': [['moz-fx-data-shared-prod', 'firefox_desktop_live', 'newtab_v1']], 'onboarding': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'onboarding_v2']], 'pageload': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'pageload_v1']], 'pageload_1pct': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'pageload_1pct_v1']], 'pageload_nightly': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'pageload_nightly_v1']], 'pocket_button': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'pocket_button_v1']], 'prototype_no_code_events': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'prototype_no_code_events_v1']], 'pseudo_main': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'pseudo_main_v1']], 'quick_suggest': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'quick_suggest_v1']], 'review_checker_clients': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'review_checker_clients_v1']], 'review_checker_events': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'review_checker_events_v1']], 'review_checker_microsurvey': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'review_checker_microsurvey_v1']], 'search_with': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'search_with_v1']], 'serp_categorization': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'serp_categorization_v1']], 'serp_events': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'serp_events_v2']], 'snippets': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'snippets_v2']], 'spoc': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'spoc_v1']], 'top_sites': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'top_sites_v1']], 'urlbar_events': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'urlbar_events_v2']], 'urlbar_events_daily': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'urlbar_events_daily_v1']], 'urlbar_events_daily_engagement_by_position': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'urlbar_events_daily_engagement_by_position_v1']], 'urlbar_keyword_exposure': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'urlbar_keyword_exposure_v1']], 'urlbar_potential_exposure': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'urlbar_potential_exposure_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'user_characteristics_v1']]}, 'firefox_desktop_background_defaultagent': {'baseline': [['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent_derived', 'baseline_clients_last_seen_v1']], 'default_agent': [['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent_stable', 'default_agent_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent_stable', 'metrics_v1']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent_derived', 'metrics_clients_daily_v1']]}, 'firefox_desktop_background_tasks': {'background_tasks': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_stable', 'background_tasks_v1']], 'baseline': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_derived', 'baseline_clients_last_seen_v1']], 'crash': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_stable', 'crash_v1']], 'default_agent': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_stable', 'default_agent_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_stable', 'metrics_v1']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_derived', 'metrics_clients_daily_v1']]}, 'firefox_desktop_background_update': {'background_update': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'background_update_v1']], 'baseline': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_derived', 'baseline_clients_last_seen_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'broken_site_report_v1']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_derived', 'clients_last_seen_joined_v1']], 'crash': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'crash_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update', 'events']], 'fog_validation': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'fog_validation_v1']], 'metrics': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'metrics_v1']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_derived', 'metrics_clients_last_seen_v1']], 'pageload': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'pageload_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'user_characteristics_v1']]}, 'firefox_echo_show': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox', 'baseline_clients_last_seen']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'firefox_echo_show_derived', 'clients_last_seen_joined_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox', 'deletion_request']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'firefox_echo_show_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_echo_show_derived', 'metrics_clients_last_seen_v1']]}, 'firefox_fire_tv': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox', 'baseline_clients_last_seen']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'firefox_fire_tv_derived', 'clients_last_seen_joined_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox', 'deletion_request']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'firefox_fire_tv_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_fire_tv_derived', 'metrics_clients_last_seen_v1']]}, 'firefox_installer': {'install': [['moz-fx-data-shared-prod', 'firefox_installer_stable', 'install_v1']]}, 'firefox_ios': {'active_users': [['moz-fx-data-shared-prod', 'firefox_ios', 'baseline_clients_last_seen']], 'active_users_aggregates': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'active_users_aggregates_v3']], 'ad_activation_performance': [['moz-fx-data-shared-prod', 'apple_ads', 'campaign_report'], ['moz-fx-data-shared-prod', 'firefox_ios', 'firefox_ios_clients']], 'addresses_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'addresses_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'addresses_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'addresses_sync']], 'app_store_funnel': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'app_store_funnel_v1']], 'attributable_clients': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'attributable_clients_v1']], 'attribution_clients': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'attribution_clients_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'baseline_clients_last_seen']], 'baseline_clients_yearly': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'baseline_clients_yearly_v1']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'bookmarks_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'bookmarks_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'bookmarks_sync']], 'client_ltv': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'client_ltv_v1']], 'clients_activation': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'clients_activation_v1']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'clients_last_seen_joined_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'creditcards_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'creditcards_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'creditcards_sync']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'deletion_request']], 'engagement': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'engagement_v1']], 'engagement_clients': [['moz-fx-data-shared-prod', 'firefox_ios', 'active_users'], ['moz-fx-data-shared-prod', 'firefox_ios_derived', 'firefox_ios_clients_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'events_stream'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'events_stream'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'events']], 'feature_usage_events': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'feature_usage_events_v1']], 'feature_usage_metrics': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'feature_usage_metrics_v1']], 'firefox_ios_clients': [['moz-fx-data-shared-prod', 'firefox_ios', 'clients_activation'], ['moz-fx-data-shared-prod', 'firefox_ios_derived', 'firefox_ios_clients_v1']], 'first_session': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'first_session'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'first_session'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'first_session']], 'funnel_retention_clients': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'funnel_retention_clients_week_2_v1'], ['moz-fx-data-shared-prod', 'firefox_ios_derived', 'funnel_retention_clients_week_4_v1']], 'funnel_retention_week_4': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'funnel_retention_week_4_v1']], 'fx_suggest': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'fx_suggest'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'fx_suggest'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'fx_suggest']], 'history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'history_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'history_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'history_sync']], 'logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'logins_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'logins_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'logins_sync']], 'ltv_states': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'ltv_states_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'metrics'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'metrics'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'metrics_clients_last_seen_v1']], 'new_profile_activation': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'new_profile_activation_v1']], 'new_profile_clients': [['moz-fx-data-shared-prod', 'firefox_ios', 'active_users'], ['moz-fx-data-shared-prod', 'firefox_ios', 'attribution_clients']], 'new_profiles': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'new_profiles_v1']], 'retention': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'retention_v1']], 'retention_clients': [['moz-fx-data-shared-prod', 'firefox_ios', 'active_users'], ['moz-fx-data-shared-prod', 'firefox_ios', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'firefox_ios_derived', 'firefox_ios_clients_v1']], 'sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'sync']], 'tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'tabs_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'tabs_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'tabs_sync']], 'temp_baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'temp_baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'temp_baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'temp_baseline']], 'temp_bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'temp_bookmarks_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'temp_bookmarks_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'temp_bookmarks_sync']], 'temp_clients_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'temp_clients_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'temp_clients_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'temp_clients_sync']], 'temp_credit_cards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'temp_credit_cards_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'temp_credit_cards_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'temp_credit_cards_sync']], 'temp_history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'temp_history_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'temp_history_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'temp_history_sync']], 'temp_logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'temp_logins_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'temp_logins_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'temp_logins_sync']], 'temp_rust_tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'temp_rust_tabs_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'temp_rust_tabs_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'temp_rust_tabs_sync']], 'temp_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'temp_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'temp_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'temp_sync']], 'temp_tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'temp_tabs_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'temp_tabs_sync'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'temp_tabs_sync']], 'topsites_impression': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'topsites_impression'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'topsites_impression'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'topsites_impression']]}, 'firefox_launcher_process': {'launcher_process_failure': [['moz-fx-data-shared-prod', 'firefox_launcher_process_stable', 'launcher_process_failure_v1']]}, 'firefox_reality': {'addresses_sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'addresses_sync']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'baseline_clients_last_seen']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'bookmarks_sync']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'firefox_reality_derived', 'clients_last_seen_joined_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'creditcards_sync']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'deletion_request']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'events']], 'history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'history_sync']], 'logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'logins_sync']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'firefox_reality_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_reality_derived', 'metrics_clients_last_seen_v1']], 'session_end': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'session_end']], 'sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'sync']], 'tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'tabs_sync']]}, 'firefox_reality_pc': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality', 'baseline_clients_last_seen']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'firefox_reality_pc_derived', 'clients_last_seen_joined_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality', 'deletion_request']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality', 'events']], 'launch': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality', 'launch']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'firefox_reality_pc_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_reality_pc_derived', 'metrics_clients_last_seen_v1']]}, 'firefox_translations': {'custom': [['moz-fx-data-shared-prod', 'firefox_translations_stable', 'custom_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'firefox_translations_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'firefox_translations_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'firefox_translations_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'firefox_translations', 'events']]}, 'fivetran_costs': {'daily_connector_costs': [['moz-fx-data-shared-prod', 'fivetran_costs_derived', 'daily_connector_costs_v1']]}, 'focus_android': {'activation': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'activation'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'activation'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'activation']], 'active_users': [['moz-fx-data-shared-prod', 'focus_android', 'baseline_clients_last_seen']], 'active_users_aggregates': [['moz-fx-data-shared-prod', 'focus_android_derived', 'active_users_aggregates_v3']], 'attribution_clients': [['moz-fx-data-shared-prod', 'focus_android_derived', 'attribution_clients_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'baseline_clients_last_seen']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'bounce_tracking_protection'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'bounce_tracking_protection'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'bounce_tracking_protection']], 'broken_site_report': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'broken_site_report'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'broken_site_report'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'broken_site_report']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'focus_android_derived', 'clients_last_seen_joined_v1']], 'cookie_banner_report_site': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'cookie_banner_report_site'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'cookie_banner_report_site'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'cookie_banner_report_site']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'crash'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'crash'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'crash']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'deletion_request']], 'engagement': [['moz-fx-data-shared-prod', 'focus_android_derived', 'engagement_v1']], 'engagement_clients': [['moz-fx-data-shared-prod', 'focus_android', 'active_users']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'events_stream'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'events_stream'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'events']], 'fog_validation': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'fog_validation'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'fog_validation'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'fog_validation']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'metrics'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'metrics'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'focus_android_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'focus_android_derived', 'metrics_clients_last_seen_v1']], 'new_profile_clients': [['moz-fx-data-shared-prod', 'focus_android', 'active_users'], ['moz-fx-data-shared-prod', 'focus_android', 'attribution_clients']], 'new_profiles': [['moz-fx-data-shared-prod', 'focus_android_derived', 'new_profiles_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'pageload'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'pageload'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'pageload']], 'retention': [['moz-fx-data-shared-prod', 'focus_android_derived', 'retention_v1']], 'retention_clients': [['moz-fx-data-shared-prod', 'focus_android', 'active_users'], ['moz-fx-data-shared-prod', 'focus_android', 'baseline_clients_daily']], 'use_counters': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'use_counters'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'use_counters'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'use_counters']], 'user_characteristics': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'user_characteristics'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'user_characteristics'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'user_characteristics']]}, 'focus_ios': {'active_users': [['moz-fx-data-shared-prod', 'focus_ios', 'baseline_clients_last_seen']], 'active_users_aggregates': [['moz-fx-data-shared-prod', 'focus_ios_derived', 'active_users_aggregates_v3']], 'attribution_clients': [['moz-fx-data-shared-prod', 'focus_ios_derived', 'attribution_clients_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'baseline_clients_last_seen']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'focus_ios_derived', 'clients_last_seen_joined_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'deletion_request']], 'engagement': [['moz-fx-data-shared-prod', 'focus_ios_derived', 'engagement_v1']], 'engagement_clients': [['moz-fx-data-shared-prod', 'focus_ios', 'active_users']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'focus_ios_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'focus_ios_derived', 'metrics_clients_last_seen_v1']], 'new_profile_clients': [['moz-fx-data-shared-prod', 'focus_ios', 'active_users'], ['moz-fx-data-shared-prod', 'focus_ios', 'attribution_clients']], 'new_profiles': [['moz-fx-data-shared-prod', 'focus_ios_derived', 'new_profiles_v1']], 'retention': [['moz-fx-data-shared-prod', 'focus_ios_derived', 'retention_v1']], 'retention_clients': [['moz-fx-data-shared-prod', 'focus_ios', 'active_users'], ['moz-fx-data-shared-prod', 'focus_ios', 'baseline_clients_daily']]}, 'fxci': {'task_run_costs': [['moz-fx-data-shared-prod', 'fxci_derived', 'task_run_costs_v1']], 'worker_costs': [['moz-fx-data-shared-prod', 'fxci_derived', 'worker_costs_v1']]}, 'glean_dictionary': {'deletion_request': [['moz-fx-data-shared-prod', 'glean_dictionary_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'glean_dictionary_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'glean_dictionary_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'glean_dictionary', 'events']], 'page_view': [['moz-fx-data-shared-prod', 'glean_dictionary_stable', 'page_view_v1']]}, 'gleanjs_docs': {'deletion_request': [['moz-fx-data-shared-prod', 'gleanjs_docs_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'gleanjs_docs_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'gleanjs_docs_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'gleanjs_docs', 'events']]}, 'google_ads': {'ad_groups': [['moz-fx-data-shared-prod', 'google_ads_derived', 'ad_groups_v1']], 'android_app_campaign_stats': [['moz-fx-data-shared-prod', 'google_ads_derived', 'android_app_campaign_stats_v1']], 'campaign_names_map': [['moz-fx-data-shared-prod', 'google_ads_derived', 'campaign_names_map_v1']], 'campaigns': [['moz-fx-data-shared-prod', 'google_ads_derived', 'campaigns_v1']], 'conversion_event_categorization': [['moz-fx-data-shared-prod', 'google_ads_derived', 'conversion_event_categorization_v1']], 'daily_ad_group_stats': [['moz-fx-data-shared-prod', 'google_ads_derived', 'daily_ad_group_stats_v1']], 'daily_campaign_stats': [['moz-fx-data-shared-prod', 'google_ads_derived', 'daily_campaign_stats_v1']]}, 'google_search_console': {'limited_historical_search_impressions_by_page': [['moz-fx-data-shared-prod', 'google_search_console_derived', 'search_impressions_by_page_v1'], ['moz-fx-data-shared-prod', 'static', 'country_codes_v1'], ['moz-fx-data-shared-prod', 'static', 'language_codes_v1']], 'limited_historical_search_impressions_by_site': [['moz-fx-data-shared-prod', 'google_search_console_derived', 'search_impressions_by_site_v1'], ['moz-fx-data-shared-prod', 'static', 'country_codes_v1']], 'search_impressions_by_page': [['moz-fx-data-shared-prod', 'google_search_console_derived', 'search_impressions_by_page_v2'], ['moz-fx-data-shared-prod', 'static', 'country_codes_v1'], ['moz-fx-data-shared-prod', 'static', 'language_codes_v1']], 'search_impressions_by_site': [['moz-fx-data-shared-prod', 'google_search_console_derived', 'search_impressions_by_site_v2'], ['moz-fx-data-shared-prod', 'static', 'country_codes_v1']]}, 'hubs': {'active_subscription_ids': [['moz-fx-data-shared-prod', 'hubs_derived', 'active_subscription_ids_live'], ['moz-fx-data-shared-prod', 'hubs_derived', 'active_subscription_ids_v1']], 'active_subscriptions': [['moz-fx-data-shared-prod', 'hubs_derived', 'active_subscriptions_live'], ['moz-fx-data-shared-prod', 'hubs_derived', 'active_subscriptions_v1']], 'subscription_events': [['moz-fx-data-shared-prod', 'hubs_derived', 'subscription_events_live'], ['moz-fx-data-shared-prod', 'hubs_derived', 'subscription_events_v1']], 'subscriptions': [['moz-fx-data-shared-prod', 'hubs_derived', 'subscriptions_v1']]}, 'hubs_derived': {'active_subscription_ids_live': [['moz-fx-data-shared-prod', 'hubs', 'subscriptions']], 'active_subscriptions_live': [['moz-fx-data-shared-prod', 'hubs', 'active_subscription_ids'], ['moz-fx-data-shared-prod', 'hubs', 'subscriptions']], 'subscription_events_live': [['moz-fx-data-shared-prod', 'hubs', 'active_subscription_ids'], ['moz-fx-data-shared-prod', 'hubs', 'subscriptions']]}, 'internet_outages': {'global_outages': [['moz-fx-data-shared-prod', 'internet_outages', 'global_outages_v1'], ['moz-fx-data-shared-prod', 'internet_outages', 'global_outages_v2']]}, 'klar_android': {'activation': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'activation']], 'active_users': [['moz-fx-data-shared-prod', 'klar_android', 'baseline_clients_last_seen']], 'active_users_aggregates': [['moz-fx-data-shared-prod', 'klar_android_derived', 'active_users_aggregates_v3']], 'attribution_clients': [['moz-fx-data-shared-prod', 'klar_android_derived', 'attribution_clients_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'baseline_clients_last_seen']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'bounce_tracking_protection']], 'broken_site_report': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'broken_site_report']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'klar_android_derived', 'clients_last_seen_joined_v1']], 'cookie_banner_report_site': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'cookie_banner_report_site']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'crash']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'deletion_request']], 'engagement': [['moz-fx-data-shared-prod', 'klar_android_derived', 'engagement_v1']], 'engagement_clients': [['moz-fx-data-shared-prod', 'klar_android', 'active_users']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'events']], 'fog_validation': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'fog_validation']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'klar_android_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'klar_android_derived', 'metrics_clients_last_seen_v1']], 'new_profile_clients': [['moz-fx-data-shared-prod', 'klar_android', 'active_users'], ['moz-fx-data-shared-prod', 'klar_android', 'attribution_clients']], 'new_profiles': [['moz-fx-data-shared-prod', 'klar_android_derived', 'new_profiles_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'pageload']], 'retention': [['moz-fx-data-shared-prod', 'klar_android_derived', 'retention_v1']], 'retention_clients': [['moz-fx-data-shared-prod', 'klar_android', 'active_users'], ['moz-fx-data-shared-prod', 'klar_android', 'baseline_clients_daily']], 'use_counters': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'use_counters']], 'user_characteristics': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'user_characteristics']]}, 'klar_ios': {'active_users': [['moz-fx-data-shared-prod', 'klar_ios', 'baseline_clients_last_seen']], 'active_users_aggregates': [['moz-fx-data-shared-prod', 'klar_ios_derived', 'active_users_aggregates_v3']], 'attribution_clients': [['moz-fx-data-shared-prod', 'klar_ios_derived', 'attribution_clients_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'baseline_clients_last_seen']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'klar_ios_derived', 'clients_last_seen_joined_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'deletion_request']], 'engagement': [['moz-fx-data-shared-prod', 'klar_ios_derived', 'engagement_v1']], 'engagement_clients': [['moz-fx-data-shared-prod', 'klar_ios', 'active_users']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'klar_ios_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'klar_ios_derived', 'metrics_clients_last_seen_v1']], 'new_profile_clients': [['moz-fx-data-shared-prod', 'klar_ios', 'active_users'], ['moz-fx-data-shared-prod', 'klar_ios', 'attribution_clients']], 'new_profiles': [['moz-fx-data-shared-prod', 'klar_ios_derived', 'new_profiles_v1']], 'retention': [['moz-fx-data-shared-prod', 'klar_ios_derived', 'retention_v1']], 'retention_clients': [['moz-fx-data-shared-prod', 'klar_ios', 'active_users'], ['moz-fx-data-shared-prod', 'klar_ios', 'baseline_clients_daily']]}, 'lockwise_android': {'addresses_sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'addresses_sync']], 'baseline': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'baseline_clients_last_seen']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'bookmarks_sync']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'lockwise_android_derived', 'clients_last_seen_joined_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'creditcards_sync']], 'deletion_request': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'deletion_request']], 'events': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'events']], 'history_sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'history_sync']], 'logins_sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'logins_sync']], 'metrics': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'lockwise_android_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'lockwise_android_derived', 'metrics_clients_last_seen_v1']], 'sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'sync']], 'tabs_sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'tabs_sync']]}, 'lockwise_ios': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox', 'baseline_clients_last_seen']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'lockwise_ios_derived', 'clients_last_seen_joined_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox', 'deletion_request']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'lockwise_ios_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'lockwise_ios_derived', 'metrics_clients_last_seen_v1']]}, 'mach': {'baseline': [['moz-fx-data-shared-prod', 'mozilla_mach', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'mozilla_mach', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'mozilla_mach', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'mozilla_mach', 'baseline_clients_last_seen']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'mach_derived', 'clients_last_seen_joined_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'mozilla_mach', 'deletion_request']], 'events': [['moz-fx-data-shared-prod', 'mozilla_mach', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'mozilla_mach', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'mozilla_mach', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'mozilla_mach', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'mach_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'mach_derived', 'metrics_clients_last_seen_v1']], 'usage': [['moz-fx-data-shared-prod', 'mozilla_mach', 'usage']]}, 'mdn_yari': {'action': [['moz-fx-data-shared-prod', 'mdn_yari_stable', 'action_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'mdn_yari_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'mdn_yari_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'mdn_yari_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'mdn_yari', 'events']], 'page': [['moz-fx-data-shared-prod', 'mdn_yari_stable', 'page_v1']]}, 'messaging_system': {'cfr': [['moz-fx-data-shared-prod', 'messaging_system_stable', 'cfr_v1']], 'cfr_users_daily': [['moz-fx-data-shared-prod', 'messaging_system_derived', 'cfr_users_daily_v1']], 'cfr_users_last_seen': [['moz-fx-data-shared-prod', 'messaging_system_derived', 'cfr_users_last_seen_v1']], 'event_types': [['moz-fx-data-shared-prod', 'messaging_system_derived', 'event_types_v1']], 'events_daily': [['moz-fx-data-shared-prod', 'messaging_system_derived', 'events_daily_v1']], 'infobar': [['moz-fx-data-shared-prod', 'messaging_system_stable', 'infobar_v1']], 'moments': [['moz-fx-data-shared-prod', 'messaging_system_stable', 'moments_v1']], 'onboarding': [['moz-fx-data-shared-prod', 'messaging_system_stable', 'onboarding_v1']], 'onboarding_users_daily': [['moz-fx-data-shared-prod', 'messaging_system_derived', 'onboarding_users_daily_v1']], 'onboarding_users_last_seen': [['moz-fx-data-shared-prod', 'messaging_system_derived', 'onboarding_users_last_seen_v1']], 'personalization_experiment': [['moz-fx-data-shared-prod', 'messaging_system_stable', 'personalization_experiment_v1']], 'snippets': [['moz-fx-data-shared-prod', 'messaging_system_stable', 'snippets_v1']], 'snippets_users_daily': [['moz-fx-data-shared-prod', 'messaging_system_derived', 'snippets_users_daily_v1']], 'snippets_users_last_seen': [['moz-fx-data-shared-prod', 'messaging_system_derived', 'snippets_users_last_seen_v1']], 'spotlight': [['moz-fx-data-shared-prod', 'messaging_system_stable', 'spotlight_v1']], 'undesired_events': [['moz-fx-data-shared-prod', 'messaging_system_stable', 'undesired_events_v1']], 'whats_new_panel': [['moz-fx-data-shared-prod', 'messaging_system_stable', 'whats_new_panel_v1']]}, 'messaging_system_derived': {'normalized_onboarding_events': [['moz-fx-data-shared-prod', 'firefox_desktop', 'onboarding']]}, 'mlhackweek_search': {'action': [['moz-fx-data-shared-prod', 'mlhackweek_search_stable', 'action_v1']], 'baseline': [['moz-fx-data-shared-prod', 'mlhackweek_search_stable', 'baseline_v1']], 'custom': [['moz-fx-data-shared-prod', 'mlhackweek_search_stable', 'custom_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'mlhackweek_search_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'mlhackweek_search_stable', 'events_v1']], 'metrics': [['moz-fx-data-shared-prod', 'mlhackweek_search_stable', 'metrics_v1']]}, 'mobile': {'activation': [['moz-fx-data-shared-prod', 'mobile_stable', 'activation_v1']]}, 'monitor_backend': {'events': [['moz-fx-data-shared-prod', 'monitor_backend_stable', 'events_v1']]}, 'monitor_cirrus': {'baseline': [['moz-fx-data-shared-prod', 'monitor_cirrus_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'monitor_cirrus_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'monitor_cirrus_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'monitor_cirrus_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'monitor_cirrus_stable', 'deletion_request_v1']], 'enrollment': [['moz-fx-data-shared-prod', 'monitor_cirrus_stable', 'enrollment_v1']], 'enrollment_status': [['moz-fx-data-shared-prod', 'monitor_cirrus_stable', 'enrollment_status_v1']], 'events': [['moz-fx-data-shared-prod', 'monitor_cirrus_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'monitor_cirrus_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'monitor_cirrus', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'monitor_cirrus_stable', 'metrics_v1']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'monitor_cirrus_derived', 'metrics_clients_daily_v1']], 'startup': [['moz-fx-data-shared-prod', 'monitor_cirrus_stable', 'startup_v1']]}, 'monitor_frontend': {'deletion_request': [['moz-fx-data-shared-prod', 'monitor_frontend_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'monitor_frontend_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'monitor_frontend_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'monitor_frontend', 'events']]}, 'monitoring': {'airflow_dag': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_dag_v1']], 'airflow_dag_note': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_dag_note_v1']], 'airflow_dag_owner_attributes': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_dag_owner_attributes_v1']], 'airflow_dag_run': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_dag_run_v1']], 'airflow_dag_tag': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_dag_tag_v1']], 'airflow_dag_warning': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_dag_warning_v1']], 'airflow_import_error': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_import_error_v1']], 'airflow_job': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_job_v1']], 'airflow_slot_pool': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_slot_pool_v1']], 'airflow_task_fail': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_task_fail_v1']], 'airflow_task_instance': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_task_instance_v1']], 'airflow_task_instance_note': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_task_instance_note_v1']], 'airflow_task_reschedule': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_task_reschedule_v1']], 'airflow_trigger': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_trigger_v1']], 'airflow_user': [['moz-fx-data-shared-prod', 'monitoring_derived', 'airflow_user_v1']], 'average_ping_sizes': [['moz-fx-data-shared-prod', 'monitoring_derived', 'average_ping_sizes_v1']], 'bigquery_table_storage': [['moz-fx-data-shared-prod', 'monitoring_derived', 'bigquery_table_storage_v1']], 'bigquery_table_storage_timeline_daily': [['moz-fx-data-shared-prod', 'monitoring_derived', 'bigquery_table_storage_timeline_daily_v1']], 'bigquery_tables_inventory': [['moz-fx-data-shared-prod', 'monitoring_derived', 'bigquery_tables_inventory_v1']], 'bigquery_usage': [['moz-fx-data-shared-prod', 'monitoring_derived', 'bigquery_usage_v2']], 'column_size': [['moz-fx-data-shared-prod', 'monitoring_derived', 'column_size_v1']], 'deletion_request_volume': [['moz-fx-data-shared-prod', 'monitoring_derived', 'deletion_request_volume_v2']], 'event_monitoring_live': [['moz-fx-data-shared-prod', 'accounts_backend_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'accounts_cirrus_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'accounts_frontend_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'bedrock_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'burnham_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'debug_ping_view_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'firefox_crashreporter_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'firefox_desktop_background_update_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'firefox_translations_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'glean_dictionary_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'gleanjs_docs_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'mdn_yari_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'monitor_cirrus_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'monitor_frontend_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'monitoring_derived', 'event_monitoring_aggregates_v1'], ['moz-fx-data-shared-prod', 'mozilla_lockbox_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'mozilla_mach_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'mozillavpn_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'mozphab_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_beta_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_daily_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_bergamot_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_klar_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_mozregression_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_reference_browser_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'pine_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'thunderbird_desktop_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'treeherder_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'viu_politica_derived', 'event_monitoring_live_v1']], 'payload_bytes_error_all': [['moz-fx-data-shared-prod', 'monitoring', 'payload_bytes_error_structured'], ['moz-fx-data-shared-prod', 'payload_bytes_error', 'stub_installer'], ['moz-fx-data-shared-prod', 'payload_bytes_error', 'telemetry']], 'payload_bytes_error_structured': [['moz-fx-data-shared-prod', 'payload_bytes_error', 'structured']], 'schema_error_counts': [['moz-fx-data-shared-prod', 'monitoring_derived', 'schema_error_counts_v2']], 'shredder_per_job_stats': [['moz-fx-data-shared-prod', 'monitoring_derived', 'shredder_per_job_stats_v1']], 'shredder_per_table_stats': [['moz-fx-data-shared-prod', 'monitoring_derived', 'shredder_per_job_stats_v1']], 'shredder_progress': [['moz-fx-data-bq-batch-prod', 'region-us', 'INFORMATION_SCHEMA', 'JOBS_BY_PROJECT'], ['moz-fx-data-shredder', 'region-us', 'INFORMATION_SCHEMA', 'JOBS_BY_PROJECT'], ['moz-fx-data-shredder', 'shredder_state', 'shredder_state'], ['moz-fx-data-shredder', 'shredder_state', 'tasks']], 'shredder_rows_deleted': [['moz-fx-data-shared-prod', 'monitoring_derived', 'shredder_rows_deleted_v1']], 'shredder_run_stats': [['moz-fx-data-shared-prod', 'monitoring_derived', 'shredder_per_job_stats_v1']], 'stable_and_derived_table_sizes': [['moz-fx-data-shared-prod', 'monitoring_derived', 'stable_and_derived_table_sizes_v1']], 'stable_table_column_counts': [['moz-fx-data-shared-prod', 'monitoring_derived', 'stable_table_column_counts_v1']], 'stable_table_sizes': [['moz-fx-data-shared-prod', 'monitoring_derived', 'stable_table_sizes_v1']], 'structured_detailed_error_counts': [['moz-fx-data-shared-prod', 'monitoring_derived', 'structured_detailed_error_counts_v1']], 'structured_distinct_docids': [['moz-fx-data-shared-prod', 'monitoring_derived', 'structured_distinct_docids_v1']], 'structured_error_counts': [['moz-fx-data-shared-prod', 'monitoring_derived', 'structured_error_counts_v2']], 'structured_missing_columns': [['moz-fx-data-shared-prod', 'monitoring_derived', 'structured_missing_columns_v1'], ['moz-fx-data-shared-prod', 'region-us', 'INFORMATION_SCHEMA', 'COLUMN_FIELD_PATHS']], 'suggest_click_rate_live': [['moz-fx-data-shared-prod', 'monitoring_derived', 'suggest_click_rate_live_v1']], 'suggest_impression_rate_live': [['moz-fx-data-shared-prod', 'monitoring_derived', 'suggest_impression_rate_live_v1']], 'telemetry_distinct_docids': [['moz-fx-data-shared-prod', 'monitoring_derived', 'telemetry_distinct_docids_v1']], 'telemetry_missing_columns': [['moz-fx-data-shared-prod', 'monitoring_derived', 'telemetry_missing_columns_v3'], ['moz-fx-data-shared-prod', 'region-us', 'INFORMATION_SCHEMA', 'COLUMN_FIELD_PATHS']], 'topsites_click_rate_live': [['moz-fx-data-shared-prod', 'monitoring_derived', 'topsites_click_rate_live_v1']], 'topsites_impression_rate_live': [['moz-fx-data-shared-prod', 'monitoring_derived', 'topsites_impression_rate_live_v1']], 'topsites_rate_fenix_live': [['moz-fx-data-shared-prod', 'monitoring_derived', 'topsites_rate_fenix_beta_live_v1'], ['moz-fx-data-shared-prod', 'monitoring_derived', 'topsites_rate_fenix_nightly_live_v1'], ['moz-fx-data-shared-prod', 'monitoring_derived', 'topsites_rate_fenix_release_live_v1']]}, 'monitoring_derived': {'outerbounds_cost_per_flow_run_v1': [['moz-fx-data-shared-prod', 'billing_syndicate', 'gcp_billing_export_resource_v1_01E7D5_97288E_E2EBA0']], 'outerbounds_cost_per_flow_v1': [['moz-fx-data-shared-prod', 'monitoring_derived', 'outerbounds_cost_per_flow_run_v1']], 'rayserve_cost_fakespot_tenant_prod_v1': [['moz-fx-data-shared-prod', 'billing_syndicate', 'gcp_billing_export_resource_v1_01E7D5_97288E_E2EBA0']], 'rayserve_cost_fakespot_tenant_v1': [['moz-fx-data-shared-prod', 'billing_syndicate', 'gcp_billing_export_resource_v1_01E7D5_97288E_E2EBA0']], 'schema_error_counts_v1': [['moz-fx-data-shared-prod', 'monitoring', 'payload_bytes_error_all']], 'structured_detailed_error_counts_v1': [['moz-fx-data-shared-prod', 'monitoring', 'payload_bytes_error_structured'], ['moz-fx-data-shared-prod', 'monitoring', 'structured_error_counts']], 'telemetry_missing_columns_v1': [['moz-fx-data-shared-prod', 'telemetry_stable', '*']], 'telemetry_missing_columns_v2': [['moz-fx-data-shared-prod', 'telemetry_stable', '*'], ['moz-fx-data-shared-prod', 'telemetry_stable', 'INFORMATION_SCHEMA', 'TABLE_OPTIONS']]}, 'moso_mastodon_backend': {'events': [['moz-fx-data-shared-prod', 'moso_mastodon_backend_stable', 'events_v1']]}, 'moso_mastodon_web': {'deletion_request': [['moz-fx-data-shared-prod', 'moso_mastodon_web_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'moso_mastodon_web_stable', 'events_v1']]}, 'mozilla_lockbox': {'addresses_sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox_stable', 'addresses_sync_v1']], 'baseline': [['moz-fx-data-shared-prod', 'mozilla_lockbox_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'mozilla_lockbox_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'mozilla_lockbox_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'mozilla_lockbox_derived', 'baseline_clients_last_seen_v1']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox_stable', 'bookmarks_sync_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox_stable', 'creditcards_sync_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'mozilla_lockbox_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'mozilla_lockbox_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'mozilla_lockbox_derived', 'events_stream_v1']], 'history_sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox_stable', 'history_sync_v1']], 'logins_sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox_stable', 'logins_sync_v1']], 'metrics': [['moz-fx-data-shared-prod', 'mozilla_lockbox_stable', 'metrics_v1']], 'sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox_stable', 'sync_v1']], 'tabs_sync': [['moz-fx-data-shared-prod', 'mozilla_lockbox_stable', 'tabs_sync_v1']]}, 'mozilla_mach': {'baseline': [['moz-fx-data-shared-prod', 'mozilla_mach_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'mozilla_mach_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'mozilla_mach_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'mozilla_mach_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'mozilla_mach_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'mozilla_mach_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'mozilla_mach_derived', 'events_stream_v1']], 'metrics': [['moz-fx-data-shared-prod', 'mozilla_mach_stable', 'metrics_v1']], 'usage': [['moz-fx-data-shared-prod', 'mozilla_mach_stable', 'usage_v1']]}, 'mozilla_org': {'blogs_daily_summary': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'blogs_daily_summary_v2']], 'blogs_goals': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'blogs_goals_v2']], 'blogs_landing_page_summary': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'blogs_landing_page_summary_v2']], 'blogs_sessions': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'blogs_sessions_v2']], 'downloads_with_attribution': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'downloads_with_attribution_v2']], 'firefox_whatsnew_summary': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'firefox_whatsnew_summary_v2']], 'ga_clients': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'ga_clients_v1']], 'ga_clients_v2': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'ga_clients_v2']], 'ga_desktop_conversions': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'ga_desktop_conversions_v1']], 'ga_sessions': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'ga_sessions_v1']], 'ga_sessions_v2': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'ga_sessions_v2']], 'gclid_conversions_v2': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'gclid_conversions_v2']], 'www_site_downloads': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'www_site_downloads_v2']], 'www_site_events_metrics': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'www_site_events_metrics_v2']], 'www_site_hits': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'www_site_hits_v2']], 'www_site_landing_page_metrics': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'www_site_landing_page_metrics_v2']], 'www_site_metrics_summary': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'www_site_metrics_summary_v2']], 'www_site_page_metrics': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'www_site_page_metrics_v2']]}, 'mozilla_vpn': {'active_subscription_ids': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'active_subscription_ids_live'], ['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'active_subscription_ids_v1']], 'active_subscriptions': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'active_subscriptions_live'], ['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'active_subscriptions_v1']], 'add_device_events': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'add_device_events_v1']], 'all_subscriptions': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'all_subscriptions_v1']], 'baseline': [['moz-fx-data-shared-prod', 'mozillavpn', 'baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn', 'baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn', 'baseline'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'mozillavpn', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'mozillavpn', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'mozillavpn', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension', 'baseline_clients_last_seen']], 'channel_group_proportions': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'channel_group_proportions_live'], ['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'channel_group_proportions_v1']], 'daemonsession': [['moz-fx-data-shared-prod', 'mozillavpn', 'daemonsession'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn', 'daemonsession'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn', 'daemonsession'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension', 'daemonsession']], 'deletion_request': [['moz-fx-data-shared-prod', 'mozillavpn', 'deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn', 'deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn', 'deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension', 'deletion_request']], 'devices': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'devices_v1']], 'event_types': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'event_types_v1']], 'events': [['moz-fx-data-shared-prod', 'mozillavpn', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn', 'events'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension', 'events']], 'events_daily': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'events_daily_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'mozillavpn', 'events_stream'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn', 'events_stream'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn', 'events_stream'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'mozilla_vpn', 'main']], 'exchange_rates': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'exchange_rates_v1']], 'funnel_fxa_login_to_protected': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'funnel_fxa_login_to_protected_v1']], 'funnel_ga_to_subscriptions': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'funnel_ga_to_subscriptions_v1'], ['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'funnel_ga_to_subscriptions_v2']], 'funnel_product_page_to_subscribed': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'funnel_product_page_to_subscribed_v1']], 'login_flows': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'login_flows_v1']], 'main': [['moz-fx-data-shared-prod', 'mozillavpn', 'main'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn', 'main'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn', 'main'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension', 'main']], 'metrics': [['moz-fx-data-shared-prod', 'mozillavpn', 'metrics'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn', 'metrics'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn', 'metrics'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'metrics_clients_daily_v1']], 'protected': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'protected_v1']], 'site_metrics_summary': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'site_metrics_summary_v1'], ['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'site_metrics_summary_v2']], 'subscription_events': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'subscription_events_live'], ['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'subscription_events_v1']], 'subscriptions': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'subscriptions_v1']], 'survey_cancellation_of_service': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'survey_cancellation_of_service_v1']], 'survey_intercept_q3': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'survey_intercept_q3_v1']], 'survey_lifecycle_28d_desktop': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'survey_lifecycle_28d_desktop_v1']], 'survey_lifecycle_28d_mobile': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'survey_lifecycle_28d_mobile_v1']], 'survey_market_fit': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'survey_market_fit_v1']], 'survey_product_quality': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'survey_product_quality_v1']], 'survey_recommend': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'survey_recommend_v1']], 'users': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'users_v1']], 'vat_rates': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'vat_rates_v2']], 'vpnsession': [['moz-fx-data-shared-prod', 'mozillavpn', 'vpnsession'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn', 'vpnsession'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn', 'vpnsession'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension', 'vpnsession']], 'waitlist': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'waitlist_v1']]}, 'mozilla_vpn_derived': {'active_subscription_ids_live': [['moz-fx-data-shared-prod', 'mozilla_vpn', 'all_subscriptions']], 'active_subscriptions_live': [['moz-fx-data-shared-prod', 'mozilla_vpn', 'active_subscription_ids'], ['moz-fx-data-shared-prod', 'mozilla_vpn', 'all_subscriptions']], 'channel_group_proportions_live': [['moz-fx-data-shared-prod', 'mozilla_vpn', 'subscription_events']], 'subscription_events_live': [['moz-fx-data-shared-prod', 'mozilla_vpn', 'active_subscription_ids'], ['moz-fx-data-shared-prod', 'mozilla_vpn', 'all_subscriptions']]}, 'mozillavpn': {'baseline': [['moz-fx-data-shared-prod', 'mozillavpn_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'mozillavpn_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'mozillavpn_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'mozillavpn_derived', 'baseline_clients_last_seen_v1']], 'daemonsession': [['moz-fx-data-shared-prod', 'mozillavpn_stable', 'daemonsession_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'mozillavpn_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'mozillavpn_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'mozillavpn_derived', 'events_stream_v1']], 'main': [['moz-fx-data-shared-prod', 'mozillavpn_stable', 'main_v1']], 'metrics': [['moz-fx-data-shared-prod', 'mozillavpn_stable', 'metrics_v1']], 'vpnsession': [['moz-fx-data-shared-prod', 'mozillavpn_stable', 'vpnsession_v1']]}, 'mozillavpn_backend_cirrus': {'baseline': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_stable', 'deletion_request_v1']], 'enrollment': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_stable', 'enrollment_v1']], 'enrollment_status': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_stable', 'enrollment_status_v1']], 'events': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_stable', 'metrics_v1']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_derived', 'metrics_clients_daily_v1']], 'startup': [['moz-fx-data-shared-prod', 'mozillavpn_backend_cirrus_stable', 'startup_v1']]}, 'mozphab': {'baseline': [['moz-fx-data-shared-prod', 'mozphab_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'mozphab_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'mozphab_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'mozphab_derived', 'baseline_clients_last_seen_v1']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'mozphab_derived', 'clients_last_seen_joined_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'mozphab_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'mozphab_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'mozphab_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'mozphab', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'mozphab_stable', 'metrics_v1']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'mozphab_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'mozphab_derived', 'metrics_clients_last_seen_v1']], 'usage': [['moz-fx-data-shared-prod', 'mozphab_stable', 'usage_v1']]}, 'mozregression': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression', 'baseline_clients_last_seen']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'mozregression_derived', 'clients_last_seen_joined_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression', 'deletion_request']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'mozregression_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'mozregression_derived', 'metrics_clients_last_seen_v1']], 'usage': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression', 'usage']]}, 'net_thunderbird_android': {'baseline': [['moz-fx-data-shared-prod', 'net_thunderbird_android_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'net_thunderbird_android_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'net_thunderbird_android_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'net_thunderbird_android_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'net_thunderbird_android_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'net_thunderbird_android_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'net_thunderbird_android_derived', 'events_stream_v1']], 'metrics': [['moz-fx-data-shared-prod', 'net_thunderbird_android_stable', 'metrics_v1']]}, 'net_thunderbird_android_beta': {'baseline': [['moz-fx-data-shared-prod', 'net_thunderbird_android_beta_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'net_thunderbird_android_beta_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'net_thunderbird_android_beta_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'net_thunderbird_android_beta_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'net_thunderbird_android_beta_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'net_thunderbird_android_beta_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'net_thunderbird_android_beta_derived', 'events_stream_v1']], 'metrics': [['moz-fx-data-shared-prod', 'net_thunderbird_android_beta_stable', 'metrics_v1']]}, 'net_thunderbird_android_daily': {'baseline': [['moz-fx-data-shared-prod', 'net_thunderbird_android_daily_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'net_thunderbird_android_daily_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'net_thunderbird_android_daily_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'net_thunderbird_android_daily_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'net_thunderbird_android_daily_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'net_thunderbird_android_daily_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'net_thunderbird_android_daily_derived', 'events_stream_v1']], 'metrics': [['moz-fx-data-shared-prod', 'net_thunderbird_android_daily_stable', 'metrics_v1']]}, 'org_mozilla_bergamot': {'custom': [['moz-fx-data-shared-prod', 'org_mozilla_bergamot_stable', 'custom_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_bergamot_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_bergamot_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_bergamot_derived', 'events_stream_v1']]}, 'org_mozilla_broken_site_report': {'user_reports': [['moz-fx-data-shared-prod', 'firefox_desktop', 'broken_site_report']], 'user_reports_live': [['moz-fx-data-shared-prod', 'firefox_desktop_live', 'broken_site_report_v1']]}, 'org_mozilla_connect_firefox': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox_derived', 'events_stream_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_connect_firefox_stable', 'metrics_v1']]}, 'org_mozilla_fenix': {'activation': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'activation_v1']], 'addresses_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'addresses_sync_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'baseline_clients_last_seen_v1']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'bookmarks_sync_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'broken_site_report_v1']], 'client_deduplication': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'client_deduplication_v1']], 'cookie_banner_report_site': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'cookie_banner_report_site_v1']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'crash_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'creditcards_sync_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'events_stream_v1']], 'first_session': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'first_session_v1']], 'fog_validation': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'fog_validation_v1']], 'font_list': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'font_list_v1']], 'fx_suggest': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'fx_suggest_v1']], 'geckoview_version': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'geckoview_version_v1']], 'history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'history_sync_v1']], 'installation': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'installation_v1']], 'logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'logins_sync_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'metrics_v1']], 'migration': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'migration_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'pageload_v1']], 'releases': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'releases_v1']], 'review_checker_clients': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'review_checker_clients_v1']], 'review_checker_events': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'review_checker_events_v1']], 'spoc': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'spoc_v1']], 'startup_timeline': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'startup_timeline_v1']], 'sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'sync_v1']], 'tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'tabs_sync_v1']], 'topsites_impression': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'topsites_impression_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'user_characteristics_v1']]}, 'org_mozilla_fenix_nightly': {'activation': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'activation_v1']], 'addresses_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'addresses_sync_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_derived', 'baseline_clients_last_seen_v1']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'bookmarks_sync_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'broken_site_report_v1']], 'client_deduplication': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'client_deduplication_v1']], 'cookie_banner_report_site': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'cookie_banner_report_site_v1']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'crash_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'creditcards_sync_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_derived', 'events_stream_v1']], 'first_session': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'first_session_v1']], 'fog_validation': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'fog_validation_v1']], 'font_list': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'font_list_v1']], 'fx_suggest': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'fx_suggest_v1']], 'history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'history_sync_v1']], 'installation': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'installation_v1']], 'logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'logins_sync_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'metrics_v1']], 'migration': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'migration_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'pageload_v1']], 'spoc': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'spoc_v1']], 'startup_timeline': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'startup_timeline_v1']], 'sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'sync_v1']], 'tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'tabs_sync_v1']], 'topsites_impression': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'topsites_impression_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'user_characteristics_v1']]}, 'org_mozilla_fennec_aurora': {'activation': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'activation_v1']], 'addresses_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'addresses_sync_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_derived', 'baseline_clients_last_seen_v1']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'bookmarks_sync_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'broken_site_report_v1']], 'client_deduplication': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'client_deduplication_v1']], 'cookie_banner_report_site': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'cookie_banner_report_site_v1']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'crash_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'creditcards_sync_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_derived', 'events_stream_v1']], 'first_session': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'first_session_v1']], 'fog_validation': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'fog_validation_v1']], 'font_list': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'font_list_v1']], 'fx_suggest': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'fx_suggest_v1']], 'history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'history_sync_v1']], 'installation': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'installation_v1']], 'logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'logins_sync_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'metrics_v1']], 'migration': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'migration_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'pageload_v1']], 'spoc': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'spoc_v1']], 'startup_timeline': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'startup_timeline_v1']], 'sync': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'sync_v1']], 'tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'tabs_sync_v1']], 'topsites_impression': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'topsites_impression_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'user_characteristics_v1']]}, 'org_mozilla_firefox': {'activation': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'activation_v1']], 'addresses_sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'addresses_sync_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'baseline_clients_last_seen_v1']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'bookmarks_sync_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'broken_site_report_v1']], 'client_deduplication': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'client_deduplication_v1']], 'cookie_banner_report_site': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'cookie_banner_report_site_v1']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'crash_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'creditcards_sync_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'events_stream_v1']], 'first_session': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'first_session_v1']], 'fog_validation': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'fog_validation_v1']], 'font_list': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'font_list_v1']], 'fx_suggest': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'fx_suggest_v1']], 'history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'history_sync_v1']], 'installation': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'installation_v1']], 'logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'logins_sync_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'metrics_v1']], 'migrated_clients': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'migrated_clients_v1']], 'migration': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'migration_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'migration_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'migration_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'pageload_v1']], 'spoc': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'spoc_v1']], 'startup_timeline': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'startup_timeline_v1']], 'sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'sync_v1']], 'tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'tabs_sync_v1']], 'topsites_impression': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'topsites_impression_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'user_characteristics_v1']]}, 'org_mozilla_firefox_beta': {'activation': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'activation_v1']], 'addresses_sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'addresses_sync_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_derived', 'baseline_clients_last_seen_v1']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'bookmarks_sync_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'broken_site_report_v1']], 'client_deduplication': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_derived', 'client_deduplication_v1']], 'cookie_banner_report_site': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'cookie_banner_report_site_v1']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'crash_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'creditcards_sync_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_derived', 'events_stream_v1']], 'first_session': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'first_session_v1']], 'fog_validation': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'fog_validation_v1']], 'font_list': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'font_list_v1']], 'fx_suggest': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'fx_suggest_v1']], 'history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'history_sync_v1']], 'installation': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'installation_v1']], 'logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'logins_sync_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'metrics_v1']], 'migration': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'migration_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'pageload_v1']], 'spoc': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'spoc_v1']], 'startup_timeline': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'startup_timeline_v1']], 'sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'sync_v1']], 'tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'tabs_sync_v1']], 'topsites_impression': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'topsites_impression_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'user_characteristics_v1']]}, 'org_mozilla_firefox_vpn': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_derived', 'baseline_clients_last_seen_v1']], 'daemonsession': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_stable', 'daemonsession_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_derived', 'events_stream_v1']], 'main': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_stable', 'main_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_stable', 'metrics_v1']], 'vpnsession': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_stable', 'vpnsession_v1']]}, 'org_mozilla_firefoxreality': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality_derived', 'events_stream_v1']], 'launch': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality_stable', 'launch_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_firefoxreality_stable', 'metrics_v1']]}, 'org_mozilla_focus': {'activation': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'activation_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_focus_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus_derived', 'baseline_clients_last_seen_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'broken_site_report_v1']], 'cookie_banner_report_site': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'cookie_banner_report_site_v1']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'crash_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_focus_derived', 'events_stream_v1']], 'fog_validation': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'fog_validation_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'metrics_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'pageload_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'user_characteristics_v1']]}, 'org_mozilla_focus_beta': {'activation': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'activation_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_derived', 'baseline_clients_last_seen_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'broken_site_report_v1']], 'cookie_banner_report_site': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'cookie_banner_report_site_v1']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'crash_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_derived', 'events_stream_v1']], 'fog_validation': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'fog_validation_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'metrics_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'pageload_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'user_characteristics_v1']]}, 'org_mozilla_focus_nightly': {'activation': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'activation_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_derived', 'baseline_clients_last_seen_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'broken_site_report_v1']], 'cookie_banner_report_site': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'cookie_banner_report_site_v1']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'crash_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_derived', 'events_stream_v1']], 'fog_validation': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'fog_validation_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'metrics_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'pageload_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'user_characteristics_v1']]}, 'org_mozilla_ios_fennec': {'addresses_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'addresses_sync_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_derived', 'baseline_clients_last_seen_v1']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'bookmarks_sync_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'creditcards_sync_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_derived', 'events_stream_v1']], 'first_session': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'first_session_v1']], 'fx_suggest': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'fx_suggest_v1']], 'history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'history_sync_v1']], 'logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'logins_sync_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'metrics_v1']], 'sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'sync_v1']], 'tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'tabs_sync_v1']], 'temp_baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'temp_baseline_v1']], 'temp_bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'temp_bookmarks_sync_v1']], 'temp_clients_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'temp_clients_sync_v1']], 'temp_credit_cards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'temp_credit_cards_sync_v1']], 'temp_history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'temp_history_sync_v1']], 'temp_logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'temp_logins_sync_v1']], 'temp_rust_tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'temp_rust_tabs_sync_v1']], 'temp_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'temp_sync_v1']], 'temp_tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'temp_tabs_sync_v1']], 'topsites_impression': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'topsites_impression_v1']]}, 'org_mozilla_ios_firefox': {'addresses_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'addresses_sync_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_derived', 'baseline_clients_last_seen_v1']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'bookmarks_sync_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'creditcards_sync_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_derived', 'events_stream_v1']], 'first_session': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'first_session_v1']], 'fx_suggest': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'fx_suggest_v1']], 'history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'history_sync_v1']], 'logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'logins_sync_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'metrics_v1']], 'review_checker_clients': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_derived', 'review_checker_clients_v1']], 'review_checker_events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_derived', 'review_checker_events_v1']], 'sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'sync_v1']], 'tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'tabs_sync_v1']], 'temp_baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'temp_baseline_v1']], 'temp_bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'temp_bookmarks_sync_v1']], 'temp_clients_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'temp_clients_sync_v1']], 'temp_credit_cards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'temp_credit_cards_sync_v1']], 'temp_history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'temp_history_sync_v1']], 'temp_logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'temp_logins_sync_v1']], 'temp_rust_tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'temp_rust_tabs_sync_v1']], 'temp_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'temp_sync_v1']], 'temp_tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'temp_tabs_sync_v1']], 'topsites_impression': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'topsites_impression_v1']]}, 'org_mozilla_ios_firefoxbeta': {'addresses_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'addresses_sync_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_derived', 'baseline_clients_last_seen_v1']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'bookmarks_sync_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'creditcards_sync_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_derived', 'events_stream_v1']], 'first_session': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'first_session_v1']], 'fx_suggest': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'fx_suggest_v1']], 'history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'history_sync_v1']], 'logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'logins_sync_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'metrics_v1']], 'sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'sync_v1']], 'tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'tabs_sync_v1']], 'temp_baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'temp_baseline_v1']], 'temp_bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'temp_bookmarks_sync_v1']], 'temp_clients_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'temp_clients_sync_v1']], 'temp_credit_cards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'temp_credit_cards_sync_v1']], 'temp_history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'temp_history_sync_v1']], 'temp_logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'temp_logins_sync_v1']], 'temp_rust_tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'temp_rust_tabs_sync_v1']], 'temp_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'temp_sync_v1']], 'temp_tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'temp_tabs_sync_v1']], 'topsites_impression': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'topsites_impression_v1']]}, 'org_mozilla_ios_firefoxvpn': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_derived', 'baseline_clients_last_seen_v1']], 'daemonsession': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_stable', 'daemonsession_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_derived', 'events_stream_v1']], 'main': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_stable', 'main_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_stable', 'metrics_v1']], 'vpnsession': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_stable', 'vpnsession_v1']]}, 'org_mozilla_ios_firefoxvpn_network_extension': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_derived', 'baseline_clients_last_seen_v1']], 'daemonsession': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_stable', 'daemonsession_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_derived', 'events_stream_v1']], 'main': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_stable', 'main_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_stable', 'metrics_v1']], 'vpnsession': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_stable', 'vpnsession_v1']]}, 'org_mozilla_ios_focus': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_derived', 'events_stream_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_stable', 'metrics_v1']]}, 'org_mozilla_ios_klar': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_derived', 'events_stream_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_stable', 'metrics_v1']]}, 'org_mozilla_ios_lockbox': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox_derived', 'events_stream_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox_stable', 'metrics_v1']]}, 'org_mozilla_ios_tiktok_reporter': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_stable', 'baseline_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_stable', 'deletion_request_v1']], 'download_data': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_stable', 'download_data_v1']], 'email': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_stable', 'email_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_stable', 'events_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_stable', 'metrics_v1']], 'screen_recording': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_stable', 'screen_recording_v1']], 'tiktok_report': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_stable', 'tiktok_report_v1']]}, 'org_mozilla_ios_tiktok_reporter_tiktok_reportershare': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_tiktok_reportershare_stable', 'baseline_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_tiktok_reportershare_stable', 'deletion_request_v1']], 'download_data': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_tiktok_reportershare_stable', 'download_data_v1']], 'email': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_tiktok_reportershare_stable', 'email_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_tiktok_reportershare_stable', 'events_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_tiktok_reportershare_stable', 'metrics_v1']], 'screen_recording': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_tiktok_reportershare_stable', 'screen_recording_v1']], 'tiktok_report': [['moz-fx-data-shared-prod', 'org_mozilla_ios_tiktok_reporter_tiktok_reportershare_stable', 'tiktok_report_v1']]}, 'org_mozilla_klar': {'activation': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'activation_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_klar_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_klar_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_klar_derived', 'baseline_clients_last_seen_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'broken_site_report_v1']], 'cookie_banner_report_site': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'cookie_banner_report_site_v1']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'crash_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_klar_derived', 'events_stream_v1']], 'fog_validation': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'fog_validation_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'metrics_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'pageload_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'user_characteristics_v1']]}, 'org_mozilla_mozregression': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression_derived', 'events_stream_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression_stable', 'metrics_v1']], 'mozregression_aggregates': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression_derived', 'mozregression_aggregates_v1']], 'usage': [['moz-fx-data-shared-prod', 'org_mozilla_mozregression_stable', 'usage_v1']]}, 'org_mozilla_reference_browser': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser_derived', 'baseline_clients_last_seen_v1']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser_stable', 'crash_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser_derived', 'events_stream_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser_stable', 'metrics_v1']]}, 'org_mozilla_social_nightly': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_social_nightly_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_social_nightly_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_social_nightly_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_social_nightly_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_social_nightly_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_social_nightly_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_social_nightly_derived', 'events_stream_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_social_nightly_stable', 'metrics_v1']]}, 'org_mozilla_tiktokreporter': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_tiktokreporter_stable', 'baseline_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_tiktokreporter_stable', 'deletion_request_v1']], 'download_data': [['moz-fx-data-shared-prod', 'org_mozilla_tiktokreporter_stable', 'download_data_v1']], 'email': [['moz-fx-data-shared-prod', 'org_mozilla_tiktokreporter_stable', 'email_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_tiktokreporter_stable', 'events_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_tiktokreporter_stable', 'metrics_v1']], 'screen_recording': [['moz-fx-data-shared-prod', 'org_mozilla_tiktokreporter_stable', 'screen_recording_v1']], 'tiktok_report': [['moz-fx-data-shared-prod', 'org_mozilla_tiktokreporter_stable', 'tiktok_report_v1']]}, 'org_mozilla_tv_firefox': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox_derived', 'baseline_clients_last_seen_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox_derived', 'events_stream_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox_stable', 'metrics_v1']]}, 'org_mozilla_vrbrowser': {'addresses_sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_stable', 'addresses_sync_v1']], 'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_derived', 'baseline_clients_last_seen_v1']], 'bookmarks_sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_stable', 'bookmarks_sync_v1']], 'creditcards_sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_stable', 'creditcards_sync_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_derived', 'events_stream_v1']], 'history_sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_stable', 'history_sync_v1']], 'logins_sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_stable', 'logins_sync_v1']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_stable', 'metrics_v1']], 'session_end': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_stable', 'session_end_v1']], 'sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_stable', 'sync_v1']], 'tabs_sync': [['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser_stable', 'tabs_sync_v1']]}, 'pine': {'baseline': [['moz-fx-data-shared-prod', 'pine_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'pine_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'pine_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'pine_derived', 'baseline_clients_last_seen_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'pine_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'pine_stable', 'broken_site_report_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'pine_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'pine_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'pine_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'pine', 'events']], 'fog_validation': [['moz-fx-data-shared-prod', 'pine_stable', 'fog_validation_v1']], 'messaging_system': [['moz-fx-data-shared-prod', 'pine_stable', 'messaging_system_v1']], 'metrics': [['moz-fx-data-shared-prod', 'pine_stable', 'metrics_v1']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'pine_derived', 'metrics_clients_daily_v1']], 'new_metric_capture_emulation': [['moz-fx-data-shared-prod', 'pine_stable', 'new_metric_capture_emulation_v1']], 'newtab': [['moz-fx-data-shared-prod', 'pine_stable', 'newtab_v1']], 'pageload': [['moz-fx-data-shared-prod', 'pine_stable', 'pageload_v1']], 'pseudo_main': [['moz-fx-data-shared-prod', 'pine_stable', 'pseudo_main_v1']], 'spoc': [['moz-fx-data-shared-prod', 'pine_stable', 'spoc_v1']], 'top_sites': [['moz-fx-data-shared-prod', 'pine_stable', 'top_sites_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'pine_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'pine_stable', 'user_characteristics_v1']]}, 'pocket': {'events': [['moz-fx-data-shared-prod', 'pocket_derived', 'events_v1']], 'fire_tv_events': [['moz-fx-data-shared-prod', 'pocket_stable', 'fire_tv_events_v1']], 'pocket_reach_mau': [['pocket-airflow-prod', 'data_from_pocket', 'pocket_reach_mau']], 'rolling_monthly_active_user_counts': [['moz-fx-data-shared-prod', 'pocket_derived', 'rolling_monthly_active_user_counts_v1']], 'spoc_tile_ids': [['moz-fx-data-shared-prod', 'pocket_derived', 'spoc_tile_ids_v1']], 'twice_weekly_active_user_counts': [['moz-fx-data-shared-prod', 'pocket_derived', 'twice_weekly_active_user_counts_v1']]}, 'reference': {'macroeconomic_indices': [['moz-fx-data-shared-prod', 'reference_derived', 'macroeconomic_indices_v1']]}, 'reference_browser': {'baseline': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser', 'baseline_clients_last_seen']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'reference_browser_derived', 'clients_last_seen_joined_v1']], 'crash': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser', 'crash']], 'deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser', 'deletion_request']], 'events': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'org_mozilla_reference_browser', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'reference_browser_derived', 'metrics_clients_daily_v1']], 'metrics_clients_last_seen': [['moz-fx-data-shared-prod', 'reference_browser_derived', 'metrics_clients_last_seen_v1']]}, 'regrets_reporter': {'regrets_reporter_summary': [['moz-fx-data-shared-prod', 'regrets_reporter_derived', 'regrets_reporter_summary_v1']], 'regrets_reporter_update': [['moz-fx-data-shared-prod', 'regrets_reporter_stable', 'regrets_reporter_update_v1']]}, 'regrets_reporter_ucs': {'deletion_request': [['moz-fx-data-shared-prod', 'regrets_reporter_ucs_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'regrets_reporter_ucs_stable', 'events_v1']], 'main_events': [['moz-fx-data-shared-prod', 'regrets_reporter_ucs_stable', 'main_events_v1']], 'regret_details': [['moz-fx-data-shared-prod', 'regrets_reporter_ucs_stable', 'regret_details_v1']], 'video_data': [['moz-fx-data-shared-prod', 'regrets_reporter_ucs_stable', 'video_data_v1']], 'video_index': [['moz-fx-data-shared-prod', 'regrets_reporter_ucs_stable', 'video_index_v1']]}, 'relay': {'active_subscription_ids': [['moz-fx-data-shared-prod', 'relay_derived', 'active_subscription_ids_live'], ['moz-fx-data-shared-prod', 'relay_derived', 'active_subscription_ids_v1']], 'active_subscriptions': [['moz-fx-data-shared-prod', 'relay_derived', 'active_subscriptions_live'], ['moz-fx-data-shared-prod', 'relay_derived', 'active_subscriptions_v1']], 'subscription_events': [['moz-fx-data-shared-prod', 'relay_derived', 'subscription_events_live'], ['moz-fx-data-shared-prod', 'relay_derived', 'subscription_events_v1']], 'subscriptions': [['moz-fx-data-shared-prod', 'relay_derived', 'subscriptions_v1']]}, 'relay_backend': {'events': [['moz-fx-data-shared-prod', 'relay_backend_stable', 'events_v1']]}, 'relay_derived': {'active_subscription_ids_live': [['moz-fx-data-shared-prod', 'relay', 'subscriptions']], 'active_subscriptions_live': [['moz-fx-data-shared-prod', 'relay', 'active_subscription_ids'], ['moz-fx-data-shared-prod', 'relay', 'subscriptions']], 'subscription_events_live': [['moz-fx-data-shared-prod', 'relay', 'active_subscription_ids'], ['moz-fx-data-shared-prod', 'relay', 'subscriptions']]}, 'search': {'acer_cohort': [['moz-fx-data-shared-prod', 'search_derived', 'acer_cohort_v1']], 'desktop_mobile_search_clients_monthly': [['moz-fx-data-shared-prod', 'search_derived', 'desktop_mobile_search_clients_monthly_v1']], 'desktop_search_aggregates_by_userstate': [['moz-fx-data-shared-prod', 'search_derived', 'desktop_search_aggregates_by_userstate_v1']], 'desktop_search_aggregates_for_searchreport': [['moz-fx-data-shared-prod', 'search_derived', 'desktop_search_aggregates_for_searchreport_v1']], 'firefox_products_search_clients_engines_sources_daily': [['moz-fx-data-shared-prod', 'search', 'mobile_search_clients_engines_sources_daily'], ['moz-fx-data-shared-prod', 'search', 'search_clients_engines_sources_daily']], 'mobile_search_aggregates': [['moz-fx-data-shared-prod', 'search_derived', 'mobile_search_aggregates_v1']], 'mobile_search_aggregates_for_searchreport': [['moz-fx-data-shared-prod', 'search_derived', 'mobile_search_aggregates_for_searchreport_v1']], 'mobile_search_clients_engines_sources_daily': [['moz-fx-data-shared-prod', 'search_derived', 'mobile_search_clients_daily_v1']], 'mobile_search_clients_last_seen': [['moz-fx-data-shared-prod', 'search_derived', 'mobile_search_clients_last_seen_v1']], 'search_aggregates': [['moz-fx-data-shared-prod', 'search_derived', 'search_aggregates_v8']], 'search_clients_engines_sources_daily': [['moz-fx-data-shared-prod', 'search_derived', 'search_clients_daily_v8']], 'search_clients_last_seen': [['moz-fx-data-shared-prod', 'search', 'search_clients_last_seen_v1']], 'search_clients_last_seen_v1': [['moz-fx-data-shared-prod', 'search_derived', 'search_clients_last_seen_v1']], 'search_clients_last_seen_v2': [['moz-fx-data-shared-prod', 'search_derived', 'search_clients_last_seen_v2']], 'search_dau_aggregates': [['moz-fx-data-shared-prod', 'search_derived', 'search_dau_aggregates_v1']], 'search_revenue_levers_daily': [['moz-fx-data-shared-prod', 'search_derived', 'search_revenue_levers_daily_v1']], 'search_rfm': [['moz-fx-data-shared-prod', 'search_derived', 'search_clients_last_seen_v1']]}, 'search_terms': {'aggregated_search_terms_daily': [['moz-fx-data-shared-prod', 'search_terms_derived', 'aggregated_search_terms_daily_v1']], 'sanitization_job_data_validation_metrics': [['moz-fx-data-shared-prod', 'search_terms', 'sanitization_job_languages'], ['moz-fx-data-shared-prod', 'search_terms_derived', 'sanitization_job_metadata_v2']], 'sanitization_job_languages': [['moz-fx-data-shared-prod', 'search_terms_derived', 'sanitization_job_metadata_v2']], 'search_terms_daily': [['moz-fx-data-shared-prod', 'search_terms_derived', 'search_terms_daily_v1']]}, 'stripe': {'itemized_payout_reconciliation': [['moz-fx-data-shared-prod', 'stripe', 'itemized_tax_transactions'], ['moz-fx-data-shared-prod', 'stripe_external', 'card_v1'], ['moz-fx-data-shared-prod', 'stripe_external', 'charge_v1'], ['moz-fx-data-shared-prod', 'stripe_external', 'customer_v1'], ['moz-fx-data-shared-prod', 'stripe_external', 'itemized_payout_reconciliation_v5'], ['moz-fx-data-shared-prod', 'subscription_platform', 'stripe_subscriptions']], 'itemized_tax_transactions': [['moz-fx-data-shared-prod', 'stripe_external', 'itemized_tax_transactions_v1']]}, 'stub_attribution_service': {'dl_token_ga_attribution_lookup': [['moz-fx-data-shared-prod', 'stub_attribution_service_derived', 'dl_token_ga_attribution_lookup_v1']]}, 'subscription_platform': {'active_subscriptions': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'active_subscriptions_v1']], 'apple_subscriptions': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'apple_subscriptions_v1']], 'daily_active_logical_subscriptions': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'daily_active_logical_subscriptions_v1']], 'logical_subscription_events': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'logical_subscription_events_v1']], 'logical_subscriptions': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'logical_subscriptions_history_v1']], 'monthly_active_logical_subscriptions': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'monthly_active_logical_subscriptions_v1']], 'nonprod_apple_subscriptions': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'nonprod_apple_subscriptions_v1']], 'nonprod_stripe_subscriptions': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'nonprod_stripe_subscriptions_v1']], 'nonprod_stripe_subscriptions_history': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'nonprod_stripe_subscriptions_history_v1']], 'stripe_plans': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'stripe_plans_v1']], 'stripe_products': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'stripe_products_v1']], 'stripe_subscriptions': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'stripe_subscriptions_v1']], 'stripe_subscriptions_history': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'stripe_subscriptions_history_v1']]}, 'sumo_ga': {'ga3_events': [['moz-fx-data-shared-prod', 'sumo_ga_derived', 'ga3_events_v1']], 'ga4_events': [['moz-fx-data-shared-prod', 'sumo_ga_derived', 'ga4_events_v1']]}, 'telemetry': {'accessibility_clients': [['moz-fx-data-shared-prod', 'telemetry_derived', 'accessibility_clients_v1']], 'active_profiles': [['moz-fx-data-shared-prod', 'telemetry_derived', 'active_profiles_v1']], 'active_users': [['moz-fx-data-shared-prod', 'telemetry', 'desktop_active_users'], ['moz-fx-data-shared-prod', 'telemetry', 'mobile_active_users']], 'active_users_aggregates': [['moz-fx-data-shared-prod', 'firefox_desktop', 'active_users_aggregates'], ['moz-fx-data-shared-prod', 'telemetry', 'active_users_aggregates_mobile']], 'active_users_aggregates_attribution': [['moz-fx-data-shared-prod', 'telemetry_derived', 'active_users_aggregates_attribution_v1']], 'active_users_aggregates_device': [['moz-fx-data-shared-prod', 'telemetry_derived', 'active_users_aggregates_device_v1']], 'active_users_aggregates_mobile': [['moz-fx-data-shared-prod', 'fenix', 'active_users_aggregates'], ['moz-fx-data-shared-prod', 'firefox_ios', 'active_users_aggregates'], ['moz-fx-data-shared-prod', 'focus_android', 'active_users_aggregates'], ['moz-fx-data-shared-prod', 'focus_ios', 'active_users_aggregates'], ['moz-fx-data-shared-prod', 'klar_android', 'active_users_aggregates'], ['moz-fx-data-shared-prod', 'klar_ios', 'active_users_aggregates']], 'addon_aggregates': [['moz-fx-data-shared-prod', 'telemetry', 'addon_aggregates_v2']], 'addon_aggregates_v2': [['moz-fx-data-shared-prod', 'telemetry_derived', 'addon_aggregates_v2']], 'addon_install_blocked': [['moz-fx-data-shared-prod', 'telemetry_stable', 'addon_install_blocked_v4']], 'addon_names': [['moz-fx-data-shared-prod', 'telemetry_derived', 'addon_names_v1']], 'addons': [['moz-fx-data-shared-prod', 'telemetry_derived', 'addons_v2']], 'addons_daily': [['moz-fx-data-shared-prod', 'telemetry_derived', 'addons_daily_v1']], 'addons_v2': [['moz-fx-data-shared-prod', 'telemetry_derived', 'addons_v2']], 'adm_engagements_daily': [['moz-fx-data-shared-prod', 'telemetry_derived', 'adm_engagements_daily_v1']], 'advancedtelemetry': [['moz-fx-data-shared-prod', 'telemetry_stable', 'advancedtelemetry_v4']], 'anonymous': [['moz-fx-data-shared-prod', 'telemetry_stable', 'anonymous_v4']], 'applications': [['moz-fx-data-shared-prod', 'telemetry_derived', 'applications_v1']], 'bhr': [['moz-fx-data-shared-prod', 'telemetry_stable', 'bhr_v4']], 'block_autoplay': [['moz-fx-data-shared-prod', 'telemetry_stable', 'block_autoplay_v4']], 'buildhub2': [['moz-fx-buildhub2-prod-4784', 'build_metadata', 'buildhub2']], 'certificate_checker': [['moz-fx-data-shared-prod', 'telemetry_stable', 'certificate_checker_v4']], 'client_probe_counts': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_histogram_probe_counts_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_scalar_probe_counts_v1']], 'client_probe_processes': [['moz-fx-data-shared-prod', 'telemetry_derived', 'client_probe_processes_v1']], 'clients_daily': [['moz-fx-data-shared-prod', 'telemetry', 'clients_daily_joined']], 'clients_daily_histogram_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_daily_histogram_aggregates_v1']], 'clients_daily_joined': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_daily_joined_v1']], 'clients_daily_scalar_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_daily_scalar_aggregates_v1']], 'clients_daily_v6': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_daily_joined_v1']], 'clients_first_seen': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_first_seen_v3']], 'clients_first_seen_28_days_later': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_first_seen_28_days_later_v1']], 'clients_histogram_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_histogram_aggregates_v1']], 'clients_last_seen': [['moz-fx-data-shared-prod', 'telemetry', 'clients_last_seen_v2']], 'clients_last_seen_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_last_seen_v1']], 'clients_last_seen_v2': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_last_seen_v2']], 'clients_probe_processes': [['moz-fx-data-shared-prod', 'telemetry_derived', 'client_probe_counts_v1']], 'clients_scalar_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_scalar_aggregates_v1']], 'cohort_daily_statistics': [['moz-fx-data-shared-prod', 'telemetry_derived', 'cohort_daily_statistics_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'desktop_cohort_daily_retention_v1']], 'core': [['moz-fx-data-shared-prod', 'telemetry_stable', 'core_v10'], ['moz-fx-data-shared-prod', 'telemetry_stable', 'core_v2'], ['moz-fx-data-shared-prod', 'telemetry_stable', 'core_v3'], ['moz-fx-data-shared-prod', 'telemetry_stable', 'core_v4'], ['moz-fx-data-shared-prod', 'telemetry_stable', 'core_v5'], ['moz-fx-data-shared-prod', 'telemetry_stable', 'core_v6'], ['moz-fx-data-shared-prod', 'telemetry_stable', 'core_v7'], ['moz-fx-data-shared-prod', 'telemetry_stable', 'core_v8'], ['moz-fx-data-shared-prod', 'telemetry_stable', 'core_v9']], 'core_clients_daily': [['moz-fx-data-shared-prod', 'telemetry', 'core_clients_daily_v1']], 'core_clients_daily_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'core_clients_daily_v1']], 'core_clients_last_seen': [['moz-fx-data-shared-prod', 'telemetry', 'core_clients_last_seen_v1']], 'core_clients_last_seen_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'core_clients_last_seen_v1']], 'crash': [['moz-fx-data-shared-prod', 'telemetry_stable', 'crash_v4']], 'crash_aggregates': [['moz-fx-data-shared-prod', 'telemetry', 'crash_aggregates_v1']], 'crash_aggregates_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'crash_aggregates_v1']], 'crash_summary': [['moz-fx-data-shared-prod', 'telemetry', 'crash_summary_v2']], 'crash_summary_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'crash_summary_v1']], 'crash_summary_v2': [['moz-fx-data-shared-prod', 'telemetry_derived', 'crash_summary_v2']], 'crashes_daily': [['moz-fx-data-shared-prod', 'telemetry_derived', 'crashes_daily_v1']], 'deletion': [['moz-fx-data-shared-prod', 'telemetry_stable', 'deletion_v4']], 'deletion_request': [['moz-fx-data-shared-prod', 'telemetry_stable', 'deletion_request_v4']], 'deployment_checker': [['moz-fx-data-shared-prod', 'telemetry_stable', 'deployment_checker_v4']], 'desktop_acquisition_funnel': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_first_seen_28_days_later_v1']], 'desktop_active_users': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_last_seen_v2']], 'desktop_cohort_daily_retention': [['moz-fx-data-shared-prod', 'telemetry_derived', 'desktop_cohort_daily_retention_v1']], 'desktop_engagement': [['moz-fx-data-shared-prod', 'telemetry_derived', 'desktop_engagement_v1']], 'desktop_engagement_clients': [['moz-fx-data-shared-prod', 'telemetry_derived', 'desktop_engagement_clients_v1']], 'desktop_new_profiles': [['moz-fx-data-shared-prod', 'telemetry_derived', 'desktop_new_profiles_aggregates_v1']], 'desktop_new_profiles_clients': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_first_seen_v3']], 'desktop_retention': [['moz-fx-data-shared-prod', 'telemetry_derived', 'desktop_retention_v1']], 'desktop_retention_1_week': [['moz-fx-data-shared-prod', 'telemetry', 'clients_last_seen']], 'desktop_retention_clients': [['moz-fx-data-shared-prod', 'telemetry_derived', 'desktop_retention_clients_v1']], 'devtools_panel_usage': [['moz-fx-data-shared-prod', 'telemetry_derived', 'devtools_panel_usage_v1']], 'disable_sha1rollout': [['moz-fx-data-shared-prod', 'telemetry_stable', 'disable_sha1rollout_v4']], 'dnssec_study_v1': [['moz-fx-data-shared-prod', 'telemetry_stable', 'dnssec_study_v1_v4']], 'downgrade': [['moz-fx-data-shared-prod', 'telemetry_stable', 'downgrade_v4']], 'eng_workflow_build_parquet': [['moz-fx-data-shared-prod', 'telemetry', 'eng_workflow_build_parquet_v1']], 'eng_workflow_build_parquet_v1': [['moz-fx-data-shared-prod', 'eng_workflow', 'build']], 'eng_workflow_hgpush_parquet': [['moz-fx-data-shared-prod', 'telemetry_derived', 'eng_workflow_hgpush_parquet_v1']], 'eng_workflow_hgpush_parquet_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'eng_workflow_hgpush_parquet_v1']], 'event': [['moz-fx-data-shared-prod', 'telemetry_stable', 'event_v4']], 'event_types': [['moz-fx-data-shared-prod', 'telemetry_derived', 'event_types_v1']], 'events': [['moz-fx-data-shared-prod', 'telemetry', 'events_v1']], 'events_1pct': [['moz-fx-data-shared-prod', 'telemetry_derived', 'events_1pct_v1']], 'events_daily': [['moz-fx-data-shared-prod', 'telemetry_derived', 'events_daily_v1']], 'events_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'event_events_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'events_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'main_events_v1']], 'experiment_cumulative_ad_clicks': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_cumulative_ad_clicks_v1']], 'experiment_cumulative_search_count': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_cumulative_search_count_v1']], 'experiment_cumulative_search_with_ads_count': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_cumulative_search_with_ads_count_v1']], 'experiment_enrollment_cumulative_population_estimate': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_enrollment_cumulative_population_estimate_v1']], 'experiment_enrollment_daily_active_population': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_enrollment_daily_active_population_v1']], 'experiment_enrollment_other_events_overall': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_enrollment_other_events_overall_v1']], 'experiment_enrollment_overall': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_enrollment_overall_v1']], 'experiment_error_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_error_aggregates_v1']], 'experiment_error_aggregates_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_error_aggregates_v1']], 'experiment_unenrollment_overall': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_unenrollment_overall_v1']], 'experiments': [['moz-fx-data-shared-prod', 'telemetry', 'experiments_v1']], 'experiments_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiments_v0'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'experiments_v1']], 'feature_usage': [['moz-fx-data-shared-prod', 'telemetry_derived', 'feature_usage_v2']], 'fenix_and_firefox_use_counters': [['mozilla-public-data', 'fenix_derived', 'fenix_use_counters_v2'], ['mozilla-public-data', 'firefox_desktop_derived', 'firefox_desktop_use_counters_v2']], 'fenix_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'baseline_clients_last_seen']], 'fenix_events_v1': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'events_v1']], 'fennec_ios_events_v1': [['moz-fx-data-shared-prod', 'telemetry', 'mobile_event']], 'firefox_desktop_usage_2021': [['moz-fx-data-shared-prod', 'telemetry_derived', 'firefox_desktop_usage_v1']], 'firefox_nondesktop_day_2_7_activation': [['moz-fx-data-shared-prod', 'telemetry_derived', 'firefox_nondesktop_day_2_7_activation_v1']], 'first_shutdown': [['moz-fx-data-shared-prod', 'telemetry_stable', 'first_shutdown_v5']], 'first_shutdown_summary': [['moz-fx-data-shared-prod', 'telemetry_derived', 'first_shutdown_summary_v4']], 'first_shutdown_summary_v4': [['moz-fx-data-shared-prod', 'telemetry_derived', 'first_shutdown_summary_v4']], 'first_shutdown_use_counter': [['moz-fx-data-shared-prod', 'telemetry_stable', 'first_shutdown_use_counter_v4']], 'flash_shield_study': [['moz-fx-data-shared-prod', 'telemetry_stable', 'flash_shield_study_v4']], 'focus_event': [['moz-fx-data-shared-prod', 'telemetry_stable', 'focus_event_v1']], 'fog_decision_support_percentiles': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fog_decision_support_percentiles_v1']], 'frecency_update': [['moz-fx-data-shared-prod', 'telemetry_stable', 'frecency_update_v4']], 'ftu': [['moz-fx-data-shared-prod', 'telemetry_stable', 'ftu_v3']], 'health': [['moz-fx-data-shared-prod', 'telemetry_stable', 'health_v4']], 'heartbeat': [['moz-fx-data-shared-prod', 'telemetry_stable', 'heartbeat_v4']], 'install': [['moz-fx-data-shared-prod', 'firefox_installer', 'install']], 'installation': [['moz-fx-data-shared-prod', 'telemetry_stable', 'installation_v1']], 'latest_versions': [['moz-fx-data-shared-prod', 'telemetry_derived', 'latest_versions_v2']], 'lockwise_mobile_events': [['moz-fx-data-shared-prod', 'telemetry', 'lockwise_mobile_events_v1']], 'lockwise_mobile_events_v1': [['moz-fx-data-shared-prod', 'telemetry', 'telemetry_focus_event_parquet_v1'], ['moz-fx-data-shared-prod', 'telemetry', 'telemetry_mobile_event_parquet_v2']], 'main': [['moz-fx-data-shared-prod', 'telemetry_stable', 'main_v5']], 'main_1pct': [['moz-fx-data-shared-prod', 'telemetry_derived', 'main_remainder_1pct_v1']], 'main_nightly': [['moz-fx-data-shared-prod', 'telemetry_derived', 'main_nightly_v1']], 'main_remainder_1pct': [['moz-fx-data-shared-prod', 'telemetry_derived', 'main_remainder_1pct_v1']], 'main_summary': [['moz-fx-data-shared-prod', 'telemetry', 'main_summary_v4']], 'main_summary_v3': [['moz-fx-data-shared-prod', 'telemetry_derived', 'main_summary_v3']], 'main_summary_v4': [['moz-fx-data-shared-prod', 'telemetry_derived', 'main_summary_v4']], 'main_use_counter': [['moz-fx-data-shared-prod', 'telemetry_stable', 'main_use_counter_v4']], 'main_use_counter_1pct': [['moz-fx-data-shared-prod', 'telemetry_derived', 'main_use_counter_1pct_v1']], 'malware_addon_states': [['moz-fx-data-shared-prod', 'telemetry_stable', 'malware_addon_states_v4']], 'mobile_active_users': [['moz-fx-data-shared-prod', 'fenix', 'active_users'], ['moz-fx-data-shared-prod', 'firefox_ios', 'active_users'], ['moz-fx-data-shared-prod', 'focus_android', 'active_users'], ['moz-fx-data-shared-prod', 'focus_ios', 'active_users'], ['moz-fx-data-shared-prod', 'klar_android', 'active_users'], ['moz-fx-data-shared-prod', 'klar_ios', 'active_users']], 'mobile_engagement': [['moz-fx-data-shared-prod', 'fenix', 'engagement'], ['moz-fx-data-shared-prod', 'firefox_ios', 'engagement'], ['moz-fx-data-shared-prod', 'focus_android', 'engagement'], ['moz-fx-data-shared-prod', 'focus_ios', 'engagement'], ['moz-fx-data-shared-prod', 'klar_android', 'engagement'], ['moz-fx-data-shared-prod', 'klar_ios', 'engagement']], 'mobile_engagement_clients': [['moz-fx-data-shared-prod', 'fenix', 'engagement_clients'], ['moz-fx-data-shared-prod', 'firefox_ios', 'engagement_clients'], ['moz-fx-data-shared-prod', 'focus_android', 'engagement_clients'], ['moz-fx-data-shared-prod', 'focus_ios', 'engagement_clients'], ['moz-fx-data-shared-prod', 'klar_android', 'engagement_clients'], ['moz-fx-data-shared-prod', 'klar_ios', 'engagement_clients']], 'mobile_event': [['moz-fx-data-shared-prod', 'telemetry_stable', 'mobile_event_v1']], 'mobile_metrics': [['moz-fx-data-shared-prod', 'telemetry_stable', 'mobile_metrics_v1']], 'mobile_new_profile_clients': [['moz-fx-data-shared-prod', 'fenix', 'new_profile_clients'], ['moz-fx-data-shared-prod', 'firefox_ios', 'new_profile_clients'], ['moz-fx-data-shared-prod', 'focus_android', 'new_profile_clients'], ['moz-fx-data-shared-prod', 'focus_ios', 'new_profile_clients'], ['moz-fx-data-shared-prod', 'klar_android', 'new_profile_clients'], ['moz-fx-data-shared-prod', 'klar_ios', 'new_profile_clients']], 'mobile_new_profiles': [['moz-fx-data-shared-prod', 'fenix', 'new_profiles'], ['moz-fx-data-shared-prod', 'firefox_ios', 'new_profiles'], ['moz-fx-data-shared-prod', 'focus_android', 'new_profiles'], ['moz-fx-data-shared-prod', 'focus_ios', 'new_profiles'], ['moz-fx-data-shared-prod', 'klar_android', 'new_profiles'], ['moz-fx-data-shared-prod', 'klar_ios', 'new_profiles']], 'mobile_retention': [['moz-fx-data-shared-prod', 'fenix', 'retention'], ['moz-fx-data-shared-prod', 'firefox_ios', 'retention'], ['moz-fx-data-shared-prod', 'focus_android', 'retention'], ['moz-fx-data-shared-prod', 'focus_ios', 'retention'], ['moz-fx-data-shared-prod', 'klar_android', 'retention'], ['moz-fx-data-shared-prod', 'klar_ios', 'retention']], 'mobile_retention_clients': [['moz-fx-data-shared-prod', 'fenix', 'retention_clients'], ['moz-fx-data-shared-prod', 'firefox_ios', 'retention_clients'], ['moz-fx-data-shared-prod', 'focus_android', 'retention_clients'], ['moz-fx-data-shared-prod', 'focus_ios', 'retention_clients'], ['moz-fx-data-shared-prod', 'klar_android', 'retention_clients'], ['moz-fx-data-shared-prod', 'klar_ios', 'retention_clients']], 'mobile_usage_2021': [['moz-fx-data-shared-prod', 'static', 'country_codes_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'mobile_usage_v1']], 'modules': [['moz-fx-data-shared-prod', 'telemetry_stable', 'modules_v4']], 'new_profile': [['moz-fx-data-shared-prod', 'telemetry_stable', 'new_profile_v4']], 'newtab_clients_daily': [['moz-fx-data-shared-prod', 'telemetry_derived', 'newtab_clients_daily_v1']], 'newtab_clients_daily_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'newtab_clients_daily_aggregates_v1']], 'newtab_interactions': [['moz-fx-data-shared-prod', 'telemetry_derived', 'newtab_interactions_v1']], 'newtab_visits': [['moz-fx-data-shared-prod', 'telemetry_derived', 'newtab_visits_v1']], 'nondesktop_clients_last_seen': [['moz-fx-data-shared-prod', 'telemetry', 'nondesktop_clients_last_seen_v1']], 'nondesktop_clients_last_seen_v1': [['moz-fx-data-shared-prod', 'mozilla_lockbox', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_focus', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_lockbox', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_klar', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_reference_browser', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_tv_firefox', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_vrbrowser', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'telemetry', 'core_clients_last_seen'], ['moz-fx-data-shared-prod', 'telemetry', 'fenix_clients_last_seen']], 'normandy_login_study': [['moz-fx-data-shared-prod', 'telemetry_stable', 'normandy_login_study_v4']], 'optout': [['moz-fx-data-shared-prod', 'telemetry_stable', 'optout_v4']], 'outofdate_notifications_system_addon': [['moz-fx-data-shared-prod', 'telemetry_stable', 'outofdate_notifications_system_addon_v4']], 'pre_account': [['moz-fx-data-shared-prod', 'telemetry_stable', 'pre_account_v4']], 'prio': [['moz-fx-data-shared-prod', 'telemetry_stable', 'prio_v4']], 'regrets_reporter_update': [['moz-fx-data-shared-prod', 'telemetry_stable', 'regrets_reporter_update_v4']], 'releases': [['moz-fx-data-shared-prod', 'telemetry_derived', 'releases_v1']], 'releases_latest': [['moz-fx-data-shared-prod', 'telemetry', 'releases']], 'rocket_android_events_v1': [['moz-fx-data-shared-prod', 'telemetry', 'focus_event']], 'rolling_cohorts': [['moz-fx-data-shared-prod', 'telemetry_derived', 'rolling_cohorts_v1']], 'saved_session': [['moz-fx-data-shared-prod', 'telemetry_stable', 'saved_session_v5']], 'saved_session_use_counter': [['moz-fx-data-shared-prod', 'telemetry_stable', 'saved_session_use_counter_v4']], 'searchvol': [['moz-fx-data-shared-prod', 'telemetry_stable', 'searchvol_v4']], 'searchvolextra': [['moz-fx-data-shared-prod', 'telemetry_stable', 'searchvolextra_v4']], 'segmented_dau': [['moz-fx-data-shared-prod', 'static', 'country_codes_v1'], ['moz-fx-data-shared-prod', 'telemetry', 'active_users_aggregates']], 'segmented_dau_28_day_rolling': [['moz-fx-data-shared-prod', 'telemetry_derived', 'segmented_dau_28_day_rolling_v1']], 'shield_icq_v1': [['moz-fx-data-shared-prod', 'telemetry_stable', 'shield_icq_v1_v4']], 'shield_study': [['moz-fx-data-shared-prod', 'telemetry_stable', 'shield_study_v4']], 'shield_study_addon': [['moz-fx-data-shared-prod', 'telemetry_stable', 'shield_study_addon_v4']], 'shield_study_error': [['moz-fx-data-shared-prod', 'telemetry_stable', 'shield_study_error_v4']], 'simpleprophet_forecasts': [['moz-fx-data-shared-prod', 'telemetry_derived', 'simpleprophet_forecasts_desktop_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'simpleprophet_forecasts_fxa_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'simpleprophet_forecasts_mobile_v1']], 'smoot_usage_day_0': [['moz-fx-data-shared-prod', 'telemetry_derived', 'smoot_usage_desktop_v2'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'smoot_usage_fxa_v2'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'smoot_usage_new_profiles_v2'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'smoot_usage_nondesktop_v2']], 'smoot_usage_day_13': [['moz-fx-data-shared-prod', 'telemetry_derived', 'smoot_usage_desktop_v2'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'smoot_usage_fxa_v2'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'smoot_usage_nondesktop_v2']], 'socorro_crash': [['moz-fx-data-shared-prod', 'telemetry', 'socorro_crash_v2']], 'socorro_crash_v2': [['moz-fx-data-shared-prod', 'telemetry_derived', 'socorro_crash_v2']], 'sponsored_tiles_ad_request_fill': [['moz-fx-data-shared-prod', 'telemetry_derived', 'contile_filter_adm_empty_response'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'contile_tiles_adm_request'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'contile_tiles_adm_response_tiles_count']], 'sponsored_tiles_clients_daily': [['moz-fx-data-shared-prod', 'telemetry_derived', 'sponsored_tiles_clients_daily_v1']], 'ssl_ratios': [['moz-fx-data-shared-prod', 'telemetry', 'ssl_ratios_v1']], 'ssl_ratios_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'ssl_ratios_v1']], 'suggest_clients_daily': [['moz-fx-data-shared-prod', 'telemetry_derived', 'suggest_clients_daily_v1']], 'sync': [['moz-fx-data-shared-prod', 'telemetry_stable', 'sync_v4']], 'system_addon_deployment_diagnostics': [['moz-fx-data-shared-prod', 'telemetry_stable', 'system_addon_deployment_diagnostics_v4']], 'telemetry_anonymous_parquet': [['moz-fx-data-shared-prod', 'telemetry_derived', 'telemetry_anonymous_parquet_v1']], 'telemetry_anonymous_parquet_v1': [['moz-fx-data-shared-prod', 'telemetry', 'anonymous']], 'telemetry_core_parquet': [['moz-fx-data-shared-prod', 'telemetry', 'telemetry_core_parquet_v3']], 'telemetry_core_parquet_v3': [['moz-fx-data-shared-prod', 'telemetry', 'core']], 'telemetry_downgrade_parquet': [['moz-fx-data-shared-prod', 'telemetry_derived', 'telemetry_downgrade_parquet_v1']], 'telemetry_downgrade_parquet_v1': [['moz-fx-data-shared-prod', 'telemetry', 'downgrade']], 'telemetry_focus_event_parquet': [['moz-fx-data-shared-prod', 'telemetry', 'telemetry_focus_event_parquet_v1']], 'telemetry_focus_event_parquet_v1': [['moz-fx-data-shared-prod', 'telemetry', 'focus_event']], 'telemetry_heartbeat_parquet': [['moz-fx-data-shared-prod', 'telemetry_derived', 'telemetry_heartbeat_parquet_v1']], 'telemetry_heartbeat_parquet_v1': [['moz-fx-data-shared-prod', 'telemetry', 'heartbeat']], 'telemetry_ip_privacy': [['moz-fx-data-shared-prod', 'telemetry_derived', 'telemetry_ip_privacy_v2']], 'telemetry_ip_privacy_parquet': [['moz-fx-data-shared-prod', 'telemetry_derived', 'telemetry_ip_privacy_parquet_v1']], 'telemetry_ip_privacy_parquet_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'telemetry_ip_privacy_parquet_v1']], 'telemetry_mobile_event_parquet': [['moz-fx-data-shared-prod', 'telemetry', 'telemetry_mobile_event_parquet_v2']], 'telemetry_mobile_event_parquet_v2': [['moz-fx-data-shared-prod', 'telemetry', 'mobile_event']], 'telemetry_new_profile_parquet': [['moz-fx-data-shared-prod', 'telemetry', 'telemetry_new_profile_parquet_v2']], 'telemetry_new_profile_parquet_v2': [['moz-fx-data-shared-prod', 'telemetry_derived', 'telemetry_new_profile_parquet_v2']], 'telemetry_shield_study_parquet': [['moz-fx-data-shared-prod', 'telemetry', 'telemetry_shield_study_parquet_v1']], 'telemetry_shield_study_parquet_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'telemetry_shield_study_parquet_v1']], 'testpilot': [['moz-fx-data-shared-prod', 'telemetry_stable', 'testpilot_v4']], 'testpilottest': [['moz-fx-data-shared-prod', 'telemetry_stable', 'testpilottest_v4']], 'third_party_modules': [['moz-fx-data-shared-prod', 'telemetry_stable', 'third_party_modules_v4']], 'tls13_middlebox_alt_server_hello_1': [['moz-fx-data-shared-prod', 'telemetry_stable', 'tls13_middlebox_alt_server_hello_1_v4']], 'tls13_middlebox_beta': [['moz-fx-data-shared-prod', 'telemetry_stable', 'tls13_middlebox_beta_v4']], 'tls13_middlebox_draft22': [['moz-fx-data-shared-prod', 'telemetry_stable', 'tls13_middlebox_draft22_v4']], 'tls13_middlebox_ghack': [['moz-fx-data-shared-prod', 'telemetry_stable', 'tls13_middlebox_ghack_v4']], 'tls13_middlebox_repetition': [['moz-fx-data-shared-prod', 'telemetry_stable', 'tls13_middlebox_repetition_v4']], 'tls13_middlebox_testing': [['moz-fx-data-shared-prod', 'telemetry_stable', 'tls13_middlebox_testing_v4']], 'tls_13_study': [['moz-fx-data-shared-prod', 'telemetry_stable', 'tls_13_study_v4']], 'tls_13_study_v1': [['moz-fx-data-shared-prod', 'telemetry_stable', 'tls_13_study_v1_v4']], 'tls_13_study_v2': [['moz-fx-data-shared-prod', 'telemetry_stable', 'tls_13_study_v2_v4']], 'tls_13_study_v3': [['moz-fx-data-shared-prod', 'telemetry_stable', 'tls_13_study_v3_v4']], 'tls_13_study_v4': [['moz-fx-data-shared-prod', 'telemetry_stable', 'tls_13_study_v4_v4']], 'uitour_tag': [['moz-fx-data-shared-prod', 'telemetry_stable', 'uitour_tag_v4']], 'unified_metrics': [['moz-fx-data-shared-prod', 'telemetry_derived', 'unified_metrics_v1']], 'uninstall': [['moz-fx-data-shared-prod', 'telemetry_stable', 'uninstall_v4']], 'untrusted_modules': [['moz-fx-data-shared-prod', 'telemetry_stable', 'untrusted_modules_v4']], 'update': [['moz-fx-data-shared-prod', 'telemetry_stable', 'update_v4']], 'urlbar_clients_daily': [['moz-fx-data-shared-prod', 'telemetry_derived', 'urlbar_clients_daily_v1']], 'voice': [['moz-fx-data-shared-prod', 'telemetry_stable', 'voice_v4']], 'voice_feedback': [['moz-fx-data-shared-prod', 'telemetry_stable', 'voice_feedback_v4']], 'windows_10_aggregate': [['moz-fx-data-shared-prod', 'telemetry', 'clients_daily']], 'windows_10_build_distribution': [['moz-fx-data-shared-prod', 'telemetry', 'windows_10_aggregate']], 'windows_10_patch_adoption': [['moz-fx-data-shared-prod', 'telemetry', 'windows_10_aggregate']], 'x_contextual_feature_recommendation': [['moz-fx-data-shared-prod', 'telemetry_stable', 'x_contextual_feature_recommendation_v4']], 'xfocsp_error_report': [['moz-fx-data-shared-prod', 'telemetry_stable', 'xfocsp_error_report_v4']]}, 'telemetry_derived': {'client_probe_counts': [['moz-fx-data-shared-prod', 'telemetry', 'client_probe_counts']], 'core_live': [['moz-fx-data-shared-prod', 'telemetry_live', 'core_v10'], ['moz-fx-data-shared-prod', 'telemetry_live', 'core_v2'], ['moz-fx-data-shared-prod', 'telemetry_live', 'core_v3'], ['moz-fx-data-shared-prod', 'telemetry_live', 'core_v4'], ['moz-fx-data-shared-prod', 'telemetry_live', 'core_v5'], ['moz-fx-data-shared-prod', 'telemetry_live', 'core_v6'], ['moz-fx-data-shared-prod', 'telemetry_live', 'core_v7'], ['moz-fx-data-shared-prod', 'telemetry_live', 'core_v8'], ['moz-fx-data-shared-prod', 'telemetry_live', 'core_v9']], 'deanonymized_events': [['moz-fx-data-shared-prod', 'telemetry_stable', 'event_v4']], 'desktop_funnel_activation_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'desktop_funnel_activation_day_6_v1']], 'error_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'error_aggregates_v1']], 'events_live': [['moz-fx-data-shared-prod', 'telemetry_live', 'event_v4']], 'experiment_cumulative_ad_clicks_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_search_aggregates_live_v1']], 'experiment_cumulative_search_count_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_search_aggregates_live_v1']], 'experiment_cumulative_search_with_ads_count_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_search_aggregates_live_v1']], 'experiment_enrollment_aggregates_live_v1': [['moz-fx-data-shared-prod', 'monitor_cirrus_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_klar_derived', 'experiment_events_live_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_enrollment_aggregates_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_events_live_v1']], 'experiment_enrollment_cumulative_population_estimate_v1': [['moz-fx-data-experiments', 'monitoring', 'experimenter_experiments_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_enrollment_aggregates_live_v1']], 'experiment_enrollment_other_events_overall_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_enrollment_aggregates_live_v1']], 'experiment_enrollment_overall_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_enrollment_aggregates_live_v1']], 'experiment_search_aggregates_live_v1': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'experiment_search_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_derived', 'experiment_search_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'experiment_search_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_derived', 'experiment_search_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_derived', 'experiment_search_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_derived', 'experiment_search_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_derived', 'experiment_search_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_derived', 'experiment_search_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_derived', 'experiment_search_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_derived', 'experiment_search_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_derived', 'experiment_search_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_klar_derived', 'experiment_search_events_live_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_search_aggregates_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_search_events_live_v1']], 'experiment_unenrollment_overall_v1': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_enrollment_aggregates_live_v1']]}, 'telemetry_dev_cycle': {'data_review_stats': [['moz-fx-data-shared-prod', 'telemetry_dev_cycle_external', 'data_review_stats_v1']], 'experiments_stats': [['moz-fx-data-shared-prod', 'telemetry_dev_cycle_external', 'experiments_stats_v1']], 'glean_metrics_stats': [['moz-fx-data-shared-prod', 'telemetry_dev_cycle_derived', 'glean_metrics_stats_v1']], 'telemetry_probes_stats': [['moz-fx-data-shared-prod', 'telemetry_dev_cycle_derived', 'telemetry_probes_stats_v1']]}, 'thunderbird_android': {'baseline': [['moz-fx-data-shared-prod', 'net_thunderbird_android', 'baseline'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_beta', 'baseline'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_daily', 'baseline']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'net_thunderbird_android', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_beta', 'baseline_clients_daily'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_daily', 'baseline_clients_daily']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'net_thunderbird_android', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_beta', 'baseline_clients_first_seen'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_daily', 'baseline_clients_first_seen']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'net_thunderbird_android', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_beta', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_daily', 'baseline_clients_last_seen']], 'deletion_request': [['moz-fx-data-shared-prod', 'net_thunderbird_android', 'deletion_request'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_beta', 'deletion_request'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_daily', 'deletion_request']], 'events': [['moz-fx-data-shared-prod', 'net_thunderbird_android', 'events'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_beta', 'events'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_daily', 'events']], 'events_stream': [['moz-fx-data-shared-prod', 'net_thunderbird_android', 'events_stream'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_beta', 'events_stream'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_daily', 'events_stream']], 'events_unnested': [['moz-fx-data-shared-prod', 'net_thunderbird_android', 'events'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_beta', 'events'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_daily', 'events']], 'metrics': [['moz-fx-data-shared-prod', 'net_thunderbird_android', 'metrics'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_beta', 'metrics'], ['moz-fx-data-shared-prod', 'net_thunderbird_android_daily', 'metrics']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'thunderbird_android_derived', 'metrics_clients_daily_v1']]}, 'thunderbird_desktop': {'baseline': [['moz-fx-data-shared-prod', 'thunderbird_desktop_stable', 'baseline_v1']], 'baseline_clients_daily': [['moz-fx-data-shared-prod', 'thunderbird_desktop_derived', 'baseline_clients_daily_v1']], 'baseline_clients_first_seen': [['moz-fx-data-shared-prod', 'thunderbird_desktop_derived', 'baseline_clients_daily_v1']], 'baseline_clients_last_seen': [['moz-fx-data-shared-prod', 'thunderbird_desktop_derived', 'baseline_clients_last_seen_v1']], 'bounce_tracking_protection': [['moz-fx-data-shared-prod', 'thunderbird_desktop_stable', 'bounce_tracking_protection_v1']], 'broken_site_report': [['moz-fx-data-shared-prod', 'thunderbird_desktop_stable', 'broken_site_report_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'thunderbird_desktop_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'thunderbird_desktop_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'thunderbird_desktop_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'thunderbird_desktop', 'events']], 'fog_validation': [['moz-fx-data-shared-prod', 'thunderbird_desktop_stable', 'fog_validation_v1']], 'metrics': [['moz-fx-data-shared-prod', 'thunderbird_desktop_stable', 'metrics_v1']], 'metrics_clients_daily': [['moz-fx-data-shared-prod', 'thunderbird_desktop_derived', 'metrics_clients_daily_v1']], 'pageload': [['moz-fx-data-shared-prod', 'thunderbird_desktop_stable', 'pageload_v1']], 'use_counters': [['moz-fx-data-shared-prod', 'thunderbird_desktop_stable', 'use_counters_v1']], 'user_characteristics': [['moz-fx-data-shared-prod', 'thunderbird_desktop_stable', 'user_characteristics_v1']]}, 'treeherder': {'classified': [['moz-fx-data-shared-prod', 'treeherder_stable', 'classified_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'treeherder_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'treeherder_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'treeherder_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'treeherder', 'events']]}, 'viu_politica': {'deletion_request': [['moz-fx-data-shared-prod', 'viu_politica_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'viu_politica_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'viu_politica_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'viu_politica', 'events']], 'main_events': [['moz-fx-data-shared-prod', 'viu_politica_stable', 'main_events_v1']], 'regret_details': [['moz-fx-data-shared-prod', 'viu_politica_stable', 'regret_details_v1']], 'video_data': [['moz-fx-data-shared-prod', 'viu_politica_stable', 'video_data_v1']], 'video_index': [['moz-fx-data-shared-prod', 'viu_politica_stable', 'video_index_v1']]}, 'webpagetest': {'webpagetest_run': [['moz-fx-data-shared-prod', 'webpagetest_stable', 'webpagetest_run_v1']]}})
FILE_HEADER = '# *Do not manually modify this file*\n\n# This file has been generated via https://github.com/mozilla/lookml-generator\n\n# Using a datagroup in an Explore: https://cloud.google.com/looker/docs/reference/param-explore-persist-with\n# Using a datagroup in a derived table: https://cloud.google.com/looker/docs/reference/param-view-datagroup-trigger\n\n'
@dataclass(frozen=True, eq=True)
class Datagroup:
41@dataclass(frozen=True, eq=True)
42class Datagroup:
43    """Represents a Datagroup."""
44
45    name: str
46    label: str
47    sql_trigger: str
48    description: str
49    max_cache_age: str = DEFAULT_MAX_CACHE_AGE
50
51    def __str__(self) -> str:
52        """Return the LookML string representation of a Datagroup."""
53        return lkml.dump({"datagroups": [self.__dict__]})  # type: ignore
54
55    def __lt__(self, other) -> bool:
56        """Make datagroups sortable."""
57        return self.name < other.name

Represents a Datagroup.

Datagroup( name: str, label: str, sql_trigger: str, description: str, max_cache_age: str = '24 hours')
name: str
label: str
sql_trigger: str
description: str
max_cache_age: str = '24 hours'
def generate_datagroup( view: generator.views.view.View, target_dir: pathlib.Path, namespace: str, dryrun) -> Optional[pathlib.Path]:
181def generate_datagroup(
182    view: View,
183    target_dir: Path,
184    namespace: str,
185    dryrun,
186) -> Optional[Path]:
187    """Generate and write a datagroups.lkml file to the namespace folder."""
188    datagroups_folder_path = target_dir / namespace / "datagroups"
189
190    datagroup = None
191    try:
192        datagroup = _generate_view_datagroup(view, DATASET_VIEW_MAP, dryrun)
193    except DryRunError as e:
194        if e.error == Errors.PERMISSION_DENIED and e.use_cloud_function:
195            path = datagroups_folder_path / f"{e.table_id}_last_updated.datagroup.lkml"
196            print(
197                f"Permission error dry running: {path}. Copy existing file from looker-hub."
198            )
199            try:
200                get_file_from_looker_hub(path)
201            except Exception as ex:
202                print(f"Skip generating datagroup for {path}: {ex}")
203        else:
204            raise
205
206    if datagroup:
207        datagroups_folder_path.mkdir(exist_ok=True)
208        datagroup_lkml_path = (
209            datagroups_folder_path / f"{datagroup.name}.datagroup.lkml"
210        )
211        datagroup_lkml_path.write_text(FILE_HEADER + str(datagroup))
212        return datagroup_lkml_path
213
214    return None

Generate and write a datagroups.lkml file to the namespace folder.