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, List, 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 View, lookml_utils
 14from generator.views.lookml_utils import BQViewReferenceMap
 15
 16DEFAULT_MAX_CACHE_AGE = "24 hours"
 17
 18SQL_TRIGGER_TEMPLATE_SINGLE_TABLE = """
 19    SELECT MAX(storage_last_modified_time) AS storage_last_modified_time
 20    FROM `{project_id}`.`region-us`.INFORMATION_SCHEMA.TABLE_STORAGE
 21    WHERE {table}
 22"""
 23
 24SQL_TRIGGER_TEMPLATE_ALL_TABLES = """
 25    SELECT MAX(storage_last_modified_time)
 26    FROM (
 27        {tables}
 28    )
 29"""
 30
 31# To map views to their underlying tables:
 32DATASET_VIEW_MAP = lookml_utils.get_bigquery_view_reference_map(
 33    DEFAULT_GENERATED_SQL_URI
 34)
 35
 36FILE_HEADER = """# *Do not manually modify this file*
 37
 38# This file has been generated via https://github.com/mozilla/lookml-generator
 39
 40# Using a datagroup in an Explore: https://cloud.google.com/looker/docs/reference/param-explore-persist-with
 41# Using a datagroup in a derived table: https://cloud.google.com/looker/docs/reference/param-view-datagroup-trigger
 42
 43"""
 44
 45
 46@dataclass(frozen=True, eq=True)
 47class Datagroup:
 48    """Represents a Datagroup."""
 49
 50    name: str
 51    label: str
 52    sql_trigger: str
 53    description: str
 54    max_cache_age: str = DEFAULT_MAX_CACHE_AGE
 55
 56    def __str__(self) -> str:
 57        """Return the LookML string representation of a Datagroup."""
 58        return lkml.dump({"datagroups": [self.__dict__]})  # type: ignore
 59
 60    def __lt__(self, other) -> bool:
 61        """Make datagroups sortable."""
 62        return self.name < other.name
 63
 64
 65def _get_datagroup_from_bigquery_tables(
 66    project_id, tables, view: View
 67) -> Optional[Datagroup]:
 68    """Use template and default values to create a Datagroup from a BQ Table."""
 69    if len(tables) == 0:
 70        return None
 71
 72    datagroup_tables = []
 73    for table in tables:
 74        dataset_id = table[1]
 75        table_id = table[2]
 76
 77        datagroup_tables.append(
 78            SQL_TRIGGER_TEMPLATE_SINGLE_TABLE.format(
 79                project_id=table[0],
 80                table=f"(table_schema = '{dataset_id}' AND table_name = '{table_id}')",
 81            )
 82        )
 83
 84    # create a datagroup associated to a view which will be used for caching
 85    return Datagroup(
 86        name=f"{view.name}_last_updated",
 87        label=f"{view.name} Last Updated",
 88        description=f"Updates for {view.name} when referenced tables are modified.",
 89        sql_trigger=SQL_TRIGGER_TEMPLATE_ALL_TABLES.format(
 90            project_id=project_id, tables=" UNION ALL ".join(datagroup_tables)
 91        ),
 92    )
 93
 94
 95def _get_datagroup_from_bigquery_view(
 96    project_id,
 97    dataset_id,
 98    table_id,
 99    dataset_view_map: BQViewReferenceMap,
100    view: View,
101) -> Optional[Datagroup]:
102    # Dataset view map only contains references for shared-prod views.
103    full_table_id = f"{project_id}.{dataset_id}.{table_id}"
104
105    view_references = _get_referenced_tables(
106        project_id, dataset_id, table_id, dataset_view_map, []
107    )
108
109    if not view_references or len(view_references) == 0:
110        # Some views might not reference a source table
111        logging.debug(f"Unable to find a source for {full_table_id} in generated-sql.")
112        return None
113
114    return _get_datagroup_from_bigquery_tables(project_id, view_references, view)
115
116
117def _get_referenced_tables(
118    project_id,
119    dataset_id,
120    table_id,
121    dataset_view_map: BQViewReferenceMap,
122    seen: List[List[str]],
123) -> List[List[str]]:
124    """
125    Return a list of all tables referenced by the provided view.
126
127    Recursively, resolve references of referenced views to only get table dependencies.
128    """
129    if [project_id, dataset_id, table_id] in seen:
130        return [[project_id, dataset_id, table_id]]
131
132    seen += [[project_id, dataset_id, table_id]]
133
134    dataset_view_references = dataset_view_map.get(dataset_id)
135
136    if dataset_view_references is None:
137        return [[project_id, dataset_id, table_id]]
138
139    view_references = dataset_view_references.get(table_id)
140    if view_references is None:
141        return [[project_id, dataset_id, table_id]]
142
143    return [
144        ref
145        for view_reference in view_references
146        for ref in _get_referenced_tables(
147            view_reference[0],
148            view_reference[1],
149            view_reference[2],
150            dataset_view_map,
151            seen.copy(),
152        )
153        if view_reference not in seen
154    ]
155
156
157def _generate_view_datagroup(
158    view: View,
159    dataset_view_map: BQViewReferenceMap,
160    dryrun,
161) -> Optional[Datagroup]:
162    """Generate the Datagroup LookML for a Looker View."""
163    if len(view.tables) == 0:
164        return None
165
166    # Use the release channel table or the first available table (usually the only one):
167    view_tables = next(
168        (table for table in view.tables if table.get("channel") == "release"),
169        view.tables[0],
170    )
171
172    if "table" not in view_tables:
173        return None
174
175    view_table = view_tables["table"]
176
177    [project, dataset, table] = view_table.split(".")
178    table_metadata = dryrun.create(
179        project=project,
180        dataset=dataset,
181        table=table,
182    ).get_table_metadata()
183
184    if "TABLE" == table_metadata.get("tableType"):
185        datagroups = _get_datagroup_from_bigquery_tables(
186            project, [[project, dataset, table]], view
187        )
188        return datagroups
189    elif "VIEW" == table_metadata.get("tableType"):
190        datagroups = _get_datagroup_from_bigquery_view(
191            project, dataset, table, dataset_view_map, view
192        )
193        return datagroups
194
195    return None
196
197
198def generate_datagroup(
199    view: View,
200    target_dir: Path,
201    namespace: str,
202    dryrun,
203) -> Any:
204    """Generate and write a datagroups.lkml file to the namespace folder."""
205    datagroups_folder_path = target_dir / namespace / "datagroups"
206
207    datagroup = None
208    try:
209        datagroup = _generate_view_datagroup(view, DATASET_VIEW_MAP, dryrun)
210    except DryRunError as e:
211        if e.error == Errors.PERMISSION_DENIED and e.use_cloud_function:
212            path = datagroups_folder_path / f"{e.table_id}_last_updated.datagroup.lkml"
213            print(
214                f"Permission error dry running: {path}. Copy existing file from looker-hub."
215            )
216            try:
217                get_file_from_looker_hub(path)
218            except Exception as ex:
219                print(f"Skip generating datagroup for {path}: {ex}")
220        else:
221            raise
222
223    datagroup_paths = []
224    if datagroup:
225        datagroups_folder_path.mkdir(exist_ok=True)
226        datagroup_lkml_path = (
227            datagroups_folder_path / f"{datagroup.name}.datagroup.lkml"
228        )
229        datagroup_lkml_path.write_text(FILE_HEADER + str(datagroup))
230        datagroup_paths.append(datagroup_lkml_path)
231
232    return datagroup_paths
DEFAULT_MAX_CACHE_AGE = '24 hours'
SQL_TRIGGER_TEMPLATE_SINGLE_TABLE = '\n SELECT MAX(storage_last_modified_time) AS storage_last_modified_time\n FROM `{project_id}`.`region-us`.INFORMATION_SCHEMA.TABLE_STORAGE\n WHERE {table}\n'
SQL_TRIGGER_TEMPLATE_ALL_TABLES = '\n SELECT MAX(storage_last_modified_time)\n FROM (\n {tables}\n )\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']], 'monitoring_db_counts': [['moz-fx-data-shared-prod', 'accounts_backend_derived', 'monitoring_db_counts_v1']], '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']]}, 'addons': {'addon_events_clients': [['moz-fx-data-shared-prod', 'telemetry', 'events']], 'search_detection': [['moz-fx-data-shared-prod', 'addons_derived', 'search_detection_v1']]}, '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']], 'interaction': [['moz-fx-data-shared-prod', 'ads_backend_stable', 'interaction_v1']], 'request_stats': [['moz-fx-data-shared-prod', 'ads_backend_stable', 'request_stats_v1']]}, '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']], 'default_browser_agg': [['moz-fx-data-shared-prod', 'default_browser_agent_derived', 'default_browser_agg_v1']], 'default_browser_agg_by_os': [['moz-fx-data-shared-prod', 'default_browser_agent_derived', 'default_browser_agg_by_os_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']]}, 'external': {'calendar': [['moz-fx-data-shared-prod', 'external_derived', 'calendar_v1']], 'chrome_extensions': [['moz-fx-data-shared-prod', 'external_derived', 'chrome_extensions_v1']], 'gdp': [['moz-fx-data-shared-prod', 'external_derived', 'gdp_v1']], 'holidays': [['moz-fx-data-shared-prod', 'external_derived', 'calendar_v1']], 'imf_exchange_rates': [['moz-fx-data-shared-prod', 'external_derived', 'imf_exchange_rates_v1']], 'macroeconomic_indices': [['moz-fx-data-shared-prod', 'external_derived', 'macroeconomic_indices_v1']], 'monthly_inflation': [['moz-fx-data-shared-prod', 'external_derived', 'monthly_inflation_v1']], 'population': [['moz-fx-data-shared-prod', 'external_derived', 'population_v1']], 'population_by_country': [['moz-fx-data-shared-prod', 'external_derived', 'population_v1']], 'quarterly_inflation': [['moz-fx-data-shared-prod', 'external_derived', 'quarterly_inflation_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']], 'adjust_attribution': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'adjust_attribution'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'adjust_attribution'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'adjust_attribution'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'adjust_attribution'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'adjust_attribution']], '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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'captcha_detection'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'captcha_detection'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'captcha_detection'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'captcha_detection'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'captcha_detection']], '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']], 'composite_active_users': [['moz-fx-data-shared-prod', 'fenix', 'active_users'], ['moz-fx-data-shared-prod', 'fenix', 'usage_reporting_active_users']], 'composite_active_users_aggregates': [['moz-fx-data-shared-prod', 'fenix', 'active_users_aggregates'], ['moz-fx-data-shared-prod', 'fenix', 'usage_reporting_active_users_aggregates']], '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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'dau_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'dau_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'dau_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'dau_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'dau_reporting']], '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', 'attribution_clients']], '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_v2']], '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']], 'home': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'home'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'home'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'home'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'home'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'home']], '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']], 'locale_aggregates': [['moz-fx-data-shared-prod', 'fenix_derived', 'locale_aggregates_v1']], '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_android_aggregates': [['moz-fx-data-shared-prod', 'fenix_derived', 'ltv_android_aggregates_v1']], '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_activation_clients': [['moz-fx-data-shared-prod', 'fenix_derived', 'new_profile_activation_clients_v1']], 'new_profile_activations': [['moz-fx-data-shared-prod', 'fenix_derived', 'new_profile_activations_v1']], 'new_profile_clients': [['moz-fx-data-shared-prod', 'fenix', 'active_users'], ['moz-fx-data-shared-prod', 'fenix', 'attribution_clients']], 'new_profile_metrics_marketing_geo_testing': [['moz-fx-data-shared-prod', 'fenix_derived', 'new_profile_metrics_marketing_geo_testing_v1']], 'new_profiles': [['moz-fx-data-shared-prod', 'fenix_derived', 'new_profiles_v1']], 'nimbus': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'nimbus'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'nimbus'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'nimbus'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'nimbus'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'nimbus']], 'onboarding_opt_out': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'onboarding_opt_out'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'onboarding_opt_out'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'onboarding_opt_out'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'onboarding_opt_out'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'onboarding_opt_out']], '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']], 'play_store_attribution': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'play_store_attribution'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'play_store_attribution'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'play_store_attribution'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'play_store_attribution'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'play_store_attribution']], 'profile_dau_metrics_marketing_geo_testing': [['moz-fx-data-shared-prod', 'fenix_derived', 'profile_dau_metrics_marketing_geo_testing_v1']], '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', 'attribution_clients'], ['moz-fx-data-shared-prod', 'fenix', 'baseline_clients_daily']], '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']], 'tos_rollout_enrollments': [['moz-fx-data-shared-prod', 'fenix_derived', 'tos_rollout_enrollments_v1']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'usage_deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'usage_deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'usage_deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'usage_deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'usage_deletion_request']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'usage_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'usage_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'usage_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'usage_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'usage_reporting']], 'usage_reporting_active_users': [['moz-fx-data-shared-prod', 'fenix', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'fenix', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'fenix', 'usage_reporting_clients_last_seen']], 'usage_reporting_active_users_aggregates': [['moz-fx-data-shared-prod', 'fenix_derived', 'usage_reporting_active_users_aggregates_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'usage_reporting_clients_daily']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'usage_reporting_clients_first_seen']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix', 'usage_reporting_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly', 'usage_reporting_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora', 'usage_reporting_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox', 'usage_reporting_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta', 'usage_reporting_clients_last_seen']], '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']], '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_v4']], '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_active_users': [['moz-fx-data-shared-prod', 'firefox_desktop', 'baseline_clients_last_seen'], ['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'desktop_dau_distribution_id_history_v1']], 'baseline_active_users_aggregates': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'baseline_active_users_aggregates_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'captcha_detection_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']], 'composite_active_users': [['moz-fx-data-shared-prod', 'firefox_desktop', 'baseline_active_users'], ['moz-fx-data-shared-prod', 'firefox_desktop', 'usage_reporting_active_users']], 'composite_active_users_aggregates': [['moz-fx-data-shared-prod', 'firefox_desktop', 'baseline_active_users_aggregates'], ['moz-fx-data-shared-prod', 'firefox_desktop', 'usage_reporting_active_users_aggregates']], 'crash': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'crash_v1']], 'dau_reporting': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'dau_reporting_v1']], 'deletion_request': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'deletion_request_v1']], 'desktop_crashes': [['moz-fx-data-shared-prod', 'firefox_crashreporter', 'crash'], ['moz-fx-data-shared-prod', 'firefox_desktop', 'crash']], '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']], 'locale_aggregates': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'locale_aggregates_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']], 'nimbus_targeting_context': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'nimbus_targeting_context_v1']], 'onboarding': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'onboarding_v2']], 'onboarding_opt_out': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'onboarding_opt_out_v1']], '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']], 'quick_suggest_deletion_request': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'quick_suggest_deletion_request_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']], 'tos_rollout_enrollments': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'tos_rollout_enrollments_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'firefox_desktop_stable', 'usage_reporting_v1']], 'usage_reporting_active_users': [['moz-fx-data-shared-prod', 'firefox_desktop', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'firefox_desktop', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'firefox_desktop', 'usage_reporting_clients_last_seen']], 'usage_reporting_active_users_aggregates': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'usage_reporting_active_users_aggregates_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'firefox_desktop_derived', 'usage_reporting_clients_last_seen_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']], 'default_agent_agg': [['moz-fx-data-shared-prod', 'firefox_desktop_background_defaultagent_derived', 'default_agent_agg_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']], 'nimbus_targeting_context': [['moz-fx-data-shared-prod', 'firefox_desktop_background_tasks_stable', 'nimbus_targeting_context_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'captcha_detection_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'firefox_desktop_background_update_stable', 'dau_reporting_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_choice_screen_engagement': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'app_store_choice_screen_engagement_v1']], 'app_store_choice_screen_selection': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'app_store_choice_screen_selection_v1']], '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']], 'composite_active_users': [['moz-fx-data-shared-prod', 'firefox_ios', 'active_users'], ['moz-fx-data-shared-prod', 'firefox_ios', 'usage_reporting_active_users']], 'composite_active_users_aggregates': [['moz-fx-data-shared-prod', 'firefox_ios', 'active_users_aggregates'], ['moz-fx-data-shared-prod', 'firefox_ios', 'usage_reporting_active_users_aggregates']], '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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'dau_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'dau_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'dau_reporting']], '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', 'attribution_clients']], '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_v2']], '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_ios_aggregates': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'ltv_ios_aggregates_v1']], '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_activation_clients': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'new_profile_activation_clients_v1']], 'new_profile_activations': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'new_profile_activations_v1']], 'new_profile_clients': [['moz-fx-data-shared-prod', 'firefox_ios', 'active_users'], ['moz-fx-data-shared-prod', 'firefox_ios', 'attribution_clients']], 'new_profile_metrics_marketing_geo_testing': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'new_profile_metrics_marketing_geo_testing_v1']], 'new_profiles': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'new_profiles_v1']], 'nimbus': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'nimbus'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'nimbus'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'nimbus']], 'onboarding_opt_out': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'onboarding_opt_out'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'onboarding_opt_out'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'onboarding_opt_out']], 'profile_dau_metrics_marketing_geo_testing': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'profile_dau_metrics_marketing_geo_testing_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', 'attribution_clients'], ['moz-fx-data-shared-prod', 'firefox_ios', 'baseline_clients_daily']], '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']], 'tos_rollout_enrollments': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'tos_rollout_enrollments_v1']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'usage_deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'usage_deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'usage_deletion_request']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'usage_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'usage_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'usage_reporting']], 'usage_reporting_active_users': [['moz-fx-data-shared-prod', 'firefox_ios', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'firefox_ios', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'firefox_ios', 'usage_reporting_clients_last_seen']], 'usage_reporting_active_users_aggregates': [['moz-fx-data-shared-prod', 'firefox_ios_derived', 'usage_reporting_active_users_aggregates_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'usage_reporting_clients_daily']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'usage_reporting_clients_first_seen']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec', 'usage_reporting_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox', 'usage_reporting_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta', 'usage_reporting_clients_last_seen']]}, '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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'captcha_detection'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'captcha_detection'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'captcha_detection']], 'clients_last_seen_joined': [['moz-fx-data-shared-prod', 'focus_android_derived', 'clients_last_seen_joined_v1']], 'composite_active_users': [['moz-fx-data-shared-prod', 'focus_android', 'active_users'], ['moz-fx-data-shared-prod', 'focus_android', 'usage_reporting_active_users']], 'composite_active_users_aggregates': [['moz-fx-data-shared-prod', 'focus_android', 'active_users_aggregates'], ['moz-fx-data-shared-prod', 'focus_android', 'usage_reporting_active_users_aggregates']], '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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'dau_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'dau_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'dau_reporting']], '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'], ['moz-fx-data-shared-prod', 'focus_android', 'attribution_clients']], '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_activation_clients': [['moz-fx-data-shared-prod', 'focus_android_derived', 'new_profile_activation_clients_v1']], 'new_profile_activations': [['moz-fx-data-shared-prod', 'focus_android_derived', 'new_profile_activations_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', 'attribution_clients'], ['moz-fx-data-shared-prod', 'focus_android', 'baseline_clients_daily']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'usage_deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'usage_deletion_request'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'usage_deletion_request']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'usage_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'usage_reporting'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'usage_reporting']], 'usage_reporting_active_users': [['moz-fx-data-shared-prod', 'focus_android', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'focus_android', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'focus_android', 'usage_reporting_clients_last_seen']], 'usage_reporting_active_users_aggregates': [['moz-fx-data-shared-prod', 'focus_android_derived', 'usage_reporting_active_users_aggregates_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'usage_reporting_clients_daily']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'usage_reporting_clients_first_seen']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus', 'usage_reporting_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta', 'usage_reporting_clients_last_seen'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly', 'usage_reporting_clients_last_seen']], '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']], 'composite_active_users': [['moz-fx-data-shared-prod', 'focus_ios', 'active_users'], ['moz-fx-data-shared-prod', 'focus_ios', 'usage_reporting_active_users']], 'composite_active_users_aggregates': [['moz-fx-data-shared-prod', 'focus_ios', 'active_users_aggregates'], ['moz-fx-data-shared-prod', 'focus_ios', 'usage_reporting_active_users_aggregates']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'dau_reporting']], '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'], ['moz-fx-data-shared-prod', 'focus_ios', 'attribution_clients']], '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_activation_clients': [['moz-fx-data-shared-prod', 'focus_ios_derived', 'new_profile_activation_clients_v1']], 'new_profile_activations': [['moz-fx-data-shared-prod', 'focus_ios_derived', 'new_profile_activations_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', 'attribution_clients'], ['moz-fx-data-shared-prod', 'focus_ios', 'baseline_clients_daily']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'usage_deletion_request']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'usage_reporting']], 'usage_reporting_active_users': [['moz-fx-data-shared-prod', 'focus_ios', 'usage_reporting_clients_daily'], ['moz-fx-data-shared-prod', 'focus_ios', 'usage_reporting_clients_first_seen'], ['moz-fx-data-shared-prod', 'focus_ios', 'usage_reporting_clients_last_seen']], 'usage_reporting_active_users_aggregates': [['moz-fx-data-shared-prod', 'focus_ios_derived', 'usage_reporting_active_users_aggregates_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'usage_reporting_clients_daily']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'usage_reporting_clients_first_seen']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus', 'usage_reporting_clients_last_seen']]}, 'fx_quant_user_research': {'fxqur_viewpoint_desktop': [['moz-fx-data-shared-prod', 'fx_quant_user_research_derived', 'fxqur_viewpoint_desktop_v1']], 'fxqur_viewpoint_mobile': [['moz-fx-data-shared-prod', 'fx_quant_user_research_derived', 'fxqur_viewpoint_mobile_v1']]}, 'fxci': {'task_run_costs': [['moz-fx-data-shared-prod', 'fxci_derived', 'task_run_costs_v1']], 'task_runs': [['moz-fx-data-shared-prod', 'fxci_derived', 'task_runs_v1']], 'tasks': [['moz-fx-data-shared-prod', 'fxci_derived', 'tasks_v2']], 'worker_costs': [['moz-fx-data-shared-prod', 'fxci_derived', 'worker_costs_v1']], 'worker_metrics': [['moz-fx-data-shared-prod', 'fxci_derived', 'worker_metrics_v1']]}, 'glam': {'deletion_request': [['moz-fx-data-shared-prod', 'glam_stable', 'deletion_request_v1']], 'events': [['moz-fx-data-shared-prod', 'glam_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'glam_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'glam', 'events']]}, 'glean_auto_events': {'apps_auto_events_metadata': [['moz-fx-data-shared-prod', 'glean_auto_events_derived', 'apps_auto_events_metadata_v1']], 'daily_auto_events_metadata': [['moz-fx-data-shared-prod', 'glean_auto_events_derived', 'daily_auto_events_metadata_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_v2'], ['moz-fx-data-shared-prod', 'static', 'country_codes_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_play_store': {'slow_startup_events_by_startup_type': [['moz-fx-data-shared-prod', 'google_play_store_derived', 'slow_startup_events_by_startup_type_v1']], 'slow_startup_events_by_startup_type_and_version': [['moz-fx-data-shared-prod', 'google_play_store_derived', 'slow_startup_events_by_startup_type_and_version_v1']], 'slow_startup_events_by_startup_type_version_and_device': [['moz-fx-data-shared-prod', 'google_play_store_derived', 'slow_startup_events_by_startup_type_version_and_device_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']]}, 'jira_service_desk': {'field': [['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'field']], 'field_option': [['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'field_option']], 'issue': [['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'field'], ['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'field_option'], ['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'issue'], ['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'issue_field_history'], ['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'request'], ['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'request_type']], 'issue_field_history': [['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'issue_field_history']], 'issue_multiselect_history': [['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'issue_multiselect_history']], 'issue_type': [['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'issue_type']], 'project': [['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'project']], 'request': [['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'request']], 'request_type': [['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'request_type']], 'resolution': [['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'resolution']], 'status': [['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'status']], 'status_category': [['moz-fx-data-shared-prod', 'jira_service_desk_syndicate', 'status_category']], 'user': [['moz-fx-data-shared-prod', 'jira_service_desk_derived', 'user_v1']]}, '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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'captcha_detection']], '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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'dau_reporting']], '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'], ['moz-fx-data-shared-prod', 'klar_android', 'attribution_clients']], '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_activation_clients': [['moz-fx-data-shared-prod', 'klar_android_derived', 'new_profile_activation_clients_v1']], 'new_profile_activations': [['moz-fx-data-shared-prod', 'klar_android_derived', 'new_profile_activations_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', 'attribution_clients'], ['moz-fx-data-shared-prod', 'klar_android', 'baseline_clients_daily']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'usage_deletion_request']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_klar', 'usage_reporting']], '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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'dau_reporting']], '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'], ['moz-fx-data-shared-prod', 'klar_ios', 'attribution_clients']], '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_activation_clients': [['moz-fx-data-shared-prod', 'klar_ios_derived', 'new_profile_activation_clients_v1']], 'new_profile_activations': [['moz-fx-data-shared-prod', 'klar_ios_derived', 'new_profile_activations_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', 'attribution_clients'], ['moz-fx-data-shared-prod', 'klar_ios', 'baseline_clients_daily']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'usage_deletion_request']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar', 'usage_reporting']]}, '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']]}, 'mobile': {'activation': [['moz-fx-data-shared-prod', 'mobile_stable', 'activation_v1']]}, 'monitor_backend': {'events': [['moz-fx-data-shared-prod', 'monitor_backend_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'monitor_backend_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'monitor_backend', 'events']]}, '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']], 'bigeye_usage': [['moz-fx-data-shared-prod', 'monitoring', 'bigquery_usage']], '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_counts_glean': [['moz-fx-data-shared-prod', 'monitoring_derived', 'event_counts_glean_v1']], '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', 'glam_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_backend_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', 'relay_backend_derived', 'event_monitoring_live_v1'], ['moz-fx-data-shared-prod', 'syncstorage_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']], 'looker_dashboard_load_times': [['moz-fx-data-shared-prod', 'monitoring_derived', 'looker_dashboard_load_times_v1']], 'metadata_completeness': [['moz-fx-data-shared-prod', 'monitoring_derived', 'metadata_completeness_v1']], 'metadata_completeness_summary': [['moz-fx-data-shared-prod', 'monitoring_derived', 'metadata_completeness_v1']], 'missing_namespaces_and_document_types': [['moz-fx-data-shared-prod', 'monitoring', 'payload_bytes_error_structured'], ['moz-fx-data-shared-prod', 'static', 'monitoring_missing_document_namespaces_notes_v1']], 'payload_bytes_error_all': [['moz-fx-data-shared-prod', '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']], 'shredder_targets': [['moz-fx-data-shared-prod', 'monitoring_derived', 'shredder_targets_joined_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']], 'table_storage': [['moz-fx-data-shared-prod', 'monitoring_derived', 'table_storage_v1']], 'table_storage_trends': [['moz-fx-data-shared-prod', 'monitoring_derived', 'table_storage_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'], ['moz-fx-data-shared-prod', 'monitoring_derived', 'outerbounds_flow_description_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']], 'desktop_conversion_events': [['moz-fx-data-shared-prod', 'mozilla_org_derived', 'ga_desktop_conversions_v2'], ['moz-fx-data-shared-prod', 'mozilla_org_derived', 'ga_sessions_v2'], ['moz-fx-data-shared-prod', 'static', 'country_codes_v1']], '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_v3']], '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', 'daemonsession'], ['moz-fx-data-shared-prod', 'mozilla_vpn', 'main'], ['moz-fx-data-shared-prod', 'mozilla_vpn', 'vpnsession']], 'exchange_rates': [['moz-fx-data-shared-prod', 'mozilla_vpn_derived', 'exchange_rates_v1']], 'extensionsession': [['moz-fx-data-shared-prod', 'mozillavpn', 'extensionsession'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn', 'extensionsession'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn', 'extensionsession'], ['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension', 'extensionsession']], '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']], 'extensionsession': [['moz-fx-data-shared-prod', 'mozillavpn_stable', 'extensionsession_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': {'broken_site_root_domain_daily_aggregates': [['moz-fx-data-shared-prod', 'org_mozilla_broken_site_report_derived', 'broken_site_root_domain_daily_aggregates_v1']], 'broken_site_root_domain_weekly_trend': [['moz-fx-data-shared-prod', 'org_mozilla_broken_site_report_derived', 'broken_site_root_domain_weekly_trend_v1']], 'user_reports': [['moz-fx-data-shared-prod', 'fenix', 'broken_site_report'], ['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'], ['moz-fx-data-shared-prod', 'org_mozilla_fenix_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']], 'adjust_attribution': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'adjust_attribution_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'captcha_detection_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'dau_reporting_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']], 'home': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'home_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']], 'nimbus': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'nimbus_v1']], 'onboarding_opt_out': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'onboarding_opt_out_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'pageload_v1']], 'play_store_attribution': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'play_store_attribution_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_stable', 'usage_reporting_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'usage_reporting_clients_last_seen_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']], 'adjust_attribution': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'adjust_attribution_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'captcha_detection_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'dau_reporting_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']], 'home': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'home_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']], 'nimbus': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'nimbus_v1']], 'onboarding_opt_out': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'onboarding_opt_out_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'pageload_v1']], 'play_store_attribution': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'play_store_attribution_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_stable', 'usage_reporting_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_nightly_derived', 'usage_reporting_clients_last_seen_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']], 'adjust_attribution': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'adjust_attribution_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'captcha_detection_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'dau_reporting_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']], 'home': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'home_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']], 'nimbus': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'nimbus_v1']], 'onboarding_opt_out': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'onboarding_opt_out_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'pageload_v1']], 'play_store_attribution': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'play_store_attribution_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_stable', 'usage_reporting_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_fennec_aurora_derived', 'usage_reporting_clients_last_seen_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']], 'adjust_attribution': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'adjust_attribution_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'captcha_detection_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'dau_reporting_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']], 'home': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'home_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']], 'nimbus': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'nimbus_v1']], 'onboarding_opt_out': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'onboarding_opt_out_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'pageload_v1']], 'play_store_attribution': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'play_store_attribution_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_stable', 'usage_reporting_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'usage_reporting_clients_last_seen_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']], 'adjust_attribution': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'adjust_attribution_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'captcha_detection_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'dau_reporting_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']], 'home': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'home_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']], 'nimbus': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'nimbus_v1']], 'onboarding_opt_out': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'onboarding_opt_out_v1']], 'pageload': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'pageload_v1']], 'play_store_attribution': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'play_store_attribution_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_stable', 'usage_reporting_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_derived', 'usage_reporting_clients_last_seen_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']], 'extensionsession': [['moz-fx-data-shared-prod', 'org_mozilla_firefox_vpn_stable', 'extensionsession_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'captcha_detection_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'dau_reporting_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_focus_stable', 'usage_reporting_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_focus_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus_derived', 'usage_reporting_clients_last_seen_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'captcha_detection_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'dau_reporting_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_stable', 'usage_reporting_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_derived', 'usage_reporting_clients_last_seen_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'captcha_detection_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'dau_reporting_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_stable', 'usage_reporting_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_derived', 'usage_reporting_clients_last_seen_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'dau_reporting_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']], 'nimbus': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'nimbus_v1']], 'onboarding_opt_out': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'onboarding_opt_out_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_stable', 'usage_reporting_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_fennec_derived', 'usage_reporting_clients_last_seen_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'dau_reporting_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']], 'nimbus': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'nimbus_v1']], 'onboarding_opt_out': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'onboarding_opt_out_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_stable', 'usage_reporting_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefox_derived', 'usage_reporting_clients_last_seen_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'dau_reporting_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']], 'nimbus': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'nimbus_v1']], 'onboarding_opt_out': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'onboarding_opt_out_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_stable', 'usage_reporting_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxbeta_derived', 'usage_reporting_clients_last_seen_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']], 'extensionsession': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_stable', 'extensionsession_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']], 'extensionsession': [['moz-fx-data-shared-prod', 'org_mozilla_ios_firefoxvpn_network_extension_stable', 'extensionsession_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_stable', 'dau_reporting_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_stable', 'usage_reporting_v1']], 'usage_reporting_clients_daily': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_derived', 'usage_reporting_clients_daily_v1']], 'usage_reporting_clients_first_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_derived', 'usage_reporting_clients_first_seen_v1']], 'usage_reporting_clients_last_seen': [['moz-fx-data-shared-prod', 'org_mozilla_ios_focus_derived', 'usage_reporting_clients_last_seen_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_stable', 'dau_reporting_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_ios_klar_stable', 'usage_reporting_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'captcha_detection_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']], 'dau_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'dau_reporting_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'org_mozilla_klar_stable', 'usage_reporting_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'pine_stable', 'captcha_detection_v1']], 'dau_reporting': [['moz-fx-data-shared-prod', 'pine_stable', 'dau_reporting_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']], 'onboarding_opt_out': [['moz-fx-data-shared-prod', 'pine_stable', 'onboarding_opt_out_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']], 'usage_deletion_request': [['moz-fx-data-shared-prod', 'pine_stable', 'usage_deletion_request_v1']], 'usage_reporting': [['moz-fx-data-shared-prod', 'pine_stable', 'usage_reporting_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']], 'pocket_usage': [['moz-fx-data-shared-prod', 'pocket_derived', 'pocket_usage_v1']], '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_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']], 'events_stream': [['moz-fx-data-shared-prod', 'relay_backend_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'relay_backend', 'events']]}, '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_daily': [['moz-fx-data-shared-prod', 'search_derived', 'mobile_search_clients_daily_historical_pre202408'], ['moz-fx-data-shared-prod', 'search_derived', 'mobile_search_clients_daily_v2']], 'mobile_search_clients_engines_sources_daily': [['moz-fx-data-shared-prod', 'search_derived', 'mobile_search_clients_daily_historical_pre202408'], ['moz-fx-data-shared-prod', 'search_derived', 'mobile_search_clients_daily_v2']], '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']], 'daily_active_service_subscriptions': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'daily_active_service_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']], 'monthly_active_service_subscriptions': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'monthly_active_service_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']], 'service_subscription_events': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'service_subscription_events_v1']], 'service_subscriptions': [['moz-fx-data-shared-prod', 'subscription_platform_derived', 'service_subscriptions_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': {'analytics_314096102': [['moz-fx-data-marketing-prod', 'analytics_314096102', 'events_*']], 'analytics_432581103': [['moz-fx-data-marketing-prod', 'analytics_432581103', 'events_*']], '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']]}, 'syncstorage': {'events': [['moz-fx-data-shared-prod', 'syncstorage_stable', 'events_v1']], 'events_stream': [['moz-fx-data-shared-prod', 'syncstorage_derived', 'events_stream_v1']], 'events_unnested': [['moz-fx-data-shared-prod', 'syncstorage', 'events']]}, 'telemetry': {'accessibility_clients': [['moz-fx-data-shared-prod', 'telemetry_derived', 'accessibility_clients_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_agg_by_default_browser_lifecycle_stage': [['moz-fx-data-shared-prod', 'telemetry_derived', 'clients_daily_agg_by_default_browser_lifecycle_stage_v1']], '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_v3']], '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_v2']], 'cohort_weekly_statistics': [['moz-fx-data-shared-prod', 'telemetry_derived', 'cohort_weekly_statistics_v1']], 'cohort_weekly_statistics_by_app': [['moz-fx-data-shared-prod', 'telemetry', 'active_users'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'rolling_cohorts_v2']], 'cohort_weekly_statistics_by_app_channel_version': [['moz-fx-data-shared-prod', 'telemetry', 'active_users'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'rolling_cohorts_v2']], '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_acquisition_funnel_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'desktop_acquisition_funnel_aggregates_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_aggregates_v2']], '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_v2']], '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_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'event_aggregates_v1']], '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_crash_rates_live': [['moz-fx-data-shared-prod', 'org_mozilla_fenix_derived', 'experiment_crash_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_beta_derived', 'experiment_crash_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_firefox_derived', 'experiment_crash_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_beta_derived', 'experiment_crash_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_derived', 'experiment_crash_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_focus_nightly_derived', 'experiment_crash_events_live_v1'], ['moz-fx-data-shared-prod', 'org_mozilla_klar_derived', 'experiment_crash_events_live_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_crash_aggregates_v1'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_crash_events_live_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_unenrollment_overall': [['moz-fx-data-shared-prod', 'telemetry_derived', 'experiment_unenrollment_overall_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_installer_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'firefox_installer_aggregates_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']], 'fx_accounts_active_daily_clients': [['moz-fx-data-shared-prod', 'firefox_desktop', 'baseline_active_users'], ['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_accounts_active_daily_clients_v1']], 'fx_accounts_linked_clients': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_accounts_linked_clients_v1']], 'fx_accounts_linked_clients_ordered': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_accounts_linked_clients_ordered_v1']], 'fx_cert_error_ssl_handshake_failure_rate_by_country_os': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_cert_error_ssl_handshake_failure_rate_by_country_os_v1']], 'fx_cert_error_unique_users_normalized_channel': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_cert_error_unique_users_normalized_channel_v1']], 'fx_cert_error_unique_users_os': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_cert_error_unique_users_os_v1']], 'fx_dau_with_private_engine_default': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_dau_with_private_engine_default_v1']], 'fx_health_ind_antivirus': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_antivirus_v1']], 'fx_health_ind_bookmarks_by_country': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_bookmarks_by_country_v1']], 'fx_health_ind_bookmarks_by_os': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_bookmarks_by_os_v1']], 'fx_health_ind_bookmarks_by_os_version': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_bookmarks_by_os_version_v1']], 'fx_health_ind_cert_errors': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_cert_errors_v1']], 'fx_health_ind_clients_daily_by_country': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_clients_daily_by_country_v1']], 'fx_health_ind_clients_daily_by_os': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_clients_daily_by_os_v1']], 'fx_health_ind_clients_daily_by_os_version': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_clients_daily_by_os_version_v1']], 'fx_health_ind_desktop_dau_by_device_type': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_desktop_dau_by_device_type_v1']], 'fx_health_ind_fqueze_cpu_info': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_fqueze_cpu_info_v1']], 'fx_health_ind_mau_per_os': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_mau_per_os_v1']], 'fx_health_ind_mau_per_tier1_country': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_mau_per_tier1_country_v1']], 'fx_health_ind_new_profiles_by_os': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_new_profiles_by_os_v1']], 'fx_health_ind_np_by_install_type': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_np_by_install_type_v1']], 'fx_health_ind_page_reloads': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_page_reloads_v1']], 'fx_health_ind_ratios_smooth': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_ratios_smooth_v1']], 'fx_health_ind_searches_by_provider': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_searches_by_provider_v1']], 'fx_health_ind_vid_plybck_by_country': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_vid_plybck_by_country_v1']], 'fx_health_ind_vid_plybck_by_os': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_vid_plybck_by_os_v1']], 'fx_health_ind_vid_plybck_by_os_version': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_vid_plybck_by_os_version_v1']], 'fx_health_ind_webcompat': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_webcompat_v1']], 'fx_health_ind_win_instll_by_instll_typ': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_win_instll_by_instll_typ_v1']], 'fx_health_ind_win_uninstll': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_win_uninstll_v1']], 'fx_health_ind_windows_versions_mau_per_os': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_health_ind_windows_versions_mau_per_os_v1']], 'fx_privacy_dau_agg': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_privacy_dau_agg_v1']], 'fx_share_of_private_URI_loads': [['moz-fx-data-shared-prod', 'telemetry_derived', 'fx_share_of_private_URI_loads_v1']], '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']], 'install_vs_uninstall_by_os': [['moz-fx-data-shared-prod', 'telemetry_derived', 'install_vs_uninstall_by_os_v1']], 'install_vs_uninstall_ratio': [['moz-fx-data-shared-prod', 'telemetry_derived', 'install_vs_uninstall_ratio_v1']], 'install_vs_uninstall_ratio_by_country': [['moz-fx-data-shared-prod', 'telemetry_derived', 'install_vs_uninstall_ratio_by_country_v1']], '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']], 'ltv_desktop_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'ltv_desktop_aggregates_v1']], '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_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_activation_clients': [['moz-fx-data-shared-prod', 'fenix', 'new_profile_activation_clients'], ['moz-fx-data-shared-prod', 'firefox_ios', 'new_profile_activation_clients'], ['moz-fx-data-shared-prod', 'focus_android', 'new_profile_activation_clients'], ['moz-fx-data-shared-prod', 'focus_ios', 'new_profile_activation_clients'], ['moz-fx-data-shared-prod', 'klar_android', 'new_profile_activation_clients'], ['moz-fx-data-shared-prod', 'klar_ios', 'new_profile_activation_clients']], 'mobile_new_profile_activations': [['moz-fx-data-shared-prod', 'fenix', 'new_profile_activations'], ['moz-fx-data-shared-prod', 'firefox_ios', 'new_profile_activations'], ['moz-fx-data-shared-prod', 'focus_android', 'new_profile_activations'], ['moz-fx-data-shared-prod', 'focus_ios', 'new_profile_activations'], ['moz-fx-data-shared-prod', 'klar_android', 'new_profile_activations'], ['moz-fx-data-shared-prod', 'klar_ios', 'new_profile_activations']], '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']], 'network_usage': [['moz-fx-data-shared-prod', 'telemetry_derived', 'network_usage_v1']], '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_conditional_daily_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'newtab_conditional_daily_aggregates_v1']], 'newtab_daily_interactions_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'newtab_daily_interactions_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']], 'prvt_brwsng_mode_retention': [['moz-fx-data-shared-prod', 'telemetry_derived', 'prvt_brwsng_mode_retention_v1']], '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_v2']], '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']], '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_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_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_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']], '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']], 'uninstalls_by_account_signed_in_status': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_account_signed_in_status_v1']], 'uninstalls_by_addon': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_addon_v1']], 'uninstalls_by_attr_src': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_attr_src_v1']], 'uninstalls_by_browser_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_browser_aggregates_v1']], 'uninstalls_by_channel_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_channel_aggregates_v1']], 'uninstalls_by_country_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_country_aggregates_v1']], 'uninstalls_by_cpu_cores': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_cpu_cores_v1']], 'uninstalls_by_day': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_day_v1']], 'uninstalls_by_default': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_default_v1']], 'uninstalls_by_default_search_engine': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_default_search_engine_v1']], 'uninstalls_by_distribution_id': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_distribution_id_v1']], 'uninstalls_by_dlsource': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_dlsource_v1']], 'uninstalls_by_isp': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_isp_v1']], 'uninstalls_by_os_install_yr': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_os_install_yr_v1']], 'uninstalls_by_os_ver_aggregates': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_by_os_ver_aggregates_v1']], 'uninstalls_on_day_of_install_by_account_signed_in_status': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_on_day_of_install_by_account_signed_in_status_v1']], 'uninstalls_on_day_of_install_by_addon': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_on_day_of_install_by_addon_v1']], 'uninstalls_on_day_of_install_by_attr_src': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_on_day_of_install_by_attr_src_v1']], 'uninstalls_on_day_of_install_by_browser': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_on_day_of_install_by_browser_v1']], 'uninstalls_on_day_of_install_by_country': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_on_day_of_install_by_country_v1']], 'uninstalls_on_day_of_install_by_cpu_core_count': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_on_day_of_install_by_cpu_core_count_v1']], 'uninstalls_on_day_of_install_by_dflt_srch': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_on_day_of_install_by_dflt_srch_v1']], 'uninstalls_on_day_of_install_by_dlsource': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_on_day_of_install_by_dlsource_v1']], 'uninstalls_on_day_of_install_by_os_install_yr': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_on_day_of_install_by_os_install_yr_v1']], 'uninstalls_on_day_of_install_by_os_ver': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_on_day_of_install_by_os_ver_v1']], 'uninstalls_per_other_installs': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_per_other_installs_v1']], 'uninstalls_relative_to_profile_creation': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_relative_to_profile_creation_v1']], 'uninstalls_to_dau_ratio_by_country': [['moz-fx-data-shared-prod', 'telemetry_derived', 'uninstalls_to_dau_ratio_by_country_v1']], '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']], 'user_cancelled_install_share': [['moz-fx-data-shared-prod', 'telemetry_derived', 'user_cancelled_install_share_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', 'accounts_cirrus_derived', 'experiment_events_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']], 'captcha_detection': [['moz-fx-data-shared-prod', 'thunderbird_desktop_stable', 'captcha_detection_v1']], 'dau_reporting': [['moz-fx-data-shared-prod', 'thunderbird_desktop_stable', 'dau_reporting_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']]}, 'zoom': {'meeting_participants': [['moz-fx-data-bq-fivetran', 'zoom', 'meeting_participant']], 'meeting_reports': [['moz-fx-data-bq-fivetran', 'zoom', 'meeting_report']], 'meetings': [['moz-fx-data-bq-fivetran', 'zoom', 'meeting']], 'users': [['moz-fx-data-bq-fivetran', 'zoom', 'users']]}})
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:
47@dataclass(frozen=True, eq=True)
48class Datagroup:
49    """Represents a Datagroup."""
50
51    name: str
52    label: str
53    sql_trigger: str
54    description: str
55    max_cache_age: str = DEFAULT_MAX_CACHE_AGE
56
57    def __str__(self) -> str:
58        """Return the LookML string representation of a Datagroup."""
59        return lkml.dump({"datagroups": [self.__dict__]})  # type: ignore
60
61    def __lt__(self, other) -> bool:
62        """Make datagroups sortable."""
63        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) -> Any:
199def generate_datagroup(
200    view: View,
201    target_dir: Path,
202    namespace: str,
203    dryrun,
204) -> Any:
205    """Generate and write a datagroups.lkml file to the namespace folder."""
206    datagroups_folder_path = target_dir / namespace / "datagroups"
207
208    datagroup = None
209    try:
210        datagroup = _generate_view_datagroup(view, DATASET_VIEW_MAP, dryrun)
211    except DryRunError as e:
212        if e.error == Errors.PERMISSION_DENIED and e.use_cloud_function:
213            path = datagroups_folder_path / f"{e.table_id}_last_updated.datagroup.lkml"
214            print(
215                f"Permission error dry running: {path}. Copy existing file from looker-hub."
216            )
217            try:
218                get_file_from_looker_hub(path)
219            except Exception as ex:
220                print(f"Skip generating datagroup for {path}: {ex}")
221        else:
222            raise
223
224    datagroup_paths = []
225    if datagroup:
226        datagroups_folder_path.mkdir(exist_ok=True)
227        datagroup_lkml_path = (
228            datagroups_folder_path / f"{datagroup.name}.datagroup.lkml"
229        )
230        datagroup_lkml_path.write_text(FILE_HEADER + str(datagroup))
231        datagroup_paths.append(datagroup_lkml_path)
232
233    return datagroup_paths

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