@@ -3538,13 +3538,24 @@
stats
Statistics functions.
+mode_last (UDF)
+Returns the most frequently occuring element in an array.
+In the case of multiple values tied for the highest count, it returns
+the value that appears latest in the array. Nulls are ignored.
+See also: stats.mode_last_retain_nulls
,
+which retains nulls.
+Parameters
+INPUTS
+
+Source | Edit
mode_last_retain_nulls (UDF)
Returns the most frequently occuring element in an array. In the case
of multiple values tied for the highest count, it returns the
value that appears latest in the array. Nulls are retained.
See also: `stats.mode_last, which ignores
nulls.
-Parameters
+Parameters
INPUTS
@@ -3552,17 +3563,6 @@ Parameters
Source | Edit
-mode_last (UDF)
-Returns the most frequently occuring element in an array.
-In the case of multiple values tied for the highest count, it returns
-the value that appears latest in the array. Nulls are ignored.
-See also: stats.mode_last_retain_nulls
,
-which retains nulls.
-Parameters
-INPUTS
-
-Source | Edit
diff --git a/search/search_index.json b/search/search_index.json
index 04c2aa62cf6..ea62af3d3cd 100644
--- a/search/search_index.json
+++ b/search/search_index.json
@@ -1 +1 @@
-{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"bqetl/","title":"bqetl CLI","text":"The bqetl
command-line tool aims to simplify working with the bigquery-etl repository by supporting common workflows, such as creating, validating and scheduling queries or adding new UDFs.
Running some commands, for example to create or query tables, will require Mozilla GCP access.
"},{"location":"bqetl/#installation","title":"Installation","text":"Follow the Quick Start to set up bigquery-etl and the bqetl CLI.
"},{"location":"bqetl/#configuration","title":"Configuration","text":"bqetl
can be configured via the bqetl_project.yaml
file. See Configuration to find available configuration options.
"},{"location":"bqetl/#commands","title":"Commands","text":"To list all available commands in the bqetl CLI:
$ ./bqetl\n\nUsage: bqetl [OPTIONS] COMMAND [ARGS]...\n\n CLI tools for working with bigquery-etl.\n\nOptions:\n --version Show the version and exit.\n --help Show this message and exit.\n\nCommands:\n alchemer Commands for importing alchemer data.\n dag Commands for managing DAGs.\n dependency Build and use query dependency graphs.\n dryrun Dry run SQL.\n format Format SQL.\n glam Tools for GLAM ETL.\n mozfun Commands for managing mozfun routines.\n query Commands for managing queries.\n routine Commands for managing routines.\n stripe Commands for Stripe ETL.\n view Commands for managing views.\n backfill Commands for managing backfills.\n
See help for any command:
$ ./bqetl [command] --help\n
"},{"location":"bqetl/#query","title":"query
","text":"Commands for managing queries.
"},{"location":"bqetl/#create","title":"create
","text":"Create a new query with name ., for example: telemetry_derived.active_profiles. Use the --project_id
option to change the project the query is added to; default is moz-fx-data-shared-prod
. Views are automatically generated in the publicly facing dataset.
Usage
$ ./bqetl query create [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--owner: Owner of the query (email address)\n--init: Create an init.sql file to initialize the table\n--dag: Name of the DAG the query should be scheduled under.If there is no DAG name specified, the query isscheduled by default in DAG bqetl_default.To skip the automated scheduling use --no_schedule.To see available DAGs run `bqetl dag info`.To create a new DAG run `bqetl dag create`.\n--no_schedule: Using this option creates the query without scheduling information. Use `bqetl query schedule` to add it manually if required.\n
Examples
./bqetl query create telemetry_derived.deviations_v1 \\\n --owner=example@mozilla.com\n\n\n# The query version gets autocompleted to v1. Queries are created in the\n# _derived dataset and accompanying views in the public dataset.\n./bqetl query create telemetry.deviations --owner=example@mozilla.com\n
"},{"location":"bqetl/#schedule","title":"schedule
","text":"Schedule an existing query
Usage
$ ./bqetl query schedule [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--dag: Name of the DAG the query should be scheduled under. To see available DAGs run `bqetl dag info`. To create a new DAG run `bqetl dag create`.\n--depends_on_past: Only execute query if previous scheduled run succeeded.\n--task_name: Custom name for the Airflow task. By default the task name is a combination of the dataset and table name.\n
Examples
./bqetl query schedule telemetry_derived.deviations_v1 \\\n --dag=bqetl_deviations\n\n\n# Set a specific name for the task\n./bqetl query schedule telemetry_derived.deviations_v1 \\\n --dag=bqetl_deviations \\\n --task-name=deviations\n
"},{"location":"bqetl/#info","title":"info
","text":"Get information about all or specific queries.
Usage
$ ./bqetl query info [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--cost: Include information about query costs\n--last_updated: Include timestamps when destination tables were last updated\n
Examples
# Get info for specific queries\n./bqetl query info telemetry_derived.*\n\n\n# Get cost and last update timestamp information\n./bqetl query info telemetry_derived.clients_daily_v6 \\\n --cost --last_updated\n
"},{"location":"bqetl/#backfill","title":"backfill
","text":"Run a backfill for a query. Additional parameters will get passed to bq.
Usage
$ ./bqetl query backfill [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--start_date: First date to be backfilled\n--end_date: Last date to be backfilled\n--exclude: Dates excluded from backfill. Date format: yyyy-mm-dd\n--dry_run: Dry run the backfill\n--max_rows: How many rows to return in the result\n--parallelism: How many threads to run backfill in parallel\n--no_partition: Disable writing results to a partition. Overwrites entire destination table.\n--destination_table: Destination table name results are written to. If not set, determines destination table based on query.\n--checks: Whether to run checks during backfill\n
Examples
# Backfill for specific date range\n# second comment line\n./bqetl query backfill telemetry_derived.ssl_ratios_v1 \\\n --start_date=2021-03-01 \\\n --end_date=2021-03-31\n\n\n# Dryrun backfill for specific date range and exclude date\n./bqetl query backfill telemetry_derived.ssl_ratios_v1 \\\n --start_date=2021-03-01 \\\n --end_date=2021-03-31 \\\n --exclude=2021-03-03 \\\n --dry_run\n
"},{"location":"bqetl/#run","title":"run
","text":"Run a query. Additional parameters will get passed to bq. If a destination_table is set, the query result will be written to BigQuery. Without a destination_table specified, the results are not stored. If the name
is not found within the sql/
folder bqetl assumes it hasn't been generated yet and will start the generating process for all sql_generators/
files. This generation process will take some time and run dryrun calls against BigQuery but this is expected. Additional parameters (all parameters that are not specified in the Options) must come after the query-name. Otherwise the first parameter that is not an option is interpreted as the query-name and since it can't be found the generation process will start.
Usage
$ ./bqetl query run [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--public_project_id: Project with publicly accessible data\n--destination_table: Destination table name results are written to. If not set, the query result will not be written to BigQuery.\n--dataset_id: Destination dataset results are written to. If not set, determines destination dataset based on query.\n
Examples
# Run a query by name\n./bqetl query run telemetry_derived.ssl_ratios_v1\n\n\n# Run a query file\n./bqetl query run /path/to/query.sql\n\n\n# Run a query and save the result to BigQuery\n./bqetl query run telemetry_derived.ssl_ratios_v1 --project_id=moz-fx-data-shared-prod --dataset_id=telemetry_derived --destination_table=ssl_ratios_v1\n
"},{"location":"bqetl/#run-multipart","title":"run-multipart
","text":"Run a multipart query.
Usage
$ ./bqetl query run-multipart [OPTIONS] [query_dir]\n\nOptions:\n\n--using: comma separated list of join columns to use when combining results\n--parallelism: Maximum number of queries to execute concurrently\n--dataset_id: Default dataset, if not specified all tables must be qualified with dataset\n--project_id: GCP project ID\n--temp_dataset: Dataset where intermediate query results will be temporarily stored, formatted as PROJECT_ID.DATASET_ID\n--destination_table: table where combined results will be written\n--time_partitioning_field: time partition field on the destination table\n--clustering_fields: comma separated list of clustering fields on the destination table\n--dry_run: Print bytes that would be processed for each part and don't run queries\n--parameters: query parameter(s) to pass when running parts\n--priority: Priority for BigQuery query jobs; BATCH priority will significantly slow down queries if reserved slots are not enabled for the billing project; defaults to INTERACTIVE\n--schema_update_options: Optional options for updating the schema.\n
Examples
# Run a multipart query\n./bqetl query run_multipart /path/to/query.sql\n
"},{"location":"bqetl/#validate","title":"validate
","text":"Validate a query. Checks formatting, scheduling information and dry runs the query.
Usage
$ ./bqetl query validate [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--use_cloud_function: Use the Cloud Function for dry running SQL, if set to `True`. The Cloud Function can only access tables in shared-prod. If set to `False`, use active GCP credentials for the dry run.\n--validate_schemas: Require dry run schema to match destination table and file if present.\n--respect_dryrun_skip: Respect or ignore dry run skip configuration. Default is --ignore-dryrun-skip.\n--no_dryrun: Skip running dryrun. Default is False.\n
Examples
./bqetl query validate telemetry_derived.clients_daily_v6\n\n\n# Validate query not in shared-prod\n./bqetl query validate \\\n --use_cloud_function=false \\\n --project_id=moz-fx-data-marketing-prod \\\n ga_derived.blogs_goals_v1\n
"},{"location":"bqetl/#initialize","title":"initialize
","text":"Run a full backfill on the destination table for the query. Using this command will: - Create the table if it doesn't exist and run a full backfill. - Run a full backfill if the table exists and is empty. - Raise an exception if the table exists and has data, or if the table exists and the schema doesn't match the query. It supports query.sql
files that use the is_init() pattern, and init.sql
files. To run in parallel per sample_id, include a @sample_id parameter in the query.
Usage
$ ./bqetl query initialize [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--dry_run: Dry run the initialization\n--parallelism: Number of threads for parallel processing\n
Examples
Examples:\n - For init.sql files: ./bqetl query initialize telemetry_derived.ssl_ratios_v1\n - For query.sql files and parallel run: ./bqetl query initialize sql/moz-fx-data-shared-prod/telemetry_derived/clients_first_seen_v2/query.sql\n
"},{"location":"bqetl/#render","title":"render
","text":"Render a query Jinja template.
Usage
$ ./bqetl query render [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--output_dir: Output directory generated SQL is written to. If not specified, rendered queries are printed to console.\n
Examples
./bqetl query render telemetry_derived.ssl_ratios_v1 \\\n --output-dir=/tmp\n
"},{"location":"bqetl/#schema","title":"schema
","text":"Commands for managing query schemas.
"},{"location":"bqetl/#update","title":"update
","text":"Update the query schema based on the destination table schema and the query schema. If no schema.yaml file exists for a query, one will be created.
Usage
$ ./bqetl query schema update [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--update_downstream: Update downstream dependencies. GCP authentication required.\n--tmp_dataset: GCP datasets for creating updated tables temporarily.\n--use_cloud_function: Use the Cloud Function for dry running SQL, if set to `True`. The Cloud Function can only access tables in shared-prod. If set to `False`, use active GCP credentials for the dry run.\n--respect_dryrun_skip: Respect or ignore dry run skip configuration. Default is --respect-dryrun-skip.\n--parallelism: Number of threads for parallel processing\n
Examples
./bqetl query schema update telemetry_derived.clients_daily_v6\n\n# Update schema including downstream dependencies (requires GCP)\n./bqetl query schema update telemetry_derived.clients_daily_v6 --update-downstream\n
"},{"location":"bqetl/#deploy","title":"deploy
","text":"Deploy the query schema.
Usage
$ ./bqetl query schema deploy [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--force: Deploy the schema file without validating that it matches the query\n--use_cloud_function: Use the Cloud Function for dry running SQL, if set to `True`. The Cloud Function can only access tables in shared-prod. If set to `False`, use active GCP credentials for the dry run.\n--respect_dryrun_skip: Respect or ignore dry run skip configuration. Default is --respect-dryrun-skip.\n--skip_existing: Skip updating existing tables. This option ensures that only new tables get deployed.\n--skip_external_data: Skip publishing external data, such as Google Sheets.\n--destination_table: Destination table name results are written to. If not set, determines destination table based on query. Must be fully qualified (project.dataset.table).\n--parallelism: Number of threads for parallel processing\n
Examples
./bqetl query schema deploy telemetry_derived.clients_daily_v6\n
"},{"location":"bqetl/#validate_1","title":"validate
","text":"Validate the query schema
Usage
$ ./bqetl query schema validate [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--use_cloud_function: Use the Cloud Function for dry running SQL, if set to `True`. The Cloud Function can only access tables in shared-prod. If set to `False`, use active GCP credentials for the dry run.\n--respect_dryrun_skip: Respect or ignore dry run skip configuration. Default is --respect-dryrun-skip.\n
Examples
./bqetl query schema validate telemetry_derived.clients_daily_v6\n
"},{"location":"bqetl/#dag","title":"dag
","text":"Commands for managing DAGs.
"},{"location":"bqetl/#info_1","title":"info
","text":"Get information about available DAGs.
Usage
$ ./bqetl dag info [OPTIONS] [name]\n\nOptions:\n\n--dags_config: Path to dags.yaml config file\n--sql_dir: Path to directory which contains queries.\n--with_tasks: Include scheduled tasks\n
Examples
# Get information about all available DAGs\n./bqetl dag info\n\n# Get information about a specific DAG\n./bqetl dag info bqetl_ssl_ratios\n\n# Get information about a specific DAG including scheduled tasks\n./bqetl dag info --with_tasks bqetl_ssl_ratios\n
"},{"location":"bqetl/#create_1","title":"create
","text":"Create a new DAG with name bqetl_, for example: bqetl_search When creating new DAGs, the DAG name must have a bqetl_
prefix. Created DAGs are added to the dags.yaml
file.
Usage
$ ./bqetl dag create [OPTIONS] [name]\n\nOptions:\n\n--dags_config: Path to dags.yaml config file\n--schedule_interval: Schedule interval of the new DAG. Schedule intervals can be either in CRON format or one of: once, hourly, daily, weekly, monthly, yearly or a timedelta []d[]h[]m\n--owner: Email address of the DAG owner\n--description: Description for DAG\n--tag: Tag to apply to the DAG\n--start_date: First date for which scheduled queries should be executed\n--email: Email addresses that Airflow will send alerts to\n--retries: Number of retries Airflow will attempt in case of failures\n--retry_delay: Time period Airflow will wait after failures before running failed tasks again\n
Examples
./bqetl dag create bqetl_core \\\n--schedule-interval=\"0 2 * * *\" \\\n--owner=example@mozilla.com \\\n--description=\"Tables derived from `core` pings sent by mobile applications.\" \\\n--tag=impact/tier_1 \\\n--start-date=2019-07-25\n\n\n# Create DAG and overwrite default settings\n./bqetl dag create bqetl_ssl_ratios --schedule-interval=\"0 2 * * *\" \\\n--owner=example@mozilla.com \\\n--description=\"The DAG schedules SSL ratios queries.\" \\\n--tag=impact/tier_1 \\\n--start-date=2019-07-20 \\\n--email=example2@mozilla.com \\\n--email=example3@mozilla.com \\\n--retries=2 \\\n--retry_delay=30m\n
"},{"location":"bqetl/#generate","title":"generate
","text":"Generate Airflow DAGs from DAG definitions.
Usage
$ ./bqetl dag generate [OPTIONS] [name]\n\nOptions:\n\n--dags_config: Path to dags.yaml config file\n--sql_dir: Path to directory which contains queries.\n--output_dir: Path directory with generated DAGs\n
Examples
# Generate all DAGs\n./bqetl dag generate\n\n# Generate a specific DAG\n./bqetl dag generate bqetl_ssl_ratios\n
"},{"location":"bqetl/#remove","title":"remove
","text":"Remove a DAG. This will also remove the scheduling information from the queries that were scheduled as part of the DAG.
Usage
$ ./bqetl dag remove [OPTIONS] [name]\n\nOptions:\n\n--dags_config: Path to dags.yaml config file\n--sql_dir: Path to directory which contains queries.\n--output_dir: Path directory with generated DAGs\n
Examples
# Remove a specific DAG\n./bqetl dag remove bqetl_vrbrowser\n
"},{"location":"bqetl/#dependency","title":"dependency
","text":"Build and use query dependency graphs.
"},{"location":"bqetl/#show","title":"show
","text":"Show table references in sql files.
Usage
$ ./bqetl dependency show [OPTIONS] [paths]\n
"},{"location":"bqetl/#record","title":"record
","text":"Record table references in metadata. Fails if metadata already contains references section.
Usage
$ ./bqetl dependency record [OPTIONS] [paths]\n
"},{"location":"bqetl/#dryrun","title":"dryrun
","text":"Dry run SQL. Uses the dryrun Cloud Function by default which only has access to shared-prod. To dryrun queries accessing tables in another project use set --use-cloud-function=false
and ensure that the command line has access to a GCP service account.
Usage
$ ./bqetl dryrun [OPTIONS] [paths]\n\nOptions:\n\n--use_cloud_function: Use the Cloud Function for dry running SQL, if set to `True`. The Cloud Function can only access tables in shared-prod. If set to `False`, use active GCP credentials for the dry run.\n--validate_schemas: Require dry run schema to match destination table and file if present.\n--respect_skip: Respect or ignore query skip configuration. Default is --respect-skip.\n--project: GCP project to perform dry run in when --use_cloud_function=False\n
Examples
Examples:\n./bqetl dryrun sql/moz-fx-data-shared-prod/telemetry_derived/\n\n# Dry run SQL with tables that are not in shared prod\n./bqetl dryrun --use-cloud-function=false sql/moz-fx-data-marketing-prod/\n
"},{"location":"bqetl/#format","title":"format
","text":"Format SQL files.
Usage
$ ./bqetl format [OPTIONS] [paths]\n
Examples
# Format a specific file\n./bqetl format sql/moz-fx-data-shared-prod/telemetry/core/view.sql\n\n# Format all SQL files in `sql/`\n./bqetl format sql\n\n# Format standard in (will write to standard out)\necho 'SELECT 1,2,3' | ./bqetl format\n
"},{"location":"bqetl/#routine","title":"routine
","text":"Commands for managing routines for internal use.
"},{"location":"bqetl/#create_2","title":"create
","text":"Create a new routine. Specify whether the routine is a UDF or stored procedure by adding a --udf or --stored_prodecure flag.
Usage
$ ./bqetl routine create [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--udf: Create a new UDF\n--stored_procedure: Create a new stored procedure\n
Examples
# Create a UDF\n./bqetl routine create --udf udf.array_slice\n\n\n# Create a stored procedure\n./bqetl routine create --stored_procedure udf.events_daily\n\n\n# Create a UDF in a project other than shared-prod\n./bqetl routine create --udf udf.active_last_week --project=moz-fx-data-marketing-prod\n
"},{"location":"bqetl/#info_2","title":"info
","text":"Get routine information.
Usage
$ ./bqetl routine info [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--usages: Show routine usages\n
Examples
# Get information about all internal routines in a specific dataset\n./bqetl routine info udf.*\n\n\n# Get usage information of specific routine\n./bqetl routine info --usages udf.get_key\n
"},{"location":"bqetl/#validate_2","title":"validate
","text":"Validate formatting of routines and run tests.
Usage
$ ./bqetl routine validate [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--docs_only: Only validate docs.\n
Examples
# Validate all routines\n./bqetl routine validate\n\n\n# Validate selected routines\n./bqetl routine validate udf.*\n
"},{"location":"bqetl/#publish","title":"publish
","text":"Publish routines to BigQuery. Requires service account access.
Usage
$ ./bqetl routine publish [OPTIONS] [name]\n\nOptions:\n\n--project_id: GCP project ID\n--dependency_dir: The directory JavaScript dependency files for UDFs are stored.\n--gcs_bucket: The GCS bucket where dependency files are uploaded to.\n--gcs_path: The GCS path in the bucket where dependency files are uploaded to.\n--dry_run: Dry run publishing udfs.\n
Examples
# Publish all routines\n./bqetl routine publish\n\n\n# Publish selected routines\n./bqetl routine validate udf.*\n
"},{"location":"bqetl/#rename","title":"rename
","text":"Rename routine or routine dataset. Replaces all usages in queries with the new name.
Usage
$ ./bqetl routine rename [OPTIONS] [name] [new_name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n
Examples
# Rename routine\n./bqetl routine rename udf.array_slice udf.list_slice\n\n\n# Rename routine matching a specific pattern\n./bqetl routine rename udf.array_* udf.list_*\n
"},{"location":"bqetl/#mozfun","title":"mozfun
","text":"Commands for managing public mozfun routines.
"},{"location":"bqetl/#create_3","title":"create
","text":"Create a new mozfun routine. Specify whether the routine is a UDF or stored procedure by adding a --udf or --stored_prodecure flag. UDFs are added to the mozfun
project.
Usage
$ ./bqetl mozfun create [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--udf: Create a new UDF\n--stored_procedure: Create a new stored procedure\n
Examples
# Create a UDF\n./bqetl mozfun create --udf bytes.zero_right\n\n\n# Create a stored procedure\n./bqetl mozfun create --stored_procedure event_analysis.events_daily\n
"},{"location":"bqetl/#info_3","title":"info
","text":"Get mozfun routine information.
Usage
$ ./bqetl mozfun info [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--usages: Show routine usages\n
Examples
# Get information about all internal routines in a specific dataset\n./bqetl mozfun info hist.*\n\n\n# Get usage information of specific routine\n./bqetl mozfun info --usages hist.mean\n
"},{"location":"bqetl/#validate_3","title":"validate
","text":"Validate formatting of mozfun routines and run tests.
Usage
$ ./bqetl mozfun validate [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--docs_only: Only validate docs.\n
Examples
# Validate all routines\n./bqetl mozfun validate\n\n\n# Validate selected routines\n./bqetl mozfun validate hist.*\n
"},{"location":"bqetl/#publish_1","title":"publish
","text":"Publish mozfun routines. This command is used by Airflow only.
Usage
$ ./bqetl mozfun publish [OPTIONS] [name]\n\nOptions:\n\n--project_id: GCP project ID\n--dependency_dir: The directory JavaScript dependency files for UDFs are stored.\n--gcs_bucket: The GCS bucket where dependency files are uploaded to.\n--gcs_path: The GCS path in the bucket where dependency files are uploaded to.\n--dry_run: Dry run publishing udfs.\n
"},{"location":"bqetl/#rename_1","title":"rename
","text":"Rename mozfun routine or mozfun routine dataset. Replaces all usages in queries with the new name.
Usage
$ ./bqetl mozfun rename [OPTIONS] [name] [new_name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n
Examples
# Rename routine\n./bqetl mozfun rename hist.extract hist.ext\n\n\n# Rename routine matching a specific pattern\n./bqetl mozfun rename *.array_* *.list_*\n\n\n# Rename routine dataset\n./bqetl mozfun rename hist.* histogram.*\n
"},{"location":"cookbooks/common_workflows/","title":"Common bigquery-etl workflows","text":"This is a quick guide of how to perform common workflows in bigquery-etl using the bqetl
CLI.
For any workflow, the bigquery-etl repositiory needs to be locally available, for example by cloning the repository, and the bqetl
CLI needs to be installed by running ./bqetl bootstrap
.
"},{"location":"cookbooks/common_workflows/#adding-a-new-scheduled-query","title":"Adding a new scheduled query","text":"The Creating derived datasets tutorial provides a more detailed guide on creating scheduled queries.
- Run
./bqetl query create <dataset>.<table>_<version>
- Specify the desired destination dataset and table name for
<dataset>.<table>_<version>
- Directories and files are generated automatically
- Open
query.sql
file that has been created in sql/moz-fx-data-shared-prod/<dataset>/<table>_<version>/
to write the query - [Optional] Run
./bqetl query schema update <dataset>.<table>_<version>
to generate the schema.yaml
file - Optionally add column descriptions to
schema.yaml
- Open the
metadata.yaml
file in sql/moz-fx-data-shared-prod/<dataset>/<table>_<version>/
- Add a description of the query
- Add BigQuery information such as table partitioning or clustering
- See clients_daily_v6 for reference
- Run
./bqetl query validate <dataset>.<table>_<version>
to dry run and format the query - To schedule the query, first select a DAG from the
./bqetl dag info
list or create a new DAG ./bqetl dag create <bqetl_new_dag>
- Run
./bqetl query schedule <dataset>.<table>_<version> --dag <bqetl_dag>
to schedule the query - Create a pull request
- PR gets reviewed and eventually approved
- Merge pull-request
- Table deploys happen on a nightly cadence through the
bqetl_artifact_deployment
Airflow DAG - Clear the most recent DAG run once a new version of bigquery-etl has been deployed to create new datasets earlier
- Backfill data
- Option 1: via Airflow interface
- Option 2:
./bqetl query backfill --project-id <project id> <dataset>.<table>_<version>
"},{"location":"cookbooks/common_workflows/#update-an-existing-query","title":"Update an existing query","text":" - Open the
query.sql
file of the query to be updated and make changes - Run
./bqetl query validate <dataset>.<table>_<version>
to dry run and format the query - If the query scheduling metadata has changed, run
./bqetl dag generate <bqetl_dag>
to update the DAG file - If the query adds new columns, run
./bqetl query schema update <dataset>.<table>_<version>
to make local schema.yaml
updates - Open PR with changes
- PR reviewed and approved
- Merge pull-request
- Table deploys (including schema changes) happen on a nightly cadence through the
bqetl_artifact_deployment
Airflow DAG - Clear the most recent DAG run once a new version of bigquery-etl has been deployed to apply changes earlier
"},{"location":"cookbooks/common_workflows/#formatting-sql","title":"Formatting SQL","text":"We enforce consistent SQL formatting as part of CI. After adding or changing a query, use ./bqetl format
to apply formatting rules.
Directories and files passed as arguments to ./bqetl format
will be formatted in place, with directories recursively searched for files with a .sql
extension, e.g.:
$ echo 'SELECT 1,2,3' > test.sql\n$ ./bqetl format test.sql\nmodified test.sql\n1 file(s) modified\n$ cat test.sql\nSELECT\n 1,\n 2,\n 3\n
If no arguments are specified the script will read from stdin and write to stdout, e.g.:
$ echo 'SELECT 1,2,3' | ./bqetl format\nSELECT\n 1,\n 2,\n 3\n
To turn off sql formatting for a block of SQL, wrap it in format:off
and format:on
comments, like this:
SELECT\n -- format:off\n submission_date, sample_id, client_id\n -- format:on\n
"},{"location":"cookbooks/common_workflows/#add-a-new-field-to-a-table-schema","title":"Add a new field to a table schema","text":"Adding a new field to a table schema also means that the field has to propagate to several downstream tables, which makes it a more complex case.
- Open the
query.sql
file inside the <dataset>.<table>
location and add the new definitions for the field. - Run
./bqetl format <path to the query>
to format the query. Alternatively, run ./bqetl format $(git ls-tree -d HEAD --name-only)
validate the format of all queries that have been modified. - Run
./bqetl query validate <dataset>.<table>
to dry run the query. - For data scientists (and anyone without
jobs.create
permissions in moz-fx-data-shared-prod
), run: - (a)
gcloud auth login --update-adc # to authenticate to GCP
- (b)
gcloud config set project mozdata # to set the project
- (c)
./bqetl query validate --use-cloud-function=false --project-id=mozdata <full path to the query file>
- Run
./bqetl query schema update <dataset>.<table> --update_downstream
to make local schema.yaml updates and update schemas of downstream dependencies. - This requires GCP access.
-
--update_downstream
is optional as it takes longer. It is recommended when you know that there are downstream dependencies whose schema.yaml
need to be updated, in which case, the update will happen automatically. -
--force
should only be used in very specific cases, particularly the clients_last_seen
tables. It skips some checks that would otherwise catch some error scenarios.
- Open a new PR with these changes.
- PR reviewed and approved.
- Find and run again the CI pipeline for the PR.
- Make sure all dry runs are successful.
- Merge pull-request.
- Table deploys happen on a nightly cadence through the
bqetl_artifact_deployment
Airflow DAG - Clear the most recent DAG run once a new version of bigquery-etl has been deployed to apply changes earlier
The following is an example to update a new field in telemetry_derived.clients_daily_v6
"},{"location":"cookbooks/common_workflows/#example-add-a-new-field-to-clients_daily","title":"Example: Add a new field to clients_daily","text":" - Open the
clients_daily_v6
query.sql
file and add new field definitions. - Run
./bqetl format sql/moz-fx-data-shared-prod/telemetry_derived/clients_daily_v6/query.sql
- Run
./bqetl query validate telemetry_derived.clients_daily_v6
. - Authenticate to GCP:
gcloud auth login --update-adc
- Run
./bqetl query schema update telemetry_derived.clients_daily_v6 --update_downstream --ignore-dryrun-skip --use-cloud-function=false
. -
schema.yaml
files of downstream dependencies, like clients_last_seen_v1
are updated. - If the schema has no changes, we do not run schema updates on any of its downstream dependencies.
--use-cloud-function=false
is necessary when updating tables related to clients_daily
but optional for other tables. The dry run cloud function times out when fetching the deployed table schema for some of clients_daily
s downstream dependencies. Using GCP credentials instead works, however this means users need to have permissions to run queries in moz-fx-data-shared-prod
.
- Open a PR with these changes.
- PR is reviewed and approved.
- Merge pull-request.
- Table deploys happen on a nightly cadence through the
bqetl_artifact_deployment
Airflow DAG - Clear the most recent DAG run once a new version of bigquery-etl has been deployed to apply changes earlier
"},{"location":"cookbooks/common_workflows/#remove-a-field-from-a-table-schema","title":"Remove a field from a table schema","text":"Deleting a field from an existing table schema should be done only when is totally neccessary. If you decide to delete it: 1. Validate if there is data in the column and make sure data it is either backed up or it can be reprocessed. 1. Follow Big Query docs recommendations for deleting. 1. If the column size exceeds the allowed limit, consider setting the field as NULL. See this search_clients_daily_v8 PR for an example.
"},{"location":"cookbooks/common_workflows/#adding-a-new-mozfun-udf","title":"Adding a new mozfun UDF","text":" - Run
./bqetl mozfun create <dataset>.<name> --udf
. - Navigate to the
udf.sql
file in sql/mozfun/<dataset>/<name>/
and add UDF the definition and tests. - Run
./bqetl mozfun validate <dataset>.<name>
for formatting and running tests. - Before running the tests, you need to setup the access to the Google Cloud API.
- Open a PR.
- PR gets reviewed, approved and merged.
- To publish UDF immediately:
- Go to Airflow
mozfun
DAG and clear latest run. - Or else it will get published within a day when mozfun is executed next.
"},{"location":"cookbooks/common_workflows/#adding-a-new-internal-udf","title":"Adding a new internal UDF","text":"Internal UDFs are usually only used by specific queries. If your UDF might be useful to others consider publishing it as a mozfun
UDF.
- Run
./bqetl routine create <dataset>.<name> --udf
- Navigate to the
udf.sql
in sql/moz-fx-data-shared-prod/<dataset>/<name>/
file and add UDF definition and tests - Run
./bqetl routine validate <dataset>.<name>
for formatting and running tests - Before running the tests, you need to setup the access to the Google Cloud API.
- Open a PR
- PR gets reviewed and approved and merged
- UDF deploys happen on a nightly cadence through the
bqetl_artifact_deployment
Airflow DAG - Clear the most recent DAG run once a new version of bigquery-etl has been deployed to apply changes earlier
"},{"location":"cookbooks/common_workflows/#adding-a-stored-procedure","title":"Adding a stored procedure","text":"The same steps as creating a new UDF apply for creating stored procedures, except when initially creating the procedure execute ./bqetl mozfun create <dataset>.<name> --stored_procedure
or ./bqetl routine create <dataset>.<name> --stored_procedure
for internal stored procedures.
"},{"location":"cookbooks/common_workflows/#updating-an-existing-udf","title":"Updating an existing UDF","text":" - Navigate to the
udf.sql
file and make updates - Run
./bqetl mozfun validate <dataset>.<name>
or ./bqetl routine validate <dataset>.<name>
for formatting and running tests - Open a PR
- PR gets reviewed, approved and merged
"},{"location":"cookbooks/common_workflows/#renaming-an-existing-udf","title":"Renaming an existing UDF","text":" - Run
./bqetl mozfun rename <dataset>.<name> <new_dataset>.<new_name>
- References in queries to the UDF are automatically updated
- Open a PR
- PR gets reviews, approved and merged
"},{"location":"cookbooks/common_workflows/#using-a-private-internal-udf","title":"Using a private internal UDF","text":" - Follow the steps for Adding a new internal UDF above to create a stub of the private UDF. Note this should not contain actual private UDF code or logic. The directory name and function parameters should match the private UDF.
- Do Not publish the stub UDF. This could result in incorrect results for other users of the private UDF.
- Open a PR
- PR gets reviewed, approved and merged
"},{"location":"cookbooks/common_workflows/#creating-a-new-bigquery-dataset","title":"Creating a new BigQuery Dataset","text":"To provision a new BigQuery dataset for holding tables, you'll need to create a dataset_metadata.yaml
which will cause the dataset to be automatically deployed after merging. Changes to existing datasets may trigger manual operator approval (such as changing access policies). For more on access controls, see Data Access Workgroups in Mana.
The bqetl query create
command will automatically generate a skeleton dataset_metadata.yaml
file if the query name contains a dataset that is not yet defined.
See example with commentary for telemetry_derived
:
friendly_name: Telemetry Derived\ndescription: |-\n Derived data based on pings from legacy Firefox telemetry, plus many other\n general-purpose derived tables\nlabels: {}\n\n# Base ACL should can be:\n# \"derived\" for `_derived` datasets that contain concrete tables\n# \"view\" for user-facing datasets containing virtual views\ndataset_base_acl: derived\n\n# Datasets with user-facing set to true will be created both in shared-prod\n# and in mozdata; this should be false for all `_derived` datasets\nuser_facing: false\n\n# Most datasets can have mozilla-confidential access like below, but some\n# datasets will be defined with more restricted access or with additional\n# access for services; see \"Data Access Workgroups\" link above.\nworkgroup_access:\n- role: roles/bigquery.dataViewer\n members:\n - workgroup:mozilla-confidential\n
"},{"location":"cookbooks/common_workflows/#publishing-data","title":"Publishing data","text":"See also the reference for Public Data.
- Get a data review by following the data publishing process
- Update the
metadata.yaml
file of the query to be published - Set
public_bigquery: true
and optionally public_json: true
- Specify the
review_bugs
- If an internal dataset already exists, move it to
mozilla-public-data
- If an
init.sql
file exists for the query, change the destination project for the created table to mozilla-public-data
- Open a PR
- PR gets reviewed, approved and merged
- Once, ETL is running a view will get automatically published to
moz-fx-data-shared-prod
referencing the public dataset
"},{"location":"cookbooks/common_workflows/#adding-new-python-requirements","title":"Adding new Python requirements","text":"When adding a new library to the Python requirements, first add the library to the requirements and then add any meta-dependencies into constraints. Constraints are discovered by installing requirements into a fresh virtual environment. A dependency should be added to either requirements.txt
or constraints.txt
, but not both.
# Create a python virtual environment (not necessary if you have already\n# run `./bqetl bootstrap`)\npython3 -m venv venv/\n\n# Activate the virtual environment\nsource venv/bin/activate\n\n# If not installed:\npip install pip-tools --constraint requirements.in\n\n# Add the dependency to requirements.in e.g. Jinja2.\necho Jinja2==2.11.1 >> requirements.in\n\n# Compile hashes for new dependencies.\npip-compile --generate-hashes requirements.in\n\n# Deactivate the python virtual environment.\ndeactivate\n
"},{"location":"cookbooks/common_workflows/#making-a-pull-request-from-a-fork","title":"Making a pull request from a fork","text":"When opening a pull-request to merge a fork, the manual-trigger-required-for-fork
CI task will fail and some integration test tasks will be skipped. A user with repository write permissions will have to run the Push to upstream workflow and provide the <username>:<branch>
of the fork as parameter. The parameter will also show up in the logs of the manual-trigger-required-for-fork
CI task together with more detailed instructions. Once the workflow has been executed, the CI tasks, including the integration tests, of the PR will be executed.
"},{"location":"cookbooks/common_workflows/#building-the-documentation","title":"Building the Documentation","text":"The repository documentation is built using MkDocs. To generate and check the docs locally:
- Run
./bqetl docs generate --output_dir generated_docs
- Navigate to the
generated_docs
directory - Run
mkdocs serve
to start a local mkdocs
server.
"},{"location":"cookbooks/common_workflows/#setting-up-change-control-to-code-files","title":"Setting up change control to code files","text":"Each code files in the bigquery-etl repository can have a set of owners who are responsible to review and approve changes, and are automatically assigned as PR reviewers. The query files in the repo also benefit from the metadata labels to be able to validate and identify the data that is change controlled.
Here is a sample PR with the implementation of change control for contextual services data.
- Select or create a Github team or identity and add the GitHub emails of the query codeowners. A GitHub identity is particularly useful when you need to include non @mozilla emails or to randomly assign PR reviewers from the team members. This team requires edit permissions to bigquery-etl, to achieve this, inherit the team from one that has the required permissions e.g.
mozilla > telemetry
. - Open the
metadata.yaml
for the query where you want to apply change control: - In the section
owners
, add the selected GitHub identity, along with the list of owners' emails. - In the section
labels
, add change_controlled: true
. This enables identifying change controlled data in the BigQuery console and in the Data Catalog.
- Setup the
CODEOWNERS
: - Open the
CODEOWNERS
file located in the root of the repo. - Add a new row with the path and owners for the query. You can place it in the corresponding section or create a new section in the file, e.g.
/sql_generators/active_users/templates/ @mozilla/kpi_table_reviewers
.
- The queries labeled change_controlled are automatically validated in the CI. To run the validation locally:
- Run the command
script/bqetl query validate <query_path>
. - If the query is generated using the
/sql-generators
, first run ./script/bqetl generate <path>
and then run script/bqetl query validate <query_path>
.
"},{"location":"cookbooks/creating_a_derived_dataset/","title":"A quick guide to creating a derived dataset with BigQuery-ETL and how to set it up as a public dataset","text":"This guide takes you through the creation of a simple derived dataset using bigquery-etl and scheduling it using Airflow, to be updated on a daily basis. It applies to the products we ship to customers, that use (or will use) the Glean SDK.
This guide also includes the specific instructions to set it as a public dataset. Make sure you only set the dataset public if you expect the data to be available outside Mozilla. Read our public datasets reference for context.
To illustrate the overall process, we will use a simple test case and a small Glean application for which we want to generate an aggregated dataset based on the raw ping data.
If you are interested in looking at the end result, you can view the pull request at mozilla/bigquery-etl#1760.
"},{"location":"cookbooks/creating_a_derived_dataset/#background","title":"Background","text":"Mozregression is a developer tool used to help developers and community members bisect builds of Firefox to find a regression range in which a bug was introduced. It forms a key part of our quality assurance process.
In this example, we will create a table of aggregated metrics related to mozregression
, that will be used in dashboards to help prioritize feature development inside Mozilla.
"},{"location":"cookbooks/creating_a_derived_dataset/#initial-steps","title":"Initial steps","text":"Set up bigquery-etl on your system per the instructions in the README.md.
"},{"location":"cookbooks/creating_a_derived_dataset/#create-the-query","title":"Create the Query","text":"The first step is to create a query file and decide on the name of your derived dataset. In this case, we'll name it org_mozilla_mozregression_derived.mozregression_aggregates
.
The org_mozilla_mozregression_derived
part represents a BigQuery dataset, which is essentially a container of tables. By convention, we use the _derived
postfix to hold derived tables like this one.
Run:
./bqetl query create <dataset>.<table_name>\n
In our example: ./bqetl query create org_mozilla_mozregression_derived.mozregression_aggregates --dag bqetl_internal_tooling\n
This command does three things:
- Generate the template files
metadata.yaml
and query.sql
representing the query to build the dataset in sql/moz-fx-data-shared-prod/org_mozilla_mozregression_derived/mozregression_aggregates_v1
- Generate a \"view\" of the dataset in
sql/moz-fx-data-shared-prod/org_mozilla_mozregression/mozregression_aggregates
. - Add the scheduling information in the metadata, required to create a task in Airflow DAG
bqetl_internal_tooling
. - When the dag name is not given, the query is scheduled by default in DAG
bqetl_default
. - When the option
--no-schedule
is used, queries are not schedule. This option is available for queries that run once or should be scheduled at a later time. The query can be manually scheduled at a later time.
We generate the view to have a stable interface, while allowing the dataset backend to evolve over time. Views are automatically published to the mozdata
project.
"},{"location":"cookbooks/creating_a_derived_dataset/#fill-out-the-yaml","title":"Fill out the YAML","text":"The next step is to modify the generated metadata.yaml
and query.sql
sections with specific information.
Let's look at what the metadata.yaml
file for our example looks like. Make sure to adapt this file for your own dataset.
friendly_name: mozregression aggregates\ndescription:\n Aggregated metrics of mozregression usage\nlabels:\n incremental: true\nowners:\n - wlachance@mozilla.com\nbigquery:\n time_partitioning:\n type: day\n field: date\n require_partition_filter: true\n expiration_days: null\n clustering:\n fields:\n - app_used\n - os\n
Most of the fields are self-explanatory. incremental
means that the table is updated incrementally, e.g. a new partition gets added/updated to the destination table whenever the query is run. For non-incremental queries the entire destination is overwritten when the query is executed.
For big datasets make sure to include optimization strategies. Our aggregation is small so it is only for illustration purposes that we are including a partition by the date
field and a clustering on app_used
and os
.
"},{"location":"cookbooks/creating_a_derived_dataset/#the-yaml-file-structure-for-a-public-dataset","title":"The YAML file structure for a public dataset","text":"Setting the dataset as public means that it will be both in Mozilla's public BigQuery project and a world-accessible JSON endpoint, and is a process that requires a data review. The required labels are: public_json
, public_bigquery
and review_bugs
which refers to the Bugzilla bug where opening this data set up to the public was approved: we'll get to that in a subsequent section.
friendly_name: mozregression aggregates\ndescription:\n Aggregated metrics of mozregression usage\nlabels:\n incremental: true\n public_json: true\n public_bigquery: true\n review_bugs:\n - 1691105\nowners:\n - wlachance@mozilla.com\nbigquery:\n time_partitioning:\n type: day\n field: date\n require_partition_filter: true\n expiration_days: null\n clustering:\n fields:\n - app_used\n - os\n
"},{"location":"cookbooks/creating_a_derived_dataset/#fill-out-the-query","title":"Fill out the query","text":"Now that we've filled out the metadata, we can look into creating a query. In many ways, this is similar to creating a SQL query to run on BigQuery in other contexts (e.g. on sql.telemetry.mozilla.org or the BigQuery console)-- the key difference is that we use a @submission_date
parameter so that the query can be run on a day's worth of data to update the underlying table incrementally.
Test your query and add it to the query.sql
file.
In our example, the query is tested in sql.telemetry.mozilla.org
, and the query.sql
file looks like this:
SELECT\n DATE(submission_timestamp) AS date,\n client_info.app_display_version AS mozregression_version,\n metrics.string.usage_variant AS mozregression_variant,\n metrics.string.usage_app AS app_used,\n normalized_os AS os,\n mozfun.norm.truncate_version(normalized_os_version, \"minor\") AS os_version,\n count(DISTINCT(client_info.client_id)) AS distinct_clients,\n count(*) AS total_uses\nFROM\n `moz-fx-data-shared-prod`.org_mozilla_mozregression.usage\nWHERE\n DATE(submission_timestamp) = @submission_date\n AND client_info.app_display_version NOT LIKE '%.dev%'\nGROUP BY\n date,\n mozregression_version,\n mozregression_variant,\n app_used,\n os,\n os_version;\n
We use the truncate_version
UDF to omit the patch level for MacOS and Linux, which should both reduce the size of the dataset as well as make it more difficult to identify individual clients in an aggregated dataset.
We also have a short clause (client_info.app_display_version NOT LIKE '%.dev%'
) to omit developer versions from the aggregates: this makes sure we're not including people developing or testing mozregression itself in our results.
"},{"location":"cookbooks/creating_a_derived_dataset/#formatting-and-validating-the-query","title":"Formatting and validating the query","text":"Now that we've written our query, we can format it and validate it. Once that's done, we run:
./bqetl query validate <dataset>.<table>\n
For our example: ./bqetl query validate org_mozilla_mozregression_derived.mozregression_aggregates_v1\n
If there are no problems, you should see no output."},{"location":"cookbooks/creating_a_derived_dataset/#creating-the-table-schema","title":"Creating the table schema","text":"Use bqetl to set up the schema that will be used to create the table.
Review the schema.YAML generated as an output of the following command, and make sure all data types are set correctly and according to the data expected from the query.
./bqetl query schema update <dataset>.<table>`\n
For our example:
./bqetl query schema update org_mozilla_mozregression_derived.mozregression_aggregates_v1\n
"},{"location":"cookbooks/creating_a_derived_dataset/#creating-a-dag","title":"Creating a DAG","text":"BigQuery-ETL has some facilities in it to automatically add your query to telemetry-airflow (our instance of Airflow).
Before scheduling your query, you'll need to find an Airflow DAG to run it off of. In some cases, one may already exist that makes sense to use for your dataset -- look in dags.yaml
at the root or run ./bqetl dag info
. In this particular case, there's no DAG that really makes sense -- so we'll create a new one:
./bqetl dag create <dag_name> --schedule-interval \"0 4 * * *\" --owner <email_for_notifications> --description \"Add a clear description of the DAG here\" --start-date <YYYY-MM-DD> --tag impact/<tier>\n
For our example, the starting date is 2020-06-01
and we use a schedule interval of 0 4 \\* \\* \\*
(4am UTC daily) instead of \"daily\" (12am UTC daily) to make sure this isn't competing for slots with desktop and mobile product ETL.
The --tag impact/tier3
parameter specifies that this DAG is considered \"tier 3\". For a list of valid tags and their descriptions see Airflow Tags.
./bqetl dag create bqetl_internal_tooling --schedule-interval \"0 4 * * *\" --owner wlachance@mozilla.com --description \"This DAG schedules queries for populating queries related to Mozilla's internal developer tooling (e.g. mozregression).\" --start-date 2020-06-01 --tag impact/tier_3\n
"},{"location":"cookbooks/creating_a_derived_dataset/#scheduling-your-query","title":"Scheduling your query","text":"Queries are automatically scheduled during creation in the DAG set using the option --dag
, or in the default DAG bqetl_default
when this option is not used.
If the query was created with --no-schedule
, it is possible to manually schedule the query via the bqetl
tool:
./bqetl query schedule <dataset>.<table> --dag <dag_name> --task-name <task_name>\n
Here is the command for our example. Notice the name of the table as created with the suffix _v1.
./bqetl query schedule org_mozilla_mozregression_derived.mozregression_aggregates_v1 --dag bqetl_internal_tooling --task-name mozregression_aggregates__v1\n
Note that we are scheduling the generation of the underlying table which is org_mozilla_mozregression_derived.mozregression_aggregates_v1
rather than the view.
"},{"location":"cookbooks/creating_a_derived_dataset/#get-data-review","title":"Get Data Review","text":"This is for public datasets only! You can skip this step if you're only creating a dataset for Mozilla-internal use.
Before a dataset can be made public, it needs to go through data review according to our data publishing process. This means filing a bug, answering a few questions, and then finding a data steward to review your proposal.
The dataset we're using in this example is very simple and straightforward and does not have any particularly sensitive data, so the data review is very simple. You can see the full details in bug 1691105.
"},{"location":"cookbooks/creating_a_derived_dataset/#create-a-pull-request","title":"Create a Pull Request","text":"Now is a good time to create a pull request with your changes to GitHub. This is the usual git workflow:
git checkout -b <new_branch_name>\ngit add dags.yaml dags/<dag_name>.py sql/moz-fx-data-shared-prod/telemetry/<view> sql/moz-fx-data-shared-prod/<dataset>/<table>\ngit commit\ngit push origin <new_branch_name>\n
And next is the workflow for our specific example:
git checkout -b mozregression-aggregates\ngit add dags.yaml dags/bqetl_internal_tooling.py sql/moz-fx-data-shared-prod/org_mozilla_mozregression/mozregression_aggregates sql/moz-fx-data-shared-prod/org_mozilla_mozregression_derived/mozregression_aggregates_v1\ngit commit\ngit push origin mozregression-aggregates\n
Then create your pull request, either from the GitHub web interface or the command line, per your preference.
Note At this point, the CI is expected to fail because the schema does not exist yet in BigQuery. This will be handled in the next step.
This example assumes that origin
points to your fork. Adjust the last push invocation appropriately if you have a different remote set.
Speaking of forks, note that if you're making this pull request from a fork, many jobs will currently fail due to lack of credentials. In fact, even if you're pushing to the origin, you'll get failures because the table is not yet created. That brings us to the next step, but before going further it's generally best to get someone to review your work: at this point we have more than enough for people to provide good feedback on.
"},{"location":"cookbooks/creating_a_derived_dataset/#creating-an-initial-table","title":"Creating an initial table","text":"Once the PR has been approved, deploy the schema to bqetl using this command:
./bqetl query schema deploy <schema>.<table>\n
For our example:
./bqetl query schema deploy org_mozilla_mozregression_derived.mozregression_aggregates_v1\n
"},{"location":"cookbooks/creating_a_derived_dataset/#backfilling-the-dataset","title":"Backfilling the dataset","text":"It is recommended to use the bqetl backfill command in order to load the data in your new table, and set specific dates for large sets of data, as well as following the recommended practices.
bqetl query backfill <dataset>.<table> --project_id=moz-fx-data-shared-prod -s <YYYY-MM-DD> -e <YYYY-MM-DD> -n 0\n
For our example:
./bqetl query backfill org_mozilla_mozregression_derived.mozregression_aggregates_v1 --s 2020-04-01 --e 2021-02-01\n
Note. Alternatively, you can trigger the Airflow DAG to backfill the data. In this case, it is recommended to talk to someone in in Data Engineering or Data SRE to trigger the DAG.
"},{"location":"cookbooks/creating_a_derived_dataset/#completing-the-pull-request","title":"Completing the Pull Request","text":"At this point, the table exists in Bigquery so you are able to: - Find and re-run the CI of your PR and make sure that all tests pass - Merge your PR.
"},{"location":"cookbooks/testing/","title":"How to Run Tests","text":"This repository uses pytest
:
# create a venv\npython3.10 -m venv venv/\n\n# install pip-tools for managing dependencies\n./venv/bin/pip install pip-tools -c requirements.in\n\n# install python dependencies with pip-sync (provided by pip-tools)\n./venv/bin/pip-sync --pip-args=--no-deps requirements.txt\n\n# run pytest with all linters and 8 workers in parallel\n./venv/bin/pytest --black --flake8 --isort --mypy-ignore-missing-imports --pydocstyle -n 8\n\n# use -k to selectively run a set of tests that matches the expression `udf`\n./venv/bin/pytest -k udf\n\n# narrow down testpaths for quicker turnaround when selecting a single test\n./venv/bin/pytest -o \"testpaths=tests/sql\" -k mobile_search_aggregates_v1\n\n# run integration tests with 4 workers in parallel\ngcloud auth application-default login # or set GOOGLE_APPLICATION_CREDENTIALS\nexport GOOGLE_PROJECT_ID=bigquery-etl-integration-test\ngcloud config set project $GOOGLE_PROJECT_ID\n./venv/bin/pytest -m integration -n 4\n
To provide authentication credentials for the Google Cloud API the GOOGLE_APPLICATION_CREDENTIALS
environment variable must be set to the file path of the JSON file that contains the service account key. See Mozilla BigQuery API Access instructions to request credentials if you don't already have them.
"},{"location":"cookbooks/testing/#how-to-configure-a-udf-test","title":"How to Configure a UDF Test","text":"Include a comment like -- Tests
followed by one or more query statements after the UDF in the SQL file where it is defined. Each statement in a SQL file that defines a UDF that does not define a temporary function is collected as a test and executed independently of other tests in the file.
Each test must use the UDF and throw an error to fail. Assert functions defined in sql/mozfun/assert/
may be used to evaluate outputs. Tests must not use any query parameters and should not reference any tables. Each test that is expected to fail must be preceded by a comment like #xfail
, similar to a SQL dialect prefix in the BigQuery Cloud Console.
For example:
CREATE TEMP FUNCTION udf_example(option INT64) AS (\n CASE\n WHEN option > 0 then TRUE\n WHEN option = 0 then FALSE\n ELSE ERROR(\"invalid option\")\n END\n);\n-- Tests\nSELECT\n mozfun.assert.true(udf_example(1)),\n mozfun.assert.false(udf_example(0));\n#xfail\nSELECT\n udf_example(-1);\n#xfail\nSELECT\n udf_example(NULL);\n
"},{"location":"cookbooks/testing/#how-to-configure-a-generated-test","title":"How to Configure a Generated Test","text":"Queries are tested by running the query.sql
with test-input tables and comparing the result to an expected table. 1. Make a directory for test resources named tests/sql/{project}/{dataset}/{table}/{test_name}/
, e.g. tests/sql/moz-fx-data-shared-prod/telemetry_derived/clients_last_seen_raw_v1/test_single_day
- table
must match a directory named like {dataset}/{table}
, e.g. telemetry_derived/clients_last_seen_v1
- test_name
should start with test_
, e.g. test_single_day
- If test_name
is test_init
or test_script
, then the query will run init.sql
or script.sql
respectively; otherwise, the test will run query.sql
1. Add .yaml
files for input tables, e.g. clients_daily_v6.yaml
- Include the dataset prefix if it's set in the tested query, e.g. analysis.clients_last_seen_v1.yaml
- Include the project prefix if it's set in the tested query, e.g. moz-fx-other-data.new_dataset.table_1.yaml
- This will result in the dataset prefix being removed from the query, e.g. query = query.replace(\"analysis.clients_last_seen_v1\", \"clients_last_seen_v1\")
1. Add .sql
files for input view queries, e.g. main_summary_v4.sql
- Don't include a CREATE ... AS
clause - Fully qualify table names as `{project}.{dataset}.table`
- Include the dataset prefix if it's set in the tested query, e.g. telemetry.main_summary_v4.sql
- This will result in the dataset prefix being removed from the query, e.g. query = query.replace(\"telemetry.main_summary_v4\", \"main_summary_v4\")
1. Add expect.yaml
to validate the result - DATE
and DATETIME
type columns in the result are coerced to strings using .isoformat()
- Columns named generated_time
are removed from the result before comparing to expect
because they should not be static - NULL
values should be omitted in expect.yaml
. If a column is expected to be NULL
don't add it to expect.yaml
. (Be careful with spreading previous rows (-<<: *base
) here) 1. Optionally add .schema.json
files for input table schemas to the table directory, e.g. tests/sql/moz-fx-data-shared-prod/telemetry_derived/clients_last_seen_raw_v1/clients_daily_v6.schema.json
. These tables will be available for every test in the suite. The schema.json
file need to match the table name in the query.sql
file. If it has project and dataset listed there, the schema file also needs project and dataset. 1. Optionally add query_params.yaml
to define query parameters - query_params
must be a list
"},{"location":"cookbooks/testing/#init-tests","title":"Init Tests","text":"Tests of init.sql
statements are supported, similarly to other generated tests. Simply name the test test_init
. The other guidelines still apply.
Note: Init SQL statements must contain a create statement with the dataset and table name, like so:
CREATE OR REPLACE TABLE\n dataset.table_v1\nAS\n...\n
"},{"location":"cookbooks/testing/#additional-guidelines-and-options","title":"Additional Guidelines and Options","text":" - If the destination table is also an input table then
generated_time
should be a required DATETIME
field to ensure minimal validation - Input table files
- All of the formats supported by
bq load
are supported yaml
and json
format are supported and must contain an array of rows which are converted in memory to ndjson
before loading - Preferred formats are
yaml
for readability or ndjson
for compatiblity with bq load
expect.yaml
- File extensions
yaml
, json
and ndjson
are supported - Preferred formats are
yaml
for readability or ndjson
for compatiblity with bq load
- Schema files
- Setting the description of a top level field to
time_partitioning_field
will cause the table to use it for time partitioning - File extensions
yaml
, json
and ndjson
are supported - Preferred formats are
yaml
for readability or json
for compatiblity with bq load
- Query parameters
- Scalar query params should be defined as a dict with keys
name
, type
or type_
, and value
query_parameters.yaml
may be used instead of query_params.yaml
, but they are mutually exclusive - File extensions
yaml
, json
and ndjson
are supported - Preferred format is
yaml
for readability
"},{"location":"cookbooks/testing/#how-to-run-circleci-locally","title":"How to Run CircleCI Locally","text":" - Install the CircleCI Local CI
- Download GCP service account keys
- Integration tests will only successfully run with service account keys that belong to the
circleci
service account in the biguqery-etl-integration-test
project
- Run
circleci build
and set required environment variables GOOGLE_PROJECT_ID
and GCLOUD_SERVICE_KEY
:
gcloud_service_key=`cat /path/to/key_file.json`\n\n# to run a specific job, e.g. integration:\ncircleci build --job integration \\\n --env GOOGLE_PROJECT_ID=bigquery-etl-integration-test \\\n --env GCLOUD_SERVICE_KEY=$gcloud_service_key\n\n# to run all jobs\ncircleci build \\\n --env GOOGLE_PROJECT_ID=bigquery-etl-integration-test \\\n --env GCLOUD_SERVICE_KEY=$gcloud_service_key\n
"},{"location":"mozdata/accounts_backend/","title":"Accounts backend","text":"Views for accessing Mozilla Accounts backend derived data
Source Directory
"},{"location":"mozdata/accounts_backend/#accounts","title":"accounts","text":"Accounts table from production FxA database
accounts_backend.accounts
An authorized view on top of the accounts_backend_external.accounts_v1
table that only includes non-sensitive fields. Some fields in this table are converted to a more user-friendly, BigQuery-native format: - uid
is converted from bytes to a hex string - boolean integer columns are converted to BOOL - timestamp columns are converted to TIMESTAMP
See https://mozilla.github.io/ecosystem-platform/reference/database-structure#database-fxa
Schema Column Description Type Nullable uid Account ID in hexadecimal format. FxA stores this as bytes, for purposes of logging or integration with other systems we convert it to a hex string. String Yes emailVerified Boolean Yes verifierVersion Integer Yes verifierSetAt Timestamp Yes createdAt Timestamp Yes locale String Yes lockedAt Timestamp Yes profileChangedAt Timestamp Yes keysChangedAt Timestamp Yes ecosystemAnonId String Yes disabledAt Timestamp Yes metricsOptOutAt Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_external accounts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#accounts_events","title":"accounts_events","text":"Historical Pings for accounts-backend/accounts-events
accounts_backend.accounts_events
A historical view of pings sent for the accounts-backend/accounts-events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_stable accounts_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#baseline","title":"baseline","text":"Historical Pings for accounts-backend/baseline
accounts_backend.baseline
A historical view of pings sent for the accounts-backend/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
accounts_backend.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
accounts_backend.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
accounts_backend.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#deletion_request","title":"deletion_request","text":"Historical Pings for accounts-backend/deletion-request
accounts_backend.deletion_request
A historical view of pings sent for the accounts-backend/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#events","title":"events","text":"Historical Pings for accounts-backend/events
accounts_backend.events
A historical view of pings sent for the accounts-backend/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#events_unnested","title":"events_unnested","text":"Events Unnested
accounts_backend.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#metrics","title":"metrics","text":"Historical Pings for accounts-backend/metrics
accounts_backend.metrics
A historical view of pings sent for the accounts-backend/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
accounts_backend.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#nonprod_accounts","title":"nonprod_accounts","text":"Accounts table from FxA database in stage environment
accounts_backend.nonprod_accounts
An authorized view on top of the accounts_backend_external.nonprod_accounts_v1
table that only includes non-sensitive fields. Some fields in this table are converted to a more user-friendly, BigQuery-native format: - uid
is converted from bytes to a hex string - boolean integer columns are converted to BOOL - timestamp columns are converted to TIMESTAMP
See https://mozilla.github.io/ecosystem-platform/reference/database-structure#database-fxa
Schema Column Description Type Nullable uid Account ID in hexadecimal format. FxA stores this as bytes, for purposes of logging or integration with other systems we convert it to a hex string. String Yes emailVerified Boolean Yes verifierVersion Integer Yes verifierSetAt Timestamp Yes createdAt Timestamp Yes locale String Yes lockedAt Timestamp Yes profileChangedAt Timestamp Yes keysChangedAt Timestamp Yes ecosystemAnonId String Yes disabledAt Timestamp Yes metricsOptOutAt Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_external nonprod_accounts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_frontend/","title":"accounts-frontend","text":"User-facing views related to document namespace accounts-frontend; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/accounts-frontend
Source Directory
"},{"location":"mozdata/accounts_frontend/#accounts_events","title":"accounts_events","text":"Historical Pings for accounts-frontend/accounts-events
accounts_frontend.accounts_events
A historical view of pings sent for the accounts-frontend/accounts-events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_frontend_stable accounts_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_frontend/#deletion_request","title":"deletion_request","text":"Historical Pings for accounts-frontend/deletion-request
accounts_frontend.deletion_request
A historical view of pings sent for the accounts-frontend/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_frontend_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_frontend/#events","title":"events","text":"Historical Pings for accounts-frontend/events
accounts_frontend.events
A historical view of pings sent for the accounts-frontend/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_frontend_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_frontend/#events_unnested","title":"events_unnested","text":"Events Unnested
accounts_frontend.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_frontend events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/","title":"Activity Stream","text":"User-facing views related to document namespace activity-stream; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/activity-stream
Source Directory
"},{"location":"mozdata/activity_stream/#events","title":"events","text":"Historical Pings for activity-stream/events
activity_stream.events
A historical view of pings sent for the activity-stream/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable action_position A zero based integer indicating the position of this event Integer Yes additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes locale String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes page String Yes profile_creation_date Integer Yes region String Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes session_id A UUID representing an Activity Stream session. This can be used to do table joins between `sessions` and `events` in Activity Stream. Note that `n/a` denotes that the session is not applicable in the context. String Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes source String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes user_prefs An encoded integer representing user's preferences of Activity Stream Integer Yes value A string that describes the context about this event String Yes version String Yes browser_session_id A mirror of the browser sessionId, as defined in https://github.com/mozilla-services/mozilla-pipeline-schemas/blob/main/schemas/telemetry/main/main.4.schema.json String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#impression_stats","title":"impression_stats","text":"Historical Pings for activity-stream/impression-stats
activity_stream.impression_stats
A historical view of pings sent for the activity-stream/impression-stats
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_stable impression_stats_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#impression_stats_by_experiment","title":"impression_stats_by_experiment","text":"Impression Stats By Experiment
activity_stream.impression_stats_by_experiment
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_bi impression_stats_by_experiment_v1 moz-fx-data-shared-prod pocket spoc_tile_ids Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#impression_stats_flat","title":"impression_stats_flat","text":"Impression Stats Flat
activity_stream.impression_stats_flat
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_bi impression_stats_flat_v1 moz-fx-data-shared-prod pocket spoc_tile_ids Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#on_save_recs","title":"on_save_recs","text":"Historical Pings for activity-stream/on-save-recs
activity_stream.on_save_recs
A historical view of pings sent for the activity-stream/on-save-recs
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No impression_id A UUID representing this user. Note that it's not client_id, nor can it be used to link to a client_id String Yes locale String Yes metadata Record Yes model An identifier for the machine learning model used to generate the recommendations String Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_stable on_save_recs_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#pocket_button","title":"pocket_button","text":"Historical Pings for activity-stream/pocket-button
activity_stream.pocket_button
A historical view of pings sent for the activity-stream/pocket-button
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No impression_id A UUID representing this user. Note that it's not client_id, nor can it be used to link to a client_id String Yes locale String Yes metadata Record Yes model (In the case of actions related to on-save recs) An identifier for the machine learning model used to generate the recommendations. String Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes pocket_logged_in_status A boolean for whether the user was logged-in to the Pocket Firefox integration when they performed the indicated action(s). True = logged in. Boolean Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_stable pocket_button_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#sessions","title":"sessions","text":"Historical Pings for activity-stream/sessions
activity_stream.sessions
A historical view of pings sent for the activity-stream/sessions
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes locale String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes page String Yes perf Record Yes profile_creation_date Profile age in days since Unix epoch Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes session_duration The duration of this session in milliseconds. The session begins at `perf.visibility_event_rcvd_ts` and ends when the page is navigated away Integer Yes session_id A UUID representing an Activity Stream session. This can be used to do table joins between `sessions` and `events` in Activity Stream. Note that `n/a` denotes that the session is not applicable in the context. String Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes user_prefs An encoded integer representing user's preferences of Activity Stream Integer Yes version String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_stable sessions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#spoc_fills","title":"spoc_fills","text":"Historical Pings for activity-stream/spoc-fills
activity_stream.spoc_fills
A historical view of pings sent for the activity-stream/spoc-fills
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes document_id The document ID specified in the URI when the client sent this message String Yes impression_id A UUID representing this user. Note that it's not client_id, nor can it be used to link to a client_id String Yes locale String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes spoc_fills Record No submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_stable spoc_fills_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#tile_id_types","title":"tile_id_types","text":"Tile Id Types
activity_stream.tile_id_types
Please provide a description for the query
Schema Column Description Type Nullable tile_id Integer Yes type String Yes Referenced Tables Project Dataset Table pocket-tiles pocket_tiles_data tile_id_types Source Directory | View Definition | Metadata File
"},{"location":"mozdata/adjust/","title":"Adjust","text":"Views for accessing Adjust derived data
Source Directory
"},{"location":"mozdata/adjust/#adjust_cohort","title":"adjust_cohort","text":"Adjust Cohort
adjust.adjust_cohort
Please provide a description for the query
Schema Column Description Type Nullable cohort_start_month first day of the month when cohort starts being recorded Date Yes period_length length of period - in this table period is set to month String Yes period period number - number of period(months) between cohort start month and date data is recorded Integer Yes app application name ex. Firefox iOS and Android, pocket String Yes network String Yes network_token String Yes country String Yes os String Yes cohort_size Integer Yes retained_users Integer Yes retention_rate Float Yes time_spent_per_user Integer Yes time_spent_per_session Integer Yes time_spent Integer Yes sessions_per_user Float Yes sessions Integer Yes date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod adjust_derived adjust_cohort_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/adjust/#adjust_kpi_deliverables","title":"adjust_kpi_deliverables","text":"Adjust Kpi Deliverables
adjust.adjust_kpi_deliverables
Please provide a description for the query
Schema Column Description Type Nullable date date of the report and field that the table is partitioned by Date Yes app name of the application such as Firefox iOS and Android, pocket String Yes network String Yes network_token String Yes campaign String Yes campaign_token String Yes adgroup String Yes adgroup_token String Yes creative String Yes creative_token String Yes country String Yes os String Yes device String Yes clicks Integer Yes installs Integer Yes limit_ad_tracking_install_rate Float Yes click_conversion_rate Float Yes impression_conversion_rate Float Yes sessions Integer Yes daus Integer Yes waus Integer Yes maus Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod adjust_derived adjust_deliverables_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/ads/","title":"Ads","text":"Data related to the work of Mozilla Ads
Source Directory
"},{"location":"mozdata/ads/#nt_visits_to_sessions_conversion_factors_daily","title":"nt_visits_to_sessions_conversion_factors_daily","text":"Newtab Visits to Sessions Conversion Factors Daily
ads.nt_visits_to_sessions_conversion_factors_daily
Daily conversion factors allowing the translation of (Glean) Newtab visits to (PingCentre) Activity Stream sessions. This calculation only considers Desktop--Mobile's not in PingCentre.
Schema Column Description Type Nullable submission_date Data submission date Date Yes country Two-letter code corresponding to country String Yes newtab_clients Count of clients available in newtab for submission_date Integer Yes as_clients Count of clients available in activity-stream for submission_date Integer Yes newtab_visits Count of visits available in newtab for submission_date Integer Yes as_sessions Count of sessions available in activity-stream for submission_date Integer Yes conversion_factor Daily conversion factor allowing the translation of newtab visits to activity-stream sessions (as_sessions / newtab_visits) Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod ads_derived nt_visits_to_sessions_conversion_factors_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/amo_dev/","title":"AMO Stats Dev","text":"Derived data used to power the dev instance of the AMO stats dashboards
Source Directory
"},{"location":"mozdata/amo_dev/#amo_stats_dau","title":"amo_stats_dau","text":"Amo Stats Dau
amo_dev.amo_stats_dau
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes addon_id String Yes dau Integer Yes dau_by_addon_version Record No dau_by_app_os Record No dau_by_app_version Record No dau_by_fenix_build Record No dau_by_country Record No dau_by_locale Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod amo_dev amo_stats_dau_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/amo_dev/#amo_stats_dau_v2","title":"amo_stats_dau_v2","text":"AMO Stats DAU dev/stage
amo_dev.amo_stats_dau_v2
Reduced stats table for dev and stage versions of the AMO service.
- Schedule: daily
- Owners:
- kik@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes addon_id String Yes dau Integer Yes dau_by_addon_version Record No dau_by_app_version Record No dau_by_fenix_build Record No dau_by_locale Record No dau_by_country Record No dau_by_app_os Record No Source Directory | Metadata File
"},{"location":"mozdata/amo_dev/#amo_stats_installs","title":"amo_stats_installs","text":"Amo Stats Installs
amo_dev.amo_stats_installs
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes hashed_addon_id String Yes total_downloads Integer Yes downloads_per_campaign Record No downloads_per_content Record No downloads_per_source Record No downloads_per_medium Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod amo_dev amo_stats_installs_v3 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/amo_dev/#amo_stats_installs_v3","title":"amo_stats_installs_v3","text":"AMO Installs dev/stage
amo_dev.amo_stats_installs_v3
Reduced daily installs table for dev and stage versions of the AMO service.
- Schedule: daily
- Owners:
- kik@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes hashed_addon_id String Yes total_downloads Integer Yes downloads_per_source Record No downloads_per_content Record No downloads_per_medium Record No downloads_per_campaign Record No Source Directory | Metadata File
"},{"location":"mozdata/amo_prod/","title":"AMO Stats Prod","text":"Derived data used to power the AMO stats dashboards
Source Directory
"},{"location":"mozdata/amo_prod/#amo_stats_dau","title":"amo_stats_dau","text":"Amo Stats Dau
amo_prod.amo_stats_dau
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes addon_id String Yes dau Integer Yes dau_by_addon_version Record No dau_by_app_os Record No dau_by_app_version Record No dau_by_fenix_build Record No dau_by_country Record No dau_by_locale Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod amo_prod amo_stats_dau_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/amo_prod/#amo_stats_dau_v2","title":"amo_stats_dau_v2","text":"AMO Stats DAU
amo_prod.amo_stats_dau_v2
Daily user statistics to power addons.mozilla.org stats pages. See bug 1572873.
Each row in this table represents a particular addon on a particular day and provides all the information needed to populate the various \"Daily Users\" plots for the AMO stats dashboard.
- Schedule: daily
- Owners:
- kik@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes addon_id String Yes dau Integer Yes dau_by_addon_version Record No dau_by_app_version Record No dau_by_fenix_build Record No dau_by_locale Record No dau_by_country Record No dau_by_app_os Record No Source Directory | Metadata File
"},{"location":"mozdata/amo_prod/#amo_stats_installs","title":"amo_stats_installs","text":"Amo Stats Installs
amo_prod.amo_stats_installs
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes hashed_addon_id String Yes total_downloads Integer Yes downloads_per_campaign Record No downloads_per_content Record No downloads_per_source Record No downloads_per_medium Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod amo_prod amo_stats_installs_v3 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/amo_prod/#amo_stats_installs_v3","title":"amo_stats_installs_v3","text":"AMO Stats DAU
amo_prod.amo_stats_installs_v3
Daily install statistics to power addons.mozilla.org stats pages. See bug 1654330. Note that this table uses a hashed_addon_id defined as TO_HEX(SHA256(addon_id))
because the underlying event pings have limitations on length of properties attached to events and addon_id values are sometimes too long. The AMO stats application looks up records in this table based on the hashed_addon_id.
- Schedule: daily
- Owners:
- kik@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes hashed_addon_id String Yes total_downloads Integer Yes downloads_per_source Record No downloads_per_content Record No downloads_per_medium Record No downloads_per_campaign Record No Source Directory | Metadata File
"},{"location":"mozdata/amo_prod/#desktop_addons_by_client_v1","title":"desktop_addons_by_client_v1","text":"Desktop addons by client
amo_prod.desktop_addons_by_client_v1
Clients_daily-like table that records only the dimensions and addon info necessary to power daily the amo_stats_dau_v2 query.
- Schedule: daily
- Owners:
- kik@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes app_version String Yes country String Yes locale String Yes app_os String Yes addons Record No Source Directory | Metadata File
"},{"location":"mozdata/amo_prod/#fenix_addons_by_client_v1","title":"fenix_addons_by_client_v1","text":"Fenix addons by client
amo_prod.fenix_addons_by_client_v1
Clients_daily-like table on top of the various Firefox for Android channels that records only the dimensions and addon info necessary to power the daily amo_stats_dau_v2 query.
- Schedule: daily
- Owners:
- kik@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes app_version String Yes country String Yes locale String Yes app_os String Yes addons Record No Source Directory | Metadata File
"},{"location":"mozdata/analysis/","title":"Analysis","text":"User-generated tables for analysis
Source Directory
"},{"location":"mozdata/analysis/#bqetl_default_task_v1","title":"bqetl_default_task_v1","text":"Default Task for DAG bqetl_default
analysis.bqetl_default_task_v1
Placeholder task to generate the default DAG. See https://github.com/mozilla/bigquery-etl/issues/3650. This query returns no rows and is just used to ensure that the bqetl_default DAG has at least one task, otherwise the DAG would be invalid.
Schema Column Description Type Nullable f0_ Integer Yes Source Directory | Metadata File
"},{"location":"mozdata/app_store/","title":"App Store","text":"Views on the App Store data pulled from Fivetran.
Source Directory
"},{"location":"mozdata/app_store/#firefox_app_store_territory_source_type_report","title":"firefox_app_store_territory_source_type_report","text":"Firefox App Store Territory Source Type Report
app_store.firefox_app_store_territory_source_type_report
Please provide a description for the query
Schema Column Description Type Nullable app_id Integer Yes date Timestamp Yes source_type String Yes territory String Yes _fivetran_synced Timestamp Yes impressions Integer Yes impressions_unique_device Integer Yes meets_threshold Boolean Yes page_views Integer Yes page_views_unique_device Integer Yes date_pst Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod app_store_external firefox_app_store_territory_source_type_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/app_store/#firefox_downloads_territory_source_type_report","title":"firefox_downloads_territory_source_type_report","text":"Firefox Downloads Territory Source Type Report
app_store.firefox_downloads_territory_source_type_report
Please provide a description for the query
Schema Column Description Type Nullable app_id Integer Yes date Timestamp Yes source_type String Yes territory String Yes _fivetran_synced Timestamp Yes first_time_downloads Integer Yes meets_threshold Boolean Yes redownloads Integer Yes total_downloads Integer Yes date_pst Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod app_store_external firefox_downloads_territory_source_type_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/app_store/#firefox_usage_territory_source_type_report","title":"firefox_usage_territory_source_type_report","text":"Firefox Usage Territory Source Type Report
app_store.firefox_usage_territory_source_type_report
Please provide a description for the query
Schema Column Description Type Nullable app_id Integer Yes date Timestamp Yes source_type String Yes territory String Yes _fivetran_synced Timestamp Yes active_devices Integer Yes active_devices_last_30_days Integer Yes deletions Integer Yes installations Integer Yes meets_threshold Boolean Yes sessions Integer Yes date_pst Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod app_store_external firefox_usage_territory_source_type_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/apple_ads/","title":"Apple Ads","text":"User facing views for Apple Ads data ingested via Fivetran.
Source Directory
"},{"location":"mozdata/apple_ads/#ad_group_report","title":"ad_group_report","text":"Ad Group Report
apple_ads.ad_group_report
Please provide a description for the query
Schema Column Description Type Nullable date_day Date of the report. Date Yes organization_id Organization ID associated with this record. Integer Yes organization_name Organization name associated with this record. String Yes campaign_id Campaign ID associated with this record. Integer Yes campaign_name Campaign name associated with this record. String Yes ad_group_id Ad group ID associated with this record. Integer Yes ad_group_name Ad group name associated with this record. String Yes currency This currency value should match the respective organization's currency value. String Yes ad_group_status The status of the ad group associated with this record. String Yes start_at The start timestamp for this ad group. Timestamp Yes end_at The end timestamp for this ad group. Timestamp Yes taps Number of taps on ad group on given day. Integer Yes new_downloads App downloads from new users who have never before installed app of ad group in a given day. Integer Yes redownloads Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of ad group in a given day. Integer Yes total_downloads The sum of new_downloads and redownloads. Integer Yes impressions The number of impressions of ad group in a given day. Integer Yes spend The spend on ad group in the given day. Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod apple_ads_external ad_group_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/apple_ads/#campaign_report","title":"campaign_report","text":"Campaign Report
apple_ads.campaign_report
Please provide a description for the query
Schema Column Description Type Nullable date_day Date of the report. Date Yes organization_id Organization ID associated with this record. Integer Yes organization_name Organization name associated with this record. String Yes campaign_id Campaign ID associated with this record. Integer Yes campaign_name Campaign name associated with this record. String Yes currency This currency value should match the respective organization's currency value. String Yes campaign_status The status of the campaign associted with this record. String Yes start_at The start timestamp for this ad group. Timestamp Yes end_at The end timestamp for this ad group. Timestamp Yes taps Number of taps on ad group on given day. Integer Yes new_downloads App downloads from new users who have never before installed app of ad group in a given day. Integer Yes redownloads Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of ad group in a given day. Integer Yes total_downloads The sum of new_downloads and redownloads. Integer Yes impressions The number of impressions of ad group in a given day. Integer Yes spend The spend on ad group in the given day. Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod apple_ads_external campaign_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/apple_ads/#keyword_report","title":"keyword_report","text":"Keyword Report
apple_ads.keyword_report
Please provide a description for the query
Schema Column Description Type Nullable date_day Date of the report. Date Yes organization_id Organization ID associated with this record. Integer Yes organization_name Organization name associated with this record. String Yes campaign_id Campaign ID associated with this record. Integer Yes campaign_name Campaign name associated with this record. String Yes ad_group_id Ad group ID associated with this record. Integer Yes ad_group_name Ad group name associated with this record. String Yes keyword_id Creative set name associatd with this record. Integer Yes keyword_text Creative set ID associated with this record. String Yes match_type Controls how ads are matched to user searches; EXACT or BROAD. String Yes currency This currency value should match the respective organization's currency value. String Yes keyword_status The status of the keyword associated with this record. String Yes taps Number of taps on keyword on given day. Integer Yes new_downloads App downloads from new users who have never before installed app of keyword in a given day. Integer Yes redownloads Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of keyword in a given day. Integer Yes total_downloads The sum of new_downloads and redownloads. Integer Yes impressions The number of impressions of keyword in a given day. Integer Yes spend The spend on keyword in the given day. Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod apple_ads_external keyword_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/apple_ads/#organization_report","title":"organization_report","text":"Organization Report
apple_ads.organization_report
Please provide a description for the query
Schema Column Description Type Nullable date_day Date of the report. Date Yes organization_id Organization ID associated with this record. Integer Yes organization_name Organization name associated with this record. String Yes currency This currency value should match the respective organization's currency value. String Yes taps Number of taps on organization on given day. Integer Yes new_downloads App downloads from new users who have never before installed app of organization in a given day. Integer Yes redownloads Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of organization in a given day. Integer Yes total_downloads The sum of new_downloads and redownloads. Integer Yes impressions The number of impressions of organization in a given day. Integer Yes spend The spend on organization in the given day. Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod apple_ads_external organization_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/apple_ads/#search_term_report","title":"search_term_report","text":"Search Term Report
apple_ads.search_term_report
Please provide a description for the query
Schema Column Description Type Nullable date_day Date of the report. Date Yes organization_id Organization ID associated with this record. Integer Yes organization_name Organization name associated with this record. String Yes campaign_id Campaign ID associated with this record. Integer Yes campaign_name Campaign name associated with this record. String Yes ad_group_id Ad group ID associated with this record. Integer Yes ad_group_name Ad group name associated with this record. String Yes keyword_id Integer Yes keyword_text String Yes search_term_text Search term text. String Yes match_type Controls how ads are matched to user searches; EXACT or BROAD. String Yes currency This currency value should match the respective organization's currency value. String Yes taps Number of taps on organization on given day. Integer Yes new_downloads App downloads from new users who have never before installed app of organization in a given day. Integer Yes redownloads Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of organization in a given day. Integer Yes total_downloads The sum of new_downloads and redownloads. Integer Yes impressions The number of impressions of organization in a given day. Integer Yes spend The spend on organization in the given day. Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod apple_ads_external search_term_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bedrock/","title":"bedrock","text":"User-facing views related to document namespace bedrock; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/bedrock
Source Directory
"},{"location":"mozdata/bedrock/#deletion_request","title":"deletion_request","text":"Historical Pings for bedrock/deletion-request
bedrock.deletion_request
A historical view of pings sent for the bedrock/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod bedrock_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bedrock/#events","title":"events","text":"Historical Pings for bedrock/events
bedrock.events
A historical view of pings sent for the bedrock/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod bedrock_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bedrock/#events_unnested","title":"events_unnested","text":"Events Unnested
bedrock.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod bedrock events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bedrock/#interaction","title":"interaction","text":"Historical Pings for bedrock/interaction
bedrock.interaction
A historical view of pings sent for the bedrock/interaction
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod bedrock_stable interaction_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bedrock/#non_interaction","title":"non_interaction","text":"Historical Pings for bedrock/non-interaction
bedrock.non_interaction
A historical view of pings sent for the bedrock/non-interaction
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod bedrock_stable non_interaction_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bedrock/#page_view","title":"page_view","text":"Historical Pings for bedrock/page-view
bedrock.page_view
A historical view of pings sent for the bedrock/page-view
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod bedrock_stable page_view_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bergamot/","title":"Bergamot","text":"Views on data from bergamot
Source Directory
"},{"location":"mozdata/bergamot/#custom","title":"custom","text":"App-specific view for Glean ping \"custom\"
bergamot.custom
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Bergamot Translator\" (org_mozilla_bergamot.custom).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot custom Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bergamot/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
bergamot.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Bergamot Translator\" (org_mozilla_bergamot.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bergamot/#events","title":"events","text":"App-specific view for Glean ping \"events\"
bergamot.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Bergamot Translator\" (org_mozilla_bergamot.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bergamot/#events_unnested","title":"events_unnested","text":"Events Unnested
bergamot.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/blpadi/","title":"Blocklist ADI","text":"Historical data for Firefox active daily installations.
See https://wiki.mozilla.org/ADI
Source Directory
"},{"location":"mozdata/burnham/","title":"burnham","text":"User-facing views related to document namespace burnham; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/burnham
Source Directory
"},{"location":"mozdata/burnham/#baseline","title":"baseline","text":"Historical Pings for burnham/baseline
burnham.baseline
A historical view of pings sent for the burnham/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
burnham.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
burnham.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
burnham.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
burnham.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#deletion_request","title":"deletion_request","text":"Historical Pings for burnham/deletion-request
burnham.deletion_request
A historical view of pings sent for the burnham/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#discovery","title":"discovery","text":"Historical Pings for burnham/discovery
burnham.discovery
A historical view of pings sent for the burnham/discovery
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable discovery_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#events","title":"events","text":"Historical Pings for burnham/events
burnham.events
A historical view of pings sent for the burnham/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#events_unnested","title":"events_unnested","text":"Events Unnested
burnham.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#metrics","title":"metrics","text":"Historical Pings for burnham/metrics
burnham.metrics
A historical view of pings sent for the burnham/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
burnham.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
burnham.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#space_ship_ready","title":"space_ship_ready","text":"Historical Pings for burnham/space-ship-ready
burnham.space_ship_ready
A historical view of pings sent for the burnham/space-ship-ready
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable space_ship_ready_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#starbase46","title":"starbase46","text":"Historical Pings for burnham/starbase46
burnham.starbase46
A historical view of pings sent for the burnham/starbase46
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable starbase46_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/","title":"contextual-services","text":"User-facing views related to document namespace contextual-services; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/contextual-services
Source Directory
"},{"location":"mozdata/contextual_services/#adm_forecasting","title":"adm_forecasting","text":"AdM Forecasting
contextual_services.adm_forecasting
Data for AdM forecasts: Sponsored Tiles and Suggest.
- Owners:
- skahmann@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived adm_forecasting_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#event_aggregates","title":"event_aggregates","text":"Contextual Services Event Aggregates
contextual_services.event_aggregates
Aggregated event and user counts for topsites and quicksuggest
- Owners:
- rburwei@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived event_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#event_aggregates_spons_tiles","title":"event_aggregates_spons_tiles","text":"Contextual Services Event Aggregates for Sponsored tiles
contextual_services.event_aggregates_spons_tiles
Aggregated event counts for sponsored tiles
- Owners:
- rburwei@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived event_aggregates_spons_tiles_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#event_aggregates_suggest","title":"event_aggregates_suggest","text":"Contextual Services Event Aggregates for Suggest
contextual_services.event_aggregates_suggest
Aggregated event counts for suggest
- Owners:
- rburwei@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived event_aggregates_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#quicksuggest_block","title":"quicksuggest_block","text":"Historical Pings for contextual-services/quicksuggest-block
contextual_services.quicksuggest_block
A historical view of pings sent for the contextual-services/quicksuggest-block
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_stable quicksuggest_block_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#quicksuggest_click","title":"quicksuggest_click","text":"Historical Pings for contextual-services/quicksuggest-click
contextual_services.quicksuggest_click
A historical view of pings sent for the contextual-services/quicksuggest-click
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_stable quicksuggest_click_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#quicksuggest_click_live","title":"quicksuggest_click_live","text":"Live Pings for contextual-services/quicksuggest-click
contextual_services.quicksuggest_click_live
A live view of pings sent for the contextual-services/quicksuggest-click
document type.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_live quicksuggest_click_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#quicksuggest_impression","title":"quicksuggest_impression","text":"Historical Pings for contextual-services/quicksuggest-impression
contextual_services.quicksuggest_impression
A historical view of pings sent for the contextual-services/quicksuggest-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_stable quicksuggest_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#quicksuggest_impression_live","title":"quicksuggest_impression_live","text":"Live Pings for contextual-services/quicksuggest-impression
contextual_services.quicksuggest_impression_live
A live view of pings sent for the contextual-services/quicksuggest-impression
document type, but with search terms fields excluded.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_live quicksuggest_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#request_payload_suggest","title":"request_payload_suggest","text":"Request Payload Suggest
contextual_services.request_payload_suggest
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived request_payload_suggest_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#request_payload_tiles","title":"request_payload_tiles","text":"Request Payload Tiles
contextual_services.request_payload_tiles
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived request_payload_tiles_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#suggest_revenue_levers_daily","title":"suggest_revenue_levers_daily","text":"Suggest Revenue Levers Daily
contextual_services.suggest_revenue_levers_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived suggest_revenue_levers_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#topsites_click","title":"topsites_click","text":"Historical Pings for contextual-services/topsites-click
contextual_services.topsites_click
A historical view of pings sent for the contextual-services/topsites-click
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_stable topsites_click_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#topsites_click_live","title":"topsites_click_live","text":"Live Pings for contextual-services/topsites-click
contextual_services.topsites_click_live
A live view of pings sent for the contextual-services/topsites-click
document type.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_live topsites_click_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#topsites_impression","title":"topsites_impression","text":"Historical Pings for contextual-services/topsites-impression
contextual_services.topsites_impression
A historical view of pings sent for the contextual-services/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#topsites_impression_live","title":"topsites_impression_live","text":"Live Pings for contextual-services/topsites-impression
contextual_services.topsites_impression_live
A live view of pings sent for the contextual-services/topsites-impression
document type.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_live topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/coverage/","title":"coverage","text":"User-facing views related to document namespace coverage; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/coverage
Source Directory
"},{"location":"mozdata/coverage/#coverage","title":"coverage","text":"Historical Pings for coverage/coverage
coverage.coverage
A historical view of pings sent for the coverage/coverage
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes app_update_channel String Yes app_version String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes os_name String Yes os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes telemetry_enabled Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod coverage_stable coverage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/debug_ping_view/","title":"debug-ping-view","text":"User-facing views related to document namespace debug-ping-view; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/debug-ping-view
Source Directory
"},{"location":"mozdata/debug_ping_view/#deletion_request","title":"deletion_request","text":"Historical Pings for debug-ping-view/deletion-request
debug_ping_view.deletion_request
A historical view of pings sent for the debug-ping-view/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod debug_ping_view_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/debug_ping_view/#events","title":"events","text":"Historical Pings for debug-ping-view/events
debug_ping_view.events
A historical view of pings sent for the debug-ping-view/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod debug_ping_view_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/debug_ping_view/#events_unnested","title":"events_unnested","text":"Events Unnested
debug_ping_view.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod debug_ping_view events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/default_browser_agent/","title":"default-browser-agent","text":"User-facing views related to document namespace default-browser-agent; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/default-browser-agent
Source Directory
"},{"location":"mozdata/default_browser_agent/#default_browser","title":"default_browser","text":"Default Browser
default_browser_agent.default_browser
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod default_browser_agent_stable default_browser_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/edge_validator/","title":"edge-validator","text":"User-facing views related to document namespace edge-validator; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/edge-validator
Source Directory
"},{"location":"mozdata/edge_validator/#error_report","title":"error_report","text":"Historical Pings for edge-validator/error-report
edge_validator.error_report
A historical view of pings sent for the edge-validator/error-report
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes results Record No sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod edge_validator_stable error_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/eng_workflow/","title":"eng-workflow","text":"User-facing views related to document namespace eng-workflow; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/eng-workflow
Source Directory
"},{"location":"mozdata/eng_workflow/#bmobugs","title":"bmobugs","text":"Historical Pings for eng-workflow/bmobugs
eng_workflow.bmobugs
A historical view of pings sent for the eng-workflow/bmobugs
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes assigned_to Integer Yes blocked_by Integer No bug_id Integer Yes bug_severity String Yes bug_status String Yes component String Yes creation_ts String Yes delta_ts String Yes depends_on Integer No document_id The document ID specified in the URI when the client sent this message String Yes duplicate_of Integer Yes duplicates Integer No flags Record No groups String No keywords String No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes priority String Yes product String Yes qa_contact Integer Yes reporter Integer Yes resolution String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes target_milestone String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod eng_workflow_stable bmobugs_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/eng_workflow/#build","title":"build","text":"Historical Pings for eng-workflow/build
eng_workflow.build
A historical view of pings sent for the eng-workflow/build
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes argv String No build_attrs Attributes characterizing a build Record Yes build_opts Selected build options Record Yes client_id A UUID to uniquely identify a client String Yes command The mach command that was invoked String Yes document_id The document ID specified in the URI when the client sent this message String Yes duration_ms Command duration in milliseconds Float Yes exception If a Python exception was encountered during the execution of the command, this value contains the result of calling `repr` on the exception object. String Yes file_types_changed Record No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes success true if the command succeeded Boolean Yes system Record Yes time Time at which this event happened Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod eng_workflow_stable build_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/eng_workflow/#hgpush","title":"hgpush","text":"Historical Pings for eng-workflow/hgpush
eng_workflow.hgpush
A historical view of pings sent for the eng-workflow/hgpush
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes changeset_id The 40 char hex ID of the changeset. See https://www.mercurial-scm.org/wiki/ChangeSetID. String Yes diffstat Statistics about files changed by this changeset. Similar to running 'hg diff --stat'. May be null if diffstats were not computed. Record Yes document_id The document ID specified in the URI when the client sent this message String Yes landing_system A string labelling the automated system used to land this changeset in this repository. May be empty. String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes push_date Timestamp, in Unix time (seconds since the Unix epoch), of when the push to the repository occurred. This value is obtained from the original repository pushlog. Integer Yes repository The URL of the repository the changeset was pushed to. String Yes review_system_used A string labelling the code review system used to review this changeset. Possible values include (but are not limited to): 'mozreview', 'phabricator', 'bmo', 'unknown', and 'not_applicable'. String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod eng_workflow_stable hgpush_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/","title":"Fenix","text":"Data related to Fenix (Firefox for Android)
Source Directory
"},{"location":"mozdata/fenix/#activation","title":"activation","text":"App-specific view for Glean ping \"activation\"
fenix.activation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.activation, org_mozilla_firefox_beta.activation, org_mozilla_fenix.activation, org_mozilla_fenix_nightly.activation, org_mozilla_fennec_aurora.activation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
fenix.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived active_users_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#addresses_sync","title":"addresses_sync","text":"App-specific view for Glean ping \"addresses-sync\"
fenix.addresses_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.addresses_sync, org_mozilla_firefox_beta.addresses_sync, org_mozilla_fenix.addresses_sync, org_mozilla_fenix_nightly.addresses_sync, org_mozilla_fennec_aurora.addresses_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#attributable_clients","title":"attributable_clients","text":"Attributable Clients
fenix.attributable_clients
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes cohort_date Date Yes sample_id Integer Yes client_id String Yes country String Yes adjust_network String Yes adjust_adgroup String Yes adjust_campaign String Yes adjust_creative String Yes is_new_profile Boolean Yes searches Integer Yes searches_with_ads Integer Yes ad_clicks Integer Yes is_new_install Boolean Yes activated Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived attributable_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#attributable_clients_v2","title":"attributable_clients_v2","text":"Attributable Clients V2
fenix.attributable_clients_v2
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes cohort_date Date Yes first_seen_date Date Yes sample_id Integer Yes client_id String Yes activations_count Integer Yes active_day_count Integer Yes searches Integer Yes searches_with_ads Integer Yes ad_clicks Integer Yes first_reported_country String Yes adjust_network String Yes adjust_ad_group String Yes adjust_campaign String Yes adjust_creative String Yes is_new_install Boolean Yes is_new_profile Boolean Yes is_activated Boolean Yes metadata Record Yes firefox_android_clients_metadata Record Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
fenix.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.baseline, org_mozilla_firefox_beta.baseline, org_mozilla_fenix.baseline, org_mozilla_fenix_nightly.baseline, org_mozilla_fennec_aurora.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
fenix.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
fenix.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
fenix.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#bookmarks_sync","title":"bookmarks_sync","text":"App-specific view for Glean ping \"bookmarks-sync\"
fenix.bookmarks_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.bookmarks_sync, org_mozilla_firefox_beta.bookmarks_sync, org_mozilla_fenix.bookmarks_sync, org_mozilla_fenix_nightly.bookmarks_sync, org_mozilla_fennec_aurora.bookmarks_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#client_adclicks_history","title":"client_adclicks_history","text":"Client Adclicks History
fenix.client_adclicks_history
Contains the full history of ad-clicks for each client.
This should only be used for the LTV project. To calculate LTV for any client, we add together two things - 1. Predicted future Ad Clicks 2. Total historical ad clicks
This table provides 2. The full history of each client's ad_clicks are available as a MAP, keyed by date, where the value is the number of ad clicks.
- Owners:
- frank@mozilla.com
Schema Column Description Type Nullable client_id Unique ID for the client installation. String Yes sample_id Sample ID to limit query results during an analysis. Integer Yes ad_click_history History of ad_clicks for a user, by submission_date Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived client_adclicks_history_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#client_deduplication","title":"client_deduplication","text":"Client Deduplication
fenix.client_deduplication
A view over all client deduplication pings, from all channels.
- Owners:
- frank@mozilla.com
Schema Column Description Type Nullable client_id String Yes hashed_ad_id String Yes valid_advertising_id Boolean Yes submission_date Date Yes normalized_app_id String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix client_deduplication moz-fx-data-shared-prod org_mozilla_firefox client_deduplication moz-fx-data-shared-prod org_mozilla_firefox_beta client_deduplication Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
fenix.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#clients_yearly","title":"clients_yearly","text":"Clients Yearly
fenix.clients_yearly
Please provide a description for the query
Schema Column Description Type Nullable days_seen_bytes Bytes Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes days_since_seen Integer Yes consecutive_days_seen Integer Yes days_seen_in_past_year Integer Yes days_since_first_seen Integer Yes day_of_week Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived clients_yearly_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"App-specific view for Glean ping \"cookie-banner-report-site\"
fenix.cookie_banner_report_site
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.cookie_banner_report_site, org_mozilla_firefox_beta.cookie_banner_report_site, org_mozilla_fenix.cookie_banner_report_site, org_mozilla_fenix_nightly.cookie_banner_report_site, org_mozilla_fennec_aurora.cookie_banner_report_site).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#crash","title":"crash","text":"App-specific view for Glean ping \"crash\"
fenix.crash
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.crash, org_mozilla_firefox_beta.crash, org_mozilla_fenix.crash, org_mozilla_fenix_nightly.crash, org_mozilla_fennec_aurora.crash).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#creditcards_sync","title":"creditcards_sync","text":"App-specific view for Glean ping \"creditcards-sync\"
fenix.creditcards_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.creditcards_sync, org_mozilla_firefox_beta.creditcards_sync, org_mozilla_fenix.creditcards_sync, org_mozilla_fenix_nightly.creditcards_sync, org_mozilla_fennec_aurora.creditcards_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
fenix.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.deletion_request, org_mozilla_firefox_beta.deletion_request, org_mozilla_fenix.deletion_request, org_mozilla_fenix_nightly.deletion_request, org_mozilla_fennec_aurora.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#event_types","title":"event_types","text":"Event Types
fenix.event_types
Please provide a description for the query
Schema Column Description Type Nullable category String Yes event String Yes first_timestamp Timestamp Yes numeric_index Integer Yes index String Yes event_properties Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived event_types_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#events","title":"events","text":"App-specific view for Glean ping \"events\"
fenix.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.events, org_mozilla_firefox_beta.events, org_mozilla_fenix.events, org_mozilla_fenix_nightly.events, org_mozilla_fennec_aurora.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#events_daily","title":"events_daily","text":"Events Daily
fenix.events_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes events String Yes android_sdk_version String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes first_run_date String Yes telemetry_sdk_build String Yes locale String Yes city String Yes country String Yes subdivision1 String Yes channel String Yes os String Yes os_version String Yes experiments Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived events_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#events_unnested","title":"events_unnested","text":"Events Unnested
fenix.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#firefox_android_clients","title":"firefox_android_clients","text":"Firefox Android Clients
fenix.firefox_android_clients
Please provide a description for the query
Schema Column Description Type Nullable first_seen_date Date when the app first reported a baseline ping for the client. Date Yes client_id Unique ID for the client installation. String Yes sample_id Sample ID to limit query results during an analysis. Integer Yes submission_date Date when the server first received a baseline ping for the client. Date Yes first_run_date Date when the browser first ran. Date Yes first_reported_country First reported country for the client installation String Yes first_reported_isp Name of the first reported isp (Internet Service Provider). String Yes channel Channel where the browser is released. String Yes device_manufacturer Manufacturer of the device where the client is installed. String Yes device_model Model of the device where the client is installed. String Yes os_version Version of the Operating System where the client is originally installed. String Yes app_version App display version for this client installation. String Yes locale Client locale. String Yes activated Determines if a client is activated based on the activation metric and a 7 day lag. Boolean Yes adjust_campaign Structure parameter for the campaign name. String Yes adjust_ad_group Structure parameter for the the ad group of a campaign. String Yes adjust_creative Structure parameter for the creative content of a campaign. String Yes last_reported_adjust_campaign Last reported campaign name. String Yes last_reported_adjust_ad_group Last reported campaign ad group. String Yes last_reported_adjust_creative Last reported campaign name. String Yes last_reported_adjust_network Last reported client campaign network. String Yes last_reported_date Last date client seen. Date Yes last_reported_channel Last reported client channel. String Yes last_reported_country Last reported client country. String Yes last_reported_device_model Last reported client device model. String Yes last_reported_device_manufacturer Last reported client device manufacturer. String Yes last_reported_locale Last reported client locale. String Yes metadata Record Yes adjust_network Structure parameter for the network of a campaign. String Yes install_source The source of a client installation. String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived firefox_android_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#first_session","title":"first_session","text":"App-specific view for Glean ping \"first-session\"
fenix.first_session
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.first_session, org_mozilla_firefox_beta.first_session, org_mozilla_fenix.first_session, org_mozilla_fenix_nightly.first_session, org_mozilla_fennec_aurora.first_session).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#fog_validation","title":"fog_validation","text":"App-specific view for Glean ping \"fog-validation\"
fenix.fog_validation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.fog_validation, org_mozilla_firefox_beta.fog_validation, org_mozilla_fenix.fog_validation, org_mozilla_fenix_nightly.fog_validation, org_mozilla_fennec_aurora.fog_validation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#font_list","title":"font_list","text":"App-specific view for Glean ping \"font-list\"
fenix.font_list
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.font_list, org_mozilla_firefox_beta.font_list, org_mozilla_fenix.font_list, org_mozilla_fenix_nightly.font_list, org_mozilla_fennec_aurora.font_list).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#funnel_retention_clients","title":"funnel_retention_clients","text":"Funnel Retention Clients
fenix.funnel_retention_clients
Please provide a description for the query
Schema Column Description Type Nullable first_seen_date Date Yes client_id String Yes sample_id Integer Yes first_reported_country String Yes first_reported_isp String Yes adjust_ad_group String Yes adjust_campaign String Yes adjust_creative String Yes adjust_network String Yes retained_week_2 Boolean Yes retained_week_4 Boolean Yes days_seen_in_first_28_days Integer Yes repeat_first_month_user Boolean Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#funnel_retention_week_4","title":"funnel_retention_week_4","text":"Funnel Retention Week 4
fenix.funnel_retention_week_4
Please provide a description for the query
Schema Column Description Type Nullable submission_date Partition field, also corresponds to internal execution date of the job (first_seen_date + 28 days). Date Yes first_seen_date Date of when the client was first seen. Date Yes first_reported_country First reported country for the client installation. String Yes first_reported_isp Name of the first reported isp (Internet Service Provider). String Yes adjust_ad_group Structure parameter for the the ad group of a campaign. String Yes adjust_campaign Structure parameter for the campaign name. String Yes adjust_creative Structure parameter for the creative content of a campaign. String Yes adjust_network The type of source of a client installation. String Yes new_profiles Count of new_profiles for the given grouping. Integer Yes repeat_user Count of clients categorised as \"repeat_first_month_user\" for the grouping. Integer Yes retained_week_4 Count of clients categorised as \"retained_week_4\" for the grouping. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived funnel_retention_week_4_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#fx_suggest","title":"fx_suggest","text":"App-specific view for Glean ping \"fx-suggest\"
fenix.fx_suggest
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.fx_suggest, org_mozilla_firefox_beta.fx_suggest, org_mozilla_fenix.fx_suggest, org_mozilla_fenix_nightly.fx_suggest, org_mozilla_fennec_aurora.fx_suggest).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#gplay_installs_by_country","title":"gplay_installs_by_country","text":"Gplay Installs By Country
fenix.gplay_installs_by_country
A view on Fenix Google Play Install Data by Country
- Owners:
- frank@mozilla.com
Schema Column Description Type Nullable date Date Yes channel String Yes country_code String Yes country_name String Yes region_name String Yes subregion_name String Yes install_count Integer Yes uninstall_count Integer Yes update_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_external gplay_installs_by_country_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#history_sync","title":"history_sync","text":"App-specific view for Glean ping \"history-sync\"
fenix.history_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.history_sync, org_mozilla_firefox_beta.history_sync, org_mozilla_fenix.history_sync, org_mozilla_fenix_nightly.history_sync, org_mozilla_fennec_aurora.history_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#installation","title":"installation","text":"App-specific view for Glean ping \"installation\"
fenix.installation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.installation, org_mozilla_firefox_beta.installation, org_mozilla_fenix.installation, org_mozilla_fenix_nightly.installation, org_mozilla_fennec_aurora.installation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#logins_sync","title":"logins_sync","text":"App-specific view for Glean ping \"logins-sync\"
fenix.logins_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.logins_sync, org_mozilla_firefox_beta.logins_sync, org_mozilla_fenix.logins_sync, org_mozilla_fenix_nightly.logins_sync, org_mozilla_fennec_aurora.logins_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#marketing_attributable_metrics","title":"marketing_attributable_metrics","text":"Marketing Attributable Metrics
fenix.marketing_attributable_metrics
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes cohort_date Date Yes sample_id Integer Yes client_id String Yes country String Yes adjust_network String Yes adjust_adgroup String Yes adjust_campaign String Yes adjust_creative String Yes is_new_profile Boolean Yes searches_with_ads Integer Yes ad_clicks Integer Yes is_new_install Boolean Yes activated Boolean Yes dau Integer Yes new_profiles Integer Yes search_count Integer Yes new_installs Integer Yes activations Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix attributable_clients Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
fenix.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.metrics, org_mozilla_firefox_beta.metrics, org_mozilla_fenix.metrics, org_mozilla_fenix_nightly.metrics, org_mozilla_fennec_aurora.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
fenix.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
fenix.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#migrated_clients","title":"migrated_clients","text":"Migrated Clients
fenix.migrated_clients
Please provide a description for the query
Schema Column Description Type Nullable fenix_client_id String Yes submission_date Date Yes normalized_channel String Yes manufacturer String Yes country String Yes fennec_client_id String Yes migration_ping_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_derived migrated_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#migration","title":"migration","text":"App-specific view for Glean ping \"migration\"
fenix.migration
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.migration, org_mozilla_firefox_beta.migration, org_mozilla_fenix.migration, org_mozilla_fenix_nightly.migration, org_mozilla_fennec_aurora.migration).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes submission_date Date Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#new_profile_activation","title":"new_profile_activation","text":"New Profile Activation
fenix.new_profile_activation
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes sample_id Integer Yes normalized_channel String Yes app_build String Yes app_channel String Yes app_display_version String Yes device_manufacturer String Yes device_model String Yes isp String Yes locale String Yes city String Yes country String Yes adjust_network String Yes adjust_adgroup String Yes adjust_campaign String Yes adjust_creative String Yes first_seen_date Date Yes submission_date Date Yes new_profile Integer Yes activated Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived new_profile_activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#pageload","title":"pageload","text":"App-specific view for Glean ping \"pageload\"
fenix.pageload
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.pageload, org_mozilla_firefox_beta.pageload, org_mozilla_fenix.pageload, org_mozilla_fenix_nightly.pageload, org_mozilla_fennec_aurora.pageload).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#spoc","title":"spoc","text":"App-specific view for Glean ping \"spoc\"
fenix.spoc
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.spoc, org_mozilla_firefox_beta.spoc, org_mozilla_fenix.spoc, org_mozilla_fenix_nightly.spoc, org_mozilla_fennec_aurora.spoc).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#startup_timeline","title":"startup_timeline","text":"App-specific view for Glean ping \"startup-timeline\"
fenix.startup_timeline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.startup_timeline, org_mozilla_firefox_beta.startup_timeline, org_mozilla_fenix.startup_timeline, org_mozilla_fenix_nightly.startup_timeline, org_mozilla_fennec_aurora.startup_timeline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#sync","title":"sync","text":"App-specific view for Glean ping \"sync\"
fenix.sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.sync, org_mozilla_firefox_beta.sync, org_mozilla_fenix.sync, org_mozilla_fenix_nightly.sync, org_mozilla_fennec_aurora.sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#tabs_sync","title":"tabs_sync","text":"App-specific view for Glean ping \"tabs-sync\"
fenix.tabs_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.tabs_sync, org_mozilla_firefox_beta.tabs_sync, org_mozilla_fenix.tabs_sync, org_mozilla_fenix_nightly.tabs_sync, org_mozilla_fennec_aurora.tabs_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/","title":"Firefox Accounts","text":"Data related to Firefox Accounts
Source Directory
"},{"location":"mozdata/firefox_accounts/#activity_flow_metrics","title":"activity_flow_metrics","text":"Historical Pings for firefox-accounts/activity-flow-metrics
firefox_accounts.activity_flow_metrics
A historical view of pings sent for the firefox-accounts/activity-flow-metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_stable activity_flow_metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#amplitude_event","title":"amplitude_event","text":"Historical Pings for firefox-accounts/amplitude-event
firefox_accounts.amplitude_event
A historical view of pings sent for the firefox-accounts/amplitude-event
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes op Pre-existing Firefox Accounts metrics field used to identify Amplitude metrics events. String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_stable amplitude_event_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#docker_fxa_admin_server_sanitized","title":"docker_fxa_admin_server_sanitized","text":"Docker Fxa Admin Server Sanitized
firefox_accounts.docker_fxa_admin_server_sanitized
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes logName String Yes resource Record Yes textPayload String Yes jsonPayload Record Yes timestamp Timestamp Yes receiveTimestamp Timestamp Yes severity String Yes insertId String Yes httpRequest Record Yes labels Record Yes operation Record Yes trace String Yes spanId String Yes traceSampled Boolean Yes sourceLocation Record Yes split Record Yes errorGroups Record No Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#docker_fxa_customs_sanitized","title":"docker_fxa_customs_sanitized","text":"Docker Fxa Customs Sanitized
firefox_accounts.docker_fxa_customs_sanitized
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes logName String Yes resource Record Yes textPayload String Yes jsonPayload Record Yes timestamp Timestamp Yes receiveTimestamp Timestamp Yes severity String Yes insertId String Yes httpRequest Record Yes labels Record Yes operation Record Yes trace String Yes spanId String Yes traceSampled Boolean Yes sourceLocation Record Yes split Record Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#event_types","title":"event_types","text":"Event Types
firefox_accounts.event_types
Please provide a description for the query
Schema Column Description Type Nullable category String Yes event String Yes first_timestamp Timestamp Yes numeric_index Integer Yes index String Yes event_properties Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived event_types_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#events_daily","title":"events_daily","text":"Events Daily
firefox_accounts.events_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes events String Yes utm_term String Yes utm_source String Yes utm_medium String Yes utm_campaign String Yes ua_version String Yes ua_browser String Yes entrypoint String Yes flow_id String Yes sync_device_count String Yes sync_active_devices_day String Yes sync_active_devices_week String Yes sync_active_devices_month String Yes app_version String Yes os_name String Yes os_version String Yes country String Yes language String Yes experiments Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived events_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_all_events","title":"fxa_all_events","text":"Fxa All Events
firefox_accounts.fxa_all_events
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_content_auth_events","title":"fxa_content_auth_events","text":"Fxa Content Auth Events
firefox_accounts.fxa_content_auth_events
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts fxa_all_events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_content_auth_oauth_events","title":"fxa_content_auth_oauth_events","text":"Fxa Content Auth Oauth Events
firefox_accounts.fxa_content_auth_oauth_events
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts fxa_all_events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_content_auth_stdout_events","title":"fxa_content_auth_stdout_events","text":"Fxa Content Auth Stdout Events
firefox_accounts.fxa_content_auth_stdout_events
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts fxa_all_events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_log_auth_events","title":"fxa_log_auth_events","text":"Fxa Log Auth Events
firefox_accounts.fxa_log_auth_events
Please provide a description for the query
Schema Column Description Type Nullable timestamp Timestamp Yes event String Yes flow_id String Yes entrypoint String Yes service String Yes useragent String Yes os_version String Yes utm_source String Yes utm_campaign String Yes utm_content String Yes utm_medium String Yes utm_term String Yes device_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_log_auth_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_log_content_events","title":"fxa_log_content_events","text":"Fxa Log Content Events
firefox_accounts.fxa_log_content_events
Please provide a description for the query
Schema Column Description Type Nullable timestamp Timestamp Yes event String Yes flow_time Float Yes locale String Yes useragent String Yes country String Yes entrypoint String Yes flow_id String Yes region String Yes service String Yes utm_campaign String Yes utm_content String Yes utm_medium String Yes utm_source String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_log_content_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_log_device_command_events","title":"fxa_log_device_command_events","text":"Fxa Log Device Command Events
firefox_accounts.fxa_log_device_command_events
Please provide a description for the query
Schema Column Description Type Nullable timestamp Timestamp Yes type String Yes user_id String Yes index String Yes command String Yes target String Yes target_os String Yes target_type String Yes sender String Yes sender_os String Yes sender_type String Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_log_performance_events","title":"fxa_log_performance_events","text":"Fxa Log Performance Events
firefox_accounts.fxa_log_performance_events
Please provide a description for the query
Schema Column Description Type Nullable timestamp Timestamp Yes event String Yes flow_time Float Yes locale String Yes useragent String Yes country String Yes entrypoint String Yes flow_id String Yes region String Yes service String Yes utm_campaign String Yes utm_content String Yes utm_medium String Yes utm_source String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_log_content_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_daily","title":"fxa_users_daily","text":"Fxa Users Daily
firefox_accounts.fxa_users_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Represents ETL job date. Also, used for table partitioning. Date Yes user_id A 36 char long hash value representing User ID (registered user). Also, used as a clustering field. String Yes country User's country where activity took place. See: UDF mozdata.stats.mode_last for more info on how the function operates. String Yes language User's language. String Yes app_version Mozilla app version, follows format: major.minor.patch (e.g. 99.3.3). String Yes os_name OS on which the app was running. For example: Android. String Yes os_version Version of the OS the device was using. String Yes seen_in_tier1_country Set to True if a user sent an event from one of the following countries for a specific submission_date: ('United States','France', 'Germany','United Kingdom','Canada') Boolean Yes registered Set to True if the user submitted the event_type of `fxa_reg - complete` event on the specific submission_date. Boolean Yes monitor_only Set to True if the user contains events of event_type `fxa_rp - engage` only for service `fx-monitor`. Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_first_seen","title":"fxa_users_first_seen","text":"Fxa Users First Seen
firefox_accounts.fxa_users_first_seen
Please provide a description for the query
Schema Column Description Type Nullable user_id String Yes first_seen_date Date Yes services_used String No Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_first_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_last_seen","title":"fxa_users_last_seen","text":"Fxa Users Last Seen
firefox_accounts.fxa_users_last_seen
Please provide a description for the query
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_seen_in_tier1_country Integer Yes days_since_registered Integer Yes days_since_seen_no_monitor Integer Yes submission_date Corresponds to ETL processing date. Also, used for partitioning the table. Date Yes days_seen_bits No. of days since the user had activity event. Integer Yes days_seen_in_tier1_country_bits No. of days since seen_in_tier1_country was last True. Integer Yes days_registered_bits No. of days since registration event. Integer Yes user_id A 36 char long hash value representing User ID (registered user). String Yes country User's country where activity took place. See: UDF mozdata.stats.mode_last for more info on how the function operates. String Yes language Most recently used language. String Yes app_version Mozilla app version most recently used, follows format: major.minor.patch (e.g. 99.3.3). String Yes os_name OS on which the app was most recently running. For example: Android. String Yes os_version Version of the OS the device was most recently using. String Yes days_seen_no_monitor_bits No. of days since monitor flag was last True. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_services_daily","title":"fxa_users_services_daily","text":"Fxa Users Services Daily
firefox_accounts.fxa_users_services_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes user_id String Yes service String Yes country String Yes language String Yes app_version String Yes os_name String Yes os_version String Yes seen_in_tier1_country Boolean Yes registered Boolean Yes name String Yes code String Yes country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_services_daily_v1 moz-fx-data-shared-prod static country_names_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_services_devices_daily","title":"fxa_users_services_devices_daily","text":"Fxa Users Services Devices Daily
firefox_accounts.fxa_users_services_devices_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_services_devices_daily_v1 moz-fx-data-shared-prod static country_names_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_services_devices_first_seen","title":"fxa_users_services_devices_first_seen","text":"Fxa Users Services Devices First Seen
firefox_accounts.fxa_users_services_devices_first_seen
Please provide a description for the query
Schema Column Description Type Nullable flow_id The flow associated with the first seen session. The flow identifier is a hash value representing a registration and login sessions. String Yes user_id Unique identifier of a registered user. String Yes service The service identifier. For Sync it may be empty or sync. For OAuth reliers it is their hex client id. A service corresponds to a specific application, for example: \"sync\". String Yes device_id This DOES NOT correspond to a physical device! Everytime a user logs out and back in will have a different value for device_id. This should be treated more like a session identified (in our case, session does not expire). There are two ways in which device_id field value gets populated/generated: 1. If the current flow session does not have a device_id associated with it we set it to the device_id/deviceId value found inside urlParams object. 2. If during the above process we find urlParams object to not have this attribute set, then we use uuid.v4() to generate a new unique value and assign it to deviceId flow session. _devide_id generation: https://github.com/mozilla/fxa/blob/main/packages/fxa-content-server/app/scripts/models/flow.js#L61-L69_ String Yes os_name Name of the operating system the device was using. E.g. Android String Yes country 2 char string representing the country where the device was located. String Yes language Language settings used by the device. String Yes entrypoint The entrypoint of the flow session. How a user begins their registration or login flow. Typically a UI touchpoint like \"preferences\". String Yes first_seen_date Datetime value when the user, service, device_id was seen for the first time. Timestamp Yes utm_term Marketing campaign search term for the flow session. Not stored if the DNT request header was 1. String Yes utm_medium Marketing campaign medium for the flow session. Not stored if the DNT request header was 1. String Yes utm_source Marketing campaign source for the flow session. Not stored if the DNT request header was 1. String Yes utm_campaign Marketing campaign identifier for the flow session. Not stored if the DNT request header was 1. String Yes utm_content Marketing campaign content identifier for the flow session. Not stored if the DNT request header was 1. String Yes ua_version The user's browser version. String Yes ua_browser The user's web browser, e.g. 'Firefox' or 'Chrome'. String Yes event_type Type of the FxA event recorded. `fxa_login - complete' and 'fxa_reg - complete` are the events used to create this table. String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_services_devices_first_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_services_devices_last_seen","title":"fxa_users_services_devices_last_seen","text":"Fxa Users Services Devices Last Seen
firefox_accounts.fxa_users_services_devices_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_services_devices_last_seen_v1 moz-fx-data-shared-prod static country_names_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_services_first_seen","title":"fxa_users_services_first_seen","text":"Fxa Users Services First Seen
firefox_accounts.fxa_users_services_first_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Corresponds to the submission_date of the record used from fxa_users_services_daily_v2. IMPORTANT: submission_date and first_service_flow_timestamp will not always have the same date (should at most be 1 day difference). When filtering for users that we first saw on x day should be done using DATE(first_service_flow_timestamp) = \"DAY\". Date Yes user_id 36-char long hash randomly assigned when the account is created. String Yes service The service identifier. For Sync it may be empty or sync. For OAuth reliers it is their hex client id. Example: sync String Yes did_register Set to True if the user submitted the event_type of `fxa_reg - complete` event on the specific submission_date. Boolean Yes first_service_os_name Name of the operating system the device was using. E.g. Android String Yes first_service_os_version Version of the OS the device was using. String Yes first_service_app_version Mozilla app version, follows format: major.minor.patch (e.g. 99.3.3). String Yes first_service_country 2 char string representing the country where the device was located. String Yes first_service_language Language settings used by the device. String Yes first_service_ua_version The user's browser version. String Yes first_service_ua_browser The user's web browser, e.g. 'Firefox' or 'Chrome'. String Yes first_service_flow_timestamp Timestamp Yes first_service_flow_entrypoint String Yes first_service_flow_utm_term String Yes first_service_flow_utm_medium String Yes first_service_flow_utm_source String Yes first_service_flow_utm_campaign String Yes first_service_flow_utm_content String Yes first_service_flow_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_services_first_seen_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_services_last_seen","title":"fxa_users_services_last_seen","text":"Fxa Users Services Last Seen
firefox_accounts.fxa_users_services_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes days_seen_bits Integer Yes days_seen_in_tier1_country_bits Integer Yes days_registered_bits Integer Yes resurrected_same_service Boolean Yes resurrected_any_service Boolean Yes user_id String Yes service String Yes country String Yes language String Yes app_version String Yes os_name String Yes os_version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_services_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#nonprod_fxa_all_events","title":"nonprod_fxa_all_events","text":"Nonprod Fxa All Events
firefox_accounts.nonprod_fxa_all_events
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#nonprod_fxa_content_auth_stdout_events","title":"nonprod_fxa_content_auth_stdout_events","text":"Nonprod Fxa Content Auth Stdout Events
firefox_accounts.nonprod_fxa_content_auth_stdout_events
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts nonprod_fxa_all_events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/","title":"Firefox Desktop","text":"Data related to messaging_system.
Source Directory
"},{"location":"mozdata/firefox_desktop/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
firefox_desktop.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived active_users_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#baseline","title":"baseline","text":"Historical Pings for firefox-desktop/baseline
firefox_desktop.baseline
A historical view of pings sent for the firefox-desktop/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_desktop.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_desktop.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_desktop.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_desktop.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#crash","title":"crash","text":"Historical Pings for firefox-desktop/crash
firefox_desktop.crash
A historical view of pings sent for the firefox-desktop/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#deletion_request","title":"deletion_request","text":"Historical Pings for firefox-desktop/deletion-request
firefox_desktop.deletion_request
A historical view of pings sent for the firefox-desktop/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#events","title":"events","text":"Historical Pings for firefox-desktop/events
firefox_desktop.events
A historical view of pings sent for the firefox-desktop/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_desktop.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#first_startup","title":"first_startup","text":"Historical Pings for firefox-desktop/first-startup
firefox_desktop.first_startup
A historical view of pings sent for the firefox-desktop/first-startup
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable first_startup_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#fog_validation","title":"fog_validation","text":"Historical Pings for firefox-desktop/fog-validation
firefox_desktop.fog_validation
A historical view of pings sent for the firefox-desktop/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#messaging_system","title":"messaging_system","text":"Historical Pings for firefox-desktop/messaging-system
firefox_desktop.messaging_system
A historical view of pings sent for the firefox-desktop/messaging-system
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable messaging_system_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#metrics","title":"metrics","text":"Historical Pings for firefox-desktop/metrics
firefox_desktop.metrics
A historical view of pings sent for the firefox-desktop/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_desktop.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_desktop.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#new_metric_capture_emulation","title":"new_metric_capture_emulation","text":"Historical Pings for firefox-desktop/new-metric-capture-emulation
firefox_desktop.new_metric_capture_emulation
A historical view of pings sent for the firefox-desktop/new-metric-capture-emulation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable new_metric_capture_emulation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#newtab","title":"newtab","text":"Historical Pings for firefox-desktop/newtab
firefox_desktop.newtab
A historical view of pings sent for the firefox-desktop/newtab
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable newtab_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#onboarding","title":"onboarding","text":"Onboarding
firefox_desktop.onboarding
Please provide a description for the query
Schema Column Description Type Nullable submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event String Yes event_context A string that describes the context about this event String Yes event_page The event_context's page. Almost always \"about:welcome\". String Yes event_reason The event_context's reason. Likely something like \"welcome-window-closed\" or \"app-shut-down\". String Yes event_source The event_context's source. Likely something like \"primary_button\". String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes release_channel String Yes sample_id Integer Yes version String Yes browser_session_id A mirror of the browser sessionId, as defined in https://github.com/mozilla-services/mozilla-pipeline-schemas/blob/main/schemas/telemetry/main/main.4.schema.json String Yes experiments Record No attribution Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived onboarding_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#pageload","title":"pageload","text":"Historical Pings for firefox-desktop/pageload
firefox_desktop.pageload
A historical view of pings sent for the firefox-desktop/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#pocket_button","title":"pocket_button","text":"Historical Pings for firefox-desktop/pocket-button
firefox_desktop.pocket_button
A historical view of pings sent for the firefox-desktop/pocket-button
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable pocket_button_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#pseudo_main","title":"pseudo_main","text":"Historical Pings for firefox-desktop/pseudo-main
firefox_desktop.pseudo_main
A historical view of pings sent for the firefox-desktop/pseudo-main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable pseudo_main_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#quick_suggest","title":"quick_suggest","text":"Historical Pings for firefox-desktop/quick-suggest
firefox_desktop.quick_suggest
A historical view of pings sent for the firefox-desktop/quick-suggest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable quick_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#review_checker_clients","title":"review_checker_clients","text":"Review Checker Clients
firefox_desktop.review_checker_clients
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes normalized_country_code String Yes legacy_client_id String Yes client_id String Yes sample_id Integer Yes shopping_product_page_visits Integer Yes is_opt_in Integer Yes is_opt_out Integer Yes sap Integer Yes ad_click Integer Yes active_hours_sum Float Yes is_fx_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived review_checker_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#review_checker_events","title":"review_checker_events","text":"Review Checker Events
firefox_desktop.review_checker_events
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes is_exposed_event Integer Yes is_opt_in_event Integer Yes is_surface_displayed Integer Yes is_engaged_with_sidebar Integer Yes experiments Record No normalized_channel String Yes normalized_country_code String Yes sample_id Integer Yes os_version Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived review_checker_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#review_checker_microsurvey","title":"review_checker_microsurvey","text":"Review Checker Microsurvey
firefox_desktop.review_checker_microsurvey
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes sample_id Integer Yes normalized_channel String Yes country_code String Yes os_version Numeric Yes submission_date Date Yes message_id String Yes event String Yes event_page String Yes event_reason String Yes event_source String Yes new_user Integer Yes existing_user Integer Yes coded_question String Yes coded_answers String Yes experiments Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived review_checker_microsurvey_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#serp_events","title":"serp_events","text":"Serp Events
firefox_desktop.serp_events
Please provide a description for the query
Schema Column Description Type Nullable impression_id String Yes submission_date Date Yes glean_client_id String Yes legacy_telemetry_client_id String Yes event_timestamp Integer Yes normalized_channel String Yes normalized_country_code String Yes os String Yes browser_version_info Record Yes sample_id Integer Yes is_shopping_page Boolean Yes search_engine String Yes sap_source String Yes is_tagged Boolean Yes is_engaged Boolean Yes abandon_reason String Yes ping_seq Integer Yes experiments Record No has_ads_loaded Boolean Yes component String Yes is_ad_component Boolean Yes num_clicks Integer Yes num_expands Integer Yes num_submits Integer Yes num_ads_loaded_reported Integer Yes num_ads_visible_reported Integer Yes num_ads_hidden_reported Integer Yes ad_blocker_inferred Boolean Yes num_ads_showing Integer Yes num_ads_notshowing Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived serp_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#snippets","title":"snippets","text":"Snippets
firefox_desktop.snippets
Please provide a description for the query
Schema Column Description Type Nullable submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes version String Yes experiments Record No source A string describing the source of this event String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived snippets_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#top_sites","title":"top_sites","text":"Historical Pings for firefox-desktop/top-sites
firefox_desktop.top_sites
A historical view of pings sent for the firefox-desktop/top-sites
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable top_sites_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#urlbar_events","title":"urlbar_events","text":"Urlbar Events
firefox_desktop.urlbar_events
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes glean_client_id String Yes legacy_telemetry_client_id String Yes sample_id Integer Yes event_name String Yes event_timestamp Integer Yes event_id String Yes experiments Record No seq Integer Yes normalized_channel String Yes normalized_country_code String Yes normalized_engine String Yes pref_data_collection Boolean Yes pref_sponsored_suggestions Boolean Yes pref_fx_suggestions Boolean Yes engagement_type String Yes interaction String Yes num_chars_typed Integer Yes num_total_results Integer Yes selected_position Integer Yes selected_result String Yes results Record No product_selected_result String Yes event_action String Yes is_terminal Boolean Yes engaged_result_type String Yes product_engaged_result_type String Yes annoyance_signal_type String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived urlbar_events_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/","title":"firefox-desktop-background-defaultagent","text":"User-facing views related to document namespace firefox-desktop-background-defaultagent; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/firefox-desktop-background-defaultagent
Source Directory
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#baseline","title":"baseline","text":"Historical Pings for firefox-desktop-background-defaultagent/baseline
firefox_desktop_background_defaultagent.baseline
A historical view of pings sent for the firefox-desktop-background-defaultagent/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_desktop_background_defaultagent.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_desktop_background_defaultagent.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_desktop_background_defaultagent.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#default_agent","title":"default_agent","text":"Historical Pings for firefox-desktop-background-defaultagent/default-agent
firefox_desktop_background_defaultagent.default_agent
A historical view of pings sent for the firefox-desktop-background-defaultagent/default-agent
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_stable default_agent_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#deletion_request","title":"deletion_request","text":"Historical Pings for firefox-desktop-background-defaultagent/deletion-request
firefox_desktop_background_defaultagent.deletion_request
A historical view of pings sent for the firefox-desktop-background-defaultagent/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#events","title":"events","text":"Historical Pings for firefox-desktop-background-defaultagent/events
firefox_desktop_background_defaultagent.events
A historical view of pings sent for the firefox-desktop-background-defaultagent/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_desktop_background_defaultagent.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#metrics","title":"metrics","text":"Historical Pings for firefox-desktop-background-defaultagent/metrics
firefox_desktop_background_defaultagent.metrics
A historical view of pings sent for the firefox-desktop-background-defaultagent/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_desktop_background_defaultagent.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/","title":"firefox-desktop-background-tasks","text":"User-facing views related to document namespace firefox-desktop-background-tasks; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/firefox-desktop-background-tasks
Source Directory
"},{"location":"mozdata/firefox_desktop_background_tasks/#background_tasks","title":"background_tasks","text":"Historical Pings for firefox-desktop-background-tasks/background-tasks
firefox_desktop_background_tasks.background_tasks
A historical view of pings sent for the firefox-desktop-background-tasks/background-tasks
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable background_tasks_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#baseline","title":"baseline","text":"Historical Pings for firefox-desktop-background-tasks/baseline
firefox_desktop_background_tasks.baseline
A historical view of pings sent for the firefox-desktop-background-tasks/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_desktop_background_tasks.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_desktop_background_tasks.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_desktop_background_tasks.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#crash","title":"crash","text":"Historical Pings for firefox-desktop-background-tasks/crash
firefox_desktop_background_tasks.crash
A historical view of pings sent for the firefox-desktop-background-tasks/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#default_agent","title":"default_agent","text":"Historical Pings for firefox-desktop-background-tasks/default-agent
firefox_desktop_background_tasks.default_agent
A historical view of pings sent for the firefox-desktop-background-tasks/default-agent
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable default_agent_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#deletion_request","title":"deletion_request","text":"Historical Pings for firefox-desktop-background-tasks/deletion-request
firefox_desktop_background_tasks.deletion_request
A historical view of pings sent for the firefox-desktop-background-tasks/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#events","title":"events","text":"Historical Pings for firefox-desktop-background-tasks/events
firefox_desktop_background_tasks.events
A historical view of pings sent for the firefox-desktop-background-tasks/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_desktop_background_tasks.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#metrics","title":"metrics","text":"Historical Pings for firefox-desktop-background-tasks/metrics
firefox_desktop_background_tasks.metrics
A historical view of pings sent for the firefox-desktop-background-tasks/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_desktop_background_tasks.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/","title":"firefox-desktop-background-update","text":"User-facing views related to document namespace firefox-desktop-background-update; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/firefox-desktop-background-update
Source Directory
"},{"location":"mozdata/firefox_desktop_background_update/#background_update","title":"background_update","text":"Historical Pings for firefox-desktop-background-update/background-update
firefox_desktop_background_update.background_update
A historical view of pings sent for the firefox-desktop-background-update/background-update
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable background_update_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#baseline","title":"baseline","text":"Historical Pings for firefox-desktop-background-update/baseline
firefox_desktop_background_update.baseline
A historical view of pings sent for the firefox-desktop-background-update/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_desktop_background_update.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_desktop_background_update.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_desktop_background_update.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_desktop_background_update.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#crash","title":"crash","text":"Historical Pings for firefox-desktop-background-update/crash
firefox_desktop_background_update.crash
A historical view of pings sent for the firefox-desktop-background-update/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#deletion_request","title":"deletion_request","text":"Historical Pings for firefox-desktop-background-update/deletion-request
firefox_desktop_background_update.deletion_request
A historical view of pings sent for the firefox-desktop-background-update/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#events","title":"events","text":"Historical Pings for firefox-desktop-background-update/events
firefox_desktop_background_update.events
A historical view of pings sent for the firefox-desktop-background-update/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_desktop_background_update.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#fog_validation","title":"fog_validation","text":"Historical Pings for firefox-desktop-background-update/fog-validation
firefox_desktop_background_update.fog_validation
A historical view of pings sent for the firefox-desktop-background-update/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#metrics","title":"metrics","text":"Historical Pings for firefox-desktop-background-update/metrics
firefox_desktop_background_update.metrics
A historical view of pings sent for the firefox-desktop-background-update/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_desktop_background_update.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_desktop_background_update.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#pageload","title":"pageload","text":"Historical Pings for firefox-desktop-background-update/pageload
firefox_desktop_background_update.pageload
A historical view of pings sent for the firefox-desktop-background-update/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/","title":"Firefox Echo Show","text":"Views on data from firefox_echo_show
Source Directory
"},{"location":"mozdata/firefox_echo_show/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
firefox_echo_show.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Echo Show\" (org_mozilla_connect_firefox.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_echo_show.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_echo_show.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_echo_show.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_echo_show.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_echo_show_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
firefox_echo_show.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Echo Show\" (org_mozilla_connect_firefox.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#events","title":"events","text":"App-specific view for Glean ping \"events\"
firefox_echo_show.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Echo Show\" (org_mozilla_connect_firefox.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_echo_show.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
firefox_echo_show.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Echo Show\" (org_mozilla_connect_firefox.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_echo_show.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_echo_show_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_echo_show.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_echo_show_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/","title":"Firefox Fire Tv","text":"Views on data from firefox_fire_tv
Source Directory
"},{"location":"mozdata/firefox_fire_tv/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
firefox_fire_tv.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Fire TV\" (org_mozilla_tv_firefox.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_fire_tv.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_fire_tv.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_fire_tv.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_fire_tv.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_fire_tv_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
firefox_fire_tv.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Fire TV\" (org_mozilla_tv_firefox.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#events","title":"events","text":"App-specific view for Glean ping \"events\"
firefox_fire_tv.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Fire TV\" (org_mozilla_tv_firefox.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_fire_tv.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
firefox_fire_tv.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Fire TV\" (org_mozilla_tv_firefox.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_fire_tv.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_fire_tv_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_fire_tv.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_fire_tv_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_installer/","title":"firefox-installer","text":"User-facing views related to document namespace firefox-installer; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/firefox-installer
Source Directory
"},{"location":"mozdata/firefox_installer/#install","title":"install","text":"Historical Pings for firefox-installer/install
firefox_installer.install
A historical view of pings sent for the firefox-installer/install
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable _64bit_build True if the installed build is 64-bit Boolean Yes _64bit_os True if the OS this installer ran on is 64-bit Boolean Yes additional_properties A JSON string containing any payload properties not present in the schema String Yes admin_user True if the user account which ran the installer had administrative privileges Boolean Yes attribution Any attribution data that was included with the installer String Yes build_channel Channel the installer was built with the branding for String Yes build_id Build ID of the installed product. Absent for a failed stub installation. String Yes bytes_downloaded Size of the full installer data that was actually transferred Integer Yes default_path True if the user did not customize the installation path Boolean Yes disk_space_error True if the installation failed because the drive we're trying to install to does not have enough space Boolean Yes document_id The document ID specified in the URI when the client sent this message String Yes download_ip IP address of the server the full installer was downloaded from. May be either IPv4 or IPv6. String Yes download_latency Seconds between sending the full installer download request and receiving the first response data Integer Yes download_retries Number of times the full installer download was retried or resumed Integer Yes download_size Expected size of the full installer download according to the HTTP response Integer Yes download_time Seconds spent downloading the full installer Integer Yes file_error True if the installation failed because the downloaded file couldn\u2019t be read from Boolean Yes finish_time For a stub ping, seconds spent waiting for the installed application to launch. For a full ping, seconds spent on the finish page. Integer Yes from_msi True if the install was launched from an MSI wrapper Boolean Yes funnelcake Funnelcake ID String Yes had_old_install True if at least one existing installation of Firefox was found on the system prior to this installation Boolean Yes install_time For a stub ping, seconds the full installer ran for. For a full ping, seconds spent on the install progress page. Integer Yes install_timeout True if the installation failed because running the full installer timed out. Currently that means it ran for more than 150 seconds for a new installation, or 165 seconds for a paveover installation. Boolean Yes installer_type Which type of installer generated this ping (full or stub) String Yes installer_version Version of the installer itself. May be different from the product version for a stub install. String Yes intro_time Seconds spent on the intro screen Integer Yes locale Locale of the installer and the installed product, in AB_CD format String Yes manual_download True if the user clicked through the error message to the manual full installer download page. Boolean Yes metadata Record Yes new_default True if the new installation was successfully set as the default browser Boolean Yes new_launched True if the installation succeeded and we were able to launch the newly installed application. Boolean Yes no_write_access True if the installation failed because the user doesn\u2019t have permission to write to the path we\u2019re trying to install to. Boolean Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes old_build_id Build ID of the previously installed Firefox, if any String Yes old_default True if an existing Firefox installation was already set as the default browser Boolean Yes old_running True if the installation succeeded and we weren\u2019t able to launch the newly installed application because a copy of Firefox was already running. Boolean Yes old_version Version of the previously installed Firefox, if any String Yes options_time Seconds spent in the options screens. For the stub installer this includes only the profile cleanup prompt. Integer Yes os_version Windows version number in major.minor.build format String Yes out_of_retries True if the installation failed because the download had to be retried too many times (currently 10) Boolean Yes ping_version Only set for stub installer pings String Yes preinstall_time Seconds spent verifying the downloaded full installer and preparing to run it Integer Yes profile_cleanup_prompt Which type of profile cleanup prompt was shown, (reinstall or paveover) String Yes profile_cleanup_requested True if either profile cleanup prompt was shown and the user accepted the prompt Boolean Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes server_os True if the OS this installer ran on is Windows Server Boolean Yes service_pack Latest installed service pack number String Yes set_default True if the option to set the new installation as the default browser was selected Boolean Yes sig_not_trusted True if the installation failed because the signature on the downloaded file wasn\u2019t valid and/or wasn\u2019t signed by a trusted authority Boolean Yes sig_unexpected True if the installation failed because the signature on the downloaded file didn\u2019t have the expected subject and issuer names Boolean Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes succeeded True if a new installation was successfully created. If false, check the error status fields for the failure reason. Boolean Yes update_channel Value of MOZ_UPDATE_CHANNEL the installer was built with. Generally the same as build_channel String Yes user_cancelled True if the installation failed because the user cancelled it or closed the window Boolean Yes version Version of the installed product. May be different from installer_version for a stub install. Absent for a failed stub installation. String Yes silent True if the installer was run in silent mode (either from an MSI or with command-line parameters) Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_installer_stable install_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/","title":"Firefox iOS","text":"Data related to Firefox for iOS
Source Directory
"},{"location":"mozdata/firefox_ios/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
firefox_ios.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived active_users_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#ad_activation_performance","title":"ad_activation_performance","text":"Ad Activation Performance
firefox_ios.ad_activation_performance
Please provide a description for the query
Schema Column Description Type Nullable date_day Date Yes campaign_id Integer Yes campaign_name String Yes currency String Yes taps Integer Yes new_downloads Integer Yes redownloads Integer Yes total_downloads Integer Yes impressions Integer Yes campaign_spend Bignumeric Yes clients_activated Integer Yes new_profiles Integer Yes campaign_spend_per_activation Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod apple_ads campaign_report moz-fx-data-shared-prod firefox_ios firefox_ios_clients Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#addresses_sync","title":"addresses_sync","text":"App-specific view for Glean ping \"addresses-sync\"
firefox_ios.addresses_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.addresses_sync, org_mozilla_ios_firefoxbeta.addresses_sync, org_mozilla_ios_fennec.addresses_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#app_store_funnel","title":"app_store_funnel","text":"App Store Funnel
firefox_ios.app_store_funnel
Please provide a description for the query
Schema Column Description Type Nullable submission_date Partition field, also corresponds to internal execution date of the job. submision_date - 7 days gives us the same date as the date field. Date Yes first_seen_date Date of when the user was first seen. Date Yes country Dimension by which the numeric values are grouped. String Yes impressions Number of Firefox iOS app unique impressions in the Apple Store. Integer Yes total_downloads Total number of downloads of the Firefox iOS app from the Apple Store. Integer Yes first_time_downloads Number of first time downloads of the Firefox iOS app from the Apple Store. Integer Yes redownloads Number of redownloads of the Firefox iOS app from the Apple Store. Integer Yes new_profiles Number of new profiles on the date. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived app_store_funnel_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#attributable_clients","title":"attributable_clients","text":"Attributable Clients
firefox_ios.attributable_clients
Please provide a description for the query
Schema Column Description Type Nullable submission_date Processing date, this indicates which date partiion was used when generating this record. Date Yes first_seen_date Date when we observed the user for the first time. Date Yes sample_id Sample ID to limit query results during an analysis. Integer Yes client_id Unique ID for the client installation. String Yes adjust_network The type of source of a client installation. String Yes adjust_adgroup Structure parameter for the the ad group of a campaign. String Yes adjust_campaign Structure parameter for the campaign name. String Yes adjust_creative Structure parameter for the creative content of a campaign. String Yes is_new_profile Determines if a client is a new profile. Boolean Yes searches The number of search interactions the user had on SERP pages. Integer Yes searches_with_ads The number of SERP pages with ads shown to the user. Integer Yes ad_clicks The number of times a user clicked on an ad on SERP pages. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived attributable_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
firefox_ios.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.baseline, org_mozilla_ios_firefoxbeta.baseline, org_mozilla_ios_fennec.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_ios.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_ios.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_ios.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#baseline_clients_yearly","title":"baseline_clients_yearly","text":"Baseline Clients Yearly
firefox_ios.baseline_clients_yearly
Captures activity history of each client in 1-Year windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- frank@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes consecutive_days_seen Integer Yes days_seen_in_past_year Integer Yes days_since_active Integer Yes consecutive_days_active Integer Yes days_active_in_past_year Integer Yes days_since_first_seen Integer Yes day_of_week Integer Yes days_seen_bytes Bytes Yes days_active_bytes Bytes Yes normalized_app_id String Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived baseline_clients_yearly_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#bookmarks_sync","title":"bookmarks_sync","text":"App-specific view for Glean ping \"bookmarks-sync\"
firefox_ios.bookmarks_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.bookmarks_sync, org_mozilla_ios_firefoxbeta.bookmarks_sync, org_mozilla_ios_fennec.bookmarks_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#client_adclicks_history","title":"client_adclicks_history","text":"Client Adclicks History
firefox_ios.client_adclicks_history
Client Adclick History. Contains a map of each day in a clients history and the number of adclicks on that day.
For use with LTV.
- Owners:
- frank@mozilla.com
Schema Column Description Type Nullable client_id Unique ID for the client installation. String Yes sample_id Sample ID to limit query results during an analysis. Integer Yes ad_click_history History of ad_clicks for a user, by submission_date Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived client_adclicks_history_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_ios.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#creditcards_sync","title":"creditcards_sync","text":"App-specific view for Glean ping \"creditcards-sync\"
firefox_ios.creditcards_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.creditcards_sync, org_mozilla_ios_firefoxbeta.creditcards_sync, org_mozilla_ios_fennec.creditcards_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
firefox_ios.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.deletion_request, org_mozilla_ios_firefoxbeta.deletion_request, org_mozilla_ios_fennec.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#events","title":"events","text":"App-specific view for Glean ping \"events\"
firefox_ios.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.events, org_mozilla_ios_firefoxbeta.events, org_mozilla_ios_fennec.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_ios.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#firefox_ios_clients","title":"firefox_ios_clients","text":"Firefox Ios Clients
firefox_ios.firefox_ios_clients
Please provide a description for the query
Schema Column Description Type Nullable client_id Unique ID for the client installation. String Yes sample_id Sample ID to limit query results during an analysis. Integer Yes first_seen_date Date when the app first reported a baseline ping for the client. Date Yes first_reported_country First reported country for the client installation. String Yes first_reported_isp Name of the first reported isp (Internet Service Provider). String Yes channel Channel where the browser is released. String Yes device_manufacturer Manufacturer of the device where the client is installed. String Yes device_model Model of the device where the client is installed. String Yes os_version Version of the Operating System where the client is originally installed. String Yes app_version App display version for this client installation. String Yes is_activated Determines if a client is activated based on the activation metric and a 7 day lag. Boolean Yes submission_timestamp Timestamp of the ping which contained the adjust information. Timestamp Yes adjust_ad_group Structure parameter for the the ad group of a campaign. String Yes adjust_campaign Structure parameter for the campaign name. String Yes adjust_creative Structure parameter for the creative content of a campaign. String Yes adjust_network The type of source of a client installation. String Yes metadata Additional context around the source of this record. Record Yes is_suspicious_device_client Flag to identify suspicious device users, see bug-1846554 for more info. Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived firefox_ios_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#first_session","title":"first_session","text":"App-specific view for Glean ping \"first-session\"
firefox_ios.first_session
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.first_session, org_mozilla_ios_firefoxbeta.first_session, org_mozilla_ios_fennec.first_session).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#funnel_retention_clients","title":"funnel_retention_clients","text":"Funnel Retention Clients
firefox_ios.funnel_retention_clients
Please provide a description for the query
Schema Column Description Type Nullable first_seen_date Date Yes client_id String Yes sample_id Integer Yes first_reported_country String Yes first_reported_isp String Yes adjust_ad_group String Yes adjust_campaign String Yes adjust_creative String Yes adjust_network String Yes retained_week_2 Boolean Yes retained_week_4 Boolean Yes days_seen_in_first_28_days Integer Yes repeat_first_month_user Boolean Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#funnel_retention_week_4","title":"funnel_retention_week_4","text":"Funnel Retention Week 4
firefox_ios.funnel_retention_week_4
Please provide a description for the query
Schema Column Description Type Nullable submission_date Partition field, also corresponds to internal execution date of the job (first_seen_date + 28 days). Date Yes first_seen_date Date of when the client was first seen. Date Yes first_reported_country First reported country for the client installation. String Yes first_reported_isp Name of the first reported isp (Internet Service Provider). String Yes adjust_ad_group Structure parameter for the the ad group of a campaign. String Yes adjust_campaign Structure parameter for the campaign name. String Yes adjust_creative Structure parameter for the creative content of a campaign. String Yes adjust_network The type of source of a client installation. String Yes new_profiles Count of new_profiles for the given grouping. Integer Yes repeat_user Count of clients categorised as \"repeat_first_month_user\" for the grouping. Integer Yes retained_week_4 Count of clients categorised as \"retained_week_4\" for the grouping. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived funnel_retention_week_4_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#history_sync","title":"history_sync","text":"App-specific view for Glean ping \"history-sync\"
firefox_ios.history_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.history_sync, org_mozilla_ios_firefoxbeta.history_sync, org_mozilla_ios_fennec.history_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#logins_sync","title":"logins_sync","text":"App-specific view for Glean ping \"logins-sync\"
firefox_ios.logins_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.logins_sync, org_mozilla_ios_firefoxbeta.logins_sync, org_mozilla_ios_fennec.logins_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
firefox_ios.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.metrics, org_mozilla_ios_firefoxbeta.metrics, org_mozilla_ios_fennec.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_ios.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_ios.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#new_profile_activation","title":"new_profile_activation","text":"New Profile Activation
firefox_ios.new_profile_activation
Please provide a description for the query
Schema Column Description Type Nullable client_id Unique ID for the client installation. String Yes sample_id Sample ID to limit query results during an analysis. Integer Yes normalized_channel The channel the application is being distributed on (normalized). This could be release, beta, etc. String Yes app_build The build identifier generated by the CI system (e.g. \"1234/A\"). If the value was not provided through configuration, this metric gets set to Unknown. String Yes app_channel The channel the application is being distributed on. String Yes app_display_version The user visible version string (e.g. \"1.0.3\"). If the value was not provided through configuration, this metric gets set to Unknown. String Yes device_manufacturer The manufacturer of the device the application is running on. Not set if the device manufacturer can't be determined (e.g. on Desktop). String Yes device_model The model of the device the application is running on. On Android, this is Build.MODEL, the user-visible marketing name, like \"Pixel 2 XL\". Not set if the device model can't be determined (e.g. on Desktop). String Yes isp Name of the isp (Internet Service Provider). String Yes locale The locale of the application during initialization (e.g. \"es-ES\"). If the locale can't be determined on the system, the value is \"und\", to indicate \"undetermined\". String Yes city City associated with the client's activity. String Yes country Country associated with the client's activity (2 letter ISO country codes used). String Yes first_seen_date Date when the app first reported a baseline ping for the client. Date Yes submission_date Processing date, this indicates which date partiion was used when generating this record. Date Yes new_profile Determines if a client is a new profile. Integer Yes activated Determines if a client is activated based on the activation metric and a 7 day lag. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived new_profile_activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#sync","title":"sync","text":"App-specific view for Glean ping \"sync\"
firefox_ios.sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.sync, org_mozilla_ios_firefoxbeta.sync, org_mozilla_ios_fennec.sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#tabs_sync","title":"tabs_sync","text":"App-specific view for Glean ping \"tabs-sync\"
firefox_ios.tabs_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.tabs_sync, org_mozilla_ios_firefoxbeta.tabs_sync, org_mozilla_ios_fennec.tabs_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_baseline","title":"temp_baseline","text":"App-specific view for Glean ping \"temp-baseline\"
firefox_ios.temp_baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_baseline, org_mozilla_ios_firefoxbeta.temp_baseline, org_mozilla_ios_fennec.temp_baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_bookmarks_sync","title":"temp_bookmarks_sync","text":"App-specific view for Glean ping \"temp-bookmarks-sync\"
firefox_ios.temp_bookmarks_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_bookmarks_sync, org_mozilla_ios_firefoxbeta.temp_bookmarks_sync, org_mozilla_ios_fennec.temp_bookmarks_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_clients_sync","title":"temp_clients_sync","text":"App-specific view for Glean ping \"temp-clients-sync\"
firefox_ios.temp_clients_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_clients_sync, org_mozilla_ios_firefoxbeta.temp_clients_sync, org_mozilla_ios_fennec.temp_clients_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_credit_cards_sync","title":"temp_credit_cards_sync","text":"App-specific view for Glean ping \"temp-credit-cards-sync\"
firefox_ios.temp_credit_cards_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_credit_cards_sync, org_mozilla_ios_firefoxbeta.temp_credit_cards_sync, org_mozilla_ios_fennec.temp_credit_cards_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_history_sync","title":"temp_history_sync","text":"App-specific view for Glean ping \"temp-history-sync\"
firefox_ios.temp_history_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_history_sync, org_mozilla_ios_firefoxbeta.temp_history_sync, org_mozilla_ios_fennec.temp_history_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_logins_sync","title":"temp_logins_sync","text":"App-specific view for Glean ping \"temp-logins-sync\"
firefox_ios.temp_logins_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_logins_sync, org_mozilla_ios_firefoxbeta.temp_logins_sync, org_mozilla_ios_fennec.temp_logins_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_rust_tabs_sync","title":"temp_rust_tabs_sync","text":"App-specific view for Glean ping \"temp-rust-tabs-sync\"
firefox_ios.temp_rust_tabs_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_rust_tabs_sync, org_mozilla_ios_firefoxbeta.temp_rust_tabs_sync, org_mozilla_ios_fennec.temp_rust_tabs_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_sync","title":"temp_sync","text":"App-specific view for Glean ping \"temp-sync\"
firefox_ios.temp_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_sync, org_mozilla_ios_firefoxbeta.temp_sync, org_mozilla_ios_fennec.temp_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_tabs_sync","title":"temp_tabs_sync","text":"App-specific view for Glean ping \"temp-tabs-sync\"
firefox_ios.temp_tabs_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_tabs_sync, org_mozilla_ios_firefoxbeta.temp_tabs_sync, org_mozilla_ios_fennec.temp_tabs_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#topsites_impression","title":"topsites_impression","text":"App-specific view for Glean ping \"topsites-impression\"
firefox_ios.topsites_impression
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.topsites_impression, org_mozilla_ios_firefoxbeta.topsites_impression, org_mozilla_ios_fennec.topsites_impression).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_launcher_process/","title":"firefox-launcher-process","text":"User-facing views related to document namespace firefox-launcher-process; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/firefox-launcher-process
Source Directory
"},{"location":"mozdata/firefox_launcher_process/#launcher_process_failure","title":"launcher_process_failure","text":"Historical Pings for firefox-launcher-process/launcher-process-failure
firefox_launcher_process.launcher_process_failure
A historical view of pings sent for the firefox-launcher-process/launcher-process-failure
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes build_id Build ID of the failing binary String Yes build_version Version of the failing binary String Yes cpu_arch One of the values from the Windows SYSTEM_INFO::wProcessorArchitecture field Integer Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes launcher_error The error that raised the launcher process failure Record Yes memory Information about the host computer's memory configuration Record Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes num_logical_cpus The number of logical CPUs on the host machine Integer Yes os_locale The current user's OS locale setting String Yes os_version Windows version numnber in major.minor.build.UBR format (UBR is optional, only available on Win10) String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes security Information about the security applications registered with Windows on the host computer Record Yes server_os True if this build was running atop a Windows Server OS Boolean Yes signatures String No submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes update_channel Channel that this build was built for String Yes version Float Yes xpcom_abi This build's XPCOM_ABI string String Yes is_admin_without_uac True if the process was launched with Administrator privileges but without User Account Control (= UAC) Boolean Yes modules List of leaf names of all modules found in the launcher process at the time of failure Record No process_type The type of the process which failed to start as a sandboxed process String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_launcher_process_stable launcher_process_failure_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/","title":"Firefox Reality","text":"Views on data from firefox_reality
Source Directory
"},{"location":"mozdata/firefox_reality/#addresses_sync","title":"addresses_sync","text":"App-specific view for Glean ping \"addresses-sync\"
firefox_reality.addresses_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.addresses_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser addresses_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
firefox_reality.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_reality.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_reality.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_reality.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#bookmarks_sync","title":"bookmarks_sync","text":"App-specific view for Glean ping \"bookmarks-sync\"
firefox_reality.bookmarks_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.bookmarks_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser bookmarks_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_reality.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_reality_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#creditcards_sync","title":"creditcards_sync","text":"App-specific view for Glean ping \"creditcards-sync\"
firefox_reality.creditcards_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.creditcards_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser creditcards_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
firefox_reality.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#events","title":"events","text":"App-specific view for Glean ping \"events\"
firefox_reality.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_reality.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#history_sync","title":"history_sync","text":"App-specific view for Glean ping \"history-sync\"
firefox_reality.history_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.history_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser history_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#logins_sync","title":"logins_sync","text":"App-specific view for Glean ping \"logins-sync\"
firefox_reality.logins_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.logins_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser logins_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
firefox_reality.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_reality.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_reality_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_reality.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_reality_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#session_end","title":"session_end","text":"App-specific view for Glean ping \"session-end\"
firefox_reality.session_end
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.session_end).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser session_end Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#sync","title":"sync","text":"App-specific view for Glean ping \"sync\"
firefox_reality.sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#tabs_sync","title":"tabs_sync","text":"App-specific view for Glean ping \"tabs-sync\"
firefox_reality.tabs_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.tabs_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser tabs_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/","title":"Firefox Reality Pc","text":"Views on data from firefox_reality_pc
Source Directory
"},{"location":"mozdata/firefox_reality_pc/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
firefox_reality_pc.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality for PC-connected VR platforms\" (org_mozilla_firefoxreality.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_reality_pc.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_reality_pc.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_reality_pc.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_reality_pc.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_reality_pc_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
firefox_reality_pc.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality for PC-connected VR platforms\" (org_mozilla_firefoxreality.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#events","title":"events","text":"App-specific view for Glean ping \"events\"
firefox_reality_pc.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality for PC-connected VR platforms\" (org_mozilla_firefoxreality.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_reality_pc.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#launch","title":"launch","text":"App-specific view for Glean ping \"launch\"
firefox_reality_pc.launch
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality for PC-connected VR platforms\" (org_mozilla_firefoxreality.launch).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality launch Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
firefox_reality_pc.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality for PC-connected VR platforms\" (org_mozilla_firefoxreality.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_reality_pc.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_reality_pc_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_reality_pc.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_reality_pc_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_translations/","title":"firefox-translations","text":"User-facing views related to document namespace firefox-translations; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/firefox-translations
Source Directory
"},{"location":"mozdata/firefox_translations/#custom","title":"custom","text":"Historical Pings for firefox-translations/custom
firefox_translations.custom
A historical view of pings sent for the firefox-translations/custom
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_translations_stable custom_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_translations/#deletion_request","title":"deletion_request","text":"Historical Pings for firefox-translations/deletion-request
firefox_translations.deletion_request
A historical view of pings sent for the firefox-translations/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_translations_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_translations/#events","title":"events","text":"Historical Pings for firefox-translations/events
firefox_translations.events
A historical view of pings sent for the firefox-translations/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_translations_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_translations/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_translations.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_translations events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fivetran_costs/","title":"Fivetran Costs","text":"Analyze the costs for Fivetran connectors.
Source Directory
"},{"location":"mozdata/fivetran_costs/#daily_connector_costs","title":"daily_connector_costs","text":"Daily Connector Costs
fivetran_costs.daily_connector_costs
Please provide a description for the query
Schema Column Description Type Nullable destination Name of the destination warehouse. String Yes measured_date Date of when the active row measurement was made. Date Yes connector The name of the connector being measured. String Yes billing_type Information on how the active rows got billed, paid or free. String Yes active_rows The number of new distinct primary keys on the current day synced for the connector. Integer Yes cost_in_usd Costs in USD for that row. This value is not rounded to the cent but contains fractional cents for later calculations. Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fivetran_costs_derived daily_connector_costs_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/","title":"Focus Android","text":"Views on data from focus_android
Source Directory
"},{"location":"mozdata/focus_android/#activation","title":"activation","text":"App-specific view for Glean ping \"activation\"
focus_android.activation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.activation, org_mozilla_focus_beta.activation, org_mozilla_focus_nightly.activation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
focus_android.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_android_derived active_users_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
focus_android.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.baseline, org_mozilla_focus_beta.baseline, org_mozilla_focus_nightly.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
focus_android.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
focus_android.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
focus_android.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
focus_android.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes sample_id Integer Yes submission_date Date Yes normalized_channel String Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_android_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"App-specific view for Glean ping \"cookie-banner-report-site\"
focus_android.cookie_banner_report_site
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.cookie_banner_report_site, org_mozilla_focus_beta.cookie_banner_report_site, org_mozilla_focus_nightly.cookie_banner_report_site).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#crash","title":"crash","text":"App-specific view for Glean ping \"crash\"
focus_android.crash
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.crash, org_mozilla_focus_beta.crash, org_mozilla_focus_nightly.crash).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
focus_android.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.deletion_request, org_mozilla_focus_beta.deletion_request, org_mozilla_focus_nightly.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#events","title":"events","text":"App-specific view for Glean ping \"events\"
focus_android.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.events, org_mozilla_focus_beta.events, org_mozilla_focus_nightly.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#events_unnested","title":"events_unnested","text":"Events Unnested
focus_android.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#fog_validation","title":"fog_validation","text":"App-specific view for Glean ping \"fog-validation\"
focus_android.fog_validation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.fog_validation, org_mozilla_focus_beta.fog_validation, org_mozilla_focus_nightly.fog_validation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
focus_android.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.metrics, org_mozilla_focus_beta.metrics, org_mozilla_focus_nightly.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
focus_android.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_android_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
focus_android.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_android_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#pageload","title":"pageload","text":"App-specific view for Glean ping \"pageload\"
focus_android.pageload
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.pageload, org_mozilla_focus_beta.pageload, org_mozilla_focus_nightly.pageload).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/","title":"Focus Ios","text":"Views on data from focus_ios
Source Directory
"},{"location":"mozdata/focus_ios/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
focus_ios.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_ios_derived active_users_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
focus_ios.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for iOS\" (org_mozilla_ios_focus.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
focus_ios.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
focus_ios.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
focus_ios.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
focus_ios.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_ios_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
focus_ios.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for iOS\" (org_mozilla_ios_focus.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#events","title":"events","text":"App-specific view for Glean ping \"events\"
focus_ios.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for iOS\" (org_mozilla_ios_focus.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#events_unnested","title":"events_unnested","text":"Events Unnested
focus_ios.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
focus_ios.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for iOS\" (org_mozilla_ios_focus.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
focus_ios.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_ios_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
focus_ios.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_ios_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/glean_dictionary/","title":"glean-dictionary","text":"User-facing views related to document namespace glean-dictionary; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/glean-dictionary
Source Directory
"},{"location":"mozdata/glean_dictionary/#deletion_request","title":"deletion_request","text":"Historical Pings for glean-dictionary/deletion-request
glean_dictionary.deletion_request
A historical view of pings sent for the glean-dictionary/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod glean_dictionary_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/glean_dictionary/#events","title":"events","text":"Historical Pings for glean-dictionary/events
glean_dictionary.events
A historical view of pings sent for the glean-dictionary/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod glean_dictionary_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/glean_dictionary/#events_unnested","title":"events_unnested","text":"Events Unnested
glean_dictionary.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod glean_dictionary events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/glean_dictionary/#page_view","title":"page_view","text":"Historical Pings for glean-dictionary/page-view
glean_dictionary.page_view
A historical view of pings sent for the glean-dictionary/page-view
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod glean_dictionary_stable page_view_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/google_ads/","title":"Google_ads","text":"User facing views for Google Ads derived tables.
Source Directory
"},{"location":"mozdata/google_ads/#campaign_conversions_by_date","title":"campaign_conversions_by_date","text":"Campaign Conversions By Date
google_ads.campaign_conversions_by_date
Number of conversions and installs by campaign & date.
- Owners:
- frank@mozilla.com
Schema Column Description Type Nullable date Date Yes campaign_name String Yes campaign_id Integer Yes installs Float Yes conversions Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod google_ads_derived campaign_conversions_by_date_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/google_ads/#campaign_names_map","title":"campaign_names_map","text":"Campaign Names Map
google_ads.campaign_names_map
Please provide a description for the query
Schema Column Description Type Nullable campaign_id Integer Yes campaign_name String Yes is_most_recent_record Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod google_ads_derived campaign_names_map_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/google_ads/#daily_ad_group_stats","title":"daily_ad_group_stats","text":"Daily Ad Group Stats
google_ads.daily_ad_group_stats
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes account_name String Yes account_id Integer Yes campaign_name String Yes campaign_id Integer Yes ad_group_name String Yes ad_group_id String Yes ad_group_status String Yes ad_group_type String Yes spend Float Yes clicks Integer Yes impressions Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod google_ads_derived daily_ad_group_stats_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/google_ads/#daily_campaign_stats","title":"daily_campaign_stats","text":"Daily Campaign Stats
google_ads.daily_campaign_stats
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes account_name String Yes account_id Integer Yes campaign_name String Yes campaign_id Integer Yes advertising_channel_type String Yes advertising_channel_subtype String Yes status String Yes spend Float Yes clicks Integer Yes impressions Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod google_ads_derived daily_campaign_stats_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/hubs/","title":"Hubs","text":"Data related to the Hubs service
Source Directory
"},{"location":"mozdata/hubs/#active_subscription_ids","title":"active_subscription_ids","text":"Active Subscription Ids
hubs.active_subscription_ids
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes subscription_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod hubs_derived active_subscription_ids_live moz-fx-data-shared-prod hubs_derived active_subscription_ids_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/hubs/#active_subscriptions","title":"active_subscriptions","text":"Active Subscriptions
hubs.active_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes plan_id String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes promotion_codes String No promotion_discounts_amount Integer Yes count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod hubs_derived active_subscriptions_live moz-fx-data-shared-prod hubs_derived active_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/hubs/#subscription_events","title":"subscription_events","text":"Subscription Events
hubs.subscription_events
Please provide a description for the query
Schema Column Description Type Nullable event_date Date Yes event_type String Yes granular_event_type String Yes plan_id String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes promotion_codes String No count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod hubs_derived subscription_events_live moz-fx-data-shared-prod hubs_derived subscription_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/hubs/#subscriptions","title":"subscriptions","text":"Subscriptions
hubs.subscriptions
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes subscription_id String Yes original_subscription_id String Yes plan_id String Yes status String Yes event_timestamp Timestamp Yes subscription_start_date Timestamp Yes original_subscription_start_date Timestamp Yes subscription_start_reason String Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes ended_at Timestamp Yes ended_reason String Yes fxa_uid String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes product_id String Yes product_name String Yes pricing_plan String Yes billing_grace_period Interval Yes promotion_codes String No promotion_discounts_amount Integer Yes customer_start_date Timestamp Yes end_date Timestamp Yes months_retained Integer Yes original_subscription_months_retained Integer Yes current_months_since_subscription_start Integer Yes current_months_since_original_subscription_start Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod hubs_derived subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/internet_outages/","title":"Internet Outages","text":"Derived data useful for detecting regional internet outages, shared with some trusted external partners.
See https://docs.google.com/document/d/15HvdPS3UwGhAir6HyWHDLDRaxUFycx4jagJ_ZrHr9D8/edit
Source Directory
"},{"location":"mozdata/internet_outages/#global_outages_v1","title":"global_outages_v1","text":"Internet Outages
internet_outages.global_outages_v1
This contains a set aggregated metrics that correlate to internet outages for different countries in the world.
The dataset contains the following fields: - country
: the Country code of the client. - city
: the City name (only for cities with a population >= 15000, 'unknown' otherwise). - datetime
: the date and the time (truncated to hour) the data was submitted by the client. - proportion_undefined
: the proportion of users who failed to send telemetry for a reason that was not listed in the other cases. - proportion_timeout
: the proportion of users that had their connection timeout while uploading telemetry (after 90s, in Firefox Desktop). - proportion_abort
: the proportion of users that had their connection terminated by the client (for example, terminating open connections before shutting down). - proportion_unreachable
: the proportion of users that failed to upload telemetry because the server was not reachable (e.g. because the host was not reachable, proxy problems or OS waking up after a suspension). - proportion_terminated
: the proportion of users that had their connection terminated internally by the networking code. - proportion_channel_open
: the proportion of users for which the upload request was terminated immediately, by the client, because of a Necko internal error. - avg_dns_success_time
: the average time it takes for a successful DNS resolution, in milliseconds. - missing_dns_success
: counts how many sessions did not report the DNS_LOOKUP_TIME
histogram. - avg_dns_failure_time
: the average time it takes for an unsuccessful DNS resolution, in milliseconds. - missing_dns_failure
: counts how many sessions did not report the DNS_FAILED_LOOKUP_TIME
histogram. - count_dns_failure
: the average count of unsuccessful DNS resolutions reported. - ssl_error_prop
: the proportion of users that reported an error through the SSL_CERT_VERIFICATION_ERRORS
histogram. - avg_tls_handshake_time
: the average time after the TCP SYN to ready for HTTP, in milliseconds.
Caveats with the data: As with any observational data, there are many caveats and interpretation must be done carefully. Below is a list of issues we have considered, but it is not exhaustive. - Firefox users are not representative of the general population in their region. - Users can experience multiple types of failures and so the proportions are not summable. For example, if 2.4% of clients had a timeout and 2.6% of clients had eUnreachable that doesn't necessarily mean that 5.0% of clients had a timeout or a eUnreachable - Geographical data is based on IPGeo databases. These databases are imperfect, so some activity may be attributed to the wrong location. Further, proxy and VPN usage can create geo-attribution errors.
Schema Column Description Type Nullable country String Yes city String Yes datetime Timestamp Yes proportion_undefined Float Yes proportion_timeout Float Yes proportion_abort Float Yes proportion_unreachable Float Yes proportion_terminated Float Yes proportion_channel_open Float Yes avg_dns_success_time Float Yes missing_dns_success Float Yes avg_dns_failure_time Float Yes missing_dns_failure Float Yes count_dns_failure Float Yes ssl_error_prop Float Yes avg_tls_handshake_time Float Yes Source Directory | Metadata File
"},{"location":"mozdata/introduction/","title":"Introduction","text":"mozdata
is the main GCP project that includes datasets for user analysis as of February 2021. This project is filled with views that reference underlying tables in moz-fx-data-shared-prod
. Users can use data tools like STMO to issue queries in this project. For more context, see the Projects, Datasets, and Tables in BigQuery article on docs.telemetry.mozilla.org.
"},{"location":"mozdata/klar_android/","title":"Klar Android","text":"Views on data from klar_android
Source Directory
"},{"location":"mozdata/klar_android/#activation","title":"activation","text":"App-specific view for Glean ping \"activation\"
klar_android.activation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.activation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar activation Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
klar_android.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
klar_android.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
klar_android.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
klar_android.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
klar_android.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes sample_id Integer Yes submission_date Date Yes normalized_channel String Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_android_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"App-specific view for Glean ping \"cookie-banner-report-site\"
klar_android.cookie_banner_report_site
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.cookie_banner_report_site).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar cookie_banner_report_site Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#crash","title":"crash","text":"App-specific view for Glean ping \"crash\"
klar_android.crash
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.crash).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar crash Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
klar_android.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#events","title":"events","text":"App-specific view for Glean ping \"events\"
klar_android.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#events_unnested","title":"events_unnested","text":"Events Unnested
klar_android.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#fog_validation","title":"fog_validation","text":"App-specific view for Glean ping \"fog-validation\"
klar_android.fog_validation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.fog_validation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar fog_validation Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
klar_android.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
klar_android.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_android_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
klar_android.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_android_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#pageload","title":"pageload","text":"App-specific view for Glean ping \"pageload\"
klar_android.pageload
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.pageload).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar pageload Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/","title":"Klar Ios","text":"Views on data from klar_ios
Source Directory
"},{"location":"mozdata/klar_ios/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
klar_ios.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_ios_derived active_users_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
klar_ios.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for iOS\" (org_mozilla_ios_klar.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
klar_ios.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
klar_ios.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
klar_ios.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
klar_ios.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes uri_count Integer Yes is_default_browser Boolean Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_ios_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
klar_ios.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for iOS\" (org_mozilla_ios_klar.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#events","title":"events","text":"App-specific view for Glean ping \"events\"
klar_ios.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for iOS\" (org_mozilla_ios_klar.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#events_unnested","title":"events_unnested","text":"Events Unnested
klar_ios.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
klar_ios.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for iOS\" (org_mozilla_ios_klar.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
klar_ios.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_ios_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
klar_ios.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_ios_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/","title":"Lockwise Android","text":"Views on data from lockwise_android
Source Directory
"},{"location":"mozdata/lockwise_android/#addresses_sync","title":"addresses_sync","text":"App-specific view for Glean ping \"addresses-sync\"
lockwise_android.addresses_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.addresses_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox addresses_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
lockwise_android.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
lockwise_android.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
lockwise_android.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
lockwise_android.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#bookmarks_sync","title":"bookmarks_sync","text":"App-specific view for Glean ping \"bookmarks-sync\"
lockwise_android.bookmarks_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.bookmarks_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox bookmarks_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
lockwise_android.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod lockwise_android_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#creditcards_sync","title":"creditcards_sync","text":"App-specific view for Glean ping \"creditcards-sync\"
lockwise_android.creditcards_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.creditcards_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox creditcards_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
lockwise_android.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#events","title":"events","text":"App-specific view for Glean ping \"events\"
lockwise_android.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#events_unnested","title":"events_unnested","text":"Events Unnested
lockwise_android.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#history_sync","title":"history_sync","text":"App-specific view for Glean ping \"history-sync\"
lockwise_android.history_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.history_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox history_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#logins_sync","title":"logins_sync","text":"App-specific view for Glean ping \"logins-sync\"
lockwise_android.logins_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.logins_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox logins_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
lockwise_android.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
lockwise_android.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod lockwise_android_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
lockwise_android.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod lockwise_android_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#sync","title":"sync","text":"App-specific view for Glean ping \"sync\"
lockwise_android.sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#tabs_sync","title":"tabs_sync","text":"App-specific view for Glean ping \"tabs-sync\"
lockwise_android.tabs_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.tabs_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox tabs_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/","title":"Lockwise Ios","text":"Views on data from lockwise_ios
Source Directory
"},{"location":"mozdata/lockwise_ios/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
lockwise_ios.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for iOS\" (org_mozilla_ios_lockbox.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
lockwise_ios.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
lockwise_ios.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
lockwise_ios.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
lockwise_ios.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod lockwise_ios_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
lockwise_ios.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for iOS\" (org_mozilla_ios_lockbox.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#events","title":"events","text":"App-specific view for Glean ping \"events\"
lockwise_ios.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for iOS\" (org_mozilla_ios_lockbox.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#events_unnested","title":"events_unnested","text":"Events Unnested
lockwise_ios.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
lockwise_ios.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for iOS\" (org_mozilla_ios_lockbox.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
lockwise_ios.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod lockwise_ios_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
lockwise_ios.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod lockwise_ios_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/","title":"Mach","text":"Views on data from mach
Source Directory
"},{"location":"mozdata/mach/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
mach.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mach\" (mozilla_mach.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mach.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mach.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mach.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
mach.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mach_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
mach.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mach\" (mozilla_mach.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#events","title":"events","text":"App-specific view for Glean ping \"events\"
mach.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mach\" (mozilla_mach.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#events_unnested","title":"events_unnested","text":"Events Unnested
mach.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
mach.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mach\" (mozilla_mach.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
mach.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mach_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
mach.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mach_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#usage","title":"usage","text":"App-specific view for Glean ping \"usage\"
mach.usage
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mach\" (mozilla_mach.usage).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach usage Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mdn_yari/","title":"mdn-yari","text":"User-facing views related to document namespace mdn-yari; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mdn-yari
Source Directory
"},{"location":"mozdata/mdn_yari/#action","title":"action","text":"Historical Pings for mdn-yari/action
mdn_yari.action
A historical view of pings sent for the mdn-yari/action
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mdn_yari_stable action_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mdn_yari/#deletion_request","title":"deletion_request","text":"Historical Pings for mdn-yari/deletion-request
mdn_yari.deletion_request
A historical view of pings sent for the mdn-yari/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mdn_yari_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mdn_yari/#events","title":"events","text":"Historical Pings for mdn-yari/events
mdn_yari.events
A historical view of pings sent for the mdn-yari/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mdn_yari_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mdn_yari/#events_unnested","title":"events_unnested","text":"Events Unnested
mdn_yari.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mdn_yari events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mdn_yari/#page","title":"page","text":"Historical Pings for mdn-yari/page
mdn_yari.page
A historical view of pings sent for the mdn-yari/page
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mdn_yari_stable page_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/","title":"messaging-system","text":"User-facing views related to document namespace messaging-system; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/messaging-system
Source Directory
"},{"location":"mozdata/messaging_system/#cfr","title":"cfr","text":"Historical Pings for messaging-system/cfr
messaging_system.cfr
A historical view of pings sent for the messaging-system/cfr
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes bucket_id String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes impression_id A UUID representing this user. Note that it's not client_id, nor can it be used to link to a client_id String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No source Added to reduce validation exceptions: see #1787882 String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable cfr_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#cfr_exact_mau28_by_dimensions","title":"cfr_exact_mau28_by_dimensions","text":"Cfr Exact Mau28 By Dimensions
messaging_system.cfr_exact_mau28_by_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes release_channel String Yes country String Yes country_name String Yes locale String Yes version String Yes mau Integer Yes wau Integer Yes dau Integer Yes whats_new_mau Integer Yes whats_new_wau Integer Yes whats_new_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived cfr_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#cfr_users_daily","title":"cfr_users_daily","text":"Cfr Users Daily
messaging_system.cfr_users_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes impression_id String Yes client_id String Yes seen_whats_new Boolean Yes release_channel String Yes locale String Yes country String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived cfr_users_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#cfr_users_last_seen","title":"cfr_users_last_seen","text":"Cfr Users Last Seen
messaging_system.cfr_users_last_seen
Please provide a description for the query
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_seen_whats_new Integer Yes days_seen_bits Integer Yes days_seen_whats_new_bits Integer Yes submission_date Date Yes impression_id String Yes client_id String Yes seen_whats_new Boolean Yes release_channel String Yes locale String Yes country String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived cfr_users_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#event_types","title":"event_types","text":"Event Types
messaging_system.event_types
Please provide a description for the query
Schema Column Description Type Nullable category String Yes event String Yes first_timestamp Timestamp Yes numeric_index Integer Yes index String Yes event_properties Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived event_types_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#events_daily","title":"events_daily","text":"Events Daily
messaging_system.events_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes events String Yes app_version String Yes os String Yes addon_version String Yes locale String Yes normalized_channel String Yes city String Yes country String Yes subdivision1 String Yes experiments Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived events_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#infobar","title":"infobar","text":"Historical Pings for messaging-system/infobar
messaging_system.infobar
A historical view of pings sent for the messaging-system/infobar
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes browser_session_id A mirror of the browser sessionId, as defined in https://github.com/mozilla-services/mozilla-pipeline-schemas/blob/main/schemas/telemetry/main/main.4.schema.json String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable infobar_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#moments","title":"moments","text":"Historical Pings for messaging-system/moments
messaging_system.moments
A historical view of pings sent for the messaging-system/moments
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes bucket_id String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No impression_id A UUID representing this user. Note that it's not client_id, nor can it be used to link to a client_id String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable moments_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#onboarding","title":"onboarding","text":"Historical Pings for messaging-system/onboarding
messaging_system.onboarding
A historical view of pings sent for the messaging-system/onboarding
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes browser_session_id A mirror of the browser sessionId, as defined in https://github.com/mozilla-services/mozilla-pipeline-schemas/blob/main/schemas/telemetry/main/main.4.schema.json String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No attribution Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable onboarding_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#onboarding_exact_mau28_by_dimensions","title":"onboarding_exact_mau28_by_dimensions","text":"Onboarding Exact Mau28 By Dimensions
messaging_system.onboarding_exact_mau28_by_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes release_channel String Yes country String Yes country_name String Yes locale String Yes version String Yes mau Integer Yes wau Integer Yes dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived onboarding_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#onboarding_users_daily","title":"onboarding_users_daily","text":"Onboarding Users Daily
messaging_system.onboarding_users_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes release_channel String Yes locale String Yes country String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived onboarding_users_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#onboarding_users_last_seen","title":"onboarding_users_last_seen","text":"Onboarding Users Last Seen
messaging_system.onboarding_users_last_seen
Please provide a description for the query
Schema Column Description Type Nullable days_since_seen Integer Yes days_seen_bits Integer Yes submission_date Date Yes client_id String Yes release_channel String Yes locale String Yes country String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived onboarding_users_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#personalization_experiment","title":"personalization_experiment","text":"Historical Pings for messaging-system/personalization-experiment
messaging_system.personalization_experiment
A historical view of pings sent for the messaging-system/personalization-experiment
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes boolean_client_context_features Record Yes client_context_features Record Yes document_id The document ID specified in the URI when the client sent this message String Yes features_array_used_in_score_computation Float No impression_id String Yes metadata Record Yes model_version Float Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes study_addon_version String Yes study_variation String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable personalization_experiment_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#snippets","title":"snippets","text":"Historical Pings for messaging-system/snippets
messaging_system.snippets
A historical view of pings sent for the messaging-system/snippets
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No source A string describing the source of this event String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable snippets_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#snippets_exact_mau28_by_dimensions","title":"snippets_exact_mau28_by_dimensions","text":"Snippets Exact Mau28 By Dimensions
messaging_system.snippets_exact_mau28_by_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes release_channel String Yes country String Yes country_name String Yes locale String Yes version String Yes mau Integer Yes wau Integer Yes dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived snippets_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#snippets_users_daily","title":"snippets_users_daily","text":"Snippets Users Daily
messaging_system.snippets_users_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes release_channel String Yes locale String Yes country String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived snippets_users_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#snippets_users_last_seen","title":"snippets_users_last_seen","text":"Snippets Users Last Seen
messaging_system.snippets_users_last_seen
Please provide a description for the query
Schema Column Description Type Nullable days_since_seen Integer Yes days_seen_bits Integer Yes submission_date Date Yes client_id String Yes release_channel String Yes locale String Yes country String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived snippets_users_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#spotlight","title":"spotlight","text":"Historical Pings for messaging-system/spotlight
messaging_system.spotlight
A historical view of pings sent for the messaging-system/spotlight
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes browser_session_id A mirror of the browser sessionId, as defined in https://github.com/mozilla-services/mozilla-pipeline-schemas/blob/main/schemas/telemetry/main/main.4.schema.json String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable spotlight_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#undesired_events","title":"undesired_events","text":"Historical Pings for messaging-system/undesired-events
messaging_system.undesired_events
A historical view of pings sent for the messaging-system/undesired-events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes impression_id A UUID representing this user. Note that it's not client_id, nor can it be used to link to a client_id String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable undesired_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#whats_new_panel","title":"whats_new_panel","text":"Historical Pings for messaging-system/whats-new-panel
messaging_system.whats_new_panel
A historical view of pings sent for the messaging-system/whats-new-panel
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes browser_session_id A mirror of the browser sessionId, as defined in https://github.com/mozilla-services/mozilla-pipeline-schemas/blob/main/schemas/telemetry/main/main.4.schema.json String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable whats_new_panel_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mlhackweek_search/","title":"mlhackweek-search","text":"User-facing views related to document namespace mlhackweek-search; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mlhackweek-search
Source Directory
"},{"location":"mozdata/mlhackweek_search/#action","title":"action","text":"Historical Pings for mlhackweek-search/action
mlhackweek_search.action
A historical view of pings sent for the mlhackweek-search/action
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mlhackweek_search_stable action_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mlhackweek_search/#baseline","title":"baseline","text":"Historical Pings for mlhackweek-search/baseline
mlhackweek_search.baseline
A historical view of pings sent for the mlhackweek-search/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mlhackweek_search_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mlhackweek_search/#custom","title":"custom","text":"Historical Pings for mlhackweek-search/custom
mlhackweek_search.custom
A historical view of pings sent for the mlhackweek-search/custom
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mlhackweek_search_stable custom_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mlhackweek_search/#deletion_request","title":"deletion_request","text":"Historical Pings for mlhackweek-search/deletion-request
mlhackweek_search.deletion_request
A historical view of pings sent for the mlhackweek-search/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mlhackweek_search_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mlhackweek_search/#events","title":"events","text":"Historical Pings for mlhackweek-search/events
mlhackweek_search.events
A historical view of pings sent for the mlhackweek-search/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mlhackweek_search_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mlhackweek_search/#metrics","title":"metrics","text":"Historical Pings for mlhackweek-search/metrics
mlhackweek_search.metrics
A historical view of pings sent for the mlhackweek-search/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mlhackweek_search_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mobile/","title":"mobile","text":"User-facing views related to document namespace mobile; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mobile
Source Directory
"},{"location":"mozdata/mobile/#activation","title":"activation","text":"Historical Pings for mobile/activation
mobile.activation
A historical view of pings sent for the mobile/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes app_name String Yes channel String Yes client_id telemetry client_id, included only if identifer is empty String Yes created String Yes distribution_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes identifier hashed version of Google ID String Yes locale application locale, such as 'en-US' String Yes manufacturer Build.MANUFACTURER String Yes metadata Record Yes model Build.MODEL String Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes os String Yes osversion String Yes profile_date Integer Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes tz timezone offset in minutes from UTC Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mobile_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/","title":"monitor-cirrus","text":"User-facing views related to document namespace monitor-cirrus; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/monitor-cirrus
Source Directory
"},{"location":"mozdata/monitor_cirrus/#baseline","title":"baseline","text":"Historical Pings for monitor-cirrus/baseline
monitor_cirrus.baseline
A historical view of pings sent for the monitor-cirrus/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
monitor_cirrus.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
monitor_cirrus.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
monitor_cirrus.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#deletion_request","title":"deletion_request","text":"Historical Pings for monitor-cirrus/deletion-request
monitor_cirrus.deletion_request
A historical view of pings sent for the monitor-cirrus/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#enrollment","title":"enrollment","text":"Historical Pings for monitor-cirrus/enrollment
monitor_cirrus.enrollment
A historical view of pings sent for the monitor-cirrus/enrollment
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_stable enrollment_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#enrollment_status","title":"enrollment_status","text":"Historical Pings for monitor-cirrus/enrollment-status
monitor_cirrus.enrollment_status
A historical view of pings sent for the monitor-cirrus/enrollment-status
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_stable enrollment_status_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#events","title":"events","text":"Historical Pings for monitor-cirrus/events
monitor_cirrus.events
A historical view of pings sent for the monitor-cirrus/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#events_unnested","title":"events_unnested","text":"Events Unnested
monitor_cirrus.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#metrics","title":"metrics","text":"Historical Pings for monitor-cirrus/metrics
monitor_cirrus.metrics
A historical view of pings sent for the monitor-cirrus/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
monitor_cirrus.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_frontend/","title":"monitor-frontend","text":"User-facing views related to document namespace monitor-frontend; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/monitor-frontend
Source Directory
"},{"location":"mozdata/monitor_frontend/#deletion_request","title":"deletion_request","text":"Historical Pings for monitor-frontend/deletion-request
monitor_frontend.deletion_request
A historical view of pings sent for the monitor-frontend/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_frontend_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_frontend/#events","title":"events","text":"Historical Pings for monitor-frontend/events
monitor_frontend.events
A historical view of pings sent for the monitor-frontend/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_frontend_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_frontend/#events_unnested","title":"events_unnested","text":"Events Unnested
monitor_frontend.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_frontend events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/","title":"Monitoring","text":"User-facing views for pipeline monitoring, including views on payload_bytes
tables
Source Directory
"},{"location":"mozdata/monitoring/#airflow_dag","title":"airflow_dag","text":"Airflow Dag
monitoring.airflow_dag
Please provide a description for the query
Schema Column Description Type Nullable dag_id Airflow DAG id (.) String Yes root_dag_id Airflow Root DAG id String Yes subdag_id Airflow subdag id String Yes is_subdag Indicates if this DAG is a subdag Boolean Yes description DAG's description String Yes schedule_interval DAG's scheduling settings String Yes owners DAG owners (comma separated) String Yes is_active Indicates if the DAG is active Boolean Yes is_paused Indicates if the DAG is currently paused Boolean Yes has_task_concurrency_limits Indicates if DAG has concurrency limit set Boolean Yes max_active_runs Max number of active DAG runs allowed Integer Yes max_active_tasks Max number of active task instances in the DAG allowed Integer Yes next_dagrun Timestamp Yes next_dagrun_create_after Timestamp Yes next_dagrun_data_interval_start Timestamp Yes next_dagrun_data_interval_end Timestamp Yes last_parsed_time The last time the DAG was parsed Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_dag_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_dag_note","title":"airflow_dag_note","text":"Airflow Dag Note
monitoring.airflow_dag_note
Please provide a description for the query
Schema Column Description Type Nullable dag_run_id Integer Yes content String Yes created_at Timestamp Yes updated_at Timestamp Yes user_id Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_dag_note_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_dag_owner_attributes","title":"airflow_dag_owner_attributes","text":"Airflow Dag Owner Attributes
monitoring.airflow_dag_owner_attributes
Please provide a description for the query
Schema Column Description Type Nullable dag_id String Yes owner String Yes link String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_dag_owner_attributes_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_dag_run","title":"airflow_dag_run","text":"Airflow Dag Run
monitoring.airflow_dag_run
Please provide a description for the query
Schema Column Description Type Nullable dag_id Airflow DAG id String Yes run_type manual, scheduled or backfill String Yes external_trigger Indicates if the DAG was triggered externally Boolean Yes state State of the DAG run instance (e.g. success) String Yes execution_date Execution date of the DAG Run instance Timestamp Yes start_date When the DAG run started Timestamp Yes end_date When the DAG run finished Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_dag_run_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_dag_tag","title":"airflow_dag_tag","text":"Airflow Dag Tag
monitoring.airflow_dag_tag
Please provide a description for the query
Schema Column Description Type Nullable dag_id Airflow DAG id String Yes tags String No Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_dag_tag_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_dag_warning","title":"airflow_dag_warning","text":"Airflow Dag Warning
monitoring.airflow_dag_warning
Please provide a description for the query
Schema Column Description Type Nullable timestamp Timestamp Yes dag_id String Yes warning_type String Yes message String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_dag_warning_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_import_error","title":"airflow_import_error","text":"Airflow Import Error
monitoring.airflow_import_error
Please provide a description for the query
Schema Column Description Type Nullable timestamp Timestamp Yes id Integer Yes filename String Yes stacktrace String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_import_error_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_job","title":"airflow_job","text":"Airflow Job
monitoring.airflow_job
Please provide a description for the query
Schema Column Description Type Nullable id Integer Yes dag_id String Yes end_date Timestamp Yes executor_class String Yes hostname String Yes job_type String Yes latest_heartbeat Timestamp Yes start_date Timestamp Yes state String Yes unixname String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_job_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_slot_pool","title":"airflow_slot_pool","text":"Airflow Slot Pool
monitoring.airflow_slot_pool
Please provide a description for the query
Schema Column Description Type Nullable id Pool id Integer Yes pool Pool name String Yes description Pool description String Yes slots Number of slots available in the pool Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_slot_pool_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_task_fail","title":"airflow_task_fail","text":"Airflow Task Fail
monitoring.airflow_task_fail
Please provide a description for the query
Schema Column Description Type Nullable dag_id Airflow DAG id String Yes task_id Airflow task id String Yes duration Integer Yes start_date Timestamp Yes end_date Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_task_fail_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_task_instance","title":"airflow_task_instance","text":"Airflow Task Instance
monitoring.airflow_task_instance
Please provide a description for the query
Schema Column Description Type Nullable dag_id String Yes run_id String Yes task_id String Yes state String Yes try_number Integer Yes start_date Timestamp Yes end_date Timestamp Yes duration Float Yes job_id Integer Yes executor_config Bytes Yes external_executor_id String Yes hostname String Yes max_tries Integer Yes next_kwargs String Yes next_method String Yes operator String Yes pid Integer Yes pool String Yes pool_slots Integer Yes priority_weight Integer Yes queue String Yes queued_by_job_id Integer Yes queued_dttm Timestamp Yes trigger_id Integer Yes trigger_timeout Datetime Yes unixname String Yes map_index Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_task_instance_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_task_instance_note","title":"airflow_task_instance_note","text":"Airflow Task Instance Note
monitoring.airflow_task_instance_note
Please provide a description for the query
Schema Column Description Type Nullable dag_id String Yes map_index Integer Yes run_id String Yes task_id String Yes content String Yes created_at Timestamp Yes updated_at Timestamp Yes user_id Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_task_instance_note_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_task_reschedule","title":"airflow_task_reschedule","text":"Airflow Task Reschedule
monitoring.airflow_task_reschedule
Please provide a description for the query
Schema Column Description Type Nullable dag_id Airflow DAG id String Yes task_id Airflow task id String Yes run_id Unique identifier of the task run instance String Yes try_number Attempt number to execute the task Integer Yes reschedule_date Datetime when task has been rescheduled Timestamp Yes start_date When the DAG run started Timestamp Yes end_date When the DAG run finished Timestamp Yes duration Time elapsed since start until end of task's exeuction (seconds) Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_task_reschedule_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_trigger","title":"airflow_trigger","text":"Airflow Trigger
monitoring.airflow_trigger
Please provide a description for the query
Schema Column Description Type Nullable id Integer Yes classpath String Yes created_date Timestamp Yes kwargs String Yes triggerer_id Integer Yes trigger_id Integer Yes created_at Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_trigger_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_user","title":"airflow_user","text":"Airflow User
monitoring.airflow_user
Please provide a description for the query
Schema Column Description Type Nullable user_role String Yes user_id Airflow user id Integer Yes created_on Datetime Yes changed_on Datetime Yes last_login Datetime Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_user_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#average_ping_sizes","title":"average_ping_sizes","text":"Average Ping Sizes
monitoring.average_ping_sizes
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes dataset_id String Yes table_id String Yes average_byte_size Float Yes total_byte_size Integer Yes row_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived average_ping_sizes_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_etl_scheduled_queries_cost","title":"bigquery_etl_scheduled_queries_cost","text":"Bigquery Etl Scheduled Queries Cost
monitoring.bigquery_etl_scheduled_queries_cost
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes creation_time Timestamp Yes dataset String Yes table String Yes cost_usd Float Yes total_bytes_processed Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_etl_scheduled_queries_cost_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_etl_scheduled_query_usage","title":"bigquery_etl_scheduled_query_usage","text":"Bigquery Etl Scheduled Query Usage
monitoring.bigquery_etl_scheduled_query_usage
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes project_id String Yes table String Yes number_of_accesses Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_etl_scheduled_query_usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_table_storage","title":"bigquery_table_storage","text":"Bigquery Table Storage
monitoring.bigquery_table_storage
Please provide a description for the query
Schema Column Description Type Nullable creation_date The table's creation date Date Yes project_id The ID of the project that contains the dataset String Yes dataset_id The name of the dataset that contains the table String Yes table_id The name of the table String Yes total_rows The total number of rows in the table Integer Yes total_partitions The total number of partitions present in the table Integer Yes total_logical_bytes Total number of uncompressed bytes in the table Integer Yes active_logical_bytes Number of uncompressed bytes less than 90 days old Integer Yes long_term_logical_bytes Number of uncompressed bytes more than 90 days old Integer Yes total_physical_bytes Total number of compressed bytes used for storage Integer Yes active_physical_bytes Number of compressed bytes less than 90 days old Integer Yes long_term_physical_bytes Number of compressed bytes more than 90 days old Integer Yes time_travel_physical_bytes Number of compressed bytes for deleted or changed data Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_table_storage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_table_storage_timeline_daily","title":"bigquery_table_storage_timeline_daily","text":"Bigquery Table Storage Timeline Daily
monitoring.bigquery_table_storage_timeline_daily
Please provide a description for the query
Schema Column Description Type Nullable change_date Date of change to the data in the table. Date Yes project_id The ID of the project that contains the dataset String Yes dataset_id The name of the dataset that contains the table String Yes table_id The name of the table String Yes deleted Indicates whether or not the table is deleted Boolean Yes creation_date The table's creation date Date Yes change_count The total number of changes to a table in one day Integer Yes avg_total_rows Average total number of rows in the table Float Yes avg_total_partitions Average total number of partitions in the table Float Yes avg_total_logical_bytes Average total number of uncompressed bytes in the table Float Yes avg_active_logical_bytes Average number of uncompressed bytes less than 90 days old Float Yes avg_long_term_logical_bytes Average number of uncompressed bytes more than 90 days old Float Yes avg_total_physical_bytes Average total number of compressed bytes used for storage Float Yes avg_active_physical_bytes Average number of compressed bytes less than 90 days old Float Yes avg_long_term_physical_bytes Average number of compressed bytes more than 90 days old Float Yes avg_time_travel_physical_bytes Average number of compressed bytes for deleted or changed data Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_table_storage_timeline_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_tables_inventory","title":"bigquery_tables_inventory","text":"Bigquery Tables Inventory
monitoring.bigquery_tables_inventory
Please provide a description for the query
Schema Column Description Type Nullable submission_date The date when data was captured Date Yes creation_date The table's creation date Date Yes project_id The ID of the project that contains the dataset String Yes dataset_id The name of the dataset that contains the table or view String Yes table_id The name of the table or view String Yes table_type The table type String Yes last_modified_date The table's last modified date Date Yes owners The owner of the table listed in metadata yaml file String No last_used_date The date when the tables was last queried Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_tables_inventory_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_usage","title":"bigquery_usage","text":"Bigquery Usage
monitoring.bigquery_usage
Please provide a description for the query
Schema Column Description Type Nullable source_project Project used for executing job String Yes creation_date Job creation date Date Yes job_id ID of job String Yes job_type The type of the job String Yes state Running state of the job String Yes reference_project_id The ID of the project referenced by the job String Yes reference_dataset_id The ID of the dataset referenced by the job String Yes reference_table_id The ID of the table referenced by the job String Yes destination_project_id The ID of the project containing the destination table String Yes destination_dataset_id The ID of the dataset containing the destination table String Yes destination_table_id The ID of the destination table String Yes user_email Email address or service account of the user who ran the job String Yes username Email address of the user who ran the query String Yes query_id query id of the job String Yes task_duration The time it took to run the job Interval Yes total_terabytes_processed Total terabytes processed by the job Float Yes error_location Specifies where the error occurred, if present String Yes error_reason A short error code that summarizes the error String Yes error_message A human-readable description of the error String Yes reservation_id Name of the primary reservation (slots for distributing resources) assigned to this job. String Yes cache_hit Whether the query results of this job were from a cache Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_usage_costs","title":"bigquery_usage_costs","text":"Bigquery Usage Costs
monitoring.bigquery_usage_costs
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring bigquery_usage Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_usage_jobs_by_org","title":"bigquery_usage_jobs_by_org","text":"Bigquery Usage Jobs By Org
monitoring.bigquery_usage_jobs_by_org
Please provide a description for the query
Schema Column Description Type Nullable source_project Project used for executing job String Yes creation_date Job creation date Date Yes job_id ID of job String Yes job_type The type of the job String Yes reservation_id Name of the primary reservation (slots for distributing resources) assigned to this job String Yes cache_hit Whether the query results of this job were from a cache Boolean Yes state Running state of the job String Yes statement_type The type of query statement String Yes query_id The id of the query String Yes reference_project_id The ID of the project referenced by the job String Yes reference_dataset_id The ID of the dataset referenced by the job String Yes reference_table_id The ID of the table referenced by the job String Yes destination_project_id The ID of the project containing the destination table String Yes destination_dataset_id The ID of the dataset containing the destination table String Yes destination_table_id The ID of the destination table String Yes user_email Email address or service account of the user who ran the job String Yes username The name of the user who ran the job String Yes task_duration The time it took to run the job Interval Yes total_terabytes_processed Total terabytes processed by the job Float Yes total_terabytes_billed Total terabytes billed by the job if on-demand pricing is used Float Yes total_slot_ms Slot milliseconds for the job over its entire duration Integer Yes error_location Specifies where the error occurred, if present String Yes error_reason A short error code that summarizes the error String Yes error_message A human-readable description of the error String Yes resource_warning The warning message that appears if the resource usage is above the internal threshold of the system String Yes submission_date Date Airflow DAG is executed, and partition date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_usage_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#column_size","title":"column_size","text":"Column Size
monitoring.column_size
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes dataset_id String Yes table_id String Yes column_name String Yes byte_size Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived column_size_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#deletion_request_volume","title":"deletion_request_volume","text":"Deletion Request Volume
monitoring.deletion_request_volume
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes dataset_id String Yes num_rows Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived deletion_request_volume_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#event_monitoring_live","title":"event_monitoring_live","text":"Event Monitoring Live
monitoring.event_monitoring_live
View that combines live and aggregated event monitoring data for
- Owners:
- ascholtz@mozilla.com
- akomar@mozilla.com
Schema Column Description Type Nullable window_start Timestamp Yes window_end Timestamp Yes event_category String Yes event_name String Yes event_extra_key String Yes country String Yes normalized_app_name String Yes channel String Yes version String Yes experiment String Yes experiment_branch String Yes total_events Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_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_desktop_background_defaultagent_derived event_monitoring_live_v1 moz-fx-data-shared-prod firefox_desktop_background_tasks_derived event_monitoring_live_v1 moz-fx-data-shared-prod firefox_desktop_background_update_derived event_monitoring_live_v1 moz-fx-data-shared-prod firefox_desktop_derived event_monitoring_live_v1 moz-fx-data-shared-prod firefox_translations_derived event_monitoring_live_v1 moz-fx-data-shared-prod glean_dictionary_derived event_monitoring_live_v1 moz-fx-data-shared-prod mdn_yari_derived event_monitoring_live_v1 moz-fx-data-shared-prod monitor_cirrus_derived event_monitoring_live_v1 moz-fx-data-shared-prod monitor_frontend_derived event_monitoring_live_v1 moz-fx-data-shared-prod monitoring_derived event_monitoring_aggregates_v1 moz-fx-data-shared-prod moso_mastodon_backend_derived event_monitoring_live_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_derived event_monitoring_live_v1 moz-fx-data-shared-prod mozphab_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 treeherder_derived event_monitoring_live_v1 moz-fx-data-shared-prod viu_politica_derived event_monitoring_live_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#payload_bytes_decoded_all","title":"payload_bytes_decoded_all","text":"All Decoded Tables
monitoring.payload_bytes_decoded_all
A view on top of the payload_bytes_decoded.*
tables that includes all fields except the payload.
This view is useful for overall pipeline monitoring.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring payload_bytes_decoded_structured moz-fx-data-shared-prod monitoring payload_bytes_decoded_stub_installer moz-fx-data-shared-prod monitoring payload_bytes_decoded_telemetry Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#payload_bytes_decoded_structured","title":"payload_bytes_decoded_structured","text":"Structured Pipeline Family Decoded
monitoring.payload_bytes_decoded_structured
A view on top of the payload_bytes_decoded.structured*
tables that includes all fields except the payload.
This view is useful for overall pipeline monitoring.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod payload_bytes_decoded structured* Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#payload_bytes_decoded_stub_installer","title":"payload_bytes_decoded_stub_installer","text":"Stub Installer Pipeline Family Decoded
monitoring.payload_bytes_decoded_stub_installer
A view on top of the payload_bytes_decoded.stub_installer*
tables that includes all fields except the payload.
This view is useful for overall pipeline monitoring.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod payload_bytes_decoded stub_installer* Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#payload_bytes_decoded_telemetry","title":"payload_bytes_decoded_telemetry","text":"Telemetry Pipeline Family Decoded
monitoring.payload_bytes_decoded_telemetry
A view on top of the payload_bytes_decoded.telemetry*
tables that includes all fields except the payload.
This view is useful for overall pipeline monitoring.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod payload_bytes_decoded telemetry* Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#payload_bytes_error_all","title":"payload_bytes_error_all","text":"All Errors
monitoring.payload_bytes_error_all
A view on top of the payload_bytes_error.*
tables that includes all fields except the payload.
This view is useful for overall monitoring of pipeline errors.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring payload_bytes_error_structured moz-fx-data-shared-prod payload_bytes_error stub_installer moz-fx-data-shared-prod payload_bytes_error telemetry Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#payload_bytes_error_structured","title":"payload_bytes_error_structured","text":"Structured Pipeline Family Errors
monitoring.payload_bytes_error_structured
A view on top of the payload_bytes_error.structured
table that includes all fields except the payload.
This view is useful for overall monitoring of pipeline errors.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod payload_bytes_error structured Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#schema_error_counts","title":"schema_error_counts","text":"Schema Error Counts
monitoring.schema_error_counts
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes document_namespace String Yes document_type String Yes document_version String Yes hour Timestamp Yes job_name String Yes path String Yes error_count Integer Yes sample_error_messages concatenated error messages, limited to 300 characters String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived schema_error_counts_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#shredder_progress","title":"shredder_progress","text":"Shredder Progress
monitoring.shredder_progress
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived shredder_progress_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#shredder_rows_deleted","title":"shredder_rows_deleted","text":"Shredder Rows Deleted
monitoring.shredder_rows_deleted
Please provide a description for the query
Schema Column Description Type Nullable end_time Timestamp Yes job_id String Yes project_id String Yes dataset_id String Yes table_id String Yes partition_id String Yes deleted_row_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived shredder_rows_deleted_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#stable_and_derived_table_sizes","title":"stable_and_derived_table_sizes","text":"Stable And Derived Table Sizes
monitoring.stable_and_derived_table_sizes
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes dataset_id String Yes table_id String Yes byte_size Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived stable_and_derived_table_sizes_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#stable_table_column_counts","title":"stable_table_column_counts","text":"Stable Table Column Counts
monitoring.stable_table_column_counts
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes dataset String Yes table_name String Yes total_columns Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived stable_table_column_counts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#stable_table_sizes","title":"stable_table_sizes","text":"Stable Table Sizes
monitoring.stable_table_sizes
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes dataset_id String Yes table_id String Yes byte_size Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived stable_table_sizes_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#structured_detailed_error_counts","title":"structured_detailed_error_counts","text":"Structured Detailed Error Counts
monitoring.structured_detailed_error_counts
Please provide a description for the query
Schema Column Description Type Nullable hour Timestamp Yes document_namespace String Yes document_type String Yes document_version String Yes error_type String Yes ping_count Integer Yes error_count Integer Yes error_message String Yes sample_payload String Yes error_ratio Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived structured_detailed_error_counts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#structured_distinct_docids","title":"structured_distinct_docids","text":"Structured Distinct Docids
monitoring.structured_distinct_docids
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes namespace String Yes doc_type String Yes decoded Integer Yes live Integer Yes stable Integer Yes decoded_nondistinct Integer Yes live_nondistinct Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived structured_distinct_docids_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#structured_error_counts","title":"structured_error_counts","text":"Structured Error Counts
monitoring.structured_error_counts
Please provide a description for the query
Schema Column Description Type Nullable hour Timestamp Yes document_namespace String Yes document_type String Yes document_version String Yes error_type String Yes ping_count Integer Yes error_count Integer Yes error_ratio Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived structured_error_counts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#structured_missing_columns","title":"structured_missing_columns","text":"Structured Missing Columns
monitoring.structured_missing_columns
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes document_namespace String Yes document_type String Yes document_version String Yes path String Yes path_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived structured_missing_columns_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#suggest_click_rate_live","title":"suggest_click_rate_live","text":"Live quicksuggest-click
Ping Count Per Minute
monitoring.suggest_click_rate_live
A live view of submissions intended for operational monitoring use cases.
Schema Column Description Type Nullable submission_minute Timestamp Yes n Integer Yes n_release Integer Yes n_beta Integer Yes n_nightly Integer Yes n_merino Integer Yes n_merino_release Integer Yes n_merino_beta Integer Yes n_merino_nightly Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived suggest_click_rate_live_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#suggest_impression_rate_live","title":"suggest_impression_rate_live","text":"Live quicksuggest-impression
Ping Count Per Minute
monitoring.suggest_impression_rate_live
A live view of submissions intended for operational monitoring use cases.
Schema Column Description Type Nullable submission_minute Timestamp Yes n Integer Yes n_release Integer Yes n_beta Integer Yes n_nightly Integer Yes n_merino Integer Yes n_merino_release Integer Yes n_merino_beta Integer Yes n_merino_nightly Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived suggest_impression_rate_live_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#telemetry_distinct_docids","title":"telemetry_distinct_docids","text":"Telemetry Distinct Docids
monitoring.telemetry_distinct_docids
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes doc_type String Yes decoded Integer Yes live Integer Yes stable Integer Yes namespace String Yes decoded_nondistinct Integer Yes live_nondistinct Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived telemetry_distinct_docids_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#telemetry_missing_columns","title":"telemetry_missing_columns","text":"Telemetry Missing Columns
monitoring.telemetry_missing_columns
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes document_namespace String Yes document_type String Yes document_version String Yes path String Yes path_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived telemetry_missing_columns_v3 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#topsites_click_rate_live","title":"topsites_click_rate_live","text":"Live topsites-click
Ping Count Per Minute
monitoring.topsites_click_rate_live
A live view of submissions intended for operational monitoring use cases.
Schema Column Description Type Nullable submission_minute Timestamp Yes n Integer Yes n_contile Integer Yes n_remotesettings Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived topsites_click_rate_live_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#topsites_impression_rate_live","title":"topsites_impression_rate_live","text":"Live topsites-impression
Ping Count Per Minute
monitoring.topsites_impression_rate_live
A live view of submissions intended for operational monitoring use cases.
Schema Column Description Type Nullable submission_minute Timestamp Yes n Integer Yes n_contile Integer Yes n_remotesettings Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived topsites_impression_rate_live_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#topsites_rate_fenix_live","title":"topsites_rate_fenix_live","text":"Live topsites Ping Counts Per Minute for Fenix
monitoring.topsites_rate_fenix_live
A live view of impressions and clicks intended for operational monitoring use cases.
Schema Column Description Type Nullable submission_minute Timestamp Yes n_click Integer Yes n_impression Integer Yes n_click_release Integer Yes n_impression_release Integer Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/","title":"moso-mastodon-backend","text":"User-facing views related to document namespace moso-mastodon-backend; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/moso-mastodon-backend
Source Directory
"},{"location":"mozdata/moso_mastodon_backend/#baseline","title":"baseline","text":"Historical Pings for moso-mastodon-backend/baseline
moso_mastodon_backend.baseline
A historical view of pings sent for the moso-mastodon-backend/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
moso_mastodon_backend.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
moso_mastodon_backend.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
moso_mastodon_backend.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#deletion_request","title":"deletion_request","text":"Historical Pings for moso-mastodon-backend/deletion-request
moso_mastodon_backend.deletion_request
A historical view of pings sent for the moso-mastodon-backend/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#events","title":"events","text":"Historical Pings for moso-mastodon-backend/events
moso_mastodon_backend.events
A historical view of pings sent for the moso-mastodon-backend/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#events_unnested","title":"events_unnested","text":"Events Unnested
moso_mastodon_backend.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#metrics","title":"metrics","text":"Historical Pings for moso-mastodon-backend/metrics
moso_mastodon_backend.metrics
A historical view of pings sent for the moso-mastodon-backend/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
moso_mastodon_backend.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozdata/","title":"mozdata","text":"User-facing views related to document namespace mozdata; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mozdata
Source Directory
"},{"location":"mozdata/mozdata/#event","title":"event","text":"Historical Pings for mozdata/event
mozdata.event
A historical view of pings sent for the mozdata/event
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable ad_hoc_tables_dir String Yes additional_properties A JSON string containing any payload properties not present in the schema String Yes api_call String Yes api_version String Yes detected_uri String Yes detected_version String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes name String Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes owner String Yes partition String Yes query String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes sources_json String Yes sql_table_name String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes table_name String Yes uri String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozdata_stable event_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/","title":"mozilla-lockbox","text":"User-facing views related to document namespace mozilla-lockbox; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mozilla-lockbox
Source Directory
"},{"location":"mozdata/mozilla_lockbox/#addresses_sync","title":"addresses_sync","text":"Historical Pings for mozilla-lockbox/addresses-sync
mozilla_lockbox.addresses_sync
A historical view of pings sent for the mozilla-lockbox/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#baseline","title":"baseline","text":"Historical Pings for mozilla-lockbox/baseline
mozilla_lockbox.baseline
A historical view of pings sent for the mozilla-lockbox/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mozilla_lockbox.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mozilla_lockbox.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mozilla_lockbox.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for mozilla-lockbox/bookmarks-sync
mozilla_lockbox.bookmarks_sync
A historical view of pings sent for the mozilla-lockbox/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for mozilla-lockbox/creditcards-sync
mozilla_lockbox.creditcards_sync
A historical view of pings sent for the mozilla-lockbox/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#deletion_request","title":"deletion_request","text":"Historical Pings for mozilla-lockbox/deletion-request
mozilla_lockbox.deletion_request
A historical view of pings sent for the mozilla-lockbox/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#events","title":"events","text":"Historical Pings for mozilla-lockbox/events
mozilla_lockbox.events
A historical view of pings sent for the mozilla-lockbox/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#history_sync","title":"history_sync","text":"Historical Pings for mozilla-lockbox/history-sync
mozilla_lockbox.history_sync
A historical view of pings sent for the mozilla-lockbox/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#logins_sync","title":"logins_sync","text":"Historical Pings for mozilla-lockbox/logins-sync
mozilla_lockbox.logins_sync
A historical view of pings sent for the mozilla-lockbox/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#metrics","title":"metrics","text":"Historical Pings for mozilla-lockbox/metrics
mozilla_lockbox.metrics
A historical view of pings sent for the mozilla-lockbox/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#sync","title":"sync","text":"Historical Pings for mozilla-lockbox/sync
mozilla_lockbox.sync
A historical view of pings sent for the mozilla-lockbox/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#tabs_sync","title":"tabs_sync","text":"Historical Pings for mozilla-lockbox/tabs-sync
mozilla_lockbox.tabs_sync
A historical view of pings sent for the mozilla-lockbox/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/","title":"mozilla-mach","text":"User-facing views related to document namespace mozilla-mach; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mozilla-mach
Source Directory
"},{"location":"mozdata/mozilla_mach/#baseline","title":"baseline","text":"Historical Pings for mozilla-mach/baseline
mozilla_mach.baseline
A historical view of pings sent for the mozilla-mach/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mozilla_mach.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mozilla_mach.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mozilla_mach.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#deletion_request","title":"deletion_request","text":"Historical Pings for mozilla-mach/deletion-request
mozilla_mach.deletion_request
A historical view of pings sent for the mozilla-mach/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#events","title":"events","text":"Historical Pings for mozilla-mach/events
mozilla_mach.events
A historical view of pings sent for the mozilla-mach/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#metrics","title":"metrics","text":"Historical Pings for mozilla-mach/metrics
mozilla_mach.metrics
A historical view of pings sent for the mozilla-mach/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#usage","title":"usage","text":"Historical Pings for mozilla-mach/usage
mozilla_mach.usage
A historical view of pings sent for the mozilla-mach/usage
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_stable usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_org/","title":"Mozilla.org","text":"Mozilla.org data, usually derived from Google Analytics (GA).
Source Directory
"},{"location":"mozdata/mozilla_org/#ga_clients","title":"ga_clients","text":"Ga Clients
mozilla_org.ga_clients
Please provide a description for the query
Schema Column Description Type Nullable ga_client_id Uniquely identifiers a GA client, using a cookie on moz.org. String Yes first_seen_date The first date we saw this GA client. Date Yes last_seen_date The last date we saw this GA client. Date Yes had_download_event Whether this GA client has ever had a download event. Boolean Yes first_reported First instances of fields for a GA client. Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_org_derived ga_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_org/#ga_sessions","title":"ga_sessions","text":"Ga Sessions
mozilla_org.ga_sessions
Please provide a description for the query
Schema Column Description Type Nullable ga_client_id Uniquely identifiers a GA client, using a cookie on moz.org. String Yes ga_session_id Uniquely identifiers a GA session. String Yes session_date The date of the session. Some sessions span two days: if it does, we take the earlier date. Date Yes is_first_session Whether this is the first session for the client. Boolean Yes session_number The session number for this client. Starts at 1, consecutively increasing. Integer Yes time_on_site Amount of time the user was on the site for this session. Integer Yes pageviews Total pageviews for this session. Integer Yes country First reported country for a GA user. String Yes region First reported region for a GA user. String Yes city First reported city for a GA user. String Yes campaign_id First reported campaign ID. Usually associated with AdWords. String Yes campaign First reported campaign value. Usually set by the utm_campaign URL parameter. String Yes source First reported source of the traffic. Could be the name of the search engine, the referring hostname, or a value of the utm_source URL parameter. String Yes medium First reported medium of the traffic source. Could be 'organic', 'cpc', 'referral', or the value of the utm_medium URL parameter. String Yes term First reported term, or keyword, value. If this was a search results page, this is the keyword entered. String Yes content First reported ad content of the traffic source. Can be set by the utm_content URL parameter. String Yes gclid A Google Click ID, which uniquely represent an ad click for Google ads. String Yes device_category First reported device category value. The type of device (Mobile, Tablet, Desktop). String Yes mobile_device_model First reported device model value. String Yes mobile_device_string First reported mobile device string. The branding, model, and marketing name used to identify the mobile device. String Yes os First reported operating system of the device (e.g., 'Macintosh' or 'Windows'). String Yes os_version First reported os_version value. String Yes language First reported language the device is set to use. Expressed as the IETF language code. String Yes browser First reported browser used (e.g., 'Chrome' or 'Firefox'). String Yes browser_version First reported browser_version value. String Yes had_download_event Whether this session had a download event for Firefox. Boolean Yes last_reported_install_target The last reported install target for this session (e.g. 'desktop_release' or 'android_beta'). String Yes all_reported_install_targets All install targets reported for this session (e.g. 'desktop_release' or 'android_beta'. String No last_reported_stub_session_id The last reported Stub Session ID for this session. Can be used to join with `dl_ga_triplets` to get dl_tokens. String Yes all_reported_stub_session_ids All reported Stub Session IDs for this session. Can be used to join with `dl_ga_triplets` to get dl_tokens. String No landing_screen The first reported landing screen for this session. Most sessions only have one, so this is a safe value to use. String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_org_derived ga_sessions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_org/#gclid_conversions","title":"gclid_conversions","text":"Gclid Conversions
mozilla_org.gclid_conversions
Please provide a description for the query
Schema Column Description Type Nullable activity_date The date that the conversion action took place. Date Yes gclid A Google Click ID, which uniquely represent an ad impression for Google ads. String Yes did_firefox_first_run Whether the GA session associated with this GCLID resulted in a Firefox install which ran the first time on this day. Boolean Yes did_search Whether the GA session associated with this GCLID resulted in a Firefox install with a search on this day. Boolean Yes did_click_ad Whether the GA session associated with this GCLID resulted in a Firefox install with an ad click on this day. Boolean Yes did_returned_second_day Whether the GA session associated with this GCLID resulted in a Firefox install that returned on this day. Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_org_derived gclid_conversions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/","title":"Mozilla VPN","text":"Data related to the Mozilla VPN service
Source Directory
"},{"location":"mozdata/mozilla_vpn/#active_subscription_ids","title":"active_subscription_ids","text":"Active Subscription Ids
mozilla_vpn.active_subscription_ids
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes subscription_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived active_subscription_ids_live moz-fx-data-shared-prod mozilla_vpn_derived active_subscription_ids_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#active_subscriptions","title":"active_subscriptions","text":"Active Subscriptions
mozilla_vpn.active_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes plan_id String Yes status String Yes country String Yes country_name String Yes entrypoint_experiment String Yes entrypoint_variation String Yes utm_campaign String Yes utm_content String Yes utm_medium String Yes utm_source String Yes utm_term String Yes provider String Yes plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes normalized_acquisition_channel String Yes normalized_campaign String Yes normalized_content String Yes normalized_medium String Yes normalized_source String Yes website_channel_group String Yes promotion_codes String No promotion_discounts_amount Integer Yes count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived active_subscriptions_live moz-fx-data-shared-prod mozilla_vpn_derived active_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#add_device_events","title":"add_device_events","text":"Add Device Events
mozilla_vpn.add_device_events
Please provide a description for the query
Schema Column Description Type Nullable fxa_uid String Yes timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived add_device_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#all_subscriptions","title":"all_subscriptions","text":"All Subscriptions
mozilla_vpn.all_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable user_id Integer Yes customer_id String Yes subscription_id String Yes original_subscription_id String Yes plan_id String Yes status String Yes event_timestamp Timestamp Yes subscription_start_date Timestamp Yes original_subscription_start_date Timestamp Yes subscription_start_reason String Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes ended_at Timestamp Yes ended_reason String Yes fxa_uid String Yes country String Yes country_name String Yes user_registration_date Timestamp Yes entrypoint_experiment String Yes entrypoint_variation String Yes utm_campaign String Yes utm_content String Yes utm_medium String Yes utm_source String Yes utm_term String Yes provider String Yes plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes product_id String Yes product_name String Yes pricing_plan String Yes billing_grace_period Interval Yes promotion_codes String No promotion_discounts_amount Integer Yes customer_start_date Timestamp Yes end_date Timestamp Yes normalized_acquisition_channel String Yes normalized_campaign String Yes normalized_content String Yes normalized_medium String Yes normalized_source String Yes website_channel_group String Yes months_retained Integer Yes original_subscription_months_retained Integer Yes current_months_since_subscription_start Integer Yes current_months_since_original_subscription_start Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived all_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
mozilla_vpn.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.baseline, org_mozilla_firefox_vpn.baseline, org_mozilla_ios_firefoxvpn.baseline, org_mozilla_ios_firefoxvpn_network_extension.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mozilla_vpn.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mozilla_vpn.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mozilla_vpn.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#channel_group_proportions","title":"channel_group_proportions","text":"Channel Group Proportions
mozilla_vpn.channel_group_proportions
Please provide a description for the query
Schema Column Description Type Nullable subscription_start_date Date Yes country String Yes country_name String Yes utm_medium String Yes utm_source String Yes utm_campaign String Yes utm_content String Yes utm_term String Yes entrypoint_experiment String Yes entrypoint_variation String Yes product_name String Yes pricing_plan String Yes plan_interval String Yes plan_interval_count Integer Yes provider String Yes granular_event_type String Yes new_subscriptions Integer Yes promotion_codes String No channel_group String Yes total_new_subscriptions_for_date Integer Yes channel_group_percent_of_total_for_date Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived channel_group_proportions_live moz-fx-data-shared-prod mozilla_vpn_derived channel_group_proportions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#daemonsession","title":"daemonsession","text":"App-specific view for Glean ping \"daemonsession\"
mozilla_vpn.daemonsession
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.daemonsession, org_mozilla_firefox_vpn.daemonsession, org_mozilla_ios_firefoxvpn.daemonsession, org_mozilla_ios_firefoxvpn_network_extension.daemonsession).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
mozilla_vpn.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.deletion_request, org_mozilla_firefox_vpn.deletion_request, org_mozilla_ios_firefoxvpn.deletion_request, org_mozilla_ios_firefoxvpn_network_extension.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#devices","title":"devices","text":"Devices
mozilla_vpn.devices
Please provide a description for the query
Schema Column Description Type Nullable id Integer Yes user_id Integer Yes created_at Timestamp Yes updated_at Timestamp Yes platform String Yes useragent String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived devices_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#event_types","title":"event_types","text":"Event Types
mozilla_vpn.event_types
Please provide a description for the query
Schema Column Description Type Nullable category String Yes event String Yes first_timestamp Timestamp Yes numeric_index Integer Yes index String Yes event_properties Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived event_types_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#events","title":"events","text":"App-specific view for Glean ping \"events\"
mozilla_vpn.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.events, org_mozilla_firefox_vpn.events, org_mozilla_ios_firefoxvpn.events, org_mozilla_ios_firefoxvpn_network_extension.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#events_daily","title":"events_daily","text":"Events Daily
mozilla_vpn.events_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes events String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes first_run_date String Yes telemetry_agent String Yes telemetry_sdk_build String Yes locale String Yes city String Yes country String Yes subdivision1 String Yes channel String Yes os String Yes os_version String Yes experiments Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived events_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#events_unnested","title":"events_unnested","text":"Events unnested view for Mozilla VPN
mozilla_vpn.events_unnested
This is a view that automatically unnests the events data sent by Mozilla VPN's \"main\" ping. Ordinarily this table is automatically generated by glean_usage, but that currently assumes that events are sent in an \"events\" ping.
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn main Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#exchange_rates","title":"exchange_rates","text":"Exchange Rates
mozilla_vpn.exchange_rates
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes base_currency String Yes quote_currency String Yes price_type String Yes price Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived exchange_rates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#funnel_fxa_login_to_protected","title":"funnel_fxa_login_to_protected","text":"Funnel Fxa Login To Protected
mozilla_vpn.funnel_fxa_login_to_protected
Please provide a description for the query
Schema Column Description Type Nullable id String Yes fxa_uid String Yes start_date Date Yes completed_login Boolean Yes registered_user Boolean Yes paid_for_subscription Boolean Yes registered_device Boolean Yes protected Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived funnel_fxa_login_to_protected_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#funnel_ga_to_subscriptions","title":"funnel_ga_to_subscriptions","text":"Funnel Ga To Subscriptions
mozilla_vpn.funnel_ga_to_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes utm_join String Yes site String Yes normalized_acquisition_channel String Yes normalized_medium String Yes normalized_source String Yes normalized_campaign String Yes normalized_content String Yes website_channel_group String Yes sessions Integer Yes sessions_in_available_geos Integer Yes subscribe_intent Integer Yes subscription_intent_in_available_geos Integer Yes total_new_subscriptions Integer Yes returning_subscriptions Integer Yes first_time_subscriptions Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived funnel_ga_to_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#funnel_product_page_to_subscribed","title":"funnel_product_page_to_subscribed","text":"Funnel Product Page To Subscribed
mozilla_vpn.funnel_product_page_to_subscribed
Please provide a description for the query
Schema Column Description Type Nullable partition_date Date Yes country String Yes utm_medium String Yes utm_source String Yes utm_campaign String Yes utm_content String Yes utm_term String Yes entrypoint_experiment String Yes entrypoint_variation String Yes ua_browser String Yes ua_version String Yes os_name String Yes os_version String Yes entrypoint String Yes product_id String Yes product_name String Yes plan_id String Yes pricing_plan String Yes plan_name String Yes promotion_code String Yes vpn_site_hits Integer Yes channel_group String Yes total_acquisition_process_start Integer Yes total_payment_setup_engage Integer Yes total_payment_setup_complete Integer Yes overall_total_vpn_site_hits Integer Yes overall_total_acquisition_process_start Integer Yes overall_total_payment_setup_complete Integer Yes new_fxa_user_input_emails Integer Yes new_fxa_payment_setup_engage Integer Yes new_fxa_payment_setup_complete Integer Yes overall_new_fxa_user_input_emails Integer Yes overall_new_fxa_payment_setup_complete Integer Yes existing_fxa_payment_setup_view Integer Yes existing_fxa_payment_setup_engage Integer Yes existing_fxa_payment_setup_complete Integer Yes existing_fxa_signedin_payment_setup_view Integer Yes existing_fxa_signedin_payment_setup_engage Integer Yes existing_fxa_signedin_payment_setup_complete Integer Yes overall_existing_fxa_signedin_payment_setup_complete Integer Yes overall_existing_fxa_signedin_payment_setup_view Integer Yes existing_fxa_signedoff_signin_cta_click Integer Yes overall_existing_fxa_signedoff_signin_cta_click Integer Yes existing_signedoff_fxa_payment_setup_view Integer Yes existing_fxa_signedoff_payment_setup_engage Integer Yes existing_fxa_signedoff_payment_setup_complete Integer Yes overall_existing_fxa_signedoff_payment_setup_complete Integer Yes overall_existing_signedoff_fxa_payment_setup_view Integer Yes subscribe_coupon_submit Integer Yes subscribe_coupon_fail Integer Yes subscribe_coupon_success Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived funnel_product_page_to_subscribed_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#login_flows","title":"login_flows","text":"Login Flows
mozilla_vpn.login_flows
Please provide a description for the query
Schema Column Description Type Nullable flow_id String Yes flow_started Timestamp Yes flow_completed Timestamp Yes fxa_uids String No viewed_email_first_page Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived login_flows_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#main","title":"main","text":"App-specific view for Glean ping \"main\"
mozilla_vpn.main
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.main, org_mozilla_firefox_vpn.main, org_mozilla_ios_firefoxvpn.main, org_mozilla_ios_firefoxvpn_network_extension.main).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
mozilla_vpn.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.metrics, org_mozilla_firefox_vpn.metrics, org_mozilla_ios_firefoxvpn.metrics, org_mozilla_ios_firefoxvpn_network_extension.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
mozilla_vpn.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#protected","title":"protected","text":"Protected
mozilla_vpn.protected
Please provide a description for the query
Schema Column Description Type Nullable fxa_uid String Yes first_protected Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived protected_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#site_metrics_summary","title":"site_metrics_summary","text":"Site Metrics Summary
mozilla_vpn.site_metrics_summary
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes device_category String Yes operating_system String Yes browser String Yes language String Yes country String Yes source String Yes medium String Yes campaign String Yes content String Yes site String Yes sessions Integer Yes non_fx_sessions Integer Yes subscribe_intent_goal Integer Yes non_fx_subscribe_intent_goal Integer Yes join_waitlist_intent_goal Integer Yes join_waitlist_success_goal Integer Yes sign_in_intent_goal Integer Yes download_intent_goal Integer Yes download_installer_intent_goal Integer Yes standardized_country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived site_metrics_summary_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#subscription_events","title":"subscription_events","text":"Subscription Events
mozilla_vpn.subscription_events
Please provide a description for the query
Schema Column Description Type Nullable event_date Date Yes event_type String Yes granular_event_type String Yes plan_id String Yes status String Yes country String Yes country_name String Yes entrypoint_experiment String Yes entrypoint_variation String Yes utm_campaign String Yes utm_content String Yes utm_medium String Yes utm_source String Yes utm_term String Yes provider String Yes plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes normalized_acquisition_channel String Yes normalized_campaign String Yes normalized_content String Yes normalized_medium String Yes normalized_source String Yes website_channel_group String Yes promotion_codes String No count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived subscription_events_live moz-fx-data-shared-prod mozilla_vpn_derived subscription_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#subscriptions","title":"subscriptions","text":"Subscriptions
mozilla_vpn.subscriptions
Please provide a description for the query
Schema Column Description Type Nullable id Integer Yes user_id Integer Yes is_active Boolean Yes created_at Timestamp Yes ended_at Timestamp Yes updated_at Timestamp Yes type String Yes provider String Yes apple_receipt Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_cancellation_of_service","title":"survey_cancellation_of_service","text":"Survey Cancellation Of Service
mozilla_vpn.survey_cancellation_of_service
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_cancellation_of_service_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_intercept_q3","title":"survey_intercept_q3","text":"Survey Intercept Q3
mozilla_vpn.survey_intercept_q3
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_intercept_q3_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_lifecycle_28d_desktop","title":"survey_lifecycle_28d_desktop","text":"Survey Lifecycle 28d Desktop
mozilla_vpn.survey_lifecycle_28d_desktop
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_lifecycle_28d_desktop_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_lifecycle_28d_mobile","title":"survey_lifecycle_28d_mobile","text":"Survey Lifecycle 28d Mobile
mozilla_vpn.survey_lifecycle_28d_mobile
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_lifecycle_28d_mobile_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_market_fit","title":"survey_market_fit","text":"Survey Market Fit
mozilla_vpn.survey_market_fit
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_market_fit_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_product_quality","title":"survey_product_quality","text":"Survey Product Quality
mozilla_vpn.survey_product_quality
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_product_quality_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_recommend","title":"survey_recommend","text":"Survey Recommend
mozilla_vpn.survey_recommend
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_recommend_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#users","title":"users","text":"Users
mozilla_vpn.users
Please provide a description for the query
Schema Column Description Type Nullable id Integer Yes fxa_uid String Yes created_at Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived users_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#vat_rates","title":"vat_rates","text":"Vat Rates
mozilla_vpn.vat_rates
Please provide a description for the query
Schema Column Description Type Nullable country_code String Yes country String Yes vat Numeric Yes effective_date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived vat_rates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#vpnsession","title":"vpnsession","text":"App-specific view for Glean ping \"vpnsession\"
mozilla_vpn.vpnsession
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.vpnsession, org_mozilla_firefox_vpn.vpnsession, org_mozilla_ios_firefoxvpn.vpnsession, org_mozilla_ios_firefoxvpn_network_extension.vpnsession).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#waitlist","title":"waitlist","text":"Waitlist
mozilla_vpn.waitlist
Please provide a description for the query
Schema Column Description Type Nullable platforms String No country String Yes region String Yes region_subdivision String Yes waitlist_date Date Yes joined_date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived waitlist_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/","title":"mozillavpn","text":"User-facing views related to document namespace mozillavpn; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mozillavpn
Source Directory
"},{"location":"mozdata/mozillavpn/#baseline","title":"baseline","text":"Historical Pings for mozillavpn/baseline
mozillavpn.baseline
A historical view of pings sent for the mozillavpn/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mozillavpn.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mozillavpn.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mozillavpn.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#daemonsession","title":"daemonsession","text":"Historical Pings for mozillavpn/daemonsession
mozillavpn.daemonsession
A historical view of pings sent for the mozillavpn/daemonsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable daemonsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#deletion_request","title":"deletion_request","text":"Historical Pings for mozillavpn/deletion-request
mozillavpn.deletion_request
A historical view of pings sent for the mozillavpn/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#events","title":"events","text":"Historical Pings for mozillavpn/events
mozillavpn.events
A historical view of pings sent for the mozillavpn/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#main","title":"main","text":"Historical Pings for mozillavpn/main
mozillavpn.main
A historical view of pings sent for the mozillavpn/main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable main_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#metrics","title":"metrics","text":"Historical Pings for mozillavpn/metrics
mozillavpn.metrics
A historical view of pings sent for the mozillavpn/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#vpnsession","title":"vpnsession","text":"Historical Pings for mozillavpn/vpnsession
mozillavpn.vpnsession
A historical view of pings sent for the mozillavpn/vpnsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable vpnsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/","title":"mozphab","text":"User-facing views related to document namespace mozphab; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mozphab
Source Directory
"},{"location":"mozdata/mozphab/#baseline","title":"baseline","text":"Historical Pings for mozphab/baseline
mozphab.baseline
A historical view of pings sent for the mozphab/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mozphab.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mozphab.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mozphab.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
mozphab.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#deletion_request","title":"deletion_request","text":"Historical Pings for mozphab/deletion-request
mozphab.deletion_request
A historical view of pings sent for the mozphab/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#events","title":"events","text":"Historical Pings for mozphab/events
mozphab.events
A historical view of pings sent for the mozphab/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#events_unnested","title":"events_unnested","text":"Events Unnested
mozphab.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#metrics","title":"metrics","text":"Historical Pings for mozphab/metrics
mozphab.metrics
A historical view of pings sent for the mozphab/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
mozphab.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
mozphab.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#usage","title":"usage","text":"Historical Pings for mozphab/usage
mozphab.usage
A historical view of pings sent for the mozphab/usage
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_stable usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/","title":"Mozregression","text":"Views on data from mozregression
Source Directory
"},{"location":"mozdata/mozregression/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
mozregression.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mozregression\" (org_mozilla_mozregression.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mozregression.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mozregression.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mozregression.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
mozregression.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozregression_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
mozregression.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mozregression\" (org_mozilla_mozregression.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#events","title":"events","text":"App-specific view for Glean ping \"events\"
mozregression.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mozregression\" (org_mozilla_mozregression.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#events_unnested","title":"events_unnested","text":"Events Unnested
mozregression.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
mozregression.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mozregression\" (org_mozilla_mozregression.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
mozregression.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozregression_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
mozregression.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozregression_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#usage","title":"usage","text":"App-specific view for Glean ping \"usage\"
mozregression.usage
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mozregression\" (org_mozilla_mozregression.usage).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression usage Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozza/","title":"mozza","text":"User-facing views related to document namespace mozza; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mozza
Source Directory
"},{"location":"mozdata/mozza/#event","title":"event","text":"Historical Pings for mozza/event
mozza.event
A historical view of pings sent for the mozza/event
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes browser String Yes browser_version String Yes document_id The document ID specified in the URI when the client sent this message String Yes domain String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes os String Yes os_version String Yes property String Yes request_uri String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes event Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozza_stable event_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/operational_monitoring/","title":"Operational Monitoring","text":"Views on data for operational monitoring projects. The dataset is populated via https://github.com/mozilla/opmon
Source Directory
"},{"location":"mozdata/org_mozilla_bergamot/","title":"org-mozilla-bergamot","text":"User-facing views related to document namespace org-mozilla-bergamot; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-bergamot
Source Directory
"},{"location":"mozdata/org_mozilla_bergamot/#custom","title":"custom","text":"Historical Pings for org-mozilla-bergamot/custom
org_mozilla_bergamot.custom
A historical view of pings sent for the org-mozilla-bergamot/custom
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot_stable custom_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_bergamot/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-bergamot/deletion-request
org_mozilla_bergamot.deletion_request
A historical view of pings sent for the org-mozilla-bergamot/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_bergamot/#events","title":"events","text":"Historical Pings for org-mozilla-bergamot/events
org_mozilla_bergamot.events
A historical view of pings sent for the org-mozilla-bergamot/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/","title":"org-mozilla-connect-firefox","text":"User-facing views related to document namespace org-mozilla-connect-firefox; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-connect-firefox
Source Directory
"},{"location":"mozdata/org_mozilla_connect_firefox/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-connect-firefox/baseline
org_mozilla_connect_firefox.baseline
A historical view of pings sent for the org-mozilla-connect-firefox/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_connect_firefox.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_connect_firefox.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_connect_firefox.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-connect-firefox/deletion-request
org_mozilla_connect_firefox.deletion_request
A historical view of pings sent for the org-mozilla-connect-firefox/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/#events","title":"events","text":"Historical Pings for org-mozilla-connect-firefox/events
org_mozilla_connect_firefox.events
A historical view of pings sent for the org-mozilla-connect-firefox/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-connect-firefox/metrics
org_mozilla_connect_firefox.metrics
A historical view of pings sent for the org-mozilla-connect-firefox/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/","title":"org-mozilla-fenix","text":"User-facing views related to document namespace org-mozilla-fenix; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-fenix
Source Directory
"},{"location":"mozdata/org_mozilla_fenix/#activation","title":"activation","text":"Historical Pings for org-mozilla-fenix/activation
org_mozilla_fenix.activation
A historical view of pings sent for the org-mozilla-fenix/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-fenix/addresses-sync
org_mozilla_fenix.addresses_sync
A historical view of pings sent for the org-mozilla-fenix/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-fenix/baseline
org_mozilla_fenix.baseline
A historical view of pings sent for the org-mozilla-fenix/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_fenix.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_fenix.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_fenix.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-fenix/bookmarks-sync
org_mozilla_fenix.bookmarks_sync
A historical view of pings sent for the org-mozilla-fenix/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#client_deduplication","title":"client_deduplication","text":"Client Deduplication
org_mozilla_fenix.client_deduplication
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_app_id String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived client_deduplication_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-fenix/cookie-banner-report-site
org_mozilla_fenix.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-fenix/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#crash","title":"crash","text":"Historical Pings for org-mozilla-fenix/crash
org_mozilla_fenix.crash
A historical view of pings sent for the org-mozilla-fenix/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-fenix/creditcards-sync
org_mozilla_fenix.creditcards_sync
A historical view of pings sent for the org-mozilla-fenix/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-fenix/deletion-request
org_mozilla_fenix.deletion_request
A historical view of pings sent for the org-mozilla-fenix/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#events","title":"events","text":"Historical Pings for org-mozilla-fenix/events
org_mozilla_fenix.events
A historical view of pings sent for the org-mozilla-fenix/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-fenix/first-session
org_mozilla_fenix.first_session
A historical view of pings sent for the org-mozilla-fenix/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-fenix/fog-validation
org_mozilla_fenix.fog_validation
A historical view of pings sent for the org-mozilla-fenix/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#font_list","title":"font_list","text":"Historical Pings for org-mozilla-fenix/font-list
org_mozilla_fenix.font_list
A historical view of pings sent for the org-mozilla-fenix/font-list
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable font_list_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#fx_suggest","title":"fx_suggest","text":"Historical Pings for org-mozilla-fenix/fx-suggest
org_mozilla_fenix.fx_suggest
A historical view of pings sent for the org-mozilla-fenix/fx-suggest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable fx_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#geckoview_version","title":"geckoview_version","text":"Geckoview Version
org_mozilla_fenix.geckoview_version
Please provide a description for the query
Schema Column Description Type Nullable build_hour Datetime Yes geckoview_major_version Integer Yes n_pings Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived geckoview_version_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-fenix/history-sync
org_mozilla_fenix.history_sync
A historical view of pings sent for the org-mozilla-fenix/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#installation","title":"installation","text":"Historical Pings for org-mozilla-fenix/installation
org_mozilla_fenix.installation
A historical view of pings sent for the org-mozilla-fenix/installation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable installation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-fenix/logins-sync
org_mozilla_fenix.logins_sync
A historical view of pings sent for the org-mozilla-fenix/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-fenix/metrics
org_mozilla_fenix.metrics
A historical view of pings sent for the org-mozilla-fenix/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#migration","title":"migration","text":"Historical Pings for org-mozilla-fenix/migration
org_mozilla_fenix.migration
A historical view of pings sent for the org-mozilla-fenix/migration
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable migration_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-fenix/pageload
org_mozilla_fenix.pageload
A historical view of pings sent for the org-mozilla-fenix/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#releases","title":"releases","text":"Releases
org_mozilla_fenix.releases
Fenix release information imported from https://product-details.mozilla.org/1.0/mobile_android.json
For more context, see https://wiki.mozilla.org/Release_Management/Product_details
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable build_number Integer Yes category String Yes date Date Yes description String Yes is_security_driven Boolean Yes product String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived releases_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#review_checker_clients","title":"review_checker_clients","text":"Review Checker Clients
org_mozilla_fenix.review_checker_clients
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes normalized_country_code String Yes client_id String Yes sample_id Integer Yes shopping_product_page_visits Integer Yes experiments Record No is_opt_in Integer Yes is_opt_out Integer Yes sap Integer Yes ad_click Integer Yes active_hours_sum Float Yes is_onboarded Integer Yes is_nimbus_disabled Integer Yes is_fx_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived review_checker_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#review_checker_events","title":"review_checker_events","text":"Review Checker Events
org_mozilla_fenix.review_checker_events
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes os String Yes os_version String Yes is_address_bar_feature_callout_displayed Integer Yes is_address_bar_icon_clicked Integer Yes is_address_bar_icon_displayed Integer Yes is_surface_analyze_reviews_none_available_clicked Integer Yes is_surface_closed Integer Yes is_surface_displayed Integer Yes is_surface_expand_settings Integer Yes is_surface_learn_more_clicked Integer Yes is_surface_no_review_reliability_available Integer Yes is_surface_onboarding_displayed Integer Yes surface_opt_in_accepted Integer Yes is_surface_reactivated_button_clicked Integer Yes is_surface_reanalyze_clicked Integer Yes is_surface_show_more_recent_reviews_clicked Integer Yes is_surface_show_privacy_policy_clicked Integer Yes is_surface_show_quality_explainer_url_clicked Integer Yes is_surface_show_terms_clicked Integer Yes is_engaged_with_sidebar Integer Yes experiments Record No normalized_channel String Yes normalized_country_code String Yes sample_id Integer Yes app_version Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived review_checker_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#spoc","title":"spoc","text":"Historical Pings for org-mozilla-fenix/spoc
org_mozilla_fenix.spoc
A historical view of pings sent for the org-mozilla-fenix/spoc
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable spoc_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#startup_timeline","title":"startup_timeline","text":"Historical Pings for org-mozilla-fenix/startup-timeline
org_mozilla_fenix.startup_timeline
A historical view of pings sent for the org-mozilla-fenix/startup-timeline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable startup_timeline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#sync","title":"sync","text":"Historical Pings for org-mozilla-fenix/sync
org_mozilla_fenix.sync
A historical view of pings sent for the org-mozilla-fenix/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-fenix/tabs-sync
org_mozilla_fenix.tabs_sync
A historical view of pings sent for the org-mozilla-fenix/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-fenix/topsites-impression
org_mozilla_fenix.topsites_impression
A historical view of pings sent for the org-mozilla-fenix/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/","title":"org-mozilla-fenix-nightly","text":"User-facing views related to document namespace org-mozilla-fenix-nightly; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-fenix-nightly
Source Directory
"},{"location":"mozdata/org_mozilla_fenix_nightly/#activation","title":"activation","text":"Historical Pings for org-mozilla-fenix-nightly/activation
org_mozilla_fenix_nightly.activation
A historical view of pings sent for the org-mozilla-fenix-nightly/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-fenix-nightly/addresses-sync
org_mozilla_fenix_nightly.addresses_sync
A historical view of pings sent for the org-mozilla-fenix-nightly/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-fenix-nightly/baseline
org_mozilla_fenix_nightly.baseline
A historical view of pings sent for the org-mozilla-fenix-nightly/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_fenix_nightly.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_fenix_nightly.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_fenix_nightly.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-fenix-nightly/bookmarks-sync
org_mozilla_fenix_nightly.bookmarks_sync
A historical view of pings sent for the org-mozilla-fenix-nightly/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#client_deduplication","title":"client_deduplication","text":"Historical Pings for org-mozilla-fenix-nightly/client-deduplication
org_mozilla_fenix_nightly.client_deduplication
A historical view of pings sent for the org-mozilla-fenix-nightly/client-deduplication
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable client_deduplication_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-fenix-nightly/cookie-banner-report-site
org_mozilla_fenix_nightly.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-fenix-nightly/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#crash","title":"crash","text":"Historical Pings for org-mozilla-fenix-nightly/crash
org_mozilla_fenix_nightly.crash
A historical view of pings sent for the org-mozilla-fenix-nightly/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-fenix-nightly/creditcards-sync
org_mozilla_fenix_nightly.creditcards_sync
A historical view of pings sent for the org-mozilla-fenix-nightly/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-fenix-nightly/deletion-request
org_mozilla_fenix_nightly.deletion_request
A historical view of pings sent for the org-mozilla-fenix-nightly/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#events","title":"events","text":"Historical Pings for org-mozilla-fenix-nightly/events
org_mozilla_fenix_nightly.events
A historical view of pings sent for the org-mozilla-fenix-nightly/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-fenix-nightly/first-session
org_mozilla_fenix_nightly.first_session
A historical view of pings sent for the org-mozilla-fenix-nightly/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-fenix-nightly/fog-validation
org_mozilla_fenix_nightly.fog_validation
A historical view of pings sent for the org-mozilla-fenix-nightly/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#font_list","title":"font_list","text":"Historical Pings for org-mozilla-fenix-nightly/font-list
org_mozilla_fenix_nightly.font_list
A historical view of pings sent for the org-mozilla-fenix-nightly/font-list
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable font_list_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#fx_suggest","title":"fx_suggest","text":"Historical Pings for org-mozilla-fenix-nightly/fx-suggest
org_mozilla_fenix_nightly.fx_suggest
A historical view of pings sent for the org-mozilla-fenix-nightly/fx-suggest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable fx_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-fenix-nightly/history-sync
org_mozilla_fenix_nightly.history_sync
A historical view of pings sent for the org-mozilla-fenix-nightly/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#installation","title":"installation","text":"Historical Pings for org-mozilla-fenix-nightly/installation
org_mozilla_fenix_nightly.installation
A historical view of pings sent for the org-mozilla-fenix-nightly/installation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable installation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-fenix-nightly/logins-sync
org_mozilla_fenix_nightly.logins_sync
A historical view of pings sent for the org-mozilla-fenix-nightly/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-fenix-nightly/metrics
org_mozilla_fenix_nightly.metrics
A historical view of pings sent for the org-mozilla-fenix-nightly/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#migration","title":"migration","text":"Historical Pings for org-mozilla-fenix-nightly/migration
org_mozilla_fenix_nightly.migration
A historical view of pings sent for the org-mozilla-fenix-nightly/migration
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable migration_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-fenix-nightly/pageload
org_mozilla_fenix_nightly.pageload
A historical view of pings sent for the org-mozilla-fenix-nightly/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#spoc","title":"spoc","text":"Historical Pings for org-mozilla-fenix-nightly/spoc
org_mozilla_fenix_nightly.spoc
A historical view of pings sent for the org-mozilla-fenix-nightly/spoc
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable spoc_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#startup_timeline","title":"startup_timeline","text":"Historical Pings for org-mozilla-fenix-nightly/startup-timeline
org_mozilla_fenix_nightly.startup_timeline
A historical view of pings sent for the org-mozilla-fenix-nightly/startup-timeline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable startup_timeline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#sync","title":"sync","text":"Historical Pings for org-mozilla-fenix-nightly/sync
org_mozilla_fenix_nightly.sync
A historical view of pings sent for the org-mozilla-fenix-nightly/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-fenix-nightly/tabs-sync
org_mozilla_fenix_nightly.tabs_sync
A historical view of pings sent for the org-mozilla-fenix-nightly/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-fenix-nightly/topsites-impression
org_mozilla_fenix_nightly.topsites_impression
A historical view of pings sent for the org-mozilla-fenix-nightly/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/","title":"org-mozilla-fennec-aurora","text":"User-facing views related to document namespace org-mozilla-fennec-aurora; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-fennec-aurora
Source Directory
"},{"location":"mozdata/org_mozilla_fennec_aurora/#activation","title":"activation","text":"Historical Pings for org-mozilla-fennec-aurora/activation
org_mozilla_fennec_aurora.activation
A historical view of pings sent for the org-mozilla-fennec-aurora/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-fennec-aurora/addresses-sync
org_mozilla_fennec_aurora.addresses_sync
A historical view of pings sent for the org-mozilla-fennec-aurora/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-fennec-aurora/baseline
org_mozilla_fennec_aurora.baseline
A historical view of pings sent for the org-mozilla-fennec-aurora/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_fennec_aurora.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_fennec_aurora.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_fennec_aurora.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-fennec-aurora/bookmarks-sync
org_mozilla_fennec_aurora.bookmarks_sync
A historical view of pings sent for the org-mozilla-fennec-aurora/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#client_deduplication","title":"client_deduplication","text":"Historical Pings for org-mozilla-fennec-aurora/client-deduplication
org_mozilla_fennec_aurora.client_deduplication
A historical view of pings sent for the org-mozilla-fennec-aurora/client-deduplication
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable client_deduplication_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-fennec-aurora/cookie-banner-report-site
org_mozilla_fennec_aurora.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-fennec-aurora/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#crash","title":"crash","text":"Historical Pings for org-mozilla-fennec-aurora/crash
org_mozilla_fennec_aurora.crash
A historical view of pings sent for the org-mozilla-fennec-aurora/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-fennec-aurora/creditcards-sync
org_mozilla_fennec_aurora.creditcards_sync
A historical view of pings sent for the org-mozilla-fennec-aurora/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-fennec-aurora/deletion-request
org_mozilla_fennec_aurora.deletion_request
A historical view of pings sent for the org-mozilla-fennec-aurora/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#events","title":"events","text":"Historical Pings for org-mozilla-fennec-aurora/events
org_mozilla_fennec_aurora.events
A historical view of pings sent for the org-mozilla-fennec-aurora/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-fennec-aurora/first-session
org_mozilla_fennec_aurora.first_session
A historical view of pings sent for the org-mozilla-fennec-aurora/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-fennec-aurora/fog-validation
org_mozilla_fennec_aurora.fog_validation
A historical view of pings sent for the org-mozilla-fennec-aurora/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#font_list","title":"font_list","text":"Historical Pings for org-mozilla-fennec-aurora/font-list
org_mozilla_fennec_aurora.font_list
A historical view of pings sent for the org-mozilla-fennec-aurora/font-list
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable font_list_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#fx_suggest","title":"fx_suggest","text":"Historical Pings for org-mozilla-fennec-aurora/fx-suggest
org_mozilla_fennec_aurora.fx_suggest
A historical view of pings sent for the org-mozilla-fennec-aurora/fx-suggest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable fx_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-fennec-aurora/history-sync
org_mozilla_fennec_aurora.history_sync
A historical view of pings sent for the org-mozilla-fennec-aurora/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#installation","title":"installation","text":"Historical Pings for org-mozilla-fennec-aurora/installation
org_mozilla_fennec_aurora.installation
A historical view of pings sent for the org-mozilla-fennec-aurora/installation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable installation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-fennec-aurora/logins-sync
org_mozilla_fennec_aurora.logins_sync
A historical view of pings sent for the org-mozilla-fennec-aurora/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-fennec-aurora/metrics
org_mozilla_fennec_aurora.metrics
A historical view of pings sent for the org-mozilla-fennec-aurora/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#migration","title":"migration","text":"Historical Pings for org-mozilla-fennec-aurora/migration
org_mozilla_fennec_aurora.migration
A historical view of pings sent for the org-mozilla-fennec-aurora/migration
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable migration_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-fennec-aurora/pageload
org_mozilla_fennec_aurora.pageload
A historical view of pings sent for the org-mozilla-fennec-aurora/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#spoc","title":"spoc","text":"Historical Pings for org-mozilla-fennec-aurora/spoc
org_mozilla_fennec_aurora.spoc
A historical view of pings sent for the org-mozilla-fennec-aurora/spoc
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable spoc_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#startup_timeline","title":"startup_timeline","text":"Historical Pings for org-mozilla-fennec-aurora/startup-timeline
org_mozilla_fennec_aurora.startup_timeline
A historical view of pings sent for the org-mozilla-fennec-aurora/startup-timeline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable startup_timeline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#sync","title":"sync","text":"Historical Pings for org-mozilla-fennec-aurora/sync
org_mozilla_fennec_aurora.sync
A historical view of pings sent for the org-mozilla-fennec-aurora/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-fennec-aurora/tabs-sync
org_mozilla_fennec_aurora.tabs_sync
A historical view of pings sent for the org-mozilla-fennec-aurora/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-fennec-aurora/topsites-impression
org_mozilla_fennec_aurora.topsites_impression
A historical view of pings sent for the org-mozilla-fennec-aurora/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/","title":"org-mozilla-firefox","text":"User-facing views related to document namespace org-mozilla-firefox; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-firefox
Source Directory
"},{"location":"mozdata/org_mozilla_firefox/#activation","title":"activation","text":"Historical Pings for org-mozilla-firefox/activation
org_mozilla_firefox.activation
A historical view of pings sent for the org-mozilla-firefox/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-firefox/addresses-sync
org_mozilla_firefox.addresses_sync
A historical view of pings sent for the org-mozilla-firefox/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-firefox/baseline
org_mozilla_firefox.baseline
A historical view of pings sent for the org-mozilla-firefox/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_firefox.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_firefox.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_firefox.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-firefox/bookmarks-sync
org_mozilla_firefox.bookmarks_sync
A historical view of pings sent for the org-mozilla-firefox/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#client_deduplication","title":"client_deduplication","text":"Client Deduplication
org_mozilla_firefox.client_deduplication
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_app_id String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_derived client_deduplication_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-firefox/cookie-banner-report-site
org_mozilla_firefox.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-firefox/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#crash","title":"crash","text":"Historical Pings for org-mozilla-firefox/crash
org_mozilla_firefox.crash
A historical view of pings sent for the org-mozilla-firefox/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-firefox/creditcards-sync
org_mozilla_firefox.creditcards_sync
A historical view of pings sent for the org-mozilla-firefox/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-firefox/deletion-request
org_mozilla_firefox.deletion_request
A historical view of pings sent for the org-mozilla-firefox/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#events","title":"events","text":"Historical Pings for org-mozilla-firefox/events
org_mozilla_firefox.events
A historical view of pings sent for the org-mozilla-firefox/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-firefox/first-session
org_mozilla_firefox.first_session
A historical view of pings sent for the org-mozilla-firefox/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-firefox/fog-validation
org_mozilla_firefox.fog_validation
A historical view of pings sent for the org-mozilla-firefox/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#font_list","title":"font_list","text":"Historical Pings for org-mozilla-firefox/font-list
org_mozilla_firefox.font_list
A historical view of pings sent for the org-mozilla-firefox/font-list
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable font_list_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#fx_suggest","title":"fx_suggest","text":"Historical Pings for org-mozilla-firefox/fx-suggest
org_mozilla_firefox.fx_suggest
A historical view of pings sent for the org-mozilla-firefox/fx-suggest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable fx_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-firefox/history-sync
org_mozilla_firefox.history_sync
A historical view of pings sent for the org-mozilla-firefox/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#installation","title":"installation","text":"Historical Pings for org-mozilla-firefox/installation
org_mozilla_firefox.installation
A historical view of pings sent for the org-mozilla-firefox/installation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable installation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-firefox/logins-sync
org_mozilla_firefox.logins_sync
A historical view of pings sent for the org-mozilla-firefox/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-firefox/metrics
org_mozilla_firefox.metrics
A historical view of pings sent for the org-mozilla-firefox/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#migrated_clients","title":"migrated_clients","text":"Migrated Clients
org_mozilla_firefox.migrated_clients
Please provide a description for the query
Schema Column Description Type Nullable fenix_client_id String Yes submission_date Date Yes normalized_channel String Yes manufacturer String Yes country String Yes fennec_client_id String Yes migration_ping_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_derived migrated_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#migration","title":"migration","text":"Migration
org_mozilla_firefox.migration
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-firefox/pageload
org_mozilla_firefox.pageload
A historical view of pings sent for the org-mozilla-firefox/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#spoc","title":"spoc","text":"Historical Pings for org-mozilla-firefox/spoc
org_mozilla_firefox.spoc
A historical view of pings sent for the org-mozilla-firefox/spoc
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable spoc_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#startup_timeline","title":"startup_timeline","text":"Historical Pings for org-mozilla-firefox/startup-timeline
org_mozilla_firefox.startup_timeline
A historical view of pings sent for the org-mozilla-firefox/startup-timeline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable startup_timeline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#sync","title":"sync","text":"Historical Pings for org-mozilla-firefox/sync
org_mozilla_firefox.sync
A historical view of pings sent for the org-mozilla-firefox/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-firefox/tabs-sync
org_mozilla_firefox.tabs_sync
A historical view of pings sent for the org-mozilla-firefox/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-firefox/topsites-impression
org_mozilla_firefox.topsites_impression
A historical view of pings sent for the org-mozilla-firefox/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/","title":"Org Mozilla Firefox Beta","text":"User-facing views related to document namespace org-mozilla-firefox-beta see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-firefox-beta
Source Directory
"},{"location":"mozdata/org_mozilla_firefox_beta/#activation","title":"activation","text":"Historical Pings for org-mozilla-firefox-beta/activation
org_mozilla_firefox_beta.activation
A historical view of pings sent for the org-mozilla-firefox-beta/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-firefox-beta/addresses-sync
org_mozilla_firefox_beta.addresses_sync
A historical view of pings sent for the org-mozilla-firefox-beta/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-firefox-beta/baseline
org_mozilla_firefox_beta.baseline
A historical view of pings sent for the org-mozilla-firefox-beta/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_firefox_beta.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_firefox_beta.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_firefox_beta.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-firefox-beta/bookmarks-sync
org_mozilla_firefox_beta.bookmarks_sync
A historical view of pings sent for the org-mozilla-firefox-beta/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#client_deduplication","title":"client_deduplication","text":"Client Deduplication
org_mozilla_firefox_beta.client_deduplication
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_app_id String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_derived client_deduplication_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-firefox-beta/cookie-banner-report-site
org_mozilla_firefox_beta.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-firefox-beta/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#crash","title":"crash","text":"Historical Pings for org-mozilla-firefox-beta/crash
org_mozilla_firefox_beta.crash
A historical view of pings sent for the org-mozilla-firefox-beta/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-firefox-beta/creditcards-sync
org_mozilla_firefox_beta.creditcards_sync
A historical view of pings sent for the org-mozilla-firefox-beta/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-firefox-beta/deletion-request
org_mozilla_firefox_beta.deletion_request
A historical view of pings sent for the org-mozilla-firefox-beta/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#events","title":"events","text":"Historical Pings for org-mozilla-firefox-beta/events
org_mozilla_firefox_beta.events
A historical view of pings sent for the org-mozilla-firefox-beta/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-firefox-beta/first-session
org_mozilla_firefox_beta.first_session
A historical view of pings sent for the org-mozilla-firefox-beta/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-firefox-beta/fog-validation
org_mozilla_firefox_beta.fog_validation
A historical view of pings sent for the org-mozilla-firefox-beta/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#font_list","title":"font_list","text":"Historical Pings for org-mozilla-firefox-beta/font-list
org_mozilla_firefox_beta.font_list
A historical view of pings sent for the org-mozilla-firefox-beta/font-list
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable font_list_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#fx_suggest","title":"fx_suggest","text":"Historical Pings for org-mozilla-firefox-beta/fx-suggest
org_mozilla_firefox_beta.fx_suggest
A historical view of pings sent for the org-mozilla-firefox-beta/fx-suggest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable fx_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-firefox-beta/history-sync
org_mozilla_firefox_beta.history_sync
A historical view of pings sent for the org-mozilla-firefox-beta/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#installation","title":"installation","text":"Historical Pings for org-mozilla-firefox-beta/installation
org_mozilla_firefox_beta.installation
A historical view of pings sent for the org-mozilla-firefox-beta/installation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable installation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-firefox-beta/logins-sync
org_mozilla_firefox_beta.logins_sync
A historical view of pings sent for the org-mozilla-firefox-beta/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-firefox-beta/metrics
org_mozilla_firefox_beta.metrics
A historical view of pings sent for the org-mozilla-firefox-beta/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#migration","title":"migration","text":"Historical Pings for org-mozilla-firefox-beta/migration
org_mozilla_firefox_beta.migration
A historical view of pings sent for the org-mozilla-firefox-beta/migration
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable migration_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-firefox-beta/pageload
org_mozilla_firefox_beta.pageload
A historical view of pings sent for the org-mozilla-firefox-beta/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#spoc","title":"spoc","text":"Historical Pings for org-mozilla-firefox-beta/spoc
org_mozilla_firefox_beta.spoc
A historical view of pings sent for the org-mozilla-firefox-beta/spoc
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable spoc_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#startup_timeline","title":"startup_timeline","text":"Historical Pings for org-mozilla-firefox-beta/startup-timeline
org_mozilla_firefox_beta.startup_timeline
A historical view of pings sent for the org-mozilla-firefox-beta/startup-timeline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable startup_timeline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#sync","title":"sync","text":"Historical Pings for org-mozilla-firefox-beta/sync
org_mozilla_firefox_beta.sync
A historical view of pings sent for the org-mozilla-firefox-beta/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-firefox-beta/tabs-sync
org_mozilla_firefox_beta.tabs_sync
A historical view of pings sent for the org-mozilla-firefox-beta/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-firefox-beta/topsites-impression
org_mozilla_firefox_beta.topsites_impression
A historical view of pings sent for the org-mozilla-firefox-beta/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/","title":"org-mozilla-firefox-vpn","text":"User-facing views related to document namespace org-mozilla-firefox-vpn; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-firefox-vpn
Source Directory
"},{"location":"mozdata/org_mozilla_firefox_vpn/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-firefox-vpn/baseline
org_mozilla_firefox_vpn.baseline
A historical view of pings sent for the org-mozilla-firefox-vpn/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_firefox_vpn.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_firefox_vpn.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_firefox_vpn.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#daemonsession","title":"daemonsession","text":"Historical Pings for org-mozilla-firefox-vpn/daemonsession
org_mozilla_firefox_vpn.daemonsession
A historical view of pings sent for the org-mozilla-firefox-vpn/daemonsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable daemonsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-firefox-vpn/deletion-request
org_mozilla_firefox_vpn.deletion_request
A historical view of pings sent for the org-mozilla-firefox-vpn/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#events","title":"events","text":"Historical Pings for org-mozilla-firefox-vpn/events
org_mozilla_firefox_vpn.events
A historical view of pings sent for the org-mozilla-firefox-vpn/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#main","title":"main","text":"Historical Pings for org-mozilla-firefox-vpn/main
org_mozilla_firefox_vpn.main
A historical view of pings sent for the org-mozilla-firefox-vpn/main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable main_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-firefox-vpn/metrics
org_mozilla_firefox_vpn.metrics
A historical view of pings sent for the org-mozilla-firefox-vpn/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#vpnsession","title":"vpnsession","text":"Historical Pings for org-mozilla-firefox-vpn/vpnsession
org_mozilla_firefox_vpn.vpnsession
A historical view of pings sent for the org-mozilla-firefox-vpn/vpnsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable vpnsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/","title":"org-mozilla-firefoxreality","text":"User-facing views related to document namespace org-mozilla-firefoxreality; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-firefoxreality
Source Directory
"},{"location":"mozdata/org_mozilla_firefoxreality/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-firefoxreality/baseline
org_mozilla_firefoxreality.baseline
A historical view of pings sent for the org-mozilla-firefoxreality/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_firefoxreality.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_firefoxreality.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_firefoxreality.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-firefoxreality/deletion-request
org_mozilla_firefoxreality.deletion_request
A historical view of pings sent for the org-mozilla-firefoxreality/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#events","title":"events","text":"Historical Pings for org-mozilla-firefoxreality/events
org_mozilla_firefoxreality.events
A historical view of pings sent for the org-mozilla-firefoxreality/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#launch","title":"launch","text":"Historical Pings for org-mozilla-firefoxreality/launch
org_mozilla_firefoxreality.launch
A historical view of pings sent for the org-mozilla-firefoxreality/launch
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_stable launch_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-firefoxreality/metrics
org_mozilla_firefoxreality.metrics
A historical view of pings sent for the org-mozilla-firefoxreality/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/","title":"org-mozilla-focus","text":"User-facing views related to document namespace org-mozilla-focus; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-focus
Source Directory
"},{"location":"mozdata/org_mozilla_focus/#activation","title":"activation","text":"Historical Pings for org-mozilla-focus/activation
org_mozilla_focus.activation
A historical view of pings sent for the org-mozilla-focus/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-focus/baseline
org_mozilla_focus.baseline
A historical view of pings sent for the org-mozilla-focus/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_focus.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_focus.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_focus.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-focus/cookie-banner-report-site
org_mozilla_focus.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-focus/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#crash","title":"crash","text":"Historical Pings for org-mozilla-focus/crash
org_mozilla_focus.crash
A historical view of pings sent for the org-mozilla-focus/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-focus/deletion-request
org_mozilla_focus.deletion_request
A historical view of pings sent for the org-mozilla-focus/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#events","title":"events","text":"Historical Pings for org-mozilla-focus/events
org_mozilla_focus.events
A historical view of pings sent for the org-mozilla-focus/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-focus/fog-validation
org_mozilla_focus.fog_validation
A historical view of pings sent for the org-mozilla-focus/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-focus/metrics
org_mozilla_focus.metrics
A historical view of pings sent for the org-mozilla-focus/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-focus/pageload
org_mozilla_focus.pageload
A historical view of pings sent for the org-mozilla-focus/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/","title":"org-mozilla-focus-beta","text":"User-facing views related to document namespace org-mozilla-focus-beta; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-focus-beta
Source Directory
"},{"location":"mozdata/org_mozilla_focus_beta/#activation","title":"activation","text":"Historical Pings for org-mozilla-focus-beta/activation
org_mozilla_focus_beta.activation
A historical view of pings sent for the org-mozilla-focus-beta/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-focus-beta/baseline
org_mozilla_focus_beta.baseline
A historical view of pings sent for the org-mozilla-focus-beta/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_focus_beta.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_focus_beta.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_focus_beta.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-focus-beta/cookie-banner-report-site
org_mozilla_focus_beta.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-focus-beta/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#crash","title":"crash","text":"Historical Pings for org-mozilla-focus-beta/crash
org_mozilla_focus_beta.crash
A historical view of pings sent for the org-mozilla-focus-beta/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-focus-beta/deletion-request
org_mozilla_focus_beta.deletion_request
A historical view of pings sent for the org-mozilla-focus-beta/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#events","title":"events","text":"Historical Pings for org-mozilla-focus-beta/events
org_mozilla_focus_beta.events
A historical view of pings sent for the org-mozilla-focus-beta/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-focus-beta/fog-validation
org_mozilla_focus_beta.fog_validation
A historical view of pings sent for the org-mozilla-focus-beta/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-focus-beta/metrics
org_mozilla_focus_beta.metrics
A historical view of pings sent for the org-mozilla-focus-beta/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-focus-beta/pageload
org_mozilla_focus_beta.pageload
A historical view of pings sent for the org-mozilla-focus-beta/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/","title":"org-mozilla-focus-nightly","text":"User-facing views related to document namespace org-mozilla-focus-nightly; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-focus-nightly
Source Directory
"},{"location":"mozdata/org_mozilla_focus_nightly/#activation","title":"activation","text":"Historical Pings for org-mozilla-focus-nightly/activation
org_mozilla_focus_nightly.activation
A historical view of pings sent for the org-mozilla-focus-nightly/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-focus-nightly/baseline
org_mozilla_focus_nightly.baseline
A historical view of pings sent for the org-mozilla-focus-nightly/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_focus_nightly.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_focus_nightly.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_focus_nightly.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-focus-nightly/cookie-banner-report-site
org_mozilla_focus_nightly.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-focus-nightly/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#crash","title":"crash","text":"Historical Pings for org-mozilla-focus-nightly/crash
org_mozilla_focus_nightly.crash
A historical view of pings sent for the org-mozilla-focus-nightly/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-focus-nightly/deletion-request
org_mozilla_focus_nightly.deletion_request
A historical view of pings sent for the org-mozilla-focus-nightly/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#events","title":"events","text":"Historical Pings for org-mozilla-focus-nightly/events
org_mozilla_focus_nightly.events
A historical view of pings sent for the org-mozilla-focus-nightly/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-focus-nightly/fog-validation
org_mozilla_focus_nightly.fog_validation
A historical view of pings sent for the org-mozilla-focus-nightly/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-focus-nightly/metrics
org_mozilla_focus_nightly.metrics
A historical view of pings sent for the org-mozilla-focus-nightly/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-focus-nightly/pageload
org_mozilla_focus_nightly.pageload
A historical view of pings sent for the org-mozilla-focus-nightly/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/","title":"org-mozilla-ios-fennec","text":"User-facing views related to document namespace org-mozilla-ios-fennec; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-fennec
Source Directory
"},{"location":"mozdata/org_mozilla_ios_fennec/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-ios-fennec/addresses-sync
org_mozilla_ios_fennec.addresses_sync
A historical view of pings sent for the org-mozilla-ios-fennec/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-fennec/baseline
org_mozilla_ios_fennec.baseline
A historical view of pings sent for the org-mozilla-ios-fennec/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_fennec.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_fennec.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_fennec.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-ios-fennec/bookmarks-sync
org_mozilla_ios_fennec.bookmarks_sync
A historical view of pings sent for the org-mozilla-ios-fennec/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-ios-fennec/creditcards-sync
org_mozilla_ios_fennec.creditcards_sync
A historical view of pings sent for the org-mozilla-ios-fennec/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-fennec/deletion-request
org_mozilla_ios_fennec.deletion_request
A historical view of pings sent for the org-mozilla-ios-fennec/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#events","title":"events","text":"Historical Pings for org-mozilla-ios-fennec/events
org_mozilla_ios_fennec.events
A historical view of pings sent for the org-mozilla-ios-fennec/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-ios-fennec/first-session
org_mozilla_ios_fennec.first_session
A historical view of pings sent for the org-mozilla-ios-fennec/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-ios-fennec/history-sync
org_mozilla_ios_fennec.history_sync
A historical view of pings sent for the org-mozilla-ios-fennec/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-ios-fennec/logins-sync
org_mozilla_ios_fennec.logins_sync
A historical view of pings sent for the org-mozilla-ios-fennec/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-fennec/metrics
org_mozilla_ios_fennec.metrics
A historical view of pings sent for the org-mozilla-ios-fennec/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#sync","title":"sync","text":"Historical Pings for org-mozilla-ios-fennec/sync
org_mozilla_ios_fennec.sync
A historical view of pings sent for the org-mozilla-ios-fennec/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-ios-fennec/tabs-sync
org_mozilla_ios_fennec.tabs_sync
A historical view of pings sent for the org-mozilla-ios-fennec/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_baseline","title":"temp_baseline","text":"Historical Pings for org-mozilla-ios-fennec/temp-baseline
org_mozilla_ios_fennec.temp_baseline
A historical view of pings sent for the org-mozilla-ios-fennec/temp-baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_bookmarks_sync","title":"temp_bookmarks_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-bookmarks-sync
org_mozilla_ios_fennec.temp_bookmarks_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_clients_sync","title":"temp_clients_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-clients-sync
org_mozilla_ios_fennec.temp_clients_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-clients-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_clients_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_credit_cards_sync","title":"temp_credit_cards_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-credit-cards-sync
org_mozilla_ios_fennec.temp_credit_cards_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-credit-cards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_credit_cards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_history_sync","title":"temp_history_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-history-sync
org_mozilla_ios_fennec.temp_history_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_logins_sync","title":"temp_logins_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-logins-sync
org_mozilla_ios_fennec.temp_logins_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_rust_tabs_sync","title":"temp_rust_tabs_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-rust-tabs-sync
org_mozilla_ios_fennec.temp_rust_tabs_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-rust-tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_rust_tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_sync","title":"temp_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-sync
org_mozilla_ios_fennec.temp_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_tabs_sync","title":"temp_tabs_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-tabs-sync
org_mozilla_ios_fennec.temp_tabs_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-ios-fennec/topsites-impression
org_mozilla_ios_fennec.topsites_impression
A historical view of pings sent for the org-mozilla-ios-fennec/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/","title":"org-mozilla-ios-firefox","text":"User-facing views related to document namespace org-mozilla-ios-firefox; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-firefox
Source Directory
"},{"location":"mozdata/org_mozilla_ios_firefox/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-ios-firefox/addresses-sync
org_mozilla_ios_firefox.addresses_sync
A historical view of pings sent for the org-mozilla-ios-firefox/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-firefox/baseline
org_mozilla_ios_firefox.baseline
A historical view of pings sent for the org-mozilla-ios-firefox/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_firefox.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_firefox.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_firefox.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-ios-firefox/bookmarks-sync
org_mozilla_ios_firefox.bookmarks_sync
A historical view of pings sent for the org-mozilla-ios-firefox/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-ios-firefox/creditcards-sync
org_mozilla_ios_firefox.creditcards_sync
A historical view of pings sent for the org-mozilla-ios-firefox/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-firefox/deletion-request
org_mozilla_ios_firefox.deletion_request
A historical view of pings sent for the org-mozilla-ios-firefox/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#events","title":"events","text":"Historical Pings for org-mozilla-ios-firefox/events
org_mozilla_ios_firefox.events
A historical view of pings sent for the org-mozilla-ios-firefox/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-ios-firefox/first-session
org_mozilla_ios_firefox.first_session
A historical view of pings sent for the org-mozilla-ios-firefox/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-ios-firefox/history-sync
org_mozilla_ios_firefox.history_sync
A historical view of pings sent for the org-mozilla-ios-firefox/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-ios-firefox/logins-sync
org_mozilla_ios_firefox.logins_sync
A historical view of pings sent for the org-mozilla-ios-firefox/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-firefox/metrics
org_mozilla_ios_firefox.metrics
A historical view of pings sent for the org-mozilla-ios-firefox/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#review_checker_clients","title":"review_checker_clients","text":"Review Checker Clients
org_mozilla_ios_firefox.review_checker_clients
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes normalized_country_code String Yes client_id String Yes sample_id Integer Yes shopping_product_page_visits Integer Yes experiments Record No is_opt_in Integer Yes is_opt_out Integer Yes sap Integer Yes ad_click Integer Yes active_hours_sum Float Yes is_onboarded Integer Yes is_nimbus_disabled Integer Yes is_fx_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_derived review_checker_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#review_checker_events","title":"review_checker_events","text":"Review Checker Events
org_mozilla_ios_firefox.review_checker_events
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes os String Yes os_version String Yes is_address_bar_feature_callout_displayed Integer Yes is_address_bar_icon_clicked Integer Yes is_address_bar_icon_displayed Integer Yes is_surface_analyze_reviews_none_available_clicked Integer Yes is_surface_closed Integer Yes is_surface_displayed Integer Yes is_surface_settings_expand_clicked Integer Yes is_surface_learn_more_clicked Integer Yes is_surface_no_review_reliability_available Integer Yes is_surface_onboarding_displayed Integer Yes is_surface_opt_in_accepted Integer Yes is_surface_reactivated_button_clicked Integer Yes is_surface_reanalyze_clicked Integer Yes is_surface_powered_by_fakespot_link_clicked Integer Yes is_surface_show_more_reviews_button_clicked Integer Yes is_surface_show_privacy_policy_clicked Integer Yes is_surface_show_quality_explainer_url_clicked Integer Yes is_surface_show_terms_clicked Integer Yes is_surface_stale_analysis_shown Integer Yes is_engaged_with_sidebar Integer Yes experiments Record No normalized_channel String Yes normalized_country_code String Yes sample_id Integer Yes app_version Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_derived review_checker_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#sync","title":"sync","text":"Historical Pings for org-mozilla-ios-firefox/sync
org_mozilla_ios_firefox.sync
A historical view of pings sent for the org-mozilla-ios-firefox/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-ios-firefox/tabs-sync
org_mozilla_ios_firefox.tabs_sync
A historical view of pings sent for the org-mozilla-ios-firefox/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_baseline","title":"temp_baseline","text":"Historical Pings for org-mozilla-ios-firefox/temp-baseline
org_mozilla_ios_firefox.temp_baseline
A historical view of pings sent for the org-mozilla-ios-firefox/temp-baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_bookmarks_sync","title":"temp_bookmarks_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-bookmarks-sync
org_mozilla_ios_firefox.temp_bookmarks_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_clients_sync","title":"temp_clients_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-clients-sync
org_mozilla_ios_firefox.temp_clients_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-clients-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_clients_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_credit_cards_sync","title":"temp_credit_cards_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-credit-cards-sync
org_mozilla_ios_firefox.temp_credit_cards_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-credit-cards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_credit_cards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_history_sync","title":"temp_history_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-history-sync
org_mozilla_ios_firefox.temp_history_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_logins_sync","title":"temp_logins_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-logins-sync
org_mozilla_ios_firefox.temp_logins_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_rust_tabs_sync","title":"temp_rust_tabs_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-rust-tabs-sync
org_mozilla_ios_firefox.temp_rust_tabs_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-rust-tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_rust_tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_sync","title":"temp_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-sync
org_mozilla_ios_firefox.temp_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_tabs_sync","title":"temp_tabs_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-tabs-sync
org_mozilla_ios_firefox.temp_tabs_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-ios-firefox/topsites-impression
org_mozilla_ios_firefox.topsites_impression
A historical view of pings sent for the org-mozilla-ios-firefox/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#unified_metrics_v1","title":"unified_metrics_v1","text":"unified metrics
org_mozilla_ios_firefox.unified_metrics_v1
Union of legacy metrics and glean metrics
Source Directory | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/","title":"org-mozilla-ios-firefoxbeta","text":"User-facing views related to document namespace org-mozilla-ios-firefoxbeta; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-firefoxbeta
Source Directory
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/addresses-sync
org_mozilla_ios_firefoxbeta.addresses_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-firefoxbeta/baseline
org_mozilla_ios_firefoxbeta.baseline
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_firefoxbeta.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_firefoxbeta.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_firefoxbeta.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/bookmarks-sync
org_mozilla_ios_firefoxbeta.bookmarks_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/creditcards-sync
org_mozilla_ios_firefoxbeta.creditcards_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-firefoxbeta/deletion-request
org_mozilla_ios_firefoxbeta.deletion_request
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#events","title":"events","text":"Historical Pings for org-mozilla-ios-firefoxbeta/events
org_mozilla_ios_firefoxbeta.events
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-ios-firefoxbeta/first-session
org_mozilla_ios_firefoxbeta.first_session
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/history-sync
org_mozilla_ios_firefoxbeta.history_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/logins-sync
org_mozilla_ios_firefoxbeta.logins_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-firefoxbeta/metrics
org_mozilla_ios_firefoxbeta.metrics
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#sync","title":"sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/sync
org_mozilla_ios_firefoxbeta.sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/tabs-sync
org_mozilla_ios_firefoxbeta.tabs_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_baseline","title":"temp_baseline","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-baseline
org_mozilla_ios_firefoxbeta.temp_baseline
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_bookmarks_sync","title":"temp_bookmarks_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-bookmarks-sync
org_mozilla_ios_firefoxbeta.temp_bookmarks_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_clients_sync","title":"temp_clients_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-clients-sync
org_mozilla_ios_firefoxbeta.temp_clients_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-clients-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_clients_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_credit_cards_sync","title":"temp_credit_cards_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-credit-cards-sync
org_mozilla_ios_firefoxbeta.temp_credit_cards_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-credit-cards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_credit_cards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_history_sync","title":"temp_history_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-history-sync
org_mozilla_ios_firefoxbeta.temp_history_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_logins_sync","title":"temp_logins_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-logins-sync
org_mozilla_ios_firefoxbeta.temp_logins_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_rust_tabs_sync","title":"temp_rust_tabs_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-rust-tabs-sync
org_mozilla_ios_firefoxbeta.temp_rust_tabs_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-rust-tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_rust_tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_sync","title":"temp_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-sync
org_mozilla_ios_firefoxbeta.temp_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_tabs_sync","title":"temp_tabs_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-tabs-sync
org_mozilla_ios_firefoxbeta.temp_tabs_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-ios-firefoxbeta/topsites-impression
org_mozilla_ios_firefoxbeta.topsites_impression
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/","title":"org-mozilla-ios-firefoxvpn","text":"User-facing views related to document namespace org-mozilla-ios-firefoxvpn; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-firefoxvpn
Source Directory
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-firefoxvpn/baseline
org_mozilla_ios_firefoxvpn.baseline
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_firefoxvpn.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_firefoxvpn.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_firefoxvpn.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#daemonsession","title":"daemonsession","text":"Historical Pings for org-mozilla-ios-firefoxvpn/daemonsession
org_mozilla_ios_firefoxvpn.daemonsession
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/daemonsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable daemonsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-firefoxvpn/deletion-request
org_mozilla_ios_firefoxvpn.deletion_request
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#events","title":"events","text":"Historical Pings for org-mozilla-ios-firefoxvpn/events
org_mozilla_ios_firefoxvpn.events
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#main","title":"main","text":"Historical Pings for org-mozilla-ios-firefoxvpn/main
org_mozilla_ios_firefoxvpn.main
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable main_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-firefoxvpn/metrics
org_mozilla_ios_firefoxvpn.metrics
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#vpnsession","title":"vpnsession","text":"Historical Pings for org-mozilla-ios-firefoxvpn/vpnsession
org_mozilla_ios_firefoxvpn.vpnsession
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/vpnsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable vpnsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/","title":"org-mozilla-ios-firefoxvpn-network-extension","text":"User-facing views related to document namespace org-mozilla-ios-firefoxvpn-network-extension; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-firefoxvpn-network-extension
Source Directory
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/baseline
org_mozilla_ios_firefoxvpn_network_extension.baseline
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_firefoxvpn_network_extension.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_firefoxvpn_network_extension.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_firefoxvpn_network_extension.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#daemonsession","title":"daemonsession","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/daemonsession
org_mozilla_ios_firefoxvpn_network_extension.daemonsession
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/daemonsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable daemonsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/deletion-request
org_mozilla_ios_firefoxvpn_network_extension.deletion_request
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#events","title":"events","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/events
org_mozilla_ios_firefoxvpn_network_extension.events
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#main","title":"main","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/main
org_mozilla_ios_firefoxvpn_network_extension.main
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable main_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/metrics
org_mozilla_ios_firefoxvpn_network_extension.metrics
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#vpnsession","title":"vpnsession","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/vpnsession
org_mozilla_ios_firefoxvpn_network_extension.vpnsession
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/vpnsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable vpnsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/","title":"org-mozilla-ios-focus","text":"User-facing views related to document namespace org-mozilla-ios-focus; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-focus
Source Directory
"},{"location":"mozdata/org_mozilla_ios_focus/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-focus/baseline
org_mozilla_ios_focus.baseline
A historical view of pings sent for the org-mozilla-ios-focus/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_focus.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_focus.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_focus.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-focus/deletion-request
org_mozilla_ios_focus.deletion_request
A historical view of pings sent for the org-mozilla-ios-focus/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/#events","title":"events","text":"Historical Pings for org-mozilla-ios-focus/events
org_mozilla_ios_focus.events
A historical view of pings sent for the org-mozilla-ios-focus/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-focus/metrics
org_mozilla_ios_focus.metrics
A historical view of pings sent for the org-mozilla-ios-focus/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/","title":"org-mozilla-ios-klar","text":"User-facing views related to document namespace org-mozilla-ios-klar; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-klar
Source Directory
"},{"location":"mozdata/org_mozilla_ios_klar/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-klar/baseline
org_mozilla_ios_klar.baseline
A historical view of pings sent for the org-mozilla-ios-klar/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_klar.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_klar.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_klar.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-klar/deletion-request
org_mozilla_ios_klar.deletion_request
A historical view of pings sent for the org-mozilla-ios-klar/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/#events","title":"events","text":"Historical Pings for org-mozilla-ios-klar/events
org_mozilla_ios_klar.events
A historical view of pings sent for the org-mozilla-ios-klar/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-klar/metrics
org_mozilla_ios_klar.metrics
A historical view of pings sent for the org-mozilla-ios-klar/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/","title":"org-mozilla-ios-lockbox","text":"User-facing views related to document namespace org-mozilla-ios-lockbox; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-lockbox
Source Directory
"},{"location":"mozdata/org_mozilla_ios_lockbox/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-lockbox/baseline
org_mozilla_ios_lockbox.baseline
A historical view of pings sent for the org-mozilla-ios-lockbox/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_lockbox.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_lockbox.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_lockbox.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-lockbox/deletion-request
org_mozilla_ios_lockbox.deletion_request
A historical view of pings sent for the org-mozilla-ios-lockbox/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/#events","title":"events","text":"Historical Pings for org-mozilla-ios-lockbox/events
org_mozilla_ios_lockbox.events
A historical view of pings sent for the org-mozilla-ios-lockbox/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-lockbox/metrics
org_mozilla_ios_lockbox.metrics
A historical view of pings sent for the org-mozilla-ios-lockbox/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/","title":"org-mozilla-klar","text":"User-facing views related to document namespace org-mozilla-klar; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-klar
Source Directory
"},{"location":"mozdata/org_mozilla_klar/#activation","title":"activation","text":"Historical Pings for org-mozilla-klar/activation
org_mozilla_klar.activation
A historical view of pings sent for the org-mozilla-klar/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-klar/baseline
org_mozilla_klar.baseline
A historical view of pings sent for the org-mozilla-klar/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_klar.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_klar.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_klar.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-klar/cookie-banner-report-site
org_mozilla_klar.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-klar/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#crash","title":"crash","text":"Historical Pings for org-mozilla-klar/crash
org_mozilla_klar.crash
A historical view of pings sent for the org-mozilla-klar/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-klar/deletion-request
org_mozilla_klar.deletion_request
A historical view of pings sent for the org-mozilla-klar/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#events","title":"events","text":"Historical Pings for org-mozilla-klar/events
org_mozilla_klar.events
A historical view of pings sent for the org-mozilla-klar/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-klar/fog-validation
org_mozilla_klar.fog_validation
A historical view of pings sent for the org-mozilla-klar/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-klar/metrics
org_mozilla_klar.metrics
A historical view of pings sent for the org-mozilla-klar/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-klar/pageload
org_mozilla_klar.pageload
A historical view of pings sent for the org-mozilla-klar/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/","title":"org-mozilla-mozregression","text":"User-facing views related to document namespace org-mozilla-mozregression; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-mozregression
Source Directory
"},{"location":"mozdata/org_mozilla_mozregression/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-mozregression/baseline
org_mozilla_mozregression.baseline
A historical view of pings sent for the org-mozilla-mozregression/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_mozregression.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_mozregression.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_mozregression.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-mozregression/deletion-request
org_mozilla_mozregression.deletion_request
A historical view of pings sent for the org-mozilla-mozregression/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#events","title":"events","text":"Historical Pings for org-mozilla-mozregression/events
org_mozilla_mozregression.events
A historical view of pings sent for the org-mozilla-mozregression/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-mozregression/metrics
org_mozilla_mozregression.metrics
A historical view of pings sent for the org-mozilla-mozregression/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#mozregression_aggregates","title":"mozregression_aggregates","text":"Mozregression Aggregates
org_mozilla_mozregression.mozregression_aggregates
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes mozregression_version String Yes mozregression_variant String Yes app_used String Yes os String Yes os_version Numeric Yes distinct_clients Integer Yes total_uses Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_derived mozregression_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#usage","title":"usage","text":"Historical Pings for org-mozilla-mozregression/usage
org_mozilla_mozregression.usage
A historical view of pings sent for the org-mozilla-mozregression/usage
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_stable usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/","title":"org-mozilla-reference-browser","text":"User-facing views related to document namespace org-mozilla-reference-browser; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-reference-browser
Source Directory
"},{"location":"mozdata/org_mozilla_reference_browser/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-reference-browser/baseline
org_mozilla_reference_browser.baseline
A historical view of pings sent for the org-mozilla-reference-browser/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_reference_browser.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_reference_browser.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_reference_browser.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#crash","title":"crash","text":"Historical Pings for org-mozilla-reference-browser/crash
org_mozilla_reference_browser.crash
A historical view of pings sent for the org-mozilla-reference-browser/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-reference-browser/deletion-request
org_mozilla_reference_browser.deletion_request
A historical view of pings sent for the org-mozilla-reference-browser/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#events","title":"events","text":"Historical Pings for org-mozilla-reference-browser/events
org_mozilla_reference_browser.events
A historical view of pings sent for the org-mozilla-reference-browser/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-reference-browser/metrics
org_mozilla_reference_browser.metrics
A historical view of pings sent for the org-mozilla-reference-browser/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/","title":"org-mozilla-tv-firefox","text":"User-facing views related to document namespace org-mozilla-tv-firefox; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-tv-firefox
Source Directory
"},{"location":"mozdata/org_mozilla_tv_firefox/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-tv-firefox/baseline
org_mozilla_tv_firefox.baseline
A historical view of pings sent for the org-mozilla-tv-firefox/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_tv_firefox.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_tv_firefox.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_tv_firefox.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-tv-firefox/deletion-request
org_mozilla_tv_firefox.deletion_request
A historical view of pings sent for the org-mozilla-tv-firefox/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/#events","title":"events","text":"Historical Pings for org-mozilla-tv-firefox/events
org_mozilla_tv_firefox.events
A historical view of pings sent for the org-mozilla-tv-firefox/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-tv-firefox/metrics
org_mozilla_tv_firefox.metrics
A historical view of pings sent for the org-mozilla-tv-firefox/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/","title":"org-mozilla-vrbrowser","text":"User-facing views related to document namespace org-mozilla-vrbrowser; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-vrbrowser
Source Directory
"},{"location":"mozdata/org_mozilla_vrbrowser/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-vrbrowser/addresses-sync
org_mozilla_vrbrowser.addresses_sync
A historical view of pings sent for the org-mozilla-vrbrowser/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-vrbrowser/baseline
org_mozilla_vrbrowser.baseline
A historical view of pings sent for the org-mozilla-vrbrowser/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_vrbrowser.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_vrbrowser.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_vrbrowser.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-vrbrowser/bookmarks-sync
org_mozilla_vrbrowser.bookmarks_sync
A historical view of pings sent for the org-mozilla-vrbrowser/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-vrbrowser/creditcards-sync
org_mozilla_vrbrowser.creditcards_sync
A historical view of pings sent for the org-mozilla-vrbrowser/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-vrbrowser/deletion-request
org_mozilla_vrbrowser.deletion_request
A historical view of pings sent for the org-mozilla-vrbrowser/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#events","title":"events","text":"Historical Pings for org-mozilla-vrbrowser/events
org_mozilla_vrbrowser.events
A historical view of pings sent for the org-mozilla-vrbrowser/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-vrbrowser/history-sync
org_mozilla_vrbrowser.history_sync
A historical view of pings sent for the org-mozilla-vrbrowser/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-vrbrowser/logins-sync
org_mozilla_vrbrowser.logins_sync
A historical view of pings sent for the org-mozilla-vrbrowser/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-vrbrowser/metrics
org_mozilla_vrbrowser.metrics
A historical view of pings sent for the org-mozilla-vrbrowser/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#session_end","title":"session_end","text":"Historical Pings for org-mozilla-vrbrowser/session-end
org_mozilla_vrbrowser.session_end
A historical view of pings sent for the org-mozilla-vrbrowser/session-end
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable session_end_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#sync","title":"sync","text":"Historical Pings for org-mozilla-vrbrowser/sync
org_mozilla_vrbrowser.sync
A historical view of pings sent for the org-mozilla-vrbrowser/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-vrbrowser/tabs-sync
org_mozilla_vrbrowser.tabs_sync
A historical view of pings sent for the org-mozilla-vrbrowser/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/","title":"pine","text":"User-facing views related to document namespace pine; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/pine
Source Directory
"},{"location":"mozdata/pine/#baseline","title":"baseline","text":"Historical Pings for pine/baseline
pine.baseline
A historical view of pings sent for the pine/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
pine.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
pine.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
pine.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#deletion_request","title":"deletion_request","text":"Historical Pings for pine/deletion-request
pine.deletion_request
A historical view of pings sent for the pine/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#events","title":"events","text":"Historical Pings for pine/events
pine.events
A historical view of pings sent for the pine/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#events_unnested","title":"events_unnested","text":"Events Unnested
pine.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#fog_validation","title":"fog_validation","text":"Historical Pings for pine/fog-validation
pine.fog_validation
A historical view of pings sent for the pine/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#messaging_system","title":"messaging_system","text":"Historical Pings for pine/messaging-system
pine.messaging_system
A historical view of pings sent for the pine/messaging-system
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable messaging_system_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#metrics","title":"metrics","text":"Historical Pings for pine/metrics
pine.metrics
A historical view of pings sent for the pine/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
pine.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#new_metric_capture_emulation","title":"new_metric_capture_emulation","text":"Historical Pings for pine/new-metric-capture-emulation
pine.new_metric_capture_emulation
A historical view of pings sent for the pine/new-metric-capture-emulation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable new_metric_capture_emulation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#newtab","title":"newtab","text":"Historical Pings for pine/newtab
pine.newtab
A historical view of pings sent for the pine/newtab
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable newtab_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#pageload","title":"pageload","text":"Historical Pings for pine/pageload
pine.pageload
A historical view of pings sent for the pine/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#pseudo_main","title":"pseudo_main","text":"Historical Pings for pine/pseudo-main
pine.pseudo_main
A historical view of pings sent for the pine/pseudo-main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable pseudo_main_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#top_sites","title":"top_sites","text":"Historical Pings for pine/top-sites
pine.top_sites
A historical view of pings sent for the pine/top-sites
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable top_sites_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pocket/","title":"pocket","text":"User-facing views related to document namespace pocket; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/pocket
Source Directory
"},{"location":"mozdata/pocket/#events","title":"events","text":"Events
pocket.events
Please provide a description for the query
Schema Column Description Type Nullable submission_timestamp Timestamp Yes normalized_app_id String Yes metadata Record Yes client_info Record Yes event String Yes event_timestamp Timestamp Yes event_extra Json Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pocket_derived events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pocket/#fire_tv_events","title":"fire_tv_events","text":"Historical Pings for pocket/fire-tv-events
pocket.fire_tv_events
A historical view of pings sent for the pocket/fire-tv-events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes created Integer Yes device String Yes document_id The document ID specified in the URI when the client sent this message String Yes locale String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes os String Yes osversion String Yes pocket_id String Yes process_start_timestamp Integer Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes seq Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes v Integer Yes events Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod pocket_stable fire_tv_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pocket/#pocket_reach_mau","title":"pocket_reach_mau","text":"Pocket Reach Mau
pocket.pocket_reach_mau
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes mau Numeric Yes Referenced Tables Project Dataset Table pocket-airflow-prod data_from_pocket pocket_reach_mau Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pocket/#rolling_monthly_active_user_counts","title":"rolling_monthly_active_user_counts","text":"Rolling Monthly Active User Counts
pocket.rolling_monthly_active_user_counts
Rolling count of monthly active users (MAU) for Pocket.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable measured_at Activity date represented by this row Date Yes user_count Number of Pocket monthly active users on this measured_at date Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pocket_derived rolling_monthly_active_user_counts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pocket/#spoc_tile_ids","title":"spoc_tile_ids","text":"Sponsored Content (Spoc) Tile IDs
pocket.spoc_tile_ids
Lookup table of the currently registered tile IDs for Pocket sponsored content
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable tile_id Numeric ID for the tile Integer Yes type Type of content (should always be 'spoc') String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pocket_derived spoc_tile_ids_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pocket/#twice_weekly_active_user_counts","title":"twice_weekly_active_user_counts","text":"Twice Weekly Active User Counts
pocket.twice_weekly_active_user_counts
Count of twice weekly active users (T-WAU) for Pocket, measured each calendar week.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable active_at Calendar week represented by this row Date Yes user_count Number of Pocket twice weekly active users on this date Integer Yes yearly_cumulative_user_count Cumulative TWAU for the year up to this active_at date Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pocket_derived twice_weekly_active_user_counts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference/","title":"Reference","text":"Reference data
Source Directory
"},{"location":"mozdata/reference/#macroeconomic_indices","title":"macroeconomic_indices","text":"Macroeconomic Indices
reference.macroeconomic_indices
Historical stock index and foreign exchange data pulled daily from https://site.financialmodelingprep.com/ Specifically, we pull - ^DJI (Dow Jones Industrial Average) - ^GSPC (SNP - SNP Real Time Price. Currency in USD) - ^IXIC (Nasdaq GIDS - Nasdaq GIDS Real Time Price. Currency in USD) - EURUSD=X (Euro to USD exchange rate) - GBPUSD=X (GB pound to USD exchange rate) We have a FinancialModelingPrep account that allows us to use this data for internal use. Contact the Search and Revenue team and/or the owners of this table for more information
- Schedule: daily
- Owners:
- cmorales@mozilla.com
- xluo@mozilla.com
Schema Column Description Type Nullable symbol String Yes market_date Date Yes open Numeric Yes close Numeric Yes adj_close Numeric Yes high Numeric Yes low Numeric Yes volume Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod reference_derived macroeconomic_indices_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/","title":"Reference Browser","text":"Views on data from reference_browser
Source Directory
"},{"location":"mozdata/reference_browser/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
reference_browser.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Reference Browser\" (org_mozilla_reference_browser.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
reference_browser.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
reference_browser.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
reference_browser.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
reference_browser.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod reference_browser_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#crash","title":"crash","text":"App-specific view for Glean ping \"crash\"
reference_browser.crash
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Reference Browser\" (org_mozilla_reference_browser.crash).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser crash Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
reference_browser.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Reference Browser\" (org_mozilla_reference_browser.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#events","title":"events","text":"App-specific view for Glean ping \"events\"
reference_browser.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Reference Browser\" (org_mozilla_reference_browser.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#events_unnested","title":"events_unnested","text":"Events Unnested
reference_browser.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
reference_browser.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Reference Browser\" (org_mozilla_reference_browser.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
reference_browser.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod reference_browser_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
reference_browser.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod reference_browser_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter/","title":"regrets-reporter","text":"User-facing views related to document namespace regrets-reporter; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/regrets-reporter
Source Directory
"},{"location":"mozdata/regrets_reporter/#regrets_reporter_summary","title":"regrets_reporter_summary","text":"Regrets Reporter Summary - view
regrets_reporter.regrets_reporter_summary
Measure usage of the regrets reporter addon See https://github.com/mozilla/bigquery-etl/issues/2572
Schema Column Description Type Nullable dau Integer Yes wau Integer Yes new_users Integer Yes date Date Yes experiment_arm String Yes ui_arm String Yes country String Yes browser String Yes activities Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_derived regrets_reporter_summary_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter/#regrets_reporter_update","title":"regrets_reporter_update","text":"Regrets Reporter Update
regrets_reporter.regrets_reporter_update
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_stable regrets_reporter_update_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter_ucs/","title":"regrets-reporter-ucs","text":"User-facing views related to document namespace regrets-reporter-ucs; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/regrets-reporter-ucs
Source Directory
"},{"location":"mozdata/regrets_reporter_ucs/#deletion_request","title":"deletion_request","text":"Historical Pings for regrets-reporter-ucs/deletion-request
regrets_reporter_ucs.deletion_request
A historical view of pings sent for the regrets-reporter-ucs/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_ucs_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter_ucs/#events","title":"events","text":"Historical Pings for regrets-reporter-ucs/events
regrets_reporter_ucs.events
A historical view of pings sent for the regrets-reporter-ucs/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_ucs_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter_ucs/#main_events","title":"main_events","text":"Historical Pings for regrets-reporter-ucs/main-events
regrets_reporter_ucs.main_events
A historical view of pings sent for the regrets-reporter-ucs/main-events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_ucs_stable main_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter_ucs/#regret_details","title":"regret_details","text":"Historical Pings for regrets-reporter-ucs/regret-details
regrets_reporter_ucs.regret_details
A historical view of pings sent for the regrets-reporter-ucs/regret-details
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_ucs_stable regret_details_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter_ucs/#video_data","title":"video_data","text":"Historical Pings for regrets-reporter-ucs/video-data
regrets_reporter_ucs.video_data
A historical view of pings sent for the regrets-reporter-ucs/video-data
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_ucs_stable video_data_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter_ucs/#video_index","title":"video_index","text":"Historical Pings for regrets-reporter-ucs/video-index
regrets_reporter_ucs.video_index
A historical view of pings sent for the regrets-reporter-ucs/video-index
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_ucs_stable video_index_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/relay/","title":"Firefox Relay","text":"Data related to the Firefox Relay service
Source Directory
"},{"location":"mozdata/relay/#active_subscription_ids","title":"active_subscription_ids","text":"Active Subscription Ids
relay.active_subscription_ids
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes subscription_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod relay_derived active_subscription_ids_live moz-fx-data-shared-prod relay_derived active_subscription_ids_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/relay/#active_subscriptions","title":"active_subscriptions","text":"Active Subscriptions
relay.active_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes plan_id String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes promotion_codes String No promotion_discounts_amount Integer Yes count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod relay_derived active_subscriptions_live moz-fx-data-shared-prod relay_derived active_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/relay/#subscription_events","title":"subscription_events","text":"Subscription Events
relay.subscription_events
Please provide a description for the query
Schema Column Description Type Nullable event_date Date Yes event_type String Yes granular_event_type String Yes plan_id String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes promotion_codes String No count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod relay_derived subscription_events_live moz-fx-data-shared-prod relay_derived subscription_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/relay/#subscriptions","title":"subscriptions","text":"Subscriptions
relay.subscriptions
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes subscription_id String Yes original_subscription_id String Yes plan_id String Yes status String Yes event_timestamp Timestamp Yes subscription_start_date Timestamp Yes original_subscription_start_date Timestamp Yes subscription_start_reason String Yes trial_start Timestamp Yes trial_end Timestamp Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes ended_at Timestamp Yes ended_reason String Yes fxa_uid String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes product_id String Yes product_name String Yes pricing_plan String Yes billing_grace_period Interval Yes promotion_codes String No promotion_discounts_amount Integer Yes customer_start_date Timestamp Yes end_date Timestamp Yes months_retained Integer Yes original_subscription_months_retained Integer Yes current_months_since_subscription_start Integer Yes current_months_since_original_subscription_start Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod relay_derived subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/","title":"Search","text":"Views related to client search counts
Source Directory
"},{"location":"mozdata/search/#acer_cohort","title":"acer_cohort","text":"Acer Cohort
search.acer_cohort
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived acer_cohort_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#desktop_mobile_search_clients_monthly","title":"desktop_mobile_search_clients_monthly","text":"Desktop Mobile Search Clients Monthly
search.desktop_mobile_search_clients_monthly
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes submission_month Date Yes device String Yes normalized_engine String Yes normalized_app_name String Yes os String Yes country String Yes days_of_use Integer Yes searches Integer Yes search_with_ads Integer Yes ad_click Integer Yes tagged_follow_on Integer Yes tagged_sap Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived desktop_mobile_search_clients_monthly_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#desktop_search_aggregates_by_userstate","title":"desktop_search_aggregates_by_userstate","text":"Desktop Search Aggregates By Userstate
search.desktop_search_aggregates_by_userstate
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes geo String Yes user_state String Yes client_count Integer Yes search_client_count Integer Yes sap Integer Yes search_with_ads Integer Yes ad_clicks Integer Yes tagged_follow_on Integer Yes tagged_sap Integer Yes organic Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived desktop_search_aggregates_by_userstate_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#desktop_search_aggregates_for_searchreport","title":"desktop_search_aggregates_for_searchreport","text":"Desktop Search Aggregates For Searchreport
search.desktop_search_aggregates_for_searchreport
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes geo String Yes locale String Yes engine String Yes os String Yes app_version String Yes dcc Integer Yes sap Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes search_with_ads Integer Yes ad_click Integer Yes organic Integer Yes ad_click_organic Integer Yes search_with_ads_organic Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived desktop_search_aggregates_for_searchreport_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#firefox_products_search_clients_engines_sources_daily","title":"firefox_products_search_clients_engines_sources_daily","text":"Firefox Products Search Clients Engines Sources Daily
search.firefox_products_search_clients_engines_sources_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod search mobile_search_clients_engines_sources_daily moz-fx-data-shared-prod search search_clients_engines_sources_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#mobile_search_aggregates","title":"mobile_search_aggregates","text":"Mobile Search Aggregates
search.mobile_search_aggregates
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes engine String Yes source String Yes app_name String Yes normalized_app_name String Yes app_version String Yes channel String Yes country String Yes locale String Yes distribution_id String Yes default_search_engine String Yes os String Yes os_version String Yes client_count Integer Yes search_count Integer Yes organic Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes unknown Integer Yes ad_click_organic Integer Yes normalized_engine String Yes sap Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived mobile_search_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#mobile_search_aggregates_for_searchreport","title":"mobile_search_aggregates_for_searchreport","text":"Mobile Search Aggregates For Searchreport
search.mobile_search_aggregates_for_searchreport
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes country String Yes product String Yes normalized_engine String Yes clients Integer Yes search_clients Integer Yes sap Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes organic Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived mobile_search_aggregates_for_searchreport_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#mobile_search_clients_engines_sources_daily","title":"mobile_search_clients_engines_sources_daily","text":"Mobile Search Clients Engines Sources Daily
search.mobile_search_clients_engines_sources_daily
A daily aggregate of baseline and metrics pings that have searches from each (client_id, engine, source) combination, partitioned by day.
- Owners:
- akomar@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes engine String Yes source String Yes app_name String Yes normalized_app_name String Yes search_count Integer Yes organic Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes unknown Integer Yes country String Yes locale String Yes app_version String Yes channel String Yes os String Yes os_version String Yes default_search_engine String Yes default_search_engine_submission_url String Yes distribution_id String Yes profile_creation_date Integer Yes profile_age_in_days Integer Yes sample_id Integer Yes experiments Record No total_uri_count Integer Yes ad_click_organic Integer Yes normalized_engine String Yes browser_version_info Record Yes sap Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived mobile_search_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#mobile_search_clients_last_seen","title":"mobile_search_clients_last_seen","text":"Mobile Search Clients Last Seen
search.mobile_search_clients_last_seen
Captures search activity of each mobile client in the past 365 days for each submission date.
Used as the basis for LTV calculations.
- Owners:
- akomar@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes app_name String Yes normalized_app_name String Yes country String Yes locale String Yes app_version String Yes channel String Yes os String Yes os_version String Yes default_search_engine String Yes default_search_engine_submission_url String Yes distribution_id String Yes profile_creation_date Integer Yes profile_age_in_days Integer Yes organic Integer Yes sap Integer Yes unknown Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes tagged_searches Integer Yes days_seen_bytes Bytes Yes days_searched_bytes Bytes Yes days_tagged_searched_bytes Bytes Yes days_searched_with_ads_bytes Bytes Yes days_clicked_ads_bytes Bytes Yes days_created_profile_bytes Bytes Yes engine_searches Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived mobile_search_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#search_aggregates","title":"search_aggregates","text":"Search Aggregates
search.search_aggregates
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes addon_version String Yes app_version String Yes country String Yes distribution_id String Yes engine String Yes locale String Yes search_cohort String Yes source String Yes default_search_engine String Yes default_private_search_engine String Yes os String Yes os_version String Yes is_default_browser Boolean Yes channel String Yes client_count Integer Yes organic Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes sap Integer Yes ad_click Integer Yes ad_click_organic Integer Yes search_with_ads Integer Yes search_with_ads_organic Integer Yes unknown Integer Yes normalized_engine String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived search_aggregates_v8 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#search_clients_engines_sources_daily","title":"search_clients_engines_sources_daily","text":"Search Clients Engines Sources Daily
search.search_clients_engines_sources_daily
A daily aggregate of desktop searches per (client_id, engine, source).
- Owners:
- akomar@mozilla.com
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes client_id String Yes engine String Yes source String Yes country String Yes addon_version String Yes app_version String Yes distribution_id String Yes locale String Yes user_pref_browser_search_region String Yes search_cohort String Yes os String Yes os_version String Yes channel String Yes is_default_browser Boolean Yes profile_creation_date Integer Yes default_search_engine String Yes default_search_engine_data_load_path String Yes default_search_engine_data_submission_url String Yes default_private_search_engine String Yes default_private_search_engine_data_load_path String Yes default_private_search_engine_data_submission_url String Yes sample_id Integer Yes subsession_hours_sum Float Yes sessions_started_on_this_day Integer Yes active_addons_count_mean Float Yes max_concurrent_tab_count_max Integer Yes tab_open_event_count_sum Integer Yes active_hours_sum Float Yes total_uri_count Integer Yes experiments Record No scalar_parent_urlbar_searchmode_bookmarkmenu_sum Record No scalar_parent_urlbar_searchmode_handoff_sum Record No scalar_parent_urlbar_searchmode_keywordoffer_sum Record No scalar_parent_urlbar_searchmode_oneoff_sum Record No scalar_parent_urlbar_searchmode_other_sum Record No scalar_parent_urlbar_searchmode_shortcut_sum Record No scalar_parent_urlbar_searchmode_tabmenu_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_onboard_sum Record No scalar_parent_urlbar_searchmode_topsites_newtab_sum Record No scalar_parent_urlbar_searchmode_topsites_urlbar_sum Record No scalar_parent_urlbar_searchmode_touchbar_sum Record No scalar_parent_urlbar_searchmode_typed_sum Record No profile_age_in_days Integer Yes organic Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes sap Integer Yes ad_click Integer Yes ad_click_organic Integer Yes search_with_ads Integer Yes search_with_ads_organic Integer Yes unknown Integer Yes is_sap_monetizable Boolean Yes has_adblocker_addon Boolean Yes normalized_engine String Yes browser_version_info Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived search_clients_daily_v8 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#search_clients_last_seen","title":"search_clients_last_seen","text":"Search Clients Last Seen
search.search_clients_last_seen
Captures search activity of each desktop client in the past 365 days for each submission date.
Used as the basis for LTV calculations.
- Owners:
- frank@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod search search_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#search_clients_last_seen_v1","title":"search_clients_last_seen_v1","text":"Search Clients Last Seen V1
search.search_clients_last_seen_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes country String Yes app_version String Yes distribution_id String Yes locale String Yes search_cohort String Yes addon_version String Yes os String Yes channel String Yes profile_creation_date Integer Yes default_search_engine String Yes default_search_engine_data_load_path String Yes default_search_engine_data_submission_url String Yes profile_age_in_days Integer Yes active_addons_count_mean Float Yes user_pref_browser_search_region String Yes os_version String Yes max_concurrent_tab_count_max Integer Yes tab_open_event_count_sum Integer Yes active_hours_sum Float Yes subsession_hours_sum Float Yes sessions_started_on_this_day Integer Yes organic Integer Yes sap Integer Yes unknown Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes tagged_searches Integer Yes engine_searches Record No days_seen_bytes Bytes Yes days_searched_bytes Bytes Yes days_tagged_searched_bytes Bytes Yes days_searched_with_ads_bytes Bytes Yes days_clicked_ads_bytes Bytes Yes days_created_profile_bytes Bytes Yes days_since_seen Integer Yes days_since_searched Integer Yes days_since_tagged_searched Integer Yes days_since_searched_with_ads Integer Yes days_since_clicked_ad Integer Yes days_since_created_profile Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived search_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#search_revenue_levers_daily","title":"search_revenue_levers_daily","text":"Search Revenue Levers Daily
search.search_revenue_levers_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes partner String Yes device String Yes channel String Yes country String Yes dau Integer Yes dau_engaged_w_sap Integer Yes sap Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes organic Integer Yes ad_click_organic Integer Yes search_with_ads_organic Integer Yes monetizable_sap Integer Yes dau_w_engine_as_default Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived search_revenue_levers_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#search_rfm","title":"search_rfm","text":"Search Rfm
search.search_rfm
Please provide a description for the query
Schema Column Description Type Nullable days_seen Record Yes days_searched Record Yes days_tagged_searched Record Yes days_searched_with_ads Record Yes days_clicked_ads Record Yes days_since_created_profile Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes country String Yes app_version String Yes distribution_id String Yes locale String Yes search_cohort String Yes addon_version String Yes os String Yes channel String Yes profile_creation_date Integer Yes default_search_engine String Yes default_search_engine_data_load_path String Yes default_search_engine_data_submission_url String Yes profile_age_in_days Integer Yes active_addons_count_mean Float Yes user_pref_browser_search_region String Yes os_version String Yes max_concurrent_tab_count_max Integer Yes tab_open_event_count_sum Integer Yes active_hours_sum Float Yes subsession_hours_sum Float Yes sessions_started_on_this_day Integer Yes organic Integer Yes sap Integer Yes unknown Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes total_searches Integer Yes tagged_searches Integer Yes engine_searches Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived search_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search_terms/","title":"Search Terms","text":"Views related to search terms data
Source Directory
"},{"location":"mozdata/search_terms/#aggregated_search_terms_daily","title":"aggregated_search_terms_daily","text":"Aggregated Search Terms Daily
search_terms.aggregated_search_terms_daily
Impression, click and client counts for search queries logged via Contextual Services Suggest Impression Pings
- Owners:
- rburwei@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_terms_derived aggregated_search_terms_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search_terms/#sanitization_job_data_validation_metrics","title":"sanitization_job_data_validation_metrics","text":"Sanitization Job Data Validation Metrics
search_terms.sanitization_job_data_validation_metrics
The proportion of raw customer search volume that possesses characteristics like capital letters, census surnames, or English words.
We use this + other metrics to assess whether the constituency using our search features is changing.
- Owners:
- ctroy@mozilla.com
- dzeber@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_terms sanitization_job_languages moz-fx-data-shared-prod search_terms_derived sanitization_job_metadata_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search_terms/#sanitization_job_languages","title":"sanitization_job_languages","text":"Sanitization Job Languages
search_terms.sanitization_job_languages
How many search terms got each language tag, by job.
We use this + other metrics to assess whether the constituency using our search features is changing.
- Owners:
- ctroy@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_terms_derived sanitization_job_metadata_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search_terms/#search_terms_daily","title":"search_terms_daily","text":"Search Terms Daily
search_terms.search_terms_daily
Daily count of terminal search terms collected by Merino.
- Owners:
- ctroy@mozilla.com
- rburwei@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_terms_derived search_terms_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/static/","title":"Static Data","text":"Static tables, often useful for data-enriching joins This directory contains definitions for derived tables in the static
dataset.
In particular, we have two tables based on a one-time export of Firefox Accounts extracted from Amplitude and imported to BigQuery.
Tables can be defined as a CSV named data.csv
and the table will be created by the ./bqetl static publish
command. An optional schema.json
and description.txt
can be defined in the same directory. If schema.json
is not defined, column names are inferred from the first line of the CSV and are assumed to be strings. description.txt
defines the table description in BigQuery.
These should be published to all active projects used for production ETL and analysis:
# Generate data.csv for country_names\nbqetl generate country_code_lookup\n\n./bqetl static publish --project-id mozdata\n./bqetl static publish --project-id moz-fx-data-shared-prod\n
Source Directory
"},{"location":"mozdata/static/#country_codes_v1","title":"country_codes_v1","text":"static.country_codes_v1
Schema Column Description Type Nullable name String Yes code String Yes region_name String Yes subregion_name String Yes intermediate_region_name String Yes pocket_available_on_newtab Boolean Yes mozilla_vpn_available Boolean Yes Source Directory
"},{"location":"mozdata/static/#country_names_v1","title":"country_names_v1","text":"static.country_names_v1
Schema Column Description Type Nullable name String Yes code String Yes Source Directory
"},{"location":"mozdata/static/#data_incidents_v1","title":"data_incidents_v1","text":"Notes for data incidents
static.data_incidents_v1
This table is connected to a spreadsheet that contains notes about data incidents. The notes are displayed on Looker dashboards.
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable start_date Date Yes end_date Date Yes incident String Yes description String Yes bug String Yes product String Yes version String Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#fxa_amplitude_export_users_daily","title":"fxa_amplitude_export_users_daily","text":"Static - Fxa Amplitude Export Users Daily
static.fxa_amplitude_export_users_daily
[DESCRIPTION_MISSING]
Schema Column Description Type Nullable submission_date Date Yes generated_time Datetime Yes user_id String Yes country String Yes seen_in_tier1_country Boolean Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#fxa_amplitude_export_users_last_seen","title":"fxa_amplitude_export_users_last_seen","text":"Static - Fxa Amplitude Export Users Last Seen
static.fxa_amplitude_export_users_last_seen
[DESCRIPTION_MISSING]
Schema Column Description Type Nullable submission_date Date Yes date_last_seen Date Yes date_last_seen_in_tier1_country Date Yes user_id String Yes country String Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#iana_tls_cipher_suites","title":"iana_tls_cipher_suites","text":"static.iana_tls_cipher_suites
Schema Column Description Type Nullable value String Yes description String Yes dtls_ok Boolean Yes recommended Boolean Yes reference String Yes Source Directory
"},{"location":"mozdata/static/#monitoring_distinct_docids_notes_v1","title":"monitoring_distinct_docids_notes_v1","text":"Notes for monitoring distinct docids
static.monitoring_distinct_docids_notes_v1
This table is connected to a spreadsheet that contains notes about incidents with distinct docids. The notes are displayed on Looker dashboards.
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable start_date Date Yes end_date Date Yes document_namespace String Yes document_type String Yes notes String Yes bug String Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#monitoring_missing_columns_notes_v1","title":"monitoring_missing_columns_notes_v1","text":"Notes for monitoring missing columns
static.monitoring_missing_columns_notes_v1
This table is connected to a spreadsheet that contains notes about missing columns. The notes are displayed on Looker dashboards.
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable start_date Date Yes end_date Date Yes document_namespace String Yes document_type String Yes document_version String Yes path String Yes notes String Yes bug String Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#monitoring_missing_document_namespaces_notes_v1","title":"monitoring_missing_document_namespaces_notes_v1","text":"Notes for monitoring missing document namespaces
static.monitoring_missing_document_namespaces_notes_v1
This table is connected to a spreadsheet that contains notes about missing namespaces. The notes are displayed on Looker dashboards.
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable start_date Date Yes end_date Date Yes document_namespace String Yes document_type String Yes document_version String Yes notes String Yes bug String Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#monitoring_schema_errors_notes_v1","title":"monitoring_schema_errors_notes_v1","text":"Notes for monitoring schema errors
static.monitoring_schema_errors_notes_v1
This table is connected to a spreadsheet that contains notes about schema errors. The notes are displayed on Looker dashboards.
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable start_date Date Yes end_date Date Yes document_namespace String Yes document_type String Yes path String Yes notes String Yes bug String Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#normal_distribution","title":"normal_distribution","text":"static.normal_distribution
Schema Column Description Type Nullable score Numeric Yes value Numeric Yes Source Directory
"},{"location":"mozdata/static/#normalized_os_name","title":"normalized_os_name","text":"static.normalized_os_name
Schema Column Description Type Nullable os_name String Yes normalized_os_name String Yes Source Directory
"},{"location":"mozdata/static/#normalized_os_version","title":"normalized_os_version","text":"static.normalized_os_version
Schema Column Description Type Nullable os_name String Yes os_version_regexp String Yes normalized_os_name String Yes normalized_os_version String Yes release_date String Yes Source Directory
"},{"location":"mozdata/static/#third_party_standardized_country_names","title":"third_party_standardized_country_names","text":"static.third_party_standardized_country_names
Schema Column Description Type Nullable raw_country String Yes standardized_country String Yes Source Directory
"},{"location":"mozdata/stripe/","title":"Stripe","text":"Views related to data extracted from payment provider Stripe
Source Directory
"},{"location":"mozdata/stripe/#itemized_payout_reconciliation","title":"itemized_payout_reconciliation","text":"Itemized Payout Reconciliation
stripe.itemized_payout_reconciliation
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/stripe/#itemized_tax_transactions","title":"itemized_tax_transactions","text":"Itemized Tax Transactions
stripe.itemized_tax_transactions
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod stripe_external itemized_tax_transactions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/stub_attribution_service/","title":"Stub Attribution Service","text":"Stub attribution service data, usually from the logs.
Source Directory
"},{"location":"mozdata/stub_attribution_service/#dl_token_ga_attribution_lookup","title":"dl_token_ga_attribution_lookup","text":"Dl Token Ga Attribution Lookup
stub_attribution_service.dl_token_ga_attribution_lookup
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod stub_attribution_service_derived dl_token_ga_attribution_lookup_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/","title":"Subscription Platform","text":"Combined subscription information from multiple products and payment platforms; see bug 1703340
Source Directory
"},{"location":"mozdata/subscription_platform/#active_subscriptions","title":"active_subscriptions","text":"Active Subscriptions
subscription_platform.active_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes plan_id String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes promotion_codes String No promotion_discounts_amount Integer Yes count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived active_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#apple_subscriptions","title":"apple_subscriptions","text":"Apple Subscriptions
subscription_platform.apple_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes subscription_id String Yes original_subscription_id String Yes plan_id String Yes status String Yes event_timestamp Timestamp Yes subscription_start_date Timestamp Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes cancel_at_period_end Boolean Yes ended_at Timestamp Yes ended_reason String Yes fxa_uid String Yes provider String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes product_id String Yes in_billing_grace_period Boolean Yes billing_grace_period Interval Yes promotion_codes String No Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived apple_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#daily_active_logical_subscriptions","title":"daily_active_logical_subscriptions","text":"Daily Active Logical Subscriptions
subscription_platform.daily_active_logical_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable id String Yes date Date Yes logical_subscriptions_history_id String Yes subscription Record Yes was_active_at_day_start Boolean Yes was_active_at_day_end Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived daily_active_logical_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#logical_subscription_events","title":"logical_subscription_events","text":"Logical Subscription Events
subscription_platform.logical_subscription_events
Please provide a description for the query
Schema Column Description Type Nullable id String Yes timestamp Timestamp Yes type String Yes reason String Yes logical_subscriptions_history_id String Yes subscription Record Yes old_subscription Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived logical_subscription_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#logical_subscriptions","title":"logical_subscriptions","text":"Logical Subscriptions
subscription_platform.logical_subscriptions
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived logical_subscriptions_history_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#monthly_active_logical_subscriptions","title":"monthly_active_logical_subscriptions","text":"Monthly Active Logical Subscriptions
subscription_platform.monthly_active_logical_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable id String Yes month_start_date Date Yes month_end_date Date Yes logical_subscriptions_history_id String Yes subscription Record Yes was_active_at_month_start Boolean Yes was_active_at_month_end Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived monthly_active_logical_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#nonprod_apple_subscriptions","title":"nonprod_apple_subscriptions","text":"Nonprod Apple Subscriptions
subscription_platform.nonprod_apple_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes subscription_id String Yes original_subscription_id String Yes plan_id String Yes status String Yes event_timestamp Timestamp Yes subscription_start_date Timestamp Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes cancel_at_period_end Boolean Yes ended_at Timestamp Yes ended_reason String Yes fxa_uid String Yes provider String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes product_id String Yes in_billing_grace_period Boolean Yes billing_grace_period Interval Yes promotion_codes String No Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived nonprod_apple_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#nonprod_stripe_subscriptions","title":"nonprod_stripe_subscriptions","text":"Nonprod Stripe Subscriptions
subscription_platform.nonprod_stripe_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes fxa_uid String Yes subscription_id String Yes subscription_item_id String Yes event_timestamp Timestamp Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes subscription_start_date Timestamp Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes ended_at Timestamp Yes status String Yes product_id String Yes product_name String Yes product_capabilities String No plan_id String Yes plan_started_at Timestamp Yes plan_ended_at Timestamp Yes plan_name String Yes plan_capabilities String No plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes provider String Yes country String Yes promotion_codes String No promotion_discounts_amount Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived nonprod_stripe_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#nonprod_stripe_subscriptions_history","title":"nonprod_stripe_subscriptions_history","text":"Nonprod Stripe Subscriptions History
subscription_platform.nonprod_stripe_subscriptions_history
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes fxa_uid String Yes subscription_id String Yes subscription_item_id String Yes synced_at Timestamp Yes valid_from Timestamp Yes valid_to Timestamp Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes subscription_start_date Timestamp Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes ended_at Timestamp Yes status String Yes product_id String Yes product_name String Yes product_capabilities String No plan_id String Yes plan_started_at Timestamp Yes plan_ended_at Timestamp Yes plan_name String Yes plan_capabilities String No plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes provider String Yes country String Yes promotion_codes String No promotion_discounts_amount Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived nonprod_stripe_subscriptions_history_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#stripe_plans","title":"stripe_plans","text":"Stripe Plans
subscription_platform.stripe_plans
Please provide a description for the query
Schema Column Description Type Nullable id Unique identifier for the plan. String Yes product_id ID of the product whose pricing this plan determines. String Yes created Time at which the plan was created. Timestamp Yes is_deleted Whether the plan is deleted. Boolean Yes active Whether the plan can be used for new purchases. Boolean Yes aggregate_usage Specifies a usage aggregation strategy for plans of `usage_type` = \"metered\". Allowed values are \"sum\" for summing up all usage during a period, \"last_during_period\" for using the last usage record reported within a period, \"last_ever\" for using the last usage record ever (across period bounds) or \"max\" which uses the usage record with the maximum reported usage during a period. String Yes amount The unit amount in cents to be charged, represented as a whole integer if possible. Only set if `billing_scheme` = \"per_unit\". Integer Yes billing_scheme Describes how to compute the price per period. Either \"per_unit\" or \"tiered\". \"per_unit\" indicates that the fixed amount (specified in `amount`) will be charged per unit in `quantity` (for plans with `usage_type` = \"licensed\"), or per unit of total usage (for plans with `usage_type` = \"metered\"). \"tiered\" indicates that the unit pricing will be computed using a tiering strategy as defined using the `tiers` and `tiers_mode` attributes. String Yes currency Three-letter ISO currency code, in lowercase. String Yes interval The frequency at which a subscription is billed. One of \"day\", \"week\", \"month\", or \"year\". String Yes interval_count The number of intervals (specified in the `interval` attribute) between subscription billings. Integer Yes metadata Set of key-value pairs attached to the plan, stored as a JSON object. Json Yes nickname A brief description of the plan, hidden from customers. String Yes tiers_mode Defines if the tiering price should be \"graduated\" or \"volume\". In volume-based tiering, the maximum quantity within a period determines the per unit price. In graduated tiering, pricing can change as the quantity grows. String Yes trial_period_days Default number of trial days when subscribing a customer to this plan using `trial_from_plan=true`. Integer Yes usage_type Configures how the quantity per period should be determined. Can be either \"metered\" or \"licensed\". \"licensed\" automatically bills the `quantity` set when adding it to a subscription. \"metered\" aggregates the total usage based on usage records. Defaults to \"licensed\". String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived stripe_plans_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#stripe_products","title":"stripe_products","text":"Stripe Products
subscription_platform.stripe_products
Please provide a description for the query
Schema Column Description Type Nullable id Unique identifier for the product. String Yes created Time at which the product was created. Timestamp Yes updated Time at which the product was last updated. Timestamp Yes is_deleted Whether the product is deleted. Boolean Yes active Whether the product is currently available for purchase. Boolean Yes description The product's description, meant to be displayable to the customer. String Yes metadata Set of key-value pairs attached to the product, stored as a JSON object. Json Yes name The product's name, meant to be displayable to the customer. String Yes statement_descriptor Extra information about a product which will appear on your customer's credit card statement. String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived stripe_products_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#stripe_subscriptions","title":"stripe_subscriptions","text":"Stripe Subscriptions
subscription_platform.stripe_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes fxa_uid String Yes subscription_id String Yes subscription_item_id String Yes event_timestamp Timestamp Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes subscription_start_date Timestamp Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes ended_at Timestamp Yes status String Yes product_id String Yes product_name String Yes product_capabilities String No plan_id String Yes plan_started_at Timestamp Yes plan_ended_at Timestamp Yes plan_name String Yes plan_capabilities String No plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes provider String Yes country String Yes promotion_codes String No promotion_discounts_amount Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived stripe_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#stripe_subscriptions_history","title":"stripe_subscriptions_history","text":"Stripe Subscriptions History
subscription_platform.stripe_subscriptions_history
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes fxa_uid String Yes subscription_id String Yes subscription_item_id String Yes synced_at Timestamp Yes valid_from Timestamp Yes valid_to Timestamp Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes subscription_start_date Timestamp Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes ended_at Timestamp Yes status String Yes product_id String Yes product_name String Yes product_capabilities String No plan_id String Yes plan_started_at Timestamp Yes plan_ended_at Timestamp Yes plan_name String Yes plan_capabilities String No plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes provider String Yes country String Yes promotion_codes String No promotion_discounts_amount Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived stripe_subscriptions_history_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/","title":"Telemetry","text":"Views on data from legacy Firefox telemetry, plus many other general-purpose datasets
Source Directory
"},{"location":"mozdata/telemetry/#accessibility_clients","title":"accessibility_clients","text":"Accessibility Clients
telemetry.accessibility_clients
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes nvda Integer Yes jaws Integer Yes oldjaws Integer Yes we Integer Yes dolphin Integer Yes serotek Integer Yes cobra Integer Yes zoomtext Integer Yes kazaguru Integer Yes youdao Integer Yes unknown Integer Yes uiautomation Integer Yes visperoshared Integer Yes magnifier Integer Yes narrator Integer Yes on_screen_keyboard Integer Yes speech_recognition Integer Yes touch_keyboard_and_handwriting_panel Integer Yes voice_over Integer Yes other Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived accessibility_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#active_profiles","title":"active_profiles","text":"Active Profiles
telemetry.active_profiles
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes recency Integer Yes frequency Integer Yes num_opportunities Integer Yes max_day String Yes min_day String Yes locale String Yes normalized_channel String Yes os String Yes normalized_os_version String Yes country String Yes prob_active Float Yes e_total_days_in_next_7_days Float Yes e_total_days_in_next_14_days Float Yes e_total_days_in_next_21_days Float Yes e_total_days_in_next_28_days Float Yes prob_daily_usage Float Yes prob_daily_leave Float Yes prob_mau Float Yes sample_id Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived active_profiles_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
telemetry.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop active_users_aggregates moz-fx-data-shared-prod telemetry active_users_aggregates_mobile Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#active_users_aggregates_attribution","title":"active_users_aggregates_attribution","text":"Active Users Aggregates Attribution
telemetry.active_users_aggregates_attribution
Please provide a description for the query
Schema Column Description Type Nullable attribution_campaign String Yes attribution_content String Yes attribution_experiment String Yes attribution_medium String Yes attribution_source String Yes attribution_variation String Yes city String Yes country String Yes first_seen_year Integer Yes is_default_browser Boolean Yes app_name String Yes submission_date Date Yes dau Integer Yes wau Integer Yes mau Integer Yes new_profiles Integer Yes ad_clicks Integer Yes organic_search_count Integer Yes search_count Integer Yes search_with_ads Integer Yes uri_count Integer Yes active_hours Float Yes attributed Boolean Yes adjust_network The type of source of a client installation String Yes install_source The source of a client installation String Yes qdau_desktop Count of distinct, qualified Desktop clients that we received a main ping from on a given day. In mobile DAU = QDAU. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived active_users_aggregates_attribution_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#active_users_aggregates_device","title":"active_users_aggregates_device","text":"Active Users Aggregates Device
telemetry.active_users_aggregates_device
Please provide a description for the query
Schema Column Description Type Nullable app_version String Yes attributed Boolean Yes attribution_medium String Yes attribution_source String Yes country String Yes device_model String Yes first_seen_year Integer Yes is_default_browser Boolean Yes app_name String Yes channel String Yes os String Yes os_version String Yes os_version_major Integer Yes os_version_minor Integer Yes submission_date Date Yes dau Integer Yes wau Integer Yes mau Integer Yes new_profiles Integer Yes ad_clicks Integer Yes organic_search_count Integer Yes search_count Integer Yes search_with_ads Integer Yes uri_count Integer Yes active_hours Float Yes qdau_desktop Count of distinct, qualified Desktop clients that we received a main ping from on a given day. In mobile DAU = QDAU. Integer Yes os_grouped String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived active_users_aggregates_device_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#active_users_aggregates_mobile","title":"active_users_aggregates_mobile","text":"Active Users Aggregates Mobile
telemetry.active_users_aggregates_mobile
Please provide a description for the query
Referenced Tables Project Dataset Table 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_ios active_users_aggregates Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addon_aggregates","title":"addon_aggregates","text":"Addon Aggregates
telemetry.addon_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry addon_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addon_aggregates_v2","title":"addon_aggregates_v2","text":"Addon Aggregates V2
telemetry.addon_aggregates_v2
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes sample_id Integer Yes client_id String Yes normalized_channel String Yes app_version String Yes locale String Yes n_self_installed_addons Integer Yes n_shield_addons Integer Yes n_foreign_installed_addons Integer Yes n_system_addons Integer Yes n_web_extensions Integer Yes first_addon_install_date String Yes profile_creation_date String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived addon_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addon_install_blocked","title":"addon_install_blocked","text":"Historical Pings for telemetry/addon-install-blocked
telemetry.addon_install_blocked
A historical view of pings sent for the telemetry/addon-install-blocked
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable addon_install_blocked_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addon_names","title":"addon_names","text":"Addon Names
telemetry.addon_names
Please provide a description for the query
Schema Column Description Type Nullable addon_id String Yes addon_name String Yes occurrences Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived addon_names_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addons","title":"addons","text":"Addons
telemetry.addons
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes sample_id Integer Yes document_id String Yes client_id String Yes subsession_start_date String Yes normalized_channel String Yes addon_id String Yes blocklisted Boolean Yes name String Yes user_disabled Boolean Yes app_disabled Boolean Yes version String Yes scope Integer Yes type String Yes foreign_install Boolean Yes has_binary_components Boolean Yes install_day Integer Yes update_day Integer Yes signed_state Integer Yes is_system Boolean Yes is_web_extension Boolean Yes multiprocess_compatible Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived addons_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addons_daily","title":"addons_daily","text":"Addons Daily
telemetry.addons_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes addon_id String Yes name String Yes most_common_default_search_engine String Yes dau Integer Yes wau Integer Yes mau Integer Yes is_system Boolean Yes active_hours_sum Float Yes total_uri_count_sum Integer Yes tab_open_event_count_sum Integer Yes devtools_toolbox_opened_count_sum Integer Yes sap_searches Record Yes tagged_sap_searches Record Yes tagged_follow_on_searches Record Yes organic_searches Record Yes searches_with_ads Record Yes ad_clicks Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived addons_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addons_v2","title":"addons_v2","text":"Addons V2
telemetry.addons_v2
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes sample_id Integer Yes document_id String Yes client_id String Yes subsession_start_date String Yes normalized_channel String Yes addon_id String Yes blocklisted Boolean Yes name String Yes user_disabled Boolean Yes app_disabled Boolean Yes version String Yes scope Integer Yes type String Yes foreign_install Boolean Yes has_binary_components Boolean Yes install_day Integer Yes update_day Integer Yes signed_state Integer Yes is_system Boolean Yes is_web_extension Boolean Yes multiprocess_compatible Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived addons_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#adm_engagements_daily","title":"adm_engagements_daily","text":"Adm Engagements Daily
telemetry.adm_engagements_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes country String Yes placement String Yes partner String Yes version String Yes normalized_channel String Yes n_engagements Integer Yes interaction String Yes phase String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived adm_engagements_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#advancedtelemetry","title":"advancedtelemetry","text":"Historical Pings for telemetry/advancedtelemetry
telemetry.advancedtelemetry
A historical view of pings sent for the telemetry/advancedtelemetry
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable advancedtelemetry_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#anonymous","title":"anonymous","text":"Historical Pings for telemetry/anonymous
telemetry.anonymous
A historical view of pings sent for the telemetry/anonymous
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable anonymous_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#applications","title":"applications","text":"Applications
telemetry.applications
Please provide a description for the query
Schema Column Description Type Nullable app_channel App Channel String Yes app_description App Description String Yes app_id App ID String Yes app_name App Name String Yes bq_dataset_family Dataset name ping data is stored in String Yes canonical_app_name Human readable app name String Yes document_namespace Document Namespace String Yes notification_emails Set of emails that will receive any app-related notifications String No url Repository URL String Yes v1_name V1 App Name String Yes is_glean Whether the application is using Glean Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived applications_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#bhr","title":"bhr","text":"Historical Pings for telemetry/bhr
telemetry.bhr
A historical view of pings sent for the telemetry/bhr
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes application Record Yes client_id String Yes creation_date String Yes environment Record Yes id String Yes payload Record Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable bhr_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#block_autoplay","title":"block_autoplay","text":"Historical Pings for telemetry/block-autoplay
telemetry.block_autoplay
A historical view of pings sent for the telemetry/block-autoplay
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable block_autoplay_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#buildhub2","title":"buildhub2","text":"Buildhub2
telemetry.buildhub2
Please provide a description for the query
Schema Column Description Type Nullable build_hash String Yes build Record Yes metadata Record Yes created_at Timestamp Yes s3_object_key String Yes s3_object_etag String Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-buildhub2-prod-4784 build_metadata buildhub2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#certificate_checker","title":"certificate_checker","text":"Historical Pings for telemetry/certificate-checker
telemetry.certificate_checker
A historical view of pings sent for the telemetry/certificate-checker
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable certificate_checker_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#client_probe_counts","title":"client_probe_counts","text":"Client Probe Counts
telemetry.client_probe_counts
Please provide a description for the query
Schema Column Description Type Nullable os String Yes app_version Integer Yes app_build_id String Yes channel String Yes metric String Yes metric_type String Yes key String Yes process String Yes first_bucket Integer Yes last_bucket Integer Yes num_buckets Integer Yes client_agg_type String Yes agg_type String Yes total_users Integer Yes aggregates Record No non_norm_aggregates Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_histogram_probe_counts_v1 moz-fx-data-shared-prod telemetry_derived clients_scalar_probe_counts_v1 moz-fx-data-shared-prod telemetry_derived histogram_percentiles_v1 moz-fx-data-shared-prod telemetry_derived scalar_percentiles_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#client_probe_processes","title":"client_probe_processes","text":"Client Probe Processes
telemetry.client_probe_processes
Please provide a description for the query
Schema Column Description Type Nullable metric String Yes processes String No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived client_probe_processes_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_daily","title":"clients_daily","text":"Clients Daily
telemetry.clients_daily
A daily aggregate of main and event pings from each Firefox desktop client.
Clustering fields: normalized_channel
, sample_id
See also: clients_last_seen
, clients_first_seen
- Owners:
- dthorn@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry clients_daily_v6 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_daily_histogram_aggregates","title":"clients_daily_histogram_aggregates","text":"Clients Daily Histogram Aggregates
telemetry.clients_daily_histogram_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_daily_histogram_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_daily_scalar_aggregates","title":"clients_daily_scalar_aggregates","text":"Clients Daily Scalar Aggregates
telemetry.clients_daily_scalar_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_daily_scalar_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_daily_v6","title":"clients_daily_v6","text":"Clients Daily V6
telemetry.clients_daily_v6
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes client_id String Yes aborts_content_sum Integer Yes aborts_gmplugin_sum Integer Yes aborts_plugin_sum Integer Yes active_addons_count_mean Float Yes active_addons Record No active_hours_sum Float Yes addon_compatibility_check_enabled Boolean Yes app_build_id String Yes app_display_version String Yes app_name String Yes app_version String Yes attribution Record Yes blocklist_enabled Boolean Yes channel String Yes client_clock_skew_mean Float Yes client_submission_latency_mean Float Yes cpu_cores Integer Yes cpu_count Integer Yes cpu_family Integer Yes cpu_l2_cache_kb Integer Yes cpu_l3_cache_kb Integer Yes cpu_model Integer Yes cpu_speed_mhz Integer Yes cpu_stepping Integer Yes cpu_vendor String Yes crashes_detected_content_sum Integer Yes crashes_detected_gmplugin_sum Integer Yes crashes_detected_plugin_sum Integer Yes crash_submit_attempt_content_sum Integer Yes crash_submit_attempt_main_sum Integer Yes crash_submit_attempt_plugin_sum Integer Yes crash_submit_success_content_sum Integer Yes crash_submit_success_main_sum Integer Yes crash_submit_success_plugin_sum Integer Yes default_search_engine String Yes default_search_engine_data_load_path String Yes default_search_engine_data_name String Yes default_search_engine_data_origin String Yes default_search_engine_data_submission_url String Yes devtools_toolbox_opened_count_sum Integer Yes distribution_id String Yes e10s_enabled Boolean Yes env_build_arch String Yes env_build_id String Yes env_build_version String Yes environment_settings_intl_accept_languages String No environment_settings_intl_app_locales String No environment_settings_intl_available_locales String No environment_settings_intl_requested_locales String No environment_settings_intl_system_locales String No environment_settings_intl_regional_prefs_locales String No experiments Record No first_paint_mean Float Yes flash_version String Yes country String Yes city String Yes geo_subdivision1 String Yes geo_subdivision2 String Yes isp_name String Yes isp_organization String Yes gfx_features_advanced_layers_status String Yes gfx_features_d2d_status String Yes gfx_features_d3d11_status String Yes gfx_features_gpu_process_status String Yes histogram_parent_devtools_aboutdebugging_opened_count_sum Integer Yes histogram_parent_devtools_animationinspector_opened_count_sum Integer Yes histogram_parent_devtools_browserconsole_opened_count_sum Integer Yes histogram_parent_devtools_canvasdebugger_opened_count_sum Integer Yes histogram_parent_devtools_computedview_opened_count_sum Integer Yes histogram_parent_devtools_custom_opened_count_sum Integer Yes histogram_parent_devtools_dom_opened_count_sum Integer Yes histogram_parent_devtools_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_fontinspector_opened_count_sum Integer Yes histogram_parent_devtools_inspector_opened_count_sum Integer Yes histogram_parent_devtools_jsbrowserdebugger_opened_count_sum Integer Yes histogram_parent_devtools_jsdebugger_opened_count_sum Integer Yes histogram_parent_devtools_jsprofiler_opened_count_sum Integer Yes histogram_parent_devtools_layoutview_opened_count_sum Integer Yes histogram_parent_devtools_memory_opened_count_sum Integer Yes histogram_parent_devtools_menu_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_netmonitor_opened_count_sum Integer Yes histogram_parent_devtools_options_opened_count_sum Integer Yes histogram_parent_devtools_paintflashing_opened_count_sum Integer Yes histogram_parent_devtools_picker_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_responsive_opened_count_sum Integer Yes histogram_parent_devtools_ruleview_opened_count_sum Integer Yes histogram_parent_devtools_scratchpad_opened_count_sum Integer Yes histogram_parent_devtools_scratchpad_window_opened_count_sum Integer Yes histogram_parent_devtools_shadereditor_opened_count_sum Integer Yes histogram_parent_devtools_storage_opened_count_sum Integer Yes histogram_parent_devtools_styleeditor_opened_count_sum Integer Yes histogram_parent_devtools_webaudioeditor_opened_count_sum Integer Yes histogram_parent_devtools_webconsole_opened_count_sum Integer Yes histogram_parent_devtools_webide_opened_count_sum Integer Yes install_year Integer Yes is_default_browser Boolean Yes is_wow64 Boolean Yes locale String Yes memory_mb Integer Yes normalized_channel String Yes normalized_os_version String Yes os String Yes os_service_pack_major Integer Yes os_service_pack_minor Integer Yes os_version String Yes pings_aggregated_by_this_row Integer Yes places_bookmarks_count_mean Float Yes places_pages_count_mean Float Yes plugin_hangs_sum Integer Yes plugins_infobar_allow_sum Integer Yes plugins_infobar_block_sum Integer Yes plugins_infobar_shown_sum Integer Yes plugins_notification_shown_sum Integer Yes previous_build_id String Yes profile_age_in_days Integer Yes profile_creation_date String Yes push_api_notify_sum Integer Yes sample_id Integer Yes sandbox_effective_content_process_level Integer Yes scalar_combined_webrtc_nicer_stun_retransmits_sum Integer Yes scalar_combined_webrtc_nicer_turn_401s_sum Integer Yes scalar_combined_webrtc_nicer_turn_403s_sum Integer Yes scalar_combined_webrtc_nicer_turn_438s_sum Integer Yes scalar_content_navigator_storage_estimate_count_sum Integer Yes scalar_content_navigator_storage_persist_count_sum Integer Yes scalar_parent_aushelper_websense_reg_version String Yes scalar_parent_browser_engagement_max_concurrent_tab_count_max Integer Yes scalar_parent_browser_engagement_max_concurrent_window_count_max Integer Yes scalar_parent_browser_engagement_tab_open_event_count_sum Integer Yes scalar_parent_browser_engagement_total_uri_count_sum Integer Yes scalar_parent_browser_engagement_unfiltered_uri_count_sum Integer Yes scalar_parent_browser_engagement_unique_domains_count_max Integer Yes scalar_parent_browser_engagement_unique_domains_count_mean Float Yes scalar_parent_browser_engagement_window_open_event_count_sum Integer Yes scalar_parent_devtools_accessibility_node_inspected_count_sum Integer Yes scalar_parent_devtools_accessibility_opened_count_sum Integer Yes scalar_parent_devtools_accessibility_picker_used_count_sum Integer Yes scalar_parent_devtools_accessibility_select_accessible_for_node_sum Record No scalar_parent_devtools_accessibility_service_enabled_count_sum Integer Yes scalar_parent_devtools_copy_full_css_selector_opened_sum Integer Yes scalar_parent_devtools_copy_unique_css_selector_opened_sum Integer Yes scalar_parent_devtools_toolbar_eyedropper_opened_sum Integer Yes scalar_parent_navigator_storage_estimate_count_sum Integer Yes scalar_parent_navigator_storage_persist_count_sum Integer Yes scalar_parent_storage_sync_api_usage_extensions_using_sum Integer Yes search_cohort String Yes search_count_abouthome Integer Yes search_count_contextmenu Integer Yes search_count_newtab Integer Yes search_count_searchbar Integer Yes search_count_system Integer Yes search_count_urlbar Integer Yes search_count_all Integer Yes search_count_tagged_sap Integer Yes search_count_tagged_follow_on Integer Yes search_count_organic Integer Yes search_count_urlbar_handoff Integer Yes session_restored_mean Float Yes sessions_started_on_this_day Integer Yes shutdown_kill_sum Integer Yes subsession_hours_sum Numeric Yes ssl_handshake_result_failure_sum Integer Yes ssl_handshake_result_success_sum Integer Yes sync_configured Boolean Yes sync_count_desktop_mean Float Yes sync_count_mobile_mean Float Yes sync_count_desktop_sum Integer Yes sync_count_mobile_sum Integer Yes telemetry_enabled Boolean Yes timezone_offset Integer Yes update_auto_download Boolean Yes update_channel String Yes update_enabled Boolean Yes vendor String Yes web_notification_shown_sum Integer Yes windows_build_number Integer Yes windows_ubr Integer Yes fxa_configured Boolean Yes trackers_blocked_sum Integer Yes submission_timestamp_min Timestamp Yes ad_clicks_count_all Integer Yes search_with_ads_count_all Integer Yes scalar_parent_urlbar_impression_autofill_about_sum Integer Yes scalar_parent_urlbar_impression_autofill_adaptive_sum Integer Yes scalar_parent_urlbar_impression_autofill_origin_sum Integer Yes scalar_parent_urlbar_impression_autofill_other_sum Integer Yes scalar_parent_urlbar_impression_autofill_preloaded_sum Integer Yes scalar_parent_urlbar_impression_autofill_url_sum Integer Yes scalar_parent_telemetry_event_counts_sum Record No scalar_content_telemetry_event_counts_sum Record No scalar_parent_urlbar_searchmode_bookmarkmenu_sum Record No scalar_parent_urlbar_searchmode_handoff_sum Record No scalar_parent_urlbar_searchmode_keywordoffer_sum Record No scalar_parent_urlbar_searchmode_oneoff_sum Record No scalar_parent_urlbar_searchmode_other_sum Record No scalar_parent_urlbar_searchmode_shortcut_sum Record No scalar_parent_urlbar_searchmode_tabmenu_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_onboard_sum Record No scalar_parent_urlbar_searchmode_topsites_newtab_sum Record No scalar_parent_urlbar_searchmode_topsites_urlbar_sum Record No scalar_parent_urlbar_searchmode_touchbar_sum Record No scalar_parent_urlbar_searchmode_typed_sum Record No scalar_parent_os_environment_is_taskbar_pinned Boolean Yes scalar_parent_os_environment_launched_via_desktop Boolean Yes scalar_parent_os_environment_launched_via_taskbar Boolean Yes scalar_parent_os_environment_launched_via_other Boolean Yes scalar_parent_os_environment_launched_via_start_menu Boolean Yes scalar_parent_os_environment_launched_via_other_shortcut Boolean Yes n_logged_event Integer Yes n_created_pictureinpicture Integer Yes n_viewed_protection_report Integer Yes search_count_webextension Integer Yes search_count_alias Integer Yes search_count_urlbar_searchmode Integer Yes scalar_parent_browser_ui_interaction_preferences_pane_home_sum Record No scalar_parent_urlbar_picked_autofill_sum Integer Yes scalar_parent_urlbar_picked_autofill_about_sum Integer Yes scalar_parent_urlbar_picked_autofill_adaptive_sum Integer Yes scalar_parent_urlbar_picked_autofill_origin_sum Integer Yes scalar_parent_urlbar_picked_autofill_other_sum Integer Yes scalar_parent_urlbar_picked_autofill_preloaded_sum Integer Yes scalar_parent_urlbar_picked_autofill_url_sum Integer Yes scalar_parent_urlbar_picked_bookmark_sum Integer Yes scalar_parent_urlbar_picked_dynamic_sum Integer Yes scalar_parent_urlbar_picked_extension_sum Integer Yes scalar_parent_urlbar_picked_formhistory_sum Integer Yes scalar_parent_urlbar_picked_history_sum Integer Yes scalar_parent_urlbar_picked_keyword_sum Integer Yes scalar_parent_urlbar_picked_remotetab_sum Integer Yes scalar_parent_urlbar_picked_searchengine_sum Integer Yes scalar_parent_urlbar_picked_searchsuggestion_sum Integer Yes scalar_parent_urlbar_picked_switchtab_sum Integer Yes scalar_parent_urlbar_picked_tabtosearch_sum Integer Yes scalar_parent_urlbar_picked_tip_sum Integer Yes scalar_parent_urlbar_picked_topsite_sum Integer Yes scalar_parent_urlbar_picked_unknown_sum Integer Yes scalar_parent_urlbar_picked_visiturl_sum Integer Yes default_private_search_engine String Yes default_private_search_engine_data_load_path String Yes default_private_search_engine_data_name String Yes default_private_search_engine_data_origin String Yes default_private_search_engine_data_submission_url String Yes search_counts Record No user_pref_browser_search_region String Yes search_with_ads Record No ad_clicks Record No search_content_urlbar_sum Record No search_content_urlbar_handoff_sum Record No search_content_urlbar_searchmode_sum Record No search_content_contextmenu_sum Record No search_content_about_home_sum Record No search_content_about_newtab_sum Record No search_content_searchbar_sum Record No search_content_system_sum Record No search_content_webextension_sum Record No search_content_tabhistory_sum Record No search_content_reload_sum Record No search_content_unknown_sum Record No search_withads_urlbar_sum Record No search_withads_urlbar_handoff_sum Record No search_withads_urlbar_searchmode_sum Record No search_withads_contextmenu_sum Record No search_withads_about_home_sum Record No search_withads_about_newtab_sum Record No search_withads_searchbar_sum Record No search_withads_system_sum Record No search_withads_webextension_sum Record No search_withads_tabhistory_sum Record No search_withads_reload_sum Record No search_withads_unknown_sum Record No search_adclicks_urlbar_sum Record No search_adclicks_urlbar_handoff_sum Record No search_adclicks_urlbar_searchmode_sum Record No search_adclicks_contextmenu_sum Record No search_adclicks_about_home_sum Record No search_adclicks_about_newtab_sum Record No search_adclicks_searchbar_sum Record No search_adclicks_system_sum Record No search_adclicks_webextension_sum Record No search_adclicks_tabhistory_sum Record No search_adclicks_reload_sum Record No search_adclicks_unknown_sum Record No update_background Boolean Yes user_pref_browser_search_suggest_enabled String Yes user_pref_browser_widget_in_navbar String Yes user_pref_browser_urlbar_suggest_searches String Yes user_pref_browser_urlbar_show_search_suggestions_first String Yes user_pref_browser_urlbar_suggest_quicksuggest String Yes user_pref_browser_urlbar_suggest_quicksuggest_sponsored String Yes first_seen_date Date Yes second_seen_date Date Yes user_pref_browser_urlbar_quicksuggest_onboarding_dialog_choice String Yes scalar_parent_browser_engagement_total_uri_count_normal_and_private_mode_sum Integer Yes user_pref_browser_newtabpage_enabled String Yes user_pref_app_shield_optoutstudies_enabled String Yes contextual_services_quicksuggest_click_sum Record No contextual_services_quicksuggest_impression_sum Record No contextual_services_quicksuggest_help_sum Record No contextual_services_topsites_click_sum Integer Yes contextual_services_topsites_impression_sum Integer Yes user_pref_browser_urlbar_suggest_quicksuggest_nonsponsored String Yes user_pref_browser_urlbar_quicksuggest_data_collection_enabled String Yes scalar_a11y_hcm_foreground Integer Yes scalar_a11y_hcm_background Integer Yes a11y_theme Record No contextual_services_quicksuggest_help_nonsponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_help_sponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_block_nonsponsored_sum Integer Yes contextual_services_quicksuggest_block_sponsored_sum Integer Yes contextual_services_quicksuggest_block_sponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_block_nonsponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_click_sponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_click_nonsponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_impression_sponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_impression_nonsponsored_bestmatch_sum Integer Yes user_pref_browser_urlbar_suggest_bestmatch String Yes scalar_parent_browser_ui_interaction_textrecognition_error_sum Integer Yes text_recognition_interaction_timing_sum Integer Yes text_recognition_interaction_timing_count_sum Integer Yes scalar_parent_browser_ui_interaction_content_context_sum Record No text_recognition_api_performance_sum Integer Yes text_recognition_api_performance_count_sum Integer Yes text_recognition_text_length_sum Integer Yes text_recognition_text_length_count_sum Integer Yes scalar_parent_os_environment_launched_via_taskbar_private Boolean Yes dom_parentprocess_private_window_used Boolean Yes os_environment_is_taskbar_pinned_any Boolean Yes os_environment_is_taskbar_pinned_private_any Boolean Yes os_environment_is_taskbar_pinned_private Boolean Yes bookmark_migrations_quantity_chrome Integer Yes bookmark_migrations_quantity_edge Integer Yes bookmark_migrations_quantity_safari Integer Yes bookmark_migrations_quantity_all Integer Yes history_migrations_quantity_chrome Integer Yes history_migrations_quantity_edge Integer Yes history_migrations_quantity_safari Integer Yes history_migrations_quantity_all Integer Yes logins_migrations_quantity_chrome Integer Yes logins_migrations_quantity_edge Integer Yes logins_migrations_quantity_safari Integer Yes logins_migrations_quantity_all Integer Yes main_crash_count Integer Yes content_crash_count Integer Yes gpu_crash_count Integer Yes rdd_crash_count Integer Yes socket_crash_count Integer Yes utility_crash_count Integer Yes vr_crash_count Integer Yes search_count_urlbar_persisted Integer Yes search_content_urlbar_persisted_sum Record No search_withads_urlbar_persisted_sum Record No search_adclicks_urlbar_persisted_sum Record No media_play_time_ms_audio_sum Integer Yes media_play_time_ms_video_sum Integer Yes contextual_services_quicksuggest_block_dynamic_wikipedia_sum Integer Yes contextual_services_quicksuggest_block_weather_sum Integer Yes contextual_services_quicksuggest_click_dynamic_wikipedia_sum Integer Yes contextual_services_quicksuggest_click_nonsponsored_sum Integer Yes contextual_services_quicksuggest_click_sponsored_sum Integer Yes contextual_services_quicksuggest_click_weather_sum Integer Yes contextual_services_quicksuggest_help_dynamic_wikipedia_sum Integer Yes contextual_services_quicksuggest_help_nonsponsored_sum Integer Yes contextual_services_quicksuggest_help_sponsored_sum Integer Yes contextual_services_quicksuggest_help_weather_sum Integer Yes contextual_services_quicksuggest_impression_dynamic_wikipedia_sum Integer Yes contextual_services_quicksuggest_impression_nonsponsored_sum Integer Yes contextual_services_quicksuggest_impression_sponsored_sum Integer Yes contextual_services_quicksuggest_impression_weather_sum Integer Yes scalar_parent_sidebar_opened_sum Record No scalar_parent_sidebar_search_sum Record No scalar_parent_sidebar_link_sum Record No places_searchbar_cumulative_searches_sum Integer Yes places_searchbar_cumulative_filter_count_sum Integer Yes places_previousday_visits_mean Float Yes places_library_cumulative_bookmark_searches_sum Integer Yes places_library_cumulative_history_searches_sum Integer Yes places_bookmarks_searchbar_cumulative_searches_sum Integer Yes scalar_parent_library_link_sum Record No scalar_parent_library_opened_sum Record No scalar_parent_library_search_sum Record No startup_profile_selection_reason_first String Yes first_document_id String Yes partner_id String Yes distribution_version String Yes distributor String Yes distributor_channel String Yes env_build_platform_version String Yes env_build_xpcom_abi String Yes geo_db_version String Yes apple_model_id String Yes max_subsession_counter Integer Yes min_subsession_counter Integer Yes startup_profile_selection_first_ping_only String Yes browser_version_info Record Yes total_uri_count Integer Yes total_uri_count_normal_mode Integer Yes total_uri_count_private_mode Integer Yes has_adblocker_enabled Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_daily_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_first_seen","title":"clients_first_seen","text":"Clients First Seen
telemetry.clients_first_seen
Identical in schema to clients_daily
except that each client appears only once over all time; includes fields first_seen_date
and second_seen_date
for determining user \"activation\".
Note that first_seen_date
and second_seen_date
are also pulled into clients_last_seen
to avoid needing to join with this view. Use this view directly only when you're investigating client activation questions.
Clustering fields: normalized_channel
, sample_id
See also: clients_daily
, clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable first_seen_date Date Yes second_seen_date Date Yes client_id String Yes aborts_content_sum Integer Yes aborts_gmplugin_sum Integer Yes aborts_plugin_sum Integer Yes active_addons_count_mean Float Yes active_addons Record No active_experiment_branch String Yes active_experiment_id String Yes active_hours_sum Float Yes addon_compatibility_check_enabled Boolean Yes app_build_id String Yes app_display_version String Yes app_name String Yes app_version String Yes attribution Record Yes blocklist_enabled Boolean Yes channel String Yes client_clock_skew_mean Float Yes client_submission_latency_mean Float Yes cpu_cores Integer Yes cpu_count Integer Yes cpu_family Integer Yes cpu_l2_cache_kb Integer Yes cpu_l3_cache_kb Integer Yes cpu_model Integer Yes cpu_speed_mhz Integer Yes cpu_stepping Integer Yes cpu_vendor String Yes crashes_detected_content_sum Integer Yes crashes_detected_gmplugin_sum Integer Yes crashes_detected_plugin_sum Integer Yes crash_submit_attempt_content_sum Integer Yes crash_submit_attempt_main_sum Integer Yes crash_submit_attempt_plugin_sum Integer Yes crash_submit_success_content_sum Integer Yes crash_submit_success_main_sum Integer Yes crash_submit_success_plugin_sum Integer Yes default_search_engine String Yes default_search_engine_data_load_path String Yes default_search_engine_data_name String Yes default_search_engine_data_origin String Yes default_search_engine_data_submission_url String Yes devtools_toolbox_opened_count_sum Integer Yes distribution_id String Yes e10s_enabled Boolean Yes env_build_arch String Yes env_build_id String Yes env_build_version String Yes environment_settings_intl_accept_languages String No environment_settings_intl_app_locales String No environment_settings_intl_available_locales String No environment_settings_intl_requested_locales String No environment_settings_intl_system_locales String No environment_settings_intl_regional_prefs_locales String No experiments Record No first_paint_mean Float Yes flash_version String Yes country String Yes city String Yes geo_subdivision1 String Yes geo_subdivision2 String Yes isp_name String Yes isp_organization String Yes gfx_features_advanced_layers_status String Yes gfx_features_d2d_status String Yes gfx_features_d3d11_status String Yes gfx_features_gpu_process_status String Yes histogram_parent_devtools_aboutdebugging_opened_count_sum Integer Yes histogram_parent_devtools_animationinspector_opened_count_sum Integer Yes histogram_parent_devtools_browserconsole_opened_count_sum Integer Yes histogram_parent_devtools_canvasdebugger_opened_count_sum Integer Yes histogram_parent_devtools_computedview_opened_count_sum Integer Yes histogram_parent_devtools_custom_opened_count_sum Integer Yes histogram_parent_devtools_developertoolbar_opened_count_sum Integer Yes histogram_parent_devtools_dom_opened_count_sum Integer Yes histogram_parent_devtools_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_fontinspector_opened_count_sum Integer Yes histogram_parent_devtools_inspector_opened_count_sum Integer Yes histogram_parent_devtools_jsbrowserdebugger_opened_count_sum Integer Yes histogram_parent_devtools_jsdebugger_opened_count_sum Integer Yes histogram_parent_devtools_jsprofiler_opened_count_sum Integer Yes histogram_parent_devtools_layoutview_opened_count_sum Integer Yes histogram_parent_devtools_memory_opened_count_sum Integer Yes histogram_parent_devtools_menu_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_netmonitor_opened_count_sum Integer Yes histogram_parent_devtools_options_opened_count_sum Integer Yes histogram_parent_devtools_paintflashing_opened_count_sum Integer Yes histogram_parent_devtools_picker_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_responsive_opened_count_sum Integer Yes histogram_parent_devtools_ruleview_opened_count_sum Integer Yes histogram_parent_devtools_scratchpad_opened_count_sum Integer Yes histogram_parent_devtools_scratchpad_window_opened_count_sum Integer Yes histogram_parent_devtools_shadereditor_opened_count_sum Integer Yes histogram_parent_devtools_storage_opened_count_sum Integer Yes histogram_parent_devtools_styleeditor_opened_count_sum Integer Yes histogram_parent_devtools_webaudioeditor_opened_count_sum Integer Yes histogram_parent_devtools_webconsole_opened_count_sum Integer Yes histogram_parent_devtools_webide_opened_count_sum Integer Yes install_year Integer Yes is_default_browser Boolean Yes is_wow64 Boolean Yes locale String Yes memory_mb Integer Yes normalized_channel String Yes normalized_os_version String Yes os String Yes os_service_pack_major Integer Yes os_service_pack_minor Integer Yes os_version String Yes pings_aggregated_by_this_row Integer Yes places_bookmarks_count_mean Float Yes places_pages_count_mean Float Yes plugin_hangs_sum Integer Yes plugins_infobar_allow_sum Integer Yes plugins_infobar_block_sum Integer Yes plugins_infobar_shown_sum Integer Yes plugins_notification_shown_sum Integer Yes previous_build_id String Yes profile_age_in_days Integer Yes profile_creation_date String Yes push_api_notify_sum Integer Yes sample_id Integer Yes sandbox_effective_content_process_level Integer Yes scalar_combined_webrtc_nicer_stun_retransmits_sum Integer Yes scalar_combined_webrtc_nicer_turn_401s_sum Integer Yes scalar_combined_webrtc_nicer_turn_403s_sum Integer Yes scalar_combined_webrtc_nicer_turn_438s_sum Integer Yes scalar_content_navigator_storage_estimate_count_sum Integer Yes scalar_content_navigator_storage_persist_count_sum Integer Yes scalar_parent_aushelper_websense_reg_version String Yes scalar_parent_browser_engagement_max_concurrent_tab_count_max Integer Yes scalar_parent_browser_engagement_max_concurrent_window_count_max Integer Yes scalar_parent_browser_engagement_tab_open_event_count_sum Integer Yes scalar_parent_browser_engagement_total_uri_count_sum Integer Yes scalar_parent_browser_engagement_unfiltered_uri_count_sum Integer Yes scalar_parent_browser_engagement_unique_domains_count_max Integer Yes scalar_parent_browser_engagement_unique_domains_count_mean Float Yes scalar_parent_browser_engagement_window_open_event_count_sum Integer Yes scalar_parent_devtools_accessibility_node_inspected_count_sum Integer Yes scalar_parent_devtools_accessibility_opened_count_sum Integer Yes scalar_parent_devtools_accessibility_picker_used_count_sum Integer Yes scalar_parent_devtools_accessibility_select_accessible_for_node_sum Record No scalar_parent_devtools_accessibility_service_enabled_count_sum Integer Yes scalar_parent_devtools_copy_full_css_selector_opened_sum Integer Yes scalar_parent_devtools_copy_unique_css_selector_opened_sum Integer Yes scalar_parent_devtools_toolbar_eyedropper_opened_sum Integer Yes scalar_parent_dom_contentprocess_troubled_due_to_memory_sum Integer Yes scalar_parent_navigator_storage_estimate_count_sum Integer Yes scalar_parent_navigator_storage_persist_count_sum Integer Yes scalar_parent_storage_sync_api_usage_extensions_using_sum Integer Yes search_cohort String Yes search_count_abouthome Integer Yes search_count_contextmenu Integer Yes search_count_newtab Integer Yes search_count_searchbar Integer Yes search_count_system Integer Yes search_count_urlbar Integer Yes search_count_all Integer Yes search_count_tagged_sap Integer Yes search_count_tagged_follow_on Integer Yes search_count_organic Integer Yes search_count_urlbar_handoff Integer Yes session_restored_mean Float Yes sessions_started_on_this_day Integer Yes shutdown_kill_sum Integer Yes subsession_hours_sum Numeric Yes ssl_handshake_result_failure_sum Integer Yes ssl_handshake_result_success_sum Integer Yes sync_configured Boolean Yes sync_count_desktop_mean Float Yes sync_count_mobile_mean Float Yes sync_count_desktop_sum Integer Yes sync_count_mobile_sum Integer Yes telemetry_enabled Boolean Yes timezone_offset Integer Yes total_hours_sum Numeric Yes update_auto_download Boolean Yes update_channel String Yes update_enabled Boolean Yes vendor String Yes web_notification_shown_sum Integer Yes windows_build_number Integer Yes windows_ubr Integer Yes fxa_configured Boolean Yes trackers_blocked_sum Integer Yes submission_timestamp_min Timestamp Yes ad_clicks_count_all Integer Yes search_with_ads_count_all Integer Yes scalar_parent_urlbar_impression_autofill_about_sum Integer Yes scalar_parent_urlbar_impression_autofill_adaptive_sum Integer Yes scalar_parent_urlbar_impression_autofill_origin_sum Integer Yes scalar_parent_urlbar_impression_autofill_other_sum Integer Yes scalar_parent_urlbar_impression_autofill_preloaded_sum Integer Yes scalar_parent_urlbar_impression_autofill_url_sum Integer Yes scalar_parent_telemetry_event_counts_sum Record No scalar_content_telemetry_event_counts_sum Record No scalar_parent_urlbar_searchmode_bookmarkmenu_sum Record No scalar_parent_urlbar_searchmode_handoff_sum Record No scalar_parent_urlbar_searchmode_keywordoffer_sum Record No scalar_parent_urlbar_searchmode_oneoff_sum Record No scalar_parent_urlbar_searchmode_other_sum Record No scalar_parent_urlbar_searchmode_shortcut_sum Record No scalar_parent_urlbar_searchmode_tabmenu_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_onboard_sum Record No scalar_parent_urlbar_searchmode_topsites_newtab_sum Record No scalar_parent_urlbar_searchmode_topsites_urlbar_sum Record No scalar_parent_urlbar_searchmode_touchbar_sum Record No scalar_parent_urlbar_searchmode_typed_sum Record No scalar_parent_os_environment_is_taskbar_pinned Boolean Yes scalar_parent_os_environment_launched_via_desktop Boolean Yes scalar_parent_os_environment_launched_via_taskbar Boolean Yes scalar_parent_os_environment_launched_via_other Boolean Yes scalar_parent_os_environment_launched_via_start_menu Boolean Yes scalar_parent_os_environment_launched_via_other_shortcut Boolean Yes search_count_webextension Integer Yes search_count_alias Integer Yes search_count_urlbar_searchmode Integer Yes scalar_parent_browser_ui_interaction_preferences_pane_home_sum Record No scalar_parent_urlbar_picked_autofill_sum Record No scalar_parent_urlbar_picked_autofill_about_sum Record No scalar_parent_urlbar_picked_autofill_adaptive_sum Record No scalar_parent_urlbar_picked_autofill_origin_sum Record No scalar_parent_urlbar_picked_autofill_other_sum Record No scalar_parent_urlbar_picked_autofill_preloaded_sum Record No scalar_parent_urlbar_picked_autofill_url_sum Record No scalar_parent_urlbar_picked_bookmark_sum Record No scalar_parent_urlbar_picked_dynamic_sum Record No scalar_parent_urlbar_picked_extension_sum Record No scalar_parent_urlbar_picked_formhistory_sum Record No scalar_parent_urlbar_picked_history_sum Record No scalar_parent_urlbar_picked_keyword_sum Record No scalar_parent_urlbar_picked_remotetab_sum Record No scalar_parent_urlbar_picked_searchengine_sum Record No scalar_parent_urlbar_picked_searchsuggestion_sum Record No scalar_parent_urlbar_picked_switchtab_sum Record No scalar_parent_urlbar_picked_tabtosearch_sum Record No scalar_parent_urlbar_picked_tip_sum Record No scalar_parent_urlbar_picked_topsite_sum Record No scalar_parent_urlbar_picked_unknown_sum Record No scalar_parent_urlbar_picked_visiturl_sum Record No default_private_search_engine String Yes default_private_search_engine_data_load_path String Yes default_private_search_engine_data_name String Yes default_private_search_engine_data_origin String Yes default_private_search_engine_data_submission_url String Yes search_counts Record No user_pref_browser_search_region String Yes search_with_ads Record No ad_clicks Record No search_content_urlbar_sum Record No search_content_urlbar_handoff_sum Record No search_content_urlbar_searchmode_sum Record No search_content_contextmenu_sum Record No search_content_about_home_sum Record No search_content_about_newtab_sum Record No search_content_searchbar_sum Record No search_content_system_sum Record No search_content_webextension_sum Record No search_content_tabhistory_sum Record No search_content_reload_sum Record No search_content_unknown_sum Record No search_withads_urlbar_sum Record No search_withads_urlbar_handoff_sum Record No search_withads_urlbar_searchmode_sum Record No search_withads_contextmenu_sum Record No search_withads_about_home_sum Record No search_withads_about_newtab_sum Record No search_withads_searchbar_sum Record No search_withads_system_sum Record No search_withads_webextension_sum Record No search_withads_tabhistory_sum Record No search_withads_reload_sum Record No search_withads_unknown_sum Record No search_adclicks_urlbar_sum Record No search_adclicks_urlbar_handoff_sum Record No search_adclicks_urlbar_searchmode_sum Record No search_adclicks_contextmenu_sum Record No search_adclicks_about_home_sum Record No search_adclicks_about_newtab_sum Record No search_adclicks_searchbar_sum Record No search_adclicks_system_sum Record No search_adclicks_webextension_sum Record No search_adclicks_tabhistory_sum Record No search_adclicks_reload_sum Record No search_adclicks_unknown_sum Record No update_background Boolean Yes user_pref_browser_search_suggest_enabled String Yes user_pref_browser_widget_in_navbar String Yes user_pref_browser_urlbar_suggest_searches String Yes user_pref_browser_urlbar_show_search_suggestions_first String Yes user_pref_browser_urlbar_suggest_quicksuggest String Yes user_pref_browser_urlbar_suggest_quicksuggest_sponsored String Yes user_pref_browser_urlbar_quicksuggest_onboarding_dialog_choice String Yes scalar_parent_browser_engagement_total_uri_count_normal_and_private_mode_sum Integer Yes user_pref_browser_newtabpage_enabled String Yes user_pref_app_shield_optoutstudies_enabled String Yes contextual_services_quicksuggest_click_sum Record No contextual_services_quicksuggest_impression_sum Record No contextual_services_quicksuggest_help_sum Record No contextual_services_topsites_click_sum Record No contextual_services_topsites_impression_sum Record No user_pref_browser_urlbar_suggest_quicksuggest_nonsponsored String Yes user_pref_browser_urlbar_quicksuggest_data_collection_enabled String Yes scalar_a11y_hcm_foreground Integer Yes scalar_a11y_hcm_background Integer Yes a11y_theme Record No contextual_services_quicksuggest_help_nonsponsored_bestmatch_sum Record No contextual_services_quicksuggest_help_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_block_nonsponsored_sum Record No contextual_services_quicksuggest_block_sponsored_sum Record No contextual_services_quicksuggest_block_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_block_nonsponsored_bestmatch_sum Record No contextual_services_quicksuggest_click_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_click_nonsponsored_bestmatch_sum Record No contextual_services_quicksuggest_impression_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_impression_nonsponsored_bestmatch_sum Record No user_pref_browser_urlbar_suggest_bestmatch String Yes scalar_parent_browser_ui_interaction_textrecognition_error_sum Integer Yes text_recognition_interaction_timing_sum Integer Yes text_recognition_interaction_timing_count_sum Integer Yes scalar_parent_browser_ui_interaction_content_context_sum Record No text_recognition_api_performance_sum Integer Yes text_recognition_api_performance_count_sum Integer Yes text_recognition_text_length_sum Integer Yes text_recognition_text_length_count_sum Integer Yes scalar_parent_os_environment_launched_via_taskbar_private Boolean Yes dom_parentprocess_private_window_used Boolean Yes os_environment_is_taskbar_pinned_any Boolean Yes os_environment_is_taskbar_pinned_private_any Boolean Yes os_environment_is_taskbar_pinned_private Boolean Yes bookmark_migrations_quantity_chrome Integer Yes bookmark_migrations_quantity_edge Integer Yes bookmark_migrations_quantity_safari Integer Yes bookmark_migrations_quantity_all Integer Yes history_migrations_quantity_chrome Integer Yes history_migrations_quantity_edge Integer Yes history_migrations_quantity_safari Integer Yes history_migrations_quantity_all Integer Yes logins_migrations_quantity_chrome Integer Yes logins_migrations_quantity_edge Integer Yes logins_migrations_quantity_safari Integer Yes logins_migrations_quantity_all Integer Yes search_count_urlbar_persisted Integer Yes search_content_urlbar_persisted_sum Record No search_withads_urlbar_persisted_sum Record No search_adclicks_urlbar_persisted_sum Record No media_play_time_ms_audio_sum Integer Yes media_play_time_ms_video_sum Integer Yes contextual_services_quicksuggest_block_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_block_weather_sum Record No contextual_services_quicksuggest_click_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_click_nonsponsored_sum Record No contextual_services_quicksuggest_click_sponsored_sum Record No contextual_services_quicksuggest_click_weather_sum Record No contextual_services_quicksuggest_help_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_help_nonsponsored_sum Record No contextual_services_quicksuggest_help_sponsored_sum Record No contextual_services_quicksuggest_help_weather_sum Record No contextual_services_quicksuggest_impression_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_impression_nonsponsored_sum Record No contextual_services_quicksuggest_impression_sponsored_sum Record No contextual_services_quicksuggest_impression_weather_sum Record No places_searchbar_cumulative_searches_sum Integer Yes places_searchbar_cumulative_filter_count_sum Integer Yes scalar_parent_sidebar_opened_sum Record No scalar_parent_sidebar_search_sum Record No scalar_parent_sidebar_link_sum Record No places_previousday_visits_mean Float Yes places_library_cumulative_bookmark_searches_sum Integer Yes places_library_cumulative_history_searches_sum Integer Yes places_bookmarks_searchbar_cumulative_searches_sum Integer Yes scalar_parent_library_link_sum Record No scalar_parent_library_opened_sum Record No scalar_parent_library_search_sum Record No startup_profile_selection_reason_first String Yes first_document_id String Yes partner_id String Yes distribution_version String Yes distributor String Yes distributor_channel String Yes env_build_platform_version String Yes env_build_xpcom_abi String Yes geo_db_version String Yes apple_model_id String Yes max_subsession_counter Integer Yes min_subsession_counter Integer Yes startup_profile_selection_first_ping_only String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_first_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_first_seen_28_days_later","title":"clients_first_seen_28_days_later","text":"Clients First Seen 28 Days Later
telemetry.clients_first_seen_28_days_later
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes sample_id Integer Yes first_seen_date Date Yes submission_date Date Yes country_code String Yes channel String Yes build_id String Yes os String Yes os_version Numeric Yes distribution_id String Yes attribution_source String Yes attribution_ua String Yes attribution_medium String Yes attribution_campaign String Yes attribution_content String Yes attribution_experiment String Yes attribution_dltoken String Yes attribution_dlsource String Yes activated Whether the profile sent a main ping in at least 5 of their first 7 days. Boolean Yes returned_second_day Whether the profile sent a main ping on any day after their first day during their first 28 days. Boolean Yes qualified_second_day Whether the profile qualified as DAU on any day after their first day during their first 28 days. Boolean Yes retained_week4 Whether the profile sent a main ping on any day in their 4th week. Boolean Yes qualified_week4 Whether the profile qualified as DAU on any day in their 4th week. Boolean Yes days_seen_bits Integer Yes days_visited_1_uri_bits Integer Yes days_interacted_bits Integer Yes startup_profile_selection_reason How the profile was selected during startup, as reported by the first ping received. String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_first_seen_28_days_later_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_histogram_aggregates","title":"clients_histogram_aggregates","text":"Clients Histogram Aggregates
telemetry.clients_histogram_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_histogram_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_last_seen","title":"clients_last_seen","text":"Clients Last Seen
telemetry.clients_last_seen
Captures history of activity of each client in 28 day windows for each submission date.
There will be one row per client per submission_date
. A given client will stop appearing for new dates if they do not send a main
ping for 28 days.
Generally, this is a direct product of clients_daily
and serves to make certain query patterns more efficient by eliminating the need for self-joins that would otherwise be needed to consider windows of activity. As an exception, it pulls in first_seen_date
and second_seen_date
over all time from clients_first_seen
since first_seen_date
is highly valuable for providing a stable definition of when a profile was created.
See the Working with Bit Patterns in Clients Last Seen article on docs.telemetry.mozilla.org for more detailed notes on usage.
Clustering fields: normalized_channel
, sample_id
See also: clients_daily
, clients_first_seen
- Owners:
- dthorn@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_last_seen_v1","title":"clients_last_seen_v1","text":"Clients Last Seen V1
telemetry.clients_last_seen_v1
Please provide a description for the query
Schema Column Description Type Nullable is_regular_user_v3 Boolean Yes is_new_or_resurrected_v3 Boolean Yes is_weekday_regular_v1 Boolean Yes is_allweek_regular_v1 Boolean Yes is_core_active_v1 Boolean Yes activity_segments_v1 String Yes new_profile_7_day_activated_v1 Boolean Yes new_profile_14_day_activated_v1 Boolean Yes new_profile_21_day_activated_v1 Boolean Yes first_run_date Date Yes days_since_first_seen Integer Yes days_since_second_seen Integer Yes days_since_seen Integer Yes days_since_visited_1_uri Integer Yes days_since_visited_5_uri Integer Yes days_since_visited_10_uri Integer Yes days_since_had_8_active_ticks Integer Yes days_since_opened_dev_tools Integer Yes days_since_created_profile Integer Yes days_since_interacted Integer Yes days_since_qualified_use_v1 Integer Yes days_since_visited_1_uri_normal_mode Integer Yes days_since_visited_1_uri_private_mode Integer Yes submission_date Date Yes first_seen_date Date Yes second_seen_date Date Yes days_seen_bits Integer Yes days_visited_1_uri_bits Integer Yes days_visited_5_uri_bits Integer Yes days_visited_10_uri_bits Integer Yes days_had_8_active_ticks_bits Integer Yes days_opened_dev_tools_bits Integer Yes days_interacted_bits Integer Yes days_visited_1_uri_normal_mode_bits Integer Yes days_visited_1_uri_private_mode_bits Integer Yes days_created_profile_bits Integer Yes days_seen_in_experiment Record No client_id String Yes aborts_content_sum Integer Yes aborts_gmplugin_sum Integer Yes aborts_plugin_sum Integer Yes active_addons_count_mean Float Yes active_addons Record No active_hours_sum Float Yes addon_compatibility_check_enabled Boolean Yes app_build_id String Yes app_display_version String Yes app_name String Yes app_version String Yes attribution Record Yes blocklist_enabled Boolean Yes channel String Yes client_clock_skew_mean Float Yes client_submission_latency_mean Float Yes cpu_cores Integer Yes cpu_count Integer Yes cpu_family Integer Yes cpu_l2_cache_kb Integer Yes cpu_l3_cache_kb Integer Yes cpu_model Integer Yes cpu_speed_mhz Integer Yes cpu_stepping Integer Yes cpu_vendor String Yes crashes_detected_content_sum Integer Yes crashes_detected_gmplugin_sum Integer Yes crashes_detected_plugin_sum Integer Yes crash_submit_attempt_content_sum Integer Yes crash_submit_attempt_main_sum Integer Yes crash_submit_attempt_plugin_sum Integer Yes crash_submit_success_content_sum Integer Yes crash_submit_success_main_sum Integer Yes crash_submit_success_plugin_sum Integer Yes default_search_engine String Yes default_search_engine_data_load_path String Yes default_search_engine_data_name String Yes default_search_engine_data_origin String Yes default_search_engine_data_submission_url String Yes devtools_toolbox_opened_count_sum Integer Yes distribution_id String Yes e10s_enabled Boolean Yes env_build_arch String Yes env_build_id String Yes env_build_version String Yes environment_settings_intl_accept_languages String No environment_settings_intl_app_locales String No environment_settings_intl_available_locales String No environment_settings_intl_requested_locales String No environment_settings_intl_system_locales String No environment_settings_intl_regional_prefs_locales String No experiments Record No first_paint_mean Float Yes flash_version String Yes country String Yes city String Yes geo_subdivision1 String Yes geo_subdivision2 String Yes isp_name String Yes isp_organization String Yes gfx_features_advanced_layers_status String Yes gfx_features_d2d_status String Yes gfx_features_d3d11_status String Yes gfx_features_gpu_process_status String Yes histogram_parent_devtools_aboutdebugging_opened_count_sum Integer Yes histogram_parent_devtools_animationinspector_opened_count_sum Integer Yes histogram_parent_devtools_browserconsole_opened_count_sum Integer Yes histogram_parent_devtools_canvasdebugger_opened_count_sum Integer Yes histogram_parent_devtools_computedview_opened_count_sum Integer Yes histogram_parent_devtools_custom_opened_count_sum Integer Yes histogram_parent_devtools_dom_opened_count_sum Integer Yes histogram_parent_devtools_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_fontinspector_opened_count_sum Integer Yes histogram_parent_devtools_inspector_opened_count_sum Integer Yes histogram_parent_devtools_jsbrowserdebugger_opened_count_sum Integer Yes histogram_parent_devtools_jsdebugger_opened_count_sum Integer Yes histogram_parent_devtools_jsprofiler_opened_count_sum Integer Yes histogram_parent_devtools_layoutview_opened_count_sum Integer Yes histogram_parent_devtools_memory_opened_count_sum Integer Yes histogram_parent_devtools_menu_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_netmonitor_opened_count_sum Integer Yes histogram_parent_devtools_options_opened_count_sum Integer Yes histogram_parent_devtools_paintflashing_opened_count_sum Integer Yes histogram_parent_devtools_picker_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_responsive_opened_count_sum Integer Yes histogram_parent_devtools_ruleview_opened_count_sum Integer Yes histogram_parent_devtools_scratchpad_opened_count_sum Integer Yes histogram_parent_devtools_scratchpad_window_opened_count_sum Integer Yes histogram_parent_devtools_shadereditor_opened_count_sum Integer Yes histogram_parent_devtools_storage_opened_count_sum Integer Yes histogram_parent_devtools_styleeditor_opened_count_sum Integer Yes histogram_parent_devtools_webaudioeditor_opened_count_sum Integer Yes histogram_parent_devtools_webconsole_opened_count_sum Integer Yes histogram_parent_devtools_webide_opened_count_sum Integer Yes install_year Integer Yes is_default_browser Boolean Yes is_wow64 Boolean Yes locale String Yes memory_mb Integer Yes normalized_channel String Yes normalized_os_version String Yes os String Yes os_service_pack_major Integer Yes os_service_pack_minor Integer Yes os_version String Yes pings_aggregated_by_this_row Integer Yes places_bookmarks_count_mean Float Yes places_pages_count_mean Float Yes plugin_hangs_sum Integer Yes plugins_infobar_allow_sum Integer Yes plugins_infobar_block_sum Integer Yes plugins_infobar_shown_sum Integer Yes plugins_notification_shown_sum Integer Yes previous_build_id String Yes profile_age_in_days Integer Yes profile_creation_date String Yes push_api_notify_sum Integer Yes sample_id Integer Yes sandbox_effective_content_process_level Integer Yes scalar_combined_webrtc_nicer_stun_retransmits_sum Integer Yes scalar_combined_webrtc_nicer_turn_401s_sum Integer Yes scalar_combined_webrtc_nicer_turn_403s_sum Integer Yes scalar_combined_webrtc_nicer_turn_438s_sum Integer Yes scalar_content_navigator_storage_estimate_count_sum Integer Yes scalar_content_navigator_storage_persist_count_sum Integer Yes scalar_parent_aushelper_websense_reg_version String Yes scalar_parent_browser_engagement_max_concurrent_tab_count_max Integer Yes scalar_parent_browser_engagement_max_concurrent_window_count_max Integer Yes scalar_parent_browser_engagement_tab_open_event_count_sum Integer Yes scalar_parent_browser_engagement_total_uri_count_sum Integer Yes scalar_parent_browser_engagement_unfiltered_uri_count_sum Integer Yes scalar_parent_browser_engagement_unique_domains_count_max Integer Yes scalar_parent_browser_engagement_unique_domains_count_mean Float Yes scalar_parent_browser_engagement_window_open_event_count_sum Integer Yes scalar_parent_devtools_accessibility_node_inspected_count_sum Integer Yes scalar_parent_devtools_accessibility_opened_count_sum Integer Yes scalar_parent_devtools_accessibility_picker_used_count_sum Integer Yes scalar_parent_devtools_accessibility_select_accessible_for_node_sum Record No scalar_parent_devtools_accessibility_service_enabled_count_sum Integer Yes scalar_parent_devtools_copy_full_css_selector_opened_sum Integer Yes scalar_parent_devtools_copy_unique_css_selector_opened_sum Integer Yes scalar_parent_devtools_toolbar_eyedropper_opened_sum Integer Yes scalar_parent_navigator_storage_estimate_count_sum Integer Yes scalar_parent_navigator_storage_persist_count_sum Integer Yes scalar_parent_storage_sync_api_usage_extensions_using_sum Integer Yes search_cohort String Yes search_count_abouthome Integer Yes search_count_contextmenu Integer Yes search_count_newtab Integer Yes search_count_searchbar Integer Yes search_count_system Integer Yes search_count_urlbar Integer Yes search_count_all Integer Yes search_count_tagged_sap Integer Yes search_count_tagged_follow_on Integer Yes search_count_organic Integer Yes search_count_urlbar_handoff Integer Yes session_restored_mean Float Yes sessions_started_on_this_day Integer Yes shutdown_kill_sum Integer Yes subsession_hours_sum Numeric Yes ssl_handshake_result_failure_sum Integer Yes ssl_handshake_result_success_sum Integer Yes sync_configured Boolean Yes sync_count_desktop_mean Float Yes sync_count_mobile_mean Float Yes sync_count_desktop_sum Integer Yes sync_count_mobile_sum Integer Yes telemetry_enabled Boolean Yes timezone_offset Integer Yes update_auto_download Boolean Yes update_channel String Yes update_enabled Boolean Yes vendor String Yes web_notification_shown_sum Integer Yes windows_build_number Integer Yes windows_ubr Integer Yes fxa_configured Boolean Yes trackers_blocked_sum Integer Yes submission_timestamp_min Timestamp Yes ad_clicks_count_all Integer Yes search_with_ads_count_all Integer Yes scalar_parent_urlbar_impression_autofill_about_sum Integer Yes scalar_parent_urlbar_impression_autofill_adaptive_sum Integer Yes scalar_parent_urlbar_impression_autofill_origin_sum Integer Yes scalar_parent_urlbar_impression_autofill_other_sum Integer Yes scalar_parent_urlbar_impression_autofill_preloaded_sum Integer Yes scalar_parent_urlbar_impression_autofill_url_sum Integer Yes scalar_parent_telemetry_event_counts_sum Record No scalar_content_telemetry_event_counts_sum Record No scalar_parent_urlbar_searchmode_bookmarkmenu_sum Record No scalar_parent_urlbar_searchmode_handoff_sum Record No scalar_parent_urlbar_searchmode_keywordoffer_sum Record No scalar_parent_urlbar_searchmode_oneoff_sum Record No scalar_parent_urlbar_searchmode_other_sum Record No scalar_parent_urlbar_searchmode_shortcut_sum Record No scalar_parent_urlbar_searchmode_tabmenu_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_onboard_sum Record No scalar_parent_urlbar_searchmode_topsites_newtab_sum Record No scalar_parent_urlbar_searchmode_topsites_urlbar_sum Record No scalar_parent_urlbar_searchmode_touchbar_sum Record No scalar_parent_urlbar_searchmode_typed_sum Record No scalar_parent_os_environment_is_taskbar_pinned Boolean Yes scalar_parent_os_environment_launched_via_desktop Boolean Yes scalar_parent_os_environment_launched_via_start_menu Boolean Yes scalar_parent_os_environment_launched_via_taskbar Boolean Yes scalar_parent_os_environment_launched_via_other_shortcut Boolean Yes scalar_parent_os_environment_launched_via_other Boolean Yes search_count_webextension Integer Yes search_count_alias Integer Yes search_count_urlbar_searchmode Integer Yes scalar_parent_browser_ui_interaction_preferences_pane_home_sum Record No scalar_parent_urlbar_picked_autofill_sum Record No scalar_parent_urlbar_picked_autofill_about_sum Record No scalar_parent_urlbar_picked_autofill_adaptive_sum Record No scalar_parent_urlbar_picked_autofill_origin_sum Record No scalar_parent_urlbar_picked_autofill_other_sum Record No scalar_parent_urlbar_picked_autofill_preloaded_sum Record No scalar_parent_urlbar_picked_autofill_url_sum Record No scalar_parent_urlbar_picked_bookmark_sum Record No scalar_parent_urlbar_picked_dynamic_sum Record No scalar_parent_urlbar_picked_extension_sum Record No scalar_parent_urlbar_picked_formhistory_sum Record No scalar_parent_urlbar_picked_history_sum Record No scalar_parent_urlbar_picked_keyword_sum Record No scalar_parent_urlbar_picked_remotetab_sum Record No scalar_parent_urlbar_picked_searchengine_sum Record No scalar_parent_urlbar_picked_searchsuggestion_sum Record No scalar_parent_urlbar_picked_switchtab_sum Record No scalar_parent_urlbar_picked_tabtosearch_sum Record No scalar_parent_urlbar_picked_tip_sum Record No scalar_parent_urlbar_picked_topsite_sum Record No scalar_parent_urlbar_picked_unknown_sum Record No scalar_parent_urlbar_picked_visiturl_sum Record No default_private_search_engine String Yes default_private_search_engine_data_load_path String Yes default_private_search_engine_data_name String Yes default_private_search_engine_data_origin String Yes default_private_search_engine_data_submission_url String Yes search_counts Record No user_pref_browser_search_region String Yes search_with_ads Record No ad_clicks Record No search_content_urlbar_sum Record No search_content_urlbar_handoff_sum Record No search_content_urlbar_searchmode_sum Record No search_content_contextmenu_sum Record No search_content_about_home_sum Record No search_content_about_newtab_sum Record No search_content_searchbar_sum Record No search_content_system_sum Record No search_content_webextension_sum Record No search_content_tabhistory_sum Record No search_content_reload_sum Record No search_content_unknown_sum Record No search_withads_urlbar_sum Record No search_withads_urlbar_handoff_sum Record No search_withads_urlbar_searchmode_sum Record No search_withads_contextmenu_sum Record No search_withads_about_home_sum Record No search_withads_about_newtab_sum Record No search_withads_searchbar_sum Record No search_withads_system_sum Record No search_withads_webextension_sum Record No search_withads_tabhistory_sum Record No search_withads_reload_sum Record No search_withads_unknown_sum Record No search_adclicks_urlbar_sum Record No search_adclicks_urlbar_handoff_sum Record No search_adclicks_urlbar_searchmode_sum Record No search_adclicks_contextmenu_sum Record No search_adclicks_about_home_sum Record No search_adclicks_about_newtab_sum Record No search_adclicks_searchbar_sum Record No search_adclicks_system_sum Record No search_adclicks_webextension_sum Record No search_adclicks_tabhistory_sum Record No search_adclicks_reload_sum Record No search_adclicks_unknown_sum Record No update_background Boolean Yes user_pref_browser_search_suggest_enabled String Yes user_pref_browser_widget_in_navbar String Yes user_pref_browser_urlbar_suggest_searches String Yes user_pref_browser_urlbar_show_search_suggestions_first String Yes user_pref_browser_urlbar_suggest_quicksuggest String Yes user_pref_browser_urlbar_suggest_quicksuggest_sponsored String Yes user_pref_browser_urlbar_quicksuggest_onboarding_dialog_choice String Yes scalar_parent_browser_engagement_total_uri_count_normal_and_private_mode_sum Integer Yes user_pref_browser_newtabpage_enabled String Yes user_pref_app_shield_optoutstudies_enabled String Yes contextual_services_quicksuggest_click_sum Record No contextual_services_quicksuggest_impression_sum Record No contextual_services_quicksuggest_help_sum Record No contextual_services_topsites_click_sum Record No contextual_services_topsites_impression_sum Record No user_pref_browser_urlbar_suggest_quicksuggest_nonsponsored String Yes user_pref_browser_urlbar_quicksuggest_data_collection_enabled String Yes scalar_a11y_hcm_foreground Integer Yes scalar_a11y_hcm_background Integer Yes a11y_theme Record No contextual_services_quicksuggest_help_nonsponsored_bestmatch_sum Record No contextual_services_quicksuggest_help_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_block_nonsponsored_sum Record No contextual_services_quicksuggest_block_sponsored_sum Record No contextual_services_quicksuggest_block_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_block_nonsponsored_bestmatch_sum Record No contextual_services_quicksuggest_click_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_click_nonsponsored_bestmatch_sum Record No contextual_services_quicksuggest_impression_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_impression_nonsponsored_bestmatch_sum Record No user_pref_browser_urlbar_suggest_bestmatch String Yes scalar_parent_browser_ui_interaction_textrecognition_error_sum Integer Yes text_recognition_interaction_timing_sum Integer Yes text_recognition_interaction_timing_count_sum Integer Yes scalar_parent_browser_ui_interaction_content_context_sum Record No text_recognition_api_performance_sum Integer Yes text_recognition_api_performance_count_sum Integer Yes text_recognition_text_length_sum Integer Yes text_recognition_text_length_count_sum Integer Yes scalar_parent_os_environment_launched_via_taskbar_private Boolean Yes dom_parentprocess_private_window_used Boolean Yes os_environment_is_taskbar_pinned_any Boolean Yes os_environment_is_taskbar_pinned_private_any Boolean Yes os_environment_is_taskbar_pinned_private Boolean Yes bookmark_migrations_quantity_chrome Integer Yes bookmark_migrations_quantity_edge Integer Yes bookmark_migrations_quantity_safari Integer Yes bookmark_migrations_quantity_all Integer Yes history_migrations_quantity_chrome Integer Yes history_migrations_quantity_edge Integer Yes history_migrations_quantity_safari Integer Yes history_migrations_quantity_all Integer Yes logins_migrations_quantity_chrome Integer Yes logins_migrations_quantity_edge Integer Yes logins_migrations_quantity_safari Integer Yes logins_migrations_quantity_all Integer Yes search_count_urlbar_persisted Integer Yes search_content_urlbar_persisted_sum Record No search_withads_urlbar_persisted_sum Record No search_adclicks_urlbar_persisted_sum Record No media_play_time_ms_audio_sum Integer Yes media_play_time_ms_video_sum Integer Yes contextual_services_quicksuggest_block_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_block_weather_sum Record No contextual_services_quicksuggest_click_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_click_nonsponsored_sum Record No contextual_services_quicksuggest_click_sponsored_sum Record No contextual_services_quicksuggest_click_weather_sum Record No contextual_services_quicksuggest_help_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_help_nonsponsored_sum Record No contextual_services_quicksuggest_help_sponsored_sum Record No contextual_services_quicksuggest_help_weather_sum Record No contextual_services_quicksuggest_impression_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_impression_nonsponsored_sum Record No contextual_services_quicksuggest_impression_sponsored_sum Record No contextual_services_quicksuggest_impression_weather_sum Record No places_searchbar_cumulative_searches_sum Integer Yes places_searchbar_cumulative_filter_count_sum Integer Yes scalar_parent_sidebar_opened_sum Record No scalar_parent_sidebar_search_sum Record No scalar_parent_sidebar_link_sum Record No places_previousday_visits_mean Float Yes places_library_cumulative_bookmark_searches_sum Integer Yes places_library_cumulative_history_searches_sum Integer Yes places_bookmarks_searchbar_cumulative_searches_sum Integer Yes scalar_parent_library_link_sum Record No scalar_parent_library_opened_sum Record No scalar_parent_library_search_sum Record No startup_profile_selection_reason_first String Yes first_document_id String Yes partner_id String Yes distribution_version String Yes distributor String Yes distributor_channel String Yes env_build_platform_version String Yes env_build_xpcom_abi String Yes geo_db_version String Yes apple_model_id String Yes max_subsession_counter Integer Yes min_subsession_counter Integer Yes startup_profile_selection_first_ping_only String Yes _sample_id_string String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_probe_processes","title":"clients_probe_processes","text":"Clients Probe Processes
telemetry.clients_probe_processes
Please provide a description for the query
Schema Column Description Type Nullable metric String Yes os String Yes channel String Yes processes String No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived client_probe_counts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_scalar_aggregates","title":"clients_scalar_aggregates","text":"Clients Scalar Aggregates
telemetry.clients_scalar_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_scalar_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#cohort_daily_statistics","title":"cohort_daily_statistics","text":"Cohort Daily Statistics
telemetry.cohort_daily_statistics
Please provide a description for the query
Schema Column Description Type Nullable cohort_date Date Yes activity_date Date Yes activity_segment String Yes app_version String Yes attribution_campaign String Yes attribution_content String Yes attribution_experiment String Yes attribution_medium String Yes attribution_source String Yes attribution_variation String Yes city String Yes country String Yes device_model String Yes distribution_id String Yes is_default_browser Boolean Yes locale String Yes normalized_app_name String Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes os_version_major Integer Yes os_version_minor Integer Yes num_clients_in_cohort Integer Yes num_clients_active_on_day Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived cohort_daily_statistics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#core","title":"core","text":"Core
telemetry.core
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#core_clients_daily","title":"core_clients_daily","text":"Core Clients Daily
telemetry.core_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes profile_date Date Yes sessions Integer Yes durations Integer Yes flash_usage Integer Yes app_name String Yes os String Yes country String Yes city String Yes app_build_id String Yes normalized_channel String Yes locale String Yes osversion String Yes device String Yes arch String Yes default_search String Yes distribution_id String Yes campaign String Yes campaign_id String Yes default_browser Boolean Yes show_tracker_stats_share Boolean Yes metadata_app_version String Yes bug_1501329_affected Boolean Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry core_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#core_clients_daily_v1","title":"core_clients_daily_v1","text":"Core Clients Daily V1
telemetry.core_clients_daily_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes profile_date Date Yes sessions Integer Yes durations Integer Yes flash_usage Integer Yes app_name String Yes os String Yes country String Yes city String Yes app_build_id String Yes normalized_channel String Yes locale String Yes osversion String Yes device String Yes arch String Yes default_search String Yes distribution_id String Yes campaign String Yes campaign_id String Yes default_browser Boolean Yes show_tracker_stats_share Boolean Yes metadata_app_version String Yes bug_1501329_affected Boolean Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived core_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#core_clients_last_seen","title":"core_clients_last_seen","text":"Core Clients Last Seen
telemetry.core_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry core_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#core_clients_last_seen_v1","title":"core_clients_last_seen_v1","text":"Core Clients Last Seen V1
telemetry.core_clients_last_seen_v1
Please provide a description for the query
Schema Column Description Type Nullable date_last_seen Date Yes days_since_seen Integer Yes days_since_created_profile Integer Yes submission_date Date Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes client_id String Yes profile_date Date Yes sessions Integer Yes durations Integer Yes flash_usage Integer Yes app_name String Yes os String Yes country String Yes city String Yes app_build_id String Yes normalized_channel String Yes locale String Yes osversion String Yes device String Yes arch String Yes default_search String Yes distribution_id String Yes campaign String Yes campaign_id String Yes default_browser Boolean Yes show_tracker_stats_share Boolean Yes metadata_app_version String Yes bug_1501329_affected Boolean Yes first_seen_date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived core_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crash","title":"crash","text":"Historical Pings for telemetry/crash
telemetry.crash
A historical view of pings sent for the telemetry/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes client_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable crash_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crash_aggregates","title":"crash_aggregates","text":"Crash Aggregates
telemetry.crash_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry crash_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crash_aggregates_v1","title":"crash_aggregates_v1","text":"Crash Aggregates V1
telemetry.crash_aggregates_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived crash_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crash_summary","title":"crash_summary","text":"Crash Summary
telemetry.crash_summary
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes normalized_channel String Yes build_version String Yes build_id String Yes channel String Yes crash_time String Yes application String Yes os_name String Yes os_version String Yes architecture String Yes country String Yes experiment_id String Yes experiment_branch String Yes experiments Record No e10s_enabled Boolean Yes gfx_compositor String Yes profile_created Integer Yes payload Record Yes submission_date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry crash_summary_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crash_summary_v1","title":"crash_summary_v1","text":"Crash Summary V1
telemetry.crash_summary_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived crash_summary_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crash_summary_v2","title":"crash_summary_v2","text":"Crash Summary V2
telemetry.crash_summary_v2
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes normalized_channel String Yes build_version String Yes build_id String Yes channel String Yes crash_time String Yes application String Yes os_name String Yes os_version String Yes architecture String Yes country String Yes experiment_id String Yes experiment_branch String Yes experiments Record No e10s_enabled Boolean Yes gfx_compositor String Yes profile_created Integer Yes payload Record Yes submission_date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived crash_summary_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crashes_daily","title":"crashes_daily","text":"Crashes Daily
telemetry.crashes_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes application_name String Yes build_id String Yes channel String Yes os String Yes os_version String Yes country_code String Yes main_crash_count Integer Yes content_crash_count Integer Yes gpu_crash_count Integer Yes rdd_crash_count Integer Yes socket_crash_count Integer Yes utility_crash_count Integer Yes vr_crash_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived crashes_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#deletion","title":"deletion","text":"Historical Pings for telemetry/deletion
telemetry.deletion
A historical view of pings sent for the telemetry/deletion
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable deletion_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#deletion_request","title":"deletion_request","text":"Historical Pings for telemetry/deletion-request
telemetry.deletion_request
A historical view of pings sent for the telemetry/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes payload Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable deletion_request_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#deployment_checker","title":"deployment_checker","text":"Historical Pings for telemetry/deployment-checker
telemetry.deployment_checker
A historical view of pings sent for the telemetry/deployment-checker
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable deployment_checker_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#desktop_retention_1_week","title":"desktop_retention_1_week","text":"Desktop 1-Week Retention
telemetry.desktop_retention_1_week
Among profiles that were active at least once in the week starting on the specified day (days 0 through 6), whether each profile is active during the following week (days 7 through 13). This based on https://docs.telemetry.mozilla.org/cookbooks/retention.html#1-week-retention for the usage criterion \"Any Firefox Activity\" on Firefox (Desktop)
- Owners:
- dthorn@mozilla.com
- jklukas@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#devtools_panel_usage","title":"devtools_panel_usage","text":"Devtools Panel Usage
telemetry.devtools_panel_usage
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes tool String Yes dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived devtools_panel_usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#disable_sha1rollout","title":"disable_sha1rollout","text":"Historical Pings for telemetry/disable-sha1rollout
telemetry.disable_sha1rollout
A historical view of pings sent for the telemetry/disable-sha1rollout
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable disable_sha1rollout_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#dnssec_study_v1","title":"dnssec_study_v1","text":"Historical Pings for telemetry/dnssec-study-v1
telemetry.dnssec_study_v1
A historical view of pings sent for the telemetry/dnssec-study-v1
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable dnssec_study_v1_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#downgrade","title":"downgrade","text":"Historical Pings for telemetry/downgrade
telemetry.downgrade
A historical view of pings sent for the telemetry/downgrade
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable downgrade_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#eng_workflow_build_parquet","title":"eng_workflow_build_parquet","text":"Eng Workflow Build Parquet
telemetry.eng_workflow_build_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry eng_workflow_build_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#eng_workflow_build_parquet_v1","title":"eng_workflow_build_parquet_v1","text":"Eng Workflow Build Parquet V1
telemetry.eng_workflow_build_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod eng_workflow build Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#eng_workflow_hgpush_parquet","title":"eng_workflow_hgpush_parquet","text":"Eng Workflow Hgpush Parquet
telemetry.eng_workflow_hgpush_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived eng_workflow_hgpush_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#eng_workflow_hgpush_parquet_v1","title":"eng_workflow_hgpush_parquet_v1","text":"Eng Workflow Hgpush Parquet V1
telemetry.eng_workflow_hgpush_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived eng_workflow_hgpush_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#event","title":"event","text":"Historical Pings for telemetry/event
telemetry.event
A historical view of pings sent for the telemetry/event
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable event_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#event_types","title":"event_types","text":"Event Types
telemetry.event_types
Please provide a description for the query
Schema Column Description Type Nullable category String Yes event String Yes first_timestamp Timestamp Yes numeric_index Integer Yes index String Yes event_properties Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived event_types_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#events","title":"events","text":"Events
telemetry.events
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes doc_type String Yes document_id String Yes client_id String Yes normalized_channel String Yes country String Yes locale String Yes app_name String Yes app_version String Yes os String Yes os_version String Yes timestamp Timestamp Yes sample_id Integer Yes event_timestamp Integer Yes event_category String Yes event_method String Yes event_object String Yes event_string_value String Yes event_map_values Record No experiments Record No event_process String Yes subsession_id String Yes session_start_time Timestamp Yes session_id String Yes build_id String Yes browser_version_info Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#events_1pct","title":"events_1pct","text":"Events 1pct
telemetry.events_1pct
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes doc_type String Yes document_id String Yes client_id String Yes normalized_channel String Yes country String Yes locale String Yes app_name String Yes app_version String Yes os String Yes os_version String Yes timestamp Timestamp Yes sample_id Integer Yes event_timestamp Integer Yes event_category String Yes event_method String Yes event_object String Yes event_string_value String Yes event_map_values Record No experiments Record No event_process String Yes subsession_id String Yes session_start_time Timestamp Yes session_id String Yes build_id String Yes browser_version_info Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived events_1pct_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#events_daily","title":"events_daily","text":"Events Daily
telemetry.events_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes events String Yes build_id String Yes build_architecture String Yes profile_creation_date Float Yes is_default_browser Boolean Yes attribution_source String Yes app_version String Yes locale String Yes distribution_id String Yes attribution_ua String Yes display_version String Yes city String Yes country String Yes subdivision1 String Yes channel String Yes os String Yes os_version String Yes experiments Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived events_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#events_v1","title":"events_v1","text":"Events V1
telemetry.events_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes doc_type String Yes document_id String Yes client_id String Yes normalized_channel String Yes country String Yes locale String Yes app_name String Yes app_version String Yes os String Yes os_version String Yes timestamp Timestamp Yes sample_id Integer Yes event_timestamp Integer Yes event_category String Yes event_method String Yes event_object String Yes event_string_value String Yes event_map_values Record No experiments Record No event_process String Yes subsession_id String Yes session_start_time Timestamp Yes session_id String Yes build_id String Yes browser_version_info Record Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_cumulative_ad_clicks","title":"experiment_cumulative_ad_clicks","text":"Experiment Cumulative Ad Clicks
telemetry.experiment_cumulative_ad_clicks
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_cumulative_ad_clicks_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_cumulative_search_count","title":"experiment_cumulative_search_count","text":"Experiment Cumulative Search Count
telemetry.experiment_cumulative_search_count
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_cumulative_search_count_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_cumulative_search_with_ads_count","title":"experiment_cumulative_search_with_ads_count","text":"Experiment Cumulative Search With Ads Count
telemetry.experiment_cumulative_search_with_ads_count
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_cumulative_search_with_ads_count_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_enrollment_cumulative_population_estimate","title":"experiment_enrollment_cumulative_population_estimate","text":"Experiment Enrollment Cumulative Population Estimate
telemetry.experiment_enrollment_cumulative_population_estimate
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_enrollment_cumulative_population_estimate_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_enrollment_daily_active_population","title":"experiment_enrollment_daily_active_population","text":"Experiment Enrollment Daily Active Population
telemetry.experiment_enrollment_daily_active_population
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_enrollment_daily_active_population_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_enrollment_other_events_overall","title":"experiment_enrollment_other_events_overall","text":"Experiment Enrollment Other Events Overall
telemetry.experiment_enrollment_other_events_overall
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes event String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_enrollment_other_events_overall_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_enrollment_overall","title":"experiment_enrollment_overall","text":"Experiment Enrollment Overall
telemetry.experiment_enrollment_overall
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_enrollment_overall_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_error_aggregates","title":"experiment_error_aggregates","text":"Experiment Error Aggregates
telemetry.experiment_error_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_error_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_error_aggregates_v1","title":"experiment_error_aggregates_v1","text":"Experiment Error Aggregates V1
telemetry.experiment_error_aggregates_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_error_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_unenrollment_overall","title":"experiment_unenrollment_overall","text":"Experiment Unenrollment Overall
telemetry.experiment_unenrollment_overall
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_unenrollment_overall_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiments","title":"experiments","text":"Experiments
telemetry.experiments
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes document_id String Yes client_id String Yes channel String Yes normalized_channel String Yes normalized_os_version String Yes country String Yes city String Yes geo_subdivision1 String Yes geo_subdivision2 String Yes os String Yes os_version String Yes os_service_pack_major Integer Yes os_service_pack_minor Integer Yes windows_build_number Integer Yes windows_ubr Integer Yes install_year Integer Yes is_wow64 Boolean Yes memory_mb Integer Yes cpu_count Integer Yes cpu_cores Integer Yes cpu_vendor String Yes cpu_family Integer Yes cpu_model Integer Yes cpu_stepping Integer Yes cpu_l2_cache_kb Integer Yes cpu_l3_cache_kb Integer Yes cpu_speed_mhz Integer Yes gfx_features_d3d11_status String Yes gfx_features_d2d_status String Yes gfx_features_gpu_process_status String Yes gfx_features_advanced_layers_status String Yes apple_model_id String Yes antivirus String No antispyware String No firewall String No profile_creation_date Integer Yes profile_reset_date Integer Yes previous_build_id String Yes session_id String Yes subsession_id String Yes previous_session_id String Yes previous_subsession_id String Yes session_start_date String Yes subsession_start_date String Yes session_length Integer Yes subsession_length Integer Yes subsession_counter Integer Yes profile_subsession_counter Integer Yes creation_date String Yes distribution_id String Yes sync_configured Boolean Yes sync_count_desktop Integer Yes sync_count_mobile Integer Yes app_build_id String Yes app_display_version String Yes app_name String Yes app_version String Yes timestamp Integer Yes env_build_id String Yes env_build_version String Yes env_build_arch String Yes e10s_enabled Boolean Yes e10s_multi_processes Integer Yes locale String Yes update_channel String Yes update_enabled Boolean Yes update_auto_download Boolean Yes attribution Record Yes sandbox_effective_content_process_level Integer Yes reason String Yes timezone_offset Integer Yes plugin_hangs Integer Yes aborts_plugin Integer Yes aborts_content Integer Yes aborts_gmplugin Integer Yes crashes_detected_plugin Integer Yes crashes_detected_gmplugin Integer Yes crash_submit_attempt_main Integer Yes crash_submit_attempt_content Integer Yes crash_submit_attempt_plugin Integer Yes crash_submit_success_main Integer Yes crash_submit_success_content Integer Yes crash_submit_success_plugin Integer Yes shutdown_kill Integer Yes active_addons_count Integer Yes flash_version String Yes vendor String Yes is_default_browser Boolean Yes default_search_engine_data_name String Yes default_search_engine_data_load_path String Yes default_search_engine_data_origin String Yes default_search_engine_data_submission_url String Yes default_search_engine String Yes devtools_toolbox_opened_count Integer Yes client_submission_date String Yes client_clock_skew Integer Yes client_submission_latency Integer Yes places_bookmarks_count Integer Yes places_pages_count Integer Yes push_api_notify Integer Yes popup_notification_stats Record No search_counts Record No active_addons Record No disabled_addons_ids String No active_theme Record Yes blocklist_enabled Boolean Yes addon_compatibility_check_enabled Boolean Yes telemetry_enabled Boolean Yes events Record No ssl_handshake_result_success Integer Yes ssl_handshake_result_failure Integer Yes ssl_handshake_result Record No active_ticks Integer Yes main Integer Yes first_paint Integer Yes session_restored Integer Yes total_time Integer Yes plugins_notification_shown Integer Yes experiments Record No search_cohort String Yes gfx_compositor String Yes quantum_ready Boolean Yes gc_max_pause_ms_main_above_150 Integer Yes gc_max_pause_ms_main_above_250 Integer Yes gc_max_pause_ms_main_above_2500 Integer Yes gc_max_pause_ms_content_above_150 Integer Yes gc_max_pause_ms_content_above_250 Integer Yes gc_max_pause_ms_content_above_2500 Integer Yes cycle_collector_max_pause_main_above_150 Integer Yes cycle_collector_max_pause_main_above_250 Integer Yes cycle_collector_max_pause_main_above_2500 Integer Yes cycle_collector_max_pause_content_above_150 Integer Yes cycle_collector_max_pause_content_above_250 Integer Yes cycle_collector_max_pause_content_above_2500 Integer Yes input_event_response_coalesced_ms_main_above_150 Integer Yes input_event_response_coalesced_ms_main_above_250 Integer Yes input_event_response_coalesced_ms_main_above_2500 Integer Yes input_event_response_coalesced_ms_content_above_150 Integer Yes input_event_response_coalesced_ms_content_above_250 Integer Yes input_event_response_coalesced_ms_content_above_2500 Integer Yes ghost_windows_main_above_1 Integer Yes ghost_windows_content_above_1 Integer Yes user_pref_dom_ipc_plugins_sandbox_level_flash Integer Yes user_pref_dom_ipc_processcount Integer Yes user_pref_extensions_legacy_enabled Boolean Yes user_pref_browser_search_widget_innavbar Boolean Yes user_pref_general_config_filename String Yes scalar_content_browser_usage_plugin_instantiated Integer Yes scalar_content_gfx_omtp_paint_wait_ratio Integer Yes scalar_content_gfx_small_paint_phase_weight Record No scalar_content_images_webp_content_frequency Record No scalar_content_images_webp_content_observed Boolean Yes scalar_content_images_webp_probe_observed Boolean Yes scalar_content_mathml_doc_count Integer Yes scalar_content_media_autoplay_would_be_allowed_count Integer Yes scalar_content_media_autoplay_would_not_be_allowed_count Integer Yes scalar_content_media_page_count Integer Yes scalar_content_media_page_had_media_count Integer Yes scalar_content_media_page_had_play_revoked_count Integer Yes scalar_content_sw_alternative_body_used_count Integer Yes scalar_content_sw_synthesized_res_count Integer Yes scalar_content_telemetry_accumulate_unknown_histogram_keys Record No scalar_content_telemetry_discarded_accumulations Integer Yes scalar_content_telemetry_discarded_child_events Integer Yes scalar_content_telemetry_discarded_keyed_accumulations Integer Yes scalar_content_telemetry_discarded_keyed_scalar_actions Integer Yes scalar_content_telemetry_discarded_scalar_actions Integer Yes scalar_content_telemetry_event_counts Record No scalar_content_webrtc_nicer_turn_401s Integer Yes scalar_content_webrtc_nicer_turn_403s Integer Yes scalar_content_webrtc_nicer_turn_438s Integer Yes scalar_content_webrtc_sdp_parser_diff Record No scalar_gpu_telemetry_accumulate_unknown_histogram_keys Record No scalar_gpu_telemetry_discarded_accumulations Integer Yes scalar_gpu_telemetry_discarded_child_events Integer Yes scalar_gpu_telemetry_discarded_keyed_accumulations Integer Yes scalar_gpu_telemetry_discarded_keyed_scalar_actions Integer Yes scalar_gpu_telemetry_discarded_scalar_actions Integer Yes scalar_gpu_telemetry_event_counts Record No scalar_parent_a11y_indicator_acted_on Boolean Yes scalar_parent_a11y_instantiators String Yes scalar_parent_browser_engagement_active_ticks Integer Yes scalar_parent_browser_engagement_max_concurrent_tab_count Integer Yes scalar_parent_browser_engagement_max_concurrent_window_count Integer Yes scalar_parent_browser_engagement_navigation_about_home Record No scalar_parent_browser_engagement_navigation_about_newtab Record No scalar_parent_browser_engagement_navigation_contextmenu Record No scalar_parent_browser_engagement_navigation_searchbar Record No scalar_parent_browser_engagement_navigation_urlbar Record No scalar_parent_browser_engagement_restored_pinned_tabs_count Integer Yes scalar_parent_browser_engagement_tab_open_event_count Integer Yes scalar_parent_browser_engagement_total_uri_count Integer Yes scalar_parent_browser_engagement_unfiltered_uri_count Integer Yes scalar_parent_browser_engagement_unique_domains_count Integer Yes scalar_parent_browser_engagement_window_open_event_count Integer Yes scalar_parent_browser_errors_collected_count_by_filename Record No scalar_parent_browser_timings_last_shutdown Integer Yes scalar_parent_devtools_accessibility_node_inspected_count Integer Yes scalar_parent_devtools_accessibility_opened_count Integer Yes scalar_parent_devtools_accessibility_picker_used_count Integer Yes scalar_parent_devtools_accessibility_select_accessible_for_node Record No scalar_parent_devtools_accessibility_service_enabled_count Integer Yes scalar_parent_devtools_copy_full_css_selector_opened Integer Yes scalar_parent_devtools_copy_unique_css_selector_opened Integer Yes scalar_parent_devtools_copy_xpath_opened Integer Yes scalar_parent_devtools_current_theme Record No scalar_parent_devtools_grid_gridinspector_opened Integer Yes scalar_parent_devtools_grid_showgridareasoverlay_checked Integer Yes scalar_parent_devtools_grid_showgridlinenumbers_checked Integer Yes scalar_parent_devtools_grid_showinfinitelines_checked Integer Yes scalar_parent_devtools_inspector_three_pane_enabled Record No scalar_parent_devtools_responsive_open_trigger Record No scalar_parent_devtools_responsive_toolbox_opened_first Integer Yes scalar_parent_devtools_rules_gridinspector_opened Integer Yes scalar_parent_devtools_shadowdom_reveal_link_clicked Boolean Yes scalar_parent_devtools_shadowdom_shadow_root_displayed Boolean Yes scalar_parent_devtools_shadowdom_shadow_root_expanded Boolean Yes scalar_parent_devtools_tool_registered Record No scalar_parent_devtools_toolbar_eyedropper_opened Integer Yes scalar_parent_devtools_toolbox_tabs_reordered Record No scalar_parent_dom_contentprocess_buildid_mismatch Integer Yes scalar_parent_extensions_updates_rdf Record No scalar_parent_formautofill_addresses_fill_type_autofill Integer Yes scalar_parent_formautofill_addresses_fill_type_autofill_update Integer Yes scalar_parent_formautofill_addresses_fill_type_manual Integer Yes scalar_parent_formautofill_availability Boolean Yes scalar_parent_formautofill_creditcards_fill_type_autofill Integer Yes scalar_parent_formautofill_creditcards_fill_type_manual Integer Yes scalar_parent_gfx_advanced_layers_failure_id Record No scalar_parent_images_webp_content_frequency Record No scalar_parent_images_webp_content_observed Boolean Yes scalar_parent_images_webp_probe_observed Boolean Yes scalar_parent_media_page_count Integer Yes scalar_parent_preferences_browser_home_page_change Record No scalar_parent_preferences_browser_home_page_count Record No scalar_parent_preferences_search_query Record No scalar_parent_preferences_use_bookmark Record No scalar_parent_preferences_use_current_page Record No scalar_parent_sandbox_no_job Record No scalar_parent_screenshots_copy Integer Yes scalar_parent_screenshots_download Integer Yes scalar_parent_security_client_cert Record No scalar_parent_security_pkcs11_modules_loaded Record No scalar_parent_security_webauthn_used Record No scalar_parent_services_sync_sync_login_state_transitions Record No scalar_parent_storage_sync_api_usage_items_stored Record No scalar_parent_storage_sync_api_usage_storage_consumed Record No scalar_parent_sw_alternative_body_used_count Integer Yes scalar_parent_sw_synthesized_res_count Integer Yes scalar_parent_telemetry_accumulate_clamped_values Record No scalar_parent_telemetry_accumulate_unknown_histogram_keys Record No scalar_parent_telemetry_data_upload_optin Boolean Yes scalar_parent_telemetry_event_counts Record No scalar_parent_timestamps_first_paint Integer Yes scalar_parent_webrtc_nicer_turn_401s Integer Yes scalar_parent_webrtc_nicer_turn_403s Integer Yes scalar_parent_webrtc_nicer_turn_438s Integer Yes scalar_parent_widget_ime_name_on_linux Record No scalar_parent_widget_ime_name_on_mac Record No scalar_parent_widget_ime_name_on_windows Record No histogram_content_cert_validation_success_by_ca Record No histogram_content_cycle_collector_max_pause Record No histogram_content_devtools_toolbox_time_active_seconds Record No histogram_content_fx_new_window_ms Record No histogram_content_fx_searchbar_selected_result_method Record No histogram_content_fx_session_restore_restore_window_ms Record No histogram_content_fx_session_restore_startup_init_session_ms Record No histogram_content_fx_session_restore_startup_onload_initial_window_ms Record No histogram_content_fx_tab_close_time_anim_ms Record No histogram_content_fx_tab_switch_update_ms Record No histogram_content_fx_urlbar_selected_result_index Record No histogram_content_fx_urlbar_selected_result_index_by_type Record No histogram_content_fx_urlbar_selected_result_method Record No histogram_content_fx_urlbar_selected_result_type Record No histogram_content_gc_animation_ms Record No histogram_content_gc_max_pause_ms_2 Record No histogram_content_ghost_windows Record No histogram_content_gpu_process_initialization_time_ms Record No histogram_content_gpu_process_launch_time_ms_2 Record No histogram_content_http_channel_disposition Record No histogram_content_http_pageload_is_ssl Record No histogram_content_http_transaction_is_ssl Record No histogram_content_input_event_response_coalesced_ms Record No histogram_content_ipc_read_main_thread_latency_ms Record No histogram_content_memory_heap_allocated Record No histogram_content_memory_resident_fast Record No histogram_content_memory_unique Record No histogram_content_memory_vsize Record No histogram_content_memory_vsize_max_contiguous Record No histogram_content_network_cache_metadata_first_read_time_ms Record No histogram_content_network_cache_v2_hit_time_ms Record No histogram_content_network_cache_v2_miss_time_ms Record No histogram_content_places_autocomplete_6_first_results_time_ms Record No histogram_content_plugin_shutdown_ms Record No histogram_content_search_reset_result Record No histogram_content_search_service_init_ms Record No histogram_content_ssl_handshake_result Record No histogram_content_ssl_handshake_version Record No histogram_content_ssl_tls12_intolerance_reason_pre Record No histogram_content_ssl_tls13_intolerance_reason_pre Record No histogram_content_time_to_dom_complete_ms Record No histogram_content_time_to_dom_content_loaded_end_ms Record No histogram_content_time_to_dom_content_loaded_start_ms Record No histogram_content_time_to_dom_interactive_ms Record No histogram_content_time_to_dom_loading_ms Record No histogram_content_time_to_first_click_ms Record No histogram_content_time_to_first_interaction_ms Record No histogram_content_time_to_first_key_input_ms Record No histogram_content_time_to_first_mouse_move_ms Record No histogram_content_time_to_first_scroll_ms Record No histogram_content_time_to_load_event_end_ms Record No histogram_content_time_to_load_event_start_ms Record No histogram_content_time_to_non_blank_paint_ms Record No histogram_content_time_to_response_start_ms Record No histogram_content_tracking_protection_enabled Record No histogram_content_uptake_remote_content_result_1 Record No histogram_content_webext_content_script_injection_ms Record No histogram_content_webext_storage_local_get_ms Record No histogram_content_webext_storage_local_set_ms Record No histogram_content_webvr_time_spent_viewing_in_2d Record No histogram_content_webvr_users_view_in Record No histogram_gpu_gpu_process_initialization_time_ms Record No histogram_gpu_ipc_read_main_thread_latency_ms Record No histogram_gpu_uptake_remote_content_result_1 Record No histogram_gpu_webvr_time_spent_viewing_in_oculus Record No histogram_gpu_webvr_time_spent_viewing_in_openvr Record No histogram_gpu_webvr_users_view_in Record No histogram_parent_a11y_consumers Record No histogram_parent_a11y_instantiated_flag Record No histogram_parent_cert_validation_success_by_ca Record No histogram_parent_cycle_collector_max_pause Record No histogram_parent_devtools_entry_point Record No histogram_parent_devtools_toolbox_time_active_seconds Record No histogram_parent_fx_new_window_ms Record No histogram_parent_fx_searchbar_selected_result_method Record No histogram_parent_fx_session_restore_restore_window_ms Record No histogram_parent_fx_session_restore_startup_init_session_ms Record No histogram_parent_fx_session_restore_startup_onload_initial_window_ms Record No histogram_parent_fx_tab_close_time_anim_ms Record No histogram_parent_fx_tab_switch_total_e10s_ms Record No histogram_parent_fx_tab_switch_update_ms Record No histogram_parent_fx_urlbar_selected_result_index Record No histogram_parent_fx_urlbar_selected_result_index_by_type Record No histogram_parent_fx_urlbar_selected_result_method Record No histogram_parent_fx_urlbar_selected_result_type Record No histogram_parent_gc_animation_ms Record No histogram_parent_gc_max_pause_ms_2 Record No histogram_parent_ghost_windows Record No histogram_parent_gpu_process_initialization_time_ms Record No histogram_parent_gpu_process_launch_time_ms_2 Record No histogram_parent_http_channel_disposition Record No histogram_parent_http_pageload_is_ssl Record No histogram_parent_http_transaction_is_ssl Record No histogram_parent_input_event_response_coalesced_ms Record No histogram_parent_ipc_read_main_thread_latency_ms Record No histogram_parent_memory_distribution_among_content Record No histogram_parent_memory_heap_allocated Record No histogram_parent_memory_resident_fast Record No histogram_parent_memory_total Record No histogram_parent_memory_unique Record No histogram_parent_memory_vsize Record No histogram_parent_memory_vsize_max_contiguous Record No histogram_parent_network_cache_metadata_first_read_time_ms Record No histogram_parent_network_cache_v2_hit_time_ms Record No histogram_parent_network_cache_v2_miss_time_ms Record No histogram_parent_places_autocomplete_6_first_results_time_ms Record No histogram_parent_plugin_shutdown_ms Record No histogram_parent_search_reset_result Record No histogram_parent_search_service_init_ms Record No histogram_parent_ssl_handshake_result Record No histogram_parent_ssl_handshake_version Record No histogram_parent_ssl_tls12_intolerance_reason_pre Record No histogram_parent_ssl_tls13_intolerance_reason_pre Record No histogram_parent_time_to_first_click_ms Record No histogram_parent_time_to_first_interaction_ms Record No histogram_parent_time_to_first_key_input_ms Record No histogram_parent_time_to_first_mouse_move_ms Record No histogram_parent_time_to_first_scroll_ms Record No histogram_parent_time_to_non_blank_paint_ms Record No histogram_parent_time_to_response_start_ms Record No histogram_parent_touch_enabled_device Record No histogram_parent_tracking_protection_enabled Record No histogram_parent_uptake_remote_content_result_1 Record No histogram_parent_webext_background_page_load_ms Record No histogram_parent_webext_browseraction_popup_open_ms Record No histogram_parent_webext_browseraction_popup_preload_result_count Record No histogram_parent_webext_content_script_injection_ms Record No histogram_parent_webext_extension_startup_ms Record No histogram_parent_webext_pageaction_popup_open_ms Record No histogram_parent_webext_storage_local_get_ms Record No histogram_parent_webext_storage_local_set_ms Record No histogram_parent_webvr_time_spent_viewing_in_2d Record No histogram_parent_webvr_time_spent_viewing_in_oculus Record No histogram_parent_webvr_time_spent_viewing_in_openvr Record No histogram_parent_webvr_users_view_in Record No boolean_addon_scalars Record No keyed_boolean_addon_scalars Record No string_addon_scalars Record No keyed_string_addon_scalars Record No uint_addon_scalars Record No keyed_uint_addon_scalars Record No sample_id Integer Yes experiment_branch String Yes experiment_id String Yes histogram_parent_devtools_about_devtools_opened_key Record No scalar_content_media_blocked_no_metadata Integer Yes histogram_parent_devtools_menu_eyedropper_opened_count Integer Yes histogram_parent_devtools_fonteditor_n_fonts_rendered Record No histogram_parent_devtools_layoutview_opened_count Integer Yes histogram_parent_devtools_animationinspector_opened_count Integer Yes histogram_parent_devtools_browserconsole_opened_count Integer Yes histogram_parent_devtools_jsprofiler_opened_count Integer Yes histogram_parent_devtools_responsive_opened_count Integer Yes histogram_parent_devtools_dom_opened_count Integer Yes histogram_parent_devtools_computedview_opened_count Integer Yes scalar_content_media_blocked_no_metadata_endup_no_audio_track Integer Yes histogram_parent_devtools_scratchpad_opened_count Integer Yes histogram_parent_devtools_jsdebugger_opened_count Integer Yes histogram_parent_devtools_fonteditor_font_type_displayed Record No histogram_parent_devtools_picker_eyedropper_opened_count Integer Yes histogram_parent_devtools_about_devtools_opened_reason Record No histogram_parent_devtools_eyedropper_opened_count Integer Yes histogram_parent_devtools_storage_opened_count Integer Yes histogram_parent_devtools_webide_opened_count Integer Yes histogram_parent_devtools_custom_opened_count Integer Yes histogram_parent_devtools_ruleview_opened_count Integer Yes histogram_parent_devtools_memory_opened_count Integer Yes histogram_parent_devtools_styleeditor_opened_count Integer Yes histogram_parent_devtools_netmonitor_opened_count Integer Yes scalar_content_media_allowed_autoplay_no_audio_track_count Integer Yes histogram_parent_devtools_webconsole_opened_count Integer Yes histogram_parent_devtools_inspector_opened_count Integer Yes histogram_parent_devtools_scratchpad_window_opened_count Integer Yes histogram_parent_devtools_aboutdebugging_opened_count Integer Yes histogram_parent_devtools_fonteditor_n_font_axes Record No histogram_parent_devtools_paintflashing_opened_count Integer Yes histogram_parent_devtools_options_opened_count Integer Yes histogram_parent_devtools_fontinspector_opened_count Integer Yes histogram_parent_devtools_jsbrowserdebugger_opened_count Integer Yes histogram_parent_devtools_accessibility_picker_time_active_seconds Record No histogram_parent_devtools_accessibility_time_active_seconds Record No histogram_content_devtools_accessibility_service_time_active_seconds Record No histogram_content_devtools_accessibility_time_active_seconds Record No histogram_parent_devtools_accessibility_service_time_active_seconds Record No histogram_content_devtools_accessibility_picker_time_active_seconds Record No blank_window_shown Integer Yes histogram_content_content_paint_time Record No histogram_parent_content_paint_time Record No scalar_parent_browser_engagement_navigation_webextension Record No scalar_parent_dom_parentprocess_private_window_used Boolean Yes histogram_gpu_composite_time Record No histogram_parent_pwmgr_login_page_safety Record No histogram_content_checkerboard_severity Record No histogram_gpu_content_frame_time Record No histogram_parent_pwmgr_manage_visibility_toggled Record No histogram_parent_pwmgr_form_autofill_result Record No histogram_parent_pwmgr_login_last_used_days Record No histogram_gpu_checkerboard_severity Record No histogram_parent_pwmgr_manage_deleted Integer Yes histogram_parent_pwmgr_manage_copied_password Integer Yes histogram_content_pwmgr_login_page_safety Record No histogram_parent_composite_time Record No histogram_parent_pwmgr_num_saved_passwords Record No histogram_parent_content_frame_time Record No histogram_parent_geolocation_request_granted Record No histogram_content_composite_time Record No histogram_parent_pwmgr_blocklist_num_sites Record No histogram_content_geolocation_request_granted Record No histogram_content_pwmgr_form_autofill_result Record No histogram_parent_pwmgr_manage_copied_username Integer Yes histogram_parent_pwmgr_prompt_update_action Record No histogram_parent_pwmgr_num_passwords_per_hostname Record No histogram_parent_pwmgr_saving_enabled Record No histogram_parent_pwmgr_prompt_remember_action Record No histogram_parent_checkerboard_severity Record No histogram_parent_pwmgr_manage_opened Record No scalar_parent_contentblocking_enabled Boolean Yes scalar_parent_contentblocking_exceptions Integer Yes scalar_parent_contentblocking_fastblock_enabled Boolean Yes scalar_parent_resistfingerprinting_content_window_size Record No histogram_parent_number_of_profiles Integer Yes scalar_parent_telemetry_keyed_scalars_exceed_limit Record No histogram_content_memory_unique_content_startup Record No gfx_features_webrender_status String Yes histogram_content_sandbox_rejected_syscalls Record No gfx_features_wrqualified_status String Yes histogram_parent_sandbox_rejected_syscalls Record No user_pref_gfx_webrender_all_qualified Boolean Yes scalar_parent_update_binarytransparencyresult Record No histogram_parent_fx_page_load_ms_2 Record No histogram_content_fx_page_load_ms_2 Record No scalar_parent_devtools_markup_gridinspector_opened Integer Yes scalar_parent_devtools_markup_flexboxhighlighter_opened Integer Yes scalar_parent_devtools_layout_flexboxhighlighter_opened Integer Yes scalar_parent_devtools_rules_flexboxhighlighter_opened Integer Yes scalar_parent_devtools_accessibility_accessible_context_menu_item_activated Record No scalar_parent_devtools_changesview_opened_count Integer Yes scalar_parent_devtools_accessibility_accessible_context_menu_opened Integer Yes scalar_parent_browser_search_ad_clicks Record No scalar_parent_browser_search_with_ads Record No scalar_content_encoding_override_used Boolean Yes scalar_parent_idb_failure_fileinfo_error Integer Yes scalar_parent_media_autoplay_default_blocked Boolean Yes scalar_parent_startup_profile_selection_reason String Yes scalar_parent_timestamps_about_home_topsites_first_paint Integer Yes environment_settings_intl_accept_languages String No environment_settings_intl_app_locales String No environment_settings_intl_regional_prefs_locales String No environment_settings_intl_system_locales String No environment_settings_intl_requested_locales String No environment_settings_intl_available_locales String No scalar_parent_security_intermediate_preloading_num_preloaded Integer Yes scalar_parent_security_intermediate_preloading_num_pending Integer Yes scalar_parent_contentblocking_fingerprinting_blocking_enabled Boolean Yes scalar_parent_contentblocking_cryptomining_blocking_enabled Boolean Yes plugins_notification_shown_false Integer Yes scalar_parent_contentblocking_category Integer Yes scalar_parent_devtools_changesview_copy_rule Integer Yes scalar_content_script_preloader_mainthread_recompile Integer Yes scalar_parent_script_preloader_mainthread_recompile Integer Yes scalar_parent_devtools_changesview_copy_all_changes Integer Yes scalar_parent_normandy_recipe_freshness Record No scalar_parent_devtools_inspector_element_picker_used Integer Yes scalar_content_dom_event_confluence_load_count Record No scalar_parent_browser_engagement_max_concurrent_tab_pinned_count Integer Yes scalar_parent_browser_engagement_tab_pinned_event_count Integer Yes scalar_parent_dom_contentprocess_os_priority_change_considered Integer Yes scalar_parent_dom_contentprocess_os_priority_lowered Integer Yes scalar_parent_dom_contentprocess_os_priority_raised Integer Yes scalar_parent_networking_data_transferred Record No scalar_content_webrtc_peerconnection_datachannel_max_life_used Integer Yes scalar_content_webrtc_peerconnection_datachannel_created Integer Yes scalar_parent_update_bitshresult Record No scalar_parent_a11y_theme Record No histogram_parent_dns_lookup_time Record No histogram_parent_dns_failed_lookup_time Record No scalar_parent_update_startup_downloads_bits_complete_bytes Integer Yes scalar_parent_update_session_from_app_version String Yes scalar_parent_update_session_mar_partial_size_bytes Integer Yes scalar_parent_update_startup_intervals_apply_partial Integer Yes scalar_parent_update_startup_downloads_internal_partial_seconds Integer Yes scalar_parent_update_startup_downloads_internal_partial_bytes Integer Yes scalar_parent_update_startup_mar_partial_size_bytes Integer Yes scalar_parent_update_session_intervals_stage_complete Integer Yes scalar_parent_update_startup_intervals_check Integer Yes scalar_parent_update_session_downloads_internal_complete_seconds Integer Yes scalar_parent_update_startup_downloads_bits_partial_seconds Integer Yes scalar_parent_update_session_intervals_download_internal_partial Integer Yes scalar_parent_update_session_intervals_check Integer Yes scalar_parent_update_startup_intervals_download_bits_complete Integer Yes scalar_parent_update_startup_intervals_download_internal_complete Integer Yes scalar_parent_update_session_downloads_bits_partial_bytes Integer Yes scalar_parent_update_startup_downloads_internal_complete_seconds Integer Yes scalar_parent_update_startup_intervals_download_bits_partial Integer Yes scalar_parent_update_startup_intervals_stage_complete Integer Yes scalar_parent_update_startup_intervals_apply_complete Integer Yes scalar_parent_update_startup_intervals_stage_partial Integer Yes scalar_parent_update_session_intervals_download_internal_complete Integer Yes scalar_parent_update_session_downloads_bits_partial_seconds Integer Yes scalar_parent_update_startup_intervals_download_internal_partial Integer Yes scalar_parent_update_session_downloads_internal_complete_bytes Integer Yes scalar_parent_update_session_intervals_apply_partial Integer Yes scalar_parent_update_session_downloads_internal_partial_seconds Integer Yes scalar_parent_update_session_intervals_download_bits_complete Integer Yes scalar_parent_update_session_downloads_bits_complete_bytes Integer Yes scalar_parent_update_session_intervals_apply_complete Integer Yes scalar_parent_update_session_downloads_internal_partial_bytes Integer Yes scalar_parent_update_startup_downloads_internal_complete_bytes Integer Yes scalar_parent_update_session_downloads_bits_complete_seconds Integer Yes scalar_parent_update_startup_mar_complete_size_bytes Integer Yes scalar_parent_update_startup_downloads_bits_complete_seconds Integer Yes scalar_parent_update_startup_downloads_bits_partial_bytes Integer Yes scalar_parent_update_session_mar_complete_size_bytes Integer Yes scalar_parent_update_session_intervals_stage_partial Integer Yes scalar_parent_update_startup_from_app_version String Yes scalar_parent_update_session_intervals_download_bits_partial Integer Yes scalar_parent_networking_data_transferred_kb Record No scalar_parent_startup_is_cold Boolean Yes user_pref_browser_search_region String Yes environment_system_gfx_headless Boolean Yes fxa_configured Boolean Yes scalar_parent_devtools_accessibility_audit_activated Record No scalar_parent_networking_data_transferred_v3_kb Record No scalar_parent_devtools_inspector_node_selection_count Integer Yes hdd_profile_type String Yes hdd_binary_type String Yes hdd_system_type String Yes histogram_parent_update_status_error_code_partial_stage Record No histogram_parent_update_status_error_code_complete_startup Record No histogram_parent_update_state_code_complete_startup Record No histogram_parent_update_download_code_complete Record No histogram_parent_update_state_code_partial_startup Record No histogram_parent_update_download_code_partial Record No histogram_parent_update_state_code_partial_stage Record No histogram_parent_update_state_code_complete_stage Record No histogram_parent_update_status_error_code_partial_startup Record No histogram_parent_update_status_error_code_complete_stage Record No histogram_parent_update_bits_result_partial Record No histogram_parent_update_bits_result_complete Record No histogram_parent_update_can_use_bits_notify Record No scalar_parent_devtools_tooltip_shown Record No scalar_content_dom_event_office_online_load_count Record No scalar_content_webrtc_video_send_codec_used Record No scalar_content_webrtc_video_recv_codec_used Record No scalar_parent_qm_origin_directory_unexpected_filename Record No histogram_parent_cookie_behavior Record No scalar_content_pictureinpicture_opened_method Record No scalar_parent_pictureinpicture_closed_method Record No user_pref_security_enterprise_roots_enabled Boolean Yes user_pref_security_enterprise_roots_auto_enabled Boolean Yes user_pref_security_pki_mitm_detected Boolean Yes attribution_experiment String Yes attribution_variation String Yes user_pref_network_trr_mode Integer Yes scalar_content_pdf_viewer_fallback_shown Integer Yes scalar_content_pdf_viewer_print Integer Yes scalar_content_pdf_viewer_used Integer Yes scalar_parent_blocklist_lastmodified_rs_addons String Yes scalar_parent_blocklist_usexml Boolean Yes scalar_parent_blocklist_lastmodified_xml String Yes scalar_parent_blocklist_lastmodified_rs_plugins String Yes scalar_parent_os_environment_is_admin_without_uac Boolean Yes scalar_parent_devtools_accessibility_simulation_activated Record No scalar_parent_firststartup_statuscode Integer Yes scalar_parent_pwmgr_potentially_breached_passwords Integer Yes scalar_parent_contentblocking_trackers_blocked_count Integer Yes scalar_parent_browser_searchinit_engines_cache_corrupted Boolean Yes scalar_parent_update_fix_permissions_attempted Boolean Yes scalar_parent_firststartup_elapsed Integer Yes scalar_parent_security_contentblocker_permissions Record No scalar_parent_a11y_backplate Boolean Yes experiments_details Record No scalar_parent_networking_ftp_opened_channels_listings Integer Yes scalar_parent_networking_ftp_opened_channels_files Integer Yes default_private_search_engine_data_load_path String Yes default_private_search_engine_data_submission_url String Yes default_private_search_engine_data_origin String Yes default_private_search_engine_data_name String Yes default_private_search_engine String Yes histogram_content_memory_distribution_among_content Record No e10s_cohort String Yes scalar_parent_browser_session_restore_browser_tabs_restorebutton Integer Yes histogram_parent_gc_max_pause_ms Record No scalar_parent_browser_session_restore_browser_startup_page Integer Yes histogram_content_memory_total Record No histogram_content_gc_max_pause_ms Record No experiment_enrollment_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry experiments_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiments_aggregates","title":"experiments_aggregates","text":"Experiments Aggregates
telemetry.experiments_aggregates
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes experiment_branch String Yes subgroup String Yes n Integer Yes metric_name String Yes metric_type String Yes histogram Record No statistics Record No experiment_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry experiments_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiments_aggregates_v1","title":"experiments_aggregates_v1","text":"Experiments Aggregates V1
telemetry.experiments_aggregates_v1
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes experiment_branch String Yes subgroup String Yes n Integer Yes metric_name String Yes metric_type String Yes histogram Record No statistics Record No experiment_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiments_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiments_v1","title":"experiments_v1","text":"Experiments V1
telemetry.experiments_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes document_id String Yes client_id String Yes channel String Yes normalized_channel String Yes normalized_os_version String Yes country String Yes city String Yes geo_subdivision1 String Yes geo_subdivision2 String Yes os String Yes os_version String Yes os_service_pack_major Integer Yes os_service_pack_minor Integer Yes windows_build_number Integer Yes windows_ubr Integer Yes install_year Integer Yes is_wow64 Boolean Yes memory_mb Integer Yes cpu_count Integer Yes cpu_cores Integer Yes cpu_vendor String Yes cpu_family Integer Yes cpu_model Integer Yes cpu_stepping Integer Yes cpu_l2_cache_kb Integer Yes cpu_l3_cache_kb Integer Yes cpu_speed_mhz Integer Yes gfx_features_d3d11_status String Yes gfx_features_d2d_status String Yes gfx_features_gpu_process_status String Yes gfx_features_advanced_layers_status String Yes apple_model_id String Yes antivirus String No antispyware String No firewall String No profile_creation_date Integer Yes profile_reset_date Integer Yes previous_build_id String Yes session_id String Yes subsession_id String Yes previous_session_id String Yes previous_subsession_id String Yes session_start_date String Yes subsession_start_date String Yes session_length Integer Yes subsession_length Integer Yes subsession_counter Integer Yes profile_subsession_counter Integer Yes creation_date String Yes distribution_id String Yes sync_configured Boolean Yes sync_count_desktop Integer Yes sync_count_mobile Integer Yes app_build_id String Yes app_display_version String Yes app_name String Yes app_version String Yes timestamp Integer Yes env_build_id String Yes env_build_version String Yes env_build_arch String Yes e10s_enabled Boolean Yes e10s_multi_processes Integer Yes locale String Yes update_channel String Yes update_enabled Boolean Yes update_auto_download Boolean Yes attribution Record Yes sandbox_effective_content_process_level Integer Yes active_experiment_id String Yes active_experiment_branch String Yes reason String Yes timezone_offset Integer Yes plugin_hangs Integer Yes aborts_plugin Integer Yes aborts_content Integer Yes aborts_gmplugin Integer Yes crashes_detected_plugin Integer Yes crashes_detected_content Integer Yes crashes_detected_gmplugin Integer Yes crash_submit_attempt_main Integer Yes crash_submit_attempt_content Integer Yes crash_submit_attempt_plugin Integer Yes crash_submit_success_main Integer Yes crash_submit_success_content Integer Yes crash_submit_success_plugin Integer Yes shutdown_kill Integer Yes active_addons_count Integer Yes flash_version String Yes vendor String Yes is_default_browser Boolean Yes default_search_engine_data_name String Yes default_search_engine_data_load_path String Yes default_search_engine_data_origin String Yes default_search_engine_data_submission_url String Yes default_search_engine String Yes devtools_toolbox_opened_count Integer Yes client_submission_date String Yes client_clock_skew Integer Yes client_submission_latency Integer Yes places_bookmarks_count Integer Yes places_pages_count Integer Yes push_api_notify Integer Yes web_notification_shown Integer Yes popup_notification_stats Record No search_counts Record No active_addons Record No disabled_addons_ids String No active_theme Record Yes blocklist_enabled Boolean Yes addon_compatibility_check_enabled Boolean Yes telemetry_enabled Boolean Yes user_prefs Record Yes events Record No ssl_handshake_result_success Integer Yes ssl_handshake_result_failure Integer Yes ssl_handshake_result Record No active_ticks Integer Yes main Integer Yes first_paint Integer Yes session_restored Integer Yes total_time Integer Yes plugins_notification_shown Integer Yes plugins_notification_user_action Record Yes plugins_infobar_shown Integer Yes plugins_infobar_block Integer Yes plugins_infobar_allow Integer Yes plugins_infobar_dismissed Integer Yes experiments Record No search_cohort String Yes gfx_compositor String Yes quantum_ready Boolean Yes gc_max_pause_ms_main_above_150 Integer Yes gc_max_pause_ms_main_above_250 Integer Yes gc_max_pause_ms_main_above_2500 Integer Yes gc_max_pause_ms_content_above_150 Integer Yes gc_max_pause_ms_content_above_250 Integer Yes gc_max_pause_ms_content_above_2500 Integer Yes cycle_collector_max_pause_main_above_150 Integer Yes cycle_collector_max_pause_main_above_250 Integer Yes cycle_collector_max_pause_main_above_2500 Integer Yes cycle_collector_max_pause_content_above_150 Integer Yes cycle_collector_max_pause_content_above_250 Integer Yes cycle_collector_max_pause_content_above_2500 Integer Yes input_event_response_coalesced_ms_main_above_150 Integer Yes input_event_response_coalesced_ms_main_above_250 Integer Yes input_event_response_coalesced_ms_main_above_2500 Integer Yes input_event_response_coalesced_ms_content_above_150 Integer Yes input_event_response_coalesced_ms_content_above_250 Integer Yes input_event_response_coalesced_ms_content_above_2500 Integer Yes ghost_windows_main_above_1 Integer Yes ghost_windows_content_above_1 Integer Yes user_pref_dom_ipc_plugins_sandbox_level_flash Integer Yes user_pref_dom_ipc_processcount Integer Yes user_pref_extensions_allow_non_mpc_extensions Boolean Yes user_pref_extensions_legacy_enabled Boolean Yes user_pref_browser_search_widget_innavbar Boolean Yes user_pref_general_config_filename String Yes scalar_content_browser_feeds_preview_loaded Integer Yes scalar_content_browser_usage_graphite Integer Yes scalar_content_browser_usage_plugin_instantiated Integer Yes scalar_content_gfx_omtp_paint_wait_ratio Integer Yes scalar_content_gfx_small_paint_phase_weight Record No scalar_content_idb_type_persistent_count Integer Yes scalar_content_idb_type_temporary_count Integer Yes scalar_content_images_webp_content_frequency Record No scalar_content_images_webp_content_observed Boolean Yes scalar_content_images_webp_probe_observed Boolean Yes scalar_content_mathml_doc_count Integer Yes scalar_content_media_autoplay_would_be_allowed_count Integer Yes scalar_content_media_autoplay_would_not_be_allowed_count Integer Yes scalar_content_media_blocked_autoplay_no_audio_track_count Integer Yes scalar_content_media_page_count Integer Yes scalar_content_media_page_had_media_count Integer Yes scalar_content_media_page_had_play_revoked_count Integer Yes scalar_content_mediarecorder_recording_count Integer Yes scalar_content_memoryreporter_max_ghost_windows Integer Yes scalar_content_navigator_storage_estimate_count Integer Yes scalar_content_navigator_storage_persist_count Integer Yes scalar_content_sw_alternative_body_used_count Integer Yes scalar_content_sw_cors_res_for_so_req_count Integer Yes scalar_content_sw_synthesized_res_count Integer Yes scalar_content_telemetry_accumulate_unknown_histogram_keys Record No scalar_content_telemetry_discarded_accumulations Integer Yes scalar_content_telemetry_discarded_child_events Integer Yes scalar_content_telemetry_discarded_keyed_accumulations Integer Yes scalar_content_telemetry_discarded_keyed_scalar_actions Integer Yes scalar_content_telemetry_discarded_scalar_actions Integer Yes scalar_content_telemetry_event_counts Record No scalar_content_telemetry_profile_directory_scans Integer Yes scalar_content_webrtc_nicer_stun_retransmits Integer Yes scalar_content_webrtc_nicer_turn_401s Integer Yes scalar_content_webrtc_nicer_turn_403s Integer Yes scalar_content_webrtc_nicer_turn_438s Integer Yes scalar_content_webrtc_peerconnection_connected Integer Yes scalar_content_webrtc_peerconnection_legacy_callback_stats_used Integer Yes scalar_content_webrtc_peerconnection_promise_and_callback_stats_used Integer Yes scalar_content_webrtc_peerconnection_promise_stats_used Integer Yes scalar_content_webrtc_sdp_parser_diff Record No scalar_gpu_browser_usage_graphite Integer Yes scalar_gpu_telemetry_accumulate_unknown_histogram_keys Record No scalar_gpu_telemetry_discarded_accumulations Integer Yes scalar_gpu_telemetry_discarded_child_events Integer Yes scalar_gpu_telemetry_discarded_keyed_accumulations Integer Yes scalar_gpu_telemetry_discarded_keyed_scalar_actions Integer Yes scalar_gpu_telemetry_discarded_scalar_actions Integer Yes scalar_gpu_telemetry_event_counts Record No scalar_gpu_telemetry_profile_directory_scans Integer Yes scalar_parent_a11y_indicator_acted_on Boolean Yes scalar_parent_a11y_instantiators String Yes scalar_parent_aushelper_websense_reg_version String Yes scalar_parent_browser_engagement_active_ticks Integer Yes scalar_parent_browser_engagement_max_concurrent_tab_count Integer Yes scalar_parent_browser_engagement_max_concurrent_window_count Integer Yes scalar_parent_browser_engagement_navigation_about_home Record No scalar_parent_browser_engagement_navigation_about_newtab Record No scalar_parent_browser_engagement_navigation_contextmenu Record No scalar_parent_browser_engagement_navigation_searchbar Record No scalar_parent_browser_engagement_navigation_urlbar Record No scalar_parent_browser_engagement_restored_pinned_tabs_count Integer Yes scalar_parent_browser_engagement_tab_open_event_count Integer Yes scalar_parent_browser_engagement_total_uri_count Integer Yes scalar_parent_browser_engagement_unfiltered_uri_count Integer Yes scalar_parent_browser_engagement_unique_domains_count Integer Yes scalar_parent_browser_engagement_window_open_event_count Integer Yes scalar_parent_browser_errors_collected_count Integer Yes scalar_parent_browser_errors_collected_count_by_filename Record No scalar_parent_browser_errors_collected_with_stack_count Integer Yes scalar_parent_browser_errors_reported_failure_count Integer Yes scalar_parent_browser_errors_reported_success_count Integer Yes scalar_parent_browser_errors_sample_rate String Yes scalar_parent_browser_feeds_feed_subscribed Integer Yes scalar_parent_browser_feeds_livebookmark_count Integer Yes scalar_parent_browser_feeds_livebookmark_item_opened Integer Yes scalar_parent_browser_feeds_livebookmark_opened Integer Yes scalar_parent_browser_feeds_preview_loaded Integer Yes scalar_parent_browser_session_restore_worker_restart_count Integer Yes scalar_parent_browser_timings_last_shutdown Integer Yes scalar_parent_browser_usage_graphite Integer Yes scalar_parent_browser_usage_plugin_instantiated Integer Yes scalar_parent_devtools_aboutdevtools_installed Integer Yes scalar_parent_devtools_aboutdevtools_noinstall_exits Integer Yes scalar_parent_devtools_aboutdevtools_opened Integer Yes scalar_parent_devtools_accessibility_node_inspected_count Integer Yes scalar_parent_devtools_accessibility_opened_count Integer Yes scalar_parent_devtools_accessibility_picker_used_count Integer Yes scalar_parent_devtools_accessibility_select_accessible_for_node Record No scalar_parent_devtools_accessibility_service_enabled_count Integer Yes scalar_parent_devtools_application_opened_count Integer Yes scalar_parent_devtools_copy_full_css_selector_opened Integer Yes scalar_parent_devtools_copy_unique_css_selector_opened Integer Yes scalar_parent_devtools_copy_xpath_opened Integer Yes scalar_parent_devtools_current_theme Record No scalar_parent_devtools_grid_gridinspector_opened Integer Yes scalar_parent_devtools_grid_showgridareasoverlay_checked Integer Yes scalar_parent_devtools_grid_showgridlinenumbers_checked Integer Yes scalar_parent_devtools_grid_showinfinitelines_checked Integer Yes scalar_parent_devtools_inspector_three_pane_enabled Record No scalar_parent_devtools_onboarding_is_devtools_user Boolean Yes scalar_parent_devtools_responsive_open_trigger Record No scalar_parent_devtools_responsive_toolbox_opened_first Integer Yes scalar_parent_devtools_rules_gridinspector_opened Integer Yes scalar_parent_devtools_shadowdom_reveal_link_clicked Boolean Yes scalar_parent_devtools_shadowdom_shadow_root_displayed Boolean Yes scalar_parent_devtools_shadowdom_shadow_root_expanded Boolean Yes scalar_parent_devtools_tool_registered Record No scalar_parent_devtools_toolbar_eyedropper_opened Integer Yes scalar_parent_devtools_toolbox_tabs_reordered Record No scalar_parent_dom_contentprocess_buildid_mismatch Integer Yes scalar_parent_dom_contentprocess_troubled_due_to_memory Integer Yes scalar_parent_extensions_updates_rdf Record No scalar_parent_formautofill_addresses_fill_type_autofill Integer Yes scalar_parent_formautofill_addresses_fill_type_autofill_update Integer Yes scalar_parent_formautofill_addresses_fill_type_manual Integer Yes scalar_parent_formautofill_availability Boolean Yes scalar_parent_formautofill_creditcards_fill_type_autofill Integer Yes scalar_parent_formautofill_creditcards_fill_type_autofill_modified Integer Yes scalar_parent_formautofill_creditcards_fill_type_manual Integer Yes scalar_parent_gfx_advanced_layers_failure_id Record No scalar_parent_idb_type_persistent_count Integer Yes scalar_parent_idb_type_temporary_count Integer Yes scalar_parent_images_webp_content_frequency Record No scalar_parent_images_webp_content_observed Boolean Yes scalar_parent_images_webp_probe_observed Boolean Yes scalar_parent_media_autoplay_would_be_allowed_count Integer Yes scalar_parent_media_autoplay_would_not_be_allowed_count Integer Yes scalar_parent_media_blocked_autoplay_no_audio_track_count Integer Yes scalar_parent_media_page_count Integer Yes scalar_parent_media_page_had_media_count Integer Yes scalar_parent_media_page_had_play_revoked_count Integer Yes scalar_parent_mediarecorder_recording_count Integer Yes scalar_parent_navigator_storage_estimate_count Integer Yes scalar_parent_navigator_storage_persist_count Integer Yes scalar_parent_preferences_browser_home_page_change Record No scalar_parent_preferences_browser_home_page_count Record No scalar_parent_preferences_created_new_user_prefs_file Boolean Yes scalar_parent_preferences_prefs_file_was_invalid Boolean Yes scalar_parent_preferences_prevent_accessibility_services Boolean Yes scalar_parent_preferences_read_user_js Boolean Yes scalar_parent_preferences_search_query Record No scalar_parent_preferences_use_bookmark Record No scalar_parent_preferences_use_current_page Record No scalar_parent_sandbox_no_job Record No scalar_parent_screenshots_copy Integer Yes scalar_parent_screenshots_download Integer Yes scalar_parent_screenshots_upload Integer Yes scalar_parent_security_client_cert Record No scalar_parent_security_pkcs11_modules_loaded Record No scalar_parent_security_webauthn_used Record No scalar_parent_services_sync_sync_login_state_transitions Record No scalar_parent_storage_sync_api_usage_extensions_using Integer Yes scalar_parent_storage_sync_api_usage_items_stored Record No scalar_parent_storage_sync_api_usage_storage_consumed Record No scalar_parent_sw_alternative_body_used_count Integer Yes scalar_parent_sw_cors_res_for_so_req_count Integer Yes scalar_parent_sw_synthesized_res_count Integer Yes scalar_parent_telemetry_accumulate_clamped_values Record No scalar_parent_telemetry_accumulate_unknown_histogram_keys Record No scalar_parent_telemetry_data_upload_optin Boolean Yes scalar_parent_telemetry_event_counts Record No scalar_parent_telemetry_os_shutting_down Boolean Yes scalar_parent_telemetry_pending_operations_highwatermark_reached Integer Yes scalar_parent_telemetry_persistence_timer_hit_count Integer Yes scalar_parent_telemetry_profile_directory_scan_date Integer Yes scalar_parent_telemetry_profile_directory_scans Integer Yes scalar_parent_timestamps_first_paint Integer Yes scalar_parent_webrtc_nicer_stun_retransmits Integer Yes scalar_parent_webrtc_nicer_turn_401s Integer Yes scalar_parent_webrtc_nicer_turn_403s Integer Yes scalar_parent_webrtc_nicer_turn_438s Integer Yes scalar_parent_webrtc_peerconnection_connected Integer Yes scalar_parent_webrtc_peerconnection_legacy_callback_stats_used Integer Yes scalar_parent_webrtc_peerconnection_promise_and_callback_stats_used Integer Yes scalar_parent_webrtc_peerconnection_promise_stats_used Integer Yes scalar_parent_widget_ime_name_on_linux Record No scalar_parent_widget_ime_name_on_mac Record No scalar_parent_widget_ime_name_on_windows Record No histogram_content_cert_validation_success_by_ca Record No histogram_content_cycle_collector_max_pause Record No histogram_content_devtools_toolbox_time_active_seconds Record No histogram_content_fx_new_window_ms Record No histogram_content_fx_searchbar_selected_result_method Record No histogram_content_fx_session_restore_restore_window_ms Record No histogram_content_fx_session_restore_startup_init_session_ms Record No histogram_content_fx_session_restore_startup_onload_initial_window_ms Record No histogram_content_fx_tab_close_time_anim_ms Record No histogram_content_fx_tab_switch_update_ms Record No histogram_content_fx_urlbar_selected_result_index Record No histogram_content_fx_urlbar_selected_result_index_by_type Record No histogram_content_fx_urlbar_selected_result_method Record No histogram_content_fx_urlbar_selected_result_type Record No histogram_content_gc_animation_ms Record No histogram_content_gc_max_pause_ms_2 Record No histogram_content_ghost_windows Record No histogram_content_gpu_process_initialization_time_ms Record No histogram_content_gpu_process_launch_time_ms_2 Record No histogram_content_http_channel_disposition Record No histogram_content_http_pageload_is_ssl Record No histogram_content_http_transaction_is_ssl Record No histogram_content_input_event_response_coalesced_ms Record No histogram_content_ipc_read_main_thread_latency_ms Record No histogram_content_memory_heap_allocated Record No histogram_content_memory_resident_fast Record No histogram_content_memory_unique Record No histogram_content_memory_vsize Record No histogram_content_memory_vsize_max_contiguous Record No histogram_content_network_cache_metadata_first_read_time_ms Record No histogram_content_network_cache_v2_hit_time_ms Record No histogram_content_network_cache_v2_miss_time_ms Record No histogram_content_places_autocomplete_6_first_results_time_ms Record No histogram_content_plugin_shutdown_ms Record No histogram_content_search_reset_result Record No histogram_content_search_service_init_ms Record No histogram_content_ssl_handshake_result Record No histogram_content_ssl_handshake_version Record No histogram_content_ssl_tls12_intolerance_reason_pre Record No histogram_content_ssl_tls13_intolerance_reason_pre Record No histogram_content_time_to_dom_complete_ms Record No histogram_content_time_to_dom_content_loaded_end_ms Record No histogram_content_time_to_dom_content_loaded_start_ms Record No histogram_content_time_to_dom_interactive_ms Record No histogram_content_time_to_dom_loading_ms Record No histogram_content_time_to_first_click_ms Record No histogram_content_time_to_first_interaction_ms Record No histogram_content_time_to_first_key_input_ms Record No histogram_content_time_to_first_mouse_move_ms Record No histogram_content_time_to_first_scroll_ms Record No histogram_content_time_to_load_event_end_ms Record No histogram_content_time_to_load_event_start_ms Record No histogram_content_time_to_non_blank_paint_ms Record No histogram_content_time_to_response_start_ms Record No histogram_content_tracking_protection_enabled Record No histogram_content_uptake_remote_content_result_1 Record No histogram_content_webext_content_script_injection_ms Record No histogram_content_webext_storage_local_get_ms Record No histogram_content_webext_storage_local_set_ms Record No histogram_content_webvr_time_spent_viewing_in_2d Record No histogram_content_webvr_users_view_in Record No histogram_gpu_gpu_process_initialization_time_ms Record No histogram_gpu_ipc_read_main_thread_latency_ms Record No histogram_gpu_uptake_remote_content_result_1 Record No histogram_gpu_webvr_time_spent_viewing_in_oculus Record No histogram_gpu_webvr_time_spent_viewing_in_openvr Record No histogram_gpu_webvr_users_view_in Record No histogram_parent_a11y_consumers Record No histogram_parent_a11y_instantiated_flag Record No histogram_parent_cert_validation_success_by_ca Record No histogram_parent_cycle_collector_max_pause Record No histogram_parent_devtools_entry_point Record No histogram_parent_devtools_toolbox_time_active_seconds Record No histogram_parent_fx_new_window_ms Record No histogram_parent_fx_searchbar_selected_result_method Record No histogram_parent_fx_session_restore_restore_window_ms Record No histogram_parent_fx_session_restore_startup_init_session_ms Record No histogram_parent_fx_session_restore_startup_onload_initial_window_ms Record No histogram_parent_fx_tab_close_time_anim_ms Record No histogram_parent_fx_tab_switch_total_e10s_ms Record No histogram_parent_fx_tab_switch_update_ms Record No histogram_parent_fx_urlbar_selected_result_index Record No histogram_parent_fx_urlbar_selected_result_index_by_type Record No histogram_parent_fx_urlbar_selected_result_method Record No histogram_parent_fx_urlbar_selected_result_type Record No histogram_parent_gc_animation_ms Record No histogram_parent_gc_max_pause_ms_2 Record No histogram_parent_ghost_windows Record No histogram_parent_gpu_process_initialization_time_ms Record No histogram_parent_gpu_process_launch_time_ms_2 Record No histogram_parent_http_channel_disposition Record No histogram_parent_http_pageload_is_ssl Record No histogram_parent_http_transaction_is_ssl Record No histogram_parent_input_event_response_coalesced_ms Record No histogram_parent_ipc_read_main_thread_latency_ms Record No histogram_parent_memory_distribution_among_content Record No histogram_parent_memory_heap_allocated Record No histogram_parent_memory_resident_fast Record No histogram_parent_memory_total Record No histogram_parent_memory_unique Record No histogram_parent_memory_vsize Record No histogram_parent_memory_vsize_max_contiguous Record No histogram_parent_network_cache_metadata_first_read_time_ms Record No histogram_parent_network_cache_v2_hit_time_ms Record No histogram_parent_network_cache_v2_miss_time_ms Record No histogram_parent_places_autocomplete_6_first_results_time_ms Record No histogram_parent_plugin_shutdown_ms Record No histogram_parent_search_reset_result Record No histogram_parent_search_service_init_ms Record No histogram_parent_ssl_handshake_result Record No histogram_parent_ssl_handshake_version Record No histogram_parent_ssl_tls12_intolerance_reason_pre Record No histogram_parent_ssl_tls13_intolerance_reason_pre Record No histogram_parent_time_to_first_click_ms Record No histogram_parent_time_to_first_interaction_ms Record No histogram_parent_time_to_first_key_input_ms Record No histogram_parent_time_to_first_mouse_move_ms Record No histogram_parent_time_to_first_scroll_ms Record No histogram_parent_time_to_non_blank_paint_ms Record No histogram_parent_time_to_response_start_ms Record No histogram_parent_touch_enabled_device Record No histogram_parent_tracking_protection_enabled Record No histogram_parent_uptake_remote_content_result_1 Record No histogram_parent_webext_background_page_load_ms Record No histogram_parent_webext_browseraction_popup_open_ms Record No histogram_parent_webext_browseraction_popup_preload_result_count Record No histogram_parent_webext_content_script_injection_ms Record No histogram_parent_webext_extension_startup_ms Record No histogram_parent_webext_pageaction_popup_open_ms Record No histogram_parent_webext_storage_local_get_ms Record No histogram_parent_webext_storage_local_set_ms Record No histogram_parent_webvr_time_spent_viewing_in_2d Record No histogram_parent_webvr_time_spent_viewing_in_oculus Record No histogram_parent_webvr_time_spent_viewing_in_openvr Record No histogram_parent_webvr_users_view_in Record No boolean_addon_scalars Record No keyed_boolean_addon_scalars Record No string_addon_scalars Record No keyed_string_addon_scalars Record No uint_addon_scalars Record No keyed_uint_addon_scalars Record No sample_id Integer Yes experiment_branch String Yes experiment_id String Yes histogram_content_devtools_storage_opened_count Integer Yes histogram_parent_devtools_about_devtools_opened_key Record No scalar_content_media_blocked_no_metadata Integer Yes histogram_parent_devtools_menu_eyedropper_opened_count Integer Yes histogram_parent_devtools_fonteditor_n_fonts_rendered Record No histogram_parent_devtools_layoutview_opened_count Integer Yes histogram_content_devtools_webide_opened_count Integer Yes histogram_content_devtools_canvasdebugger_opened_count Integer Yes histogram_parent_devtools_animationinspector_opened_count Integer Yes histogram_content_devtools_custom_opened_count Integer Yes histogram_parent_devtools_browserconsole_opened_count Integer Yes histogram_parent_devtools_jsprofiler_opened_count Integer Yes histogram_content_devtools_webaudioeditor_opened_count Integer Yes histogram_parent_devtools_responsive_opened_count Integer Yes histogram_parent_devtools_dom_opened_count Integer Yes histogram_parent_devtools_computedview_opened_count Integer Yes histogram_content_devtools_layoutview_opened_count Integer Yes scalar_parent_media_blocked_no_metadata_endup_no_audio_track Integer Yes histogram_content_devtools_menu_eyedropper_opened_count Integer Yes histogram_content_devtools_aboutdebugging_opened_count Integer Yes histogram_parent_devtools_developertoolbar_opened_count Integer Yes scalar_content_media_blocked_no_metadata_endup_no_audio_track Integer Yes histogram_parent_devtools_canvasdebugger_opened_count Integer Yes histogram_parent_devtools_scratchpad_opened_count Integer Yes scalar_parent_media_blocked_no_metadata Integer Yes histogram_parent_devtools_jsdebugger_opened_count Integer Yes histogram_parent_devtools_fonteditor_font_type_displayed Record No histogram_parent_devtools_picker_eyedropper_opened_count Integer Yes histogram_content_devtools_scratchpad_window_opened_count Integer Yes histogram_parent_devtools_about_devtools_opened_reason Record No histogram_content_devtools_ruleview_opened_count Integer Yes histogram_content_devtools_jsprofiler_opened_count Integer Yes histogram_parent_devtools_eyedropper_opened_count Integer Yes histogram_content_devtools_styleeditor_opened_count Integer Yes histogram_content_devtools_picker_eyedropper_opened_count Integer Yes histogram_content_devtools_webconsole_opened_count Integer Yes histogram_content_devtools_animationinspector_opened_count Integer Yes histogram_content_devtools_fontinspector_opened_count Integer Yes histogram_content_devtools_shadereditor_opened_count Integer Yes histogram_content_devtools_jsbrowserdebugger_opened_count Integer Yes histogram_content_devtools_netmonitor_opened_count Integer Yes histogram_parent_devtools_storage_opened_count Integer Yes histogram_parent_devtools_webide_opened_count Integer Yes histogram_content_devtools_eyedropper_opened_count Integer Yes histogram_content_devtools_computedview_opened_count Integer Yes histogram_content_devtools_inspector_opened_count Integer Yes histogram_parent_devtools_custom_opened_count Integer Yes histogram_parent_devtools_ruleview_opened_count Integer Yes histogram_content_devtools_responsive_opened_count Integer Yes histogram_parent_devtools_memory_opened_count Integer Yes histogram_parent_devtools_styleeditor_opened_count Integer Yes histogram_content_devtools_memory_opened_count Integer Yes histogram_content_devtools_paintflashing_opened_count Integer Yes histogram_parent_devtools_shadereditor_opened_count Integer Yes histogram_parent_devtools_netmonitor_opened_count Integer Yes histogram_content_devtools_dom_opened_count Integer Yes histogram_content_devtools_browserconsole_opened_count Integer Yes scalar_content_media_allowed_autoplay_no_audio_track_count Integer Yes histogram_parent_devtools_webconsole_opened_count Integer Yes histogram_content_devtools_jsdebugger_opened_count Integer Yes histogram_parent_devtools_inspector_opened_count Integer Yes histogram_parent_devtools_scratchpad_window_opened_count Integer Yes histogram_content_devtools_developertoolbar_opened_count Integer Yes histogram_parent_devtools_aboutdebugging_opened_count Integer Yes scalar_parent_media_allowed_autoplay_no_audio_track_count Integer Yes histogram_content_devtools_scratchpad_opened_count Integer Yes histogram_parent_devtools_fonteditor_n_font_axes Record No histogram_parent_devtools_webaudioeditor_opened_count Integer Yes histogram_parent_devtools_paintflashing_opened_count Integer Yes histogram_parent_devtools_options_opened_count Integer Yes histogram_parent_devtools_fontinspector_opened_count Integer Yes histogram_content_devtools_options_opened_count Integer Yes histogram_parent_devtools_jsbrowserdebugger_opened_count Integer Yes histogram_parent_devtools_accessibility_picker_time_active_seconds Record No histogram_parent_devtools_accessibility_time_active_seconds Record No histogram_content_devtools_accessibility_service_time_active_seconds Record No histogram_content_devtools_accessibility_time_active_seconds Record No histogram_parent_devtools_accessibility_service_time_active_seconds Record No histogram_content_devtools_accessibility_picker_time_active_seconds Record No blank_window_shown Integer Yes histogram_content_content_paint_time Record No histogram_parent_content_paint_time Record No scalar_parent_browser_engagement_navigation_webextension Record No scalar_parent_dom_parentprocess_private_window_used Boolean Yes histogram_gpu_composite_time Record No histogram_parent_pwmgr_login_page_safety Record No histogram_content_checkerboard_severity Record No histogram_gpu_content_frame_time Record No histogram_parent_pwmgr_manage_visibility_toggled Record No histogram_parent_pwmgr_form_autofill_result Record No histogram_parent_pwmgr_login_last_used_days Record No histogram_gpu_checkerboard_severity Record No histogram_parent_pwmgr_manage_deleted Integer Yes histogram_parent_pwmgr_manage_copied_password Integer Yes histogram_content_pwmgr_login_page_safety Record No histogram_content_pwmgr_manage_deleted Integer Yes histogram_parent_composite_time Record No histogram_parent_pwmgr_num_saved_passwords Record No histogram_content_pwmgr_manage_copied_password Integer Yes histogram_parent_content_frame_time Record No histogram_parent_geolocation_request_granted Record No histogram_content_composite_time Record No histogram_parent_pwmgr_blocklist_num_sites Record No histogram_content_geolocation_request_granted Record No histogram_content_pwmgr_manage_copied_username Integer Yes histogram_content_pwmgr_form_autofill_result Record No histogram_parent_pwmgr_manage_copied_username Integer Yes histogram_parent_pwmgr_prompt_update_action Record No histogram_parent_pwmgr_num_passwords_per_hostname Record No histogram_parent_pwmgr_saving_enabled Record No histogram_parent_pwmgr_prompt_remember_action Record No histogram_parent_checkerboard_severity Record No histogram_parent_pwmgr_manage_opened Record No scalar_parent_contentblocking_enabled Boolean Yes scalar_parent_contentblocking_exceptions Integer Yes scalar_parent_contentblocking_fastblock_enabled Boolean Yes scalar_parent_resistfingerprinting_content_window_size Record No user_pref_marionette_enabled Boolean Yes scalar_parent_identity_fxaccounts_missed_commands_fetched Integer Yes scalar_parent_devtools_webreplay_reload_recording Integer Yes scalar_parent_devtools_webreplay_stop_recording Integer Yes scalar_parent_devtools_webreplay_load_recording Integer Yes scalar_parent_devtools_webreplay_new_recording Integer Yes scalar_parent_devtools_webreplay_save_recording Integer Yes histogram_parent_number_of_profiles Integer Yes histogram_content_number_of_profiles Integer Yes scalar_parent_telemetry_keyed_scalars_exceed_limit Record No histogram_content_memory_unique_content_startup Record No gfx_features_webrender_status String Yes histogram_content_sandbox_rejected_syscalls Record No gfx_features_wrqualified_status String Yes histogram_parent_sandbox_rejected_syscalls Record No user_pref_gfx_webrender_all_qualified Boolean Yes user_pref_privacy_fuzzyfox_enabled Boolean Yes scalar_parent_update_binarytransparencyresult Record No histogram_parent_fx_page_load_ms_2 Record No histogram_content_fx_page_load_ms_2 Record No scalar_parent_devtools_markup_gridinspector_opened Integer Yes scalar_parent_devtools_markup_flexboxhighlighter_opened Integer Yes scalar_parent_devtools_layout_flexboxhighlighter_opened Integer Yes scalar_parent_devtools_rules_flexboxhighlighter_opened Integer Yes scalar_parent_devtools_accessibility_accessible_context_menu_item_activated Record No scalar_parent_devtools_changesview_opened_count Integer Yes scalar_parent_devtools_accessibility_accessible_context_menu_opened Integer Yes scalar_parent_browser_search_ad_clicks Record No scalar_parent_browser_search_with_ads Record No scalar_parent_encoding_override_used Boolean Yes scalar_content_encoding_override_used Boolean Yes scalar_parent_telemetry_about_telemetry_pageload Integer Yes scalar_parent_idb_failure_fileinfo_error Integer Yes scalar_content_media_autoplay_default_blocked Boolean Yes scalar_parent_media_autoplay_default_blocked Boolean Yes scalar_parent_devtools_changesview_contextmenu Integer Yes scalar_parent_devtools_changesview_contextmenu_copy Integer Yes scalar_parent_devtools_changesview_copy Integer Yes scalar_parent_gfx_hdr_windows_display_colorspace_bitfield Integer Yes scalar_parent_startup_profile_selection_reason String Yes scalar_parent_timestamps_about_home_topsites_first_paint Integer Yes environment_settings_intl_accept_languages String No environment_settings_intl_app_locales String No environment_settings_intl_regional_prefs_locales String No environment_settings_intl_system_locales String No environment_settings_intl_requested_locales String No environment_settings_intl_available_locales String No scalar_parent_security_intermediate_preloading_num_preloaded Integer Yes scalar_content_telemetry_process_creation_timestamp_inconsistent Integer Yes scalar_parent_security_intermediate_preloading_num_pending Integer Yes scalar_parent_telemetry_process_creation_timestamp_inconsistent Integer Yes scalar_parent_contentblocking_fingerprinting_blocking_enabled Boolean Yes scalar_parent_contentblocking_cryptomining_blocking_enabled Boolean Yes plugins_notification_shown_false Integer Yes scalar_parent_contentblocking_category Integer Yes scalar_parent_devtools_changesview_copy_rule Integer Yes user_pref_browser_launcherprocess_enabled Boolean Yes scalar_parent_devtools_changesview_contextmenu_copy_declaration Integer Yes scalar_content_script_preloader_mainthread_recompile Integer Yes scalar_parent_script_preloader_mainthread_recompile Integer Yes scalar_parent_devtools_changesview_copy_all_changes Integer Yes scalar_parent_devtools_changesview_contextmenu_copy_rule Integer Yes scalar_parent_normandy_recipe_freshness Record No scalar_parent_devtools_inspector_element_picker_used Integer Yes scalar_content_dom_event_confluence_load_count Record No scalar_parent_browser_engagement_max_concurrent_tab_pinned_count Integer Yes scalar_parent_browser_engagement_tab_pinned_event_count Integer Yes scalar_parent_dom_contentprocess_os_priority_change_considered Integer Yes scalar_parent_dom_contentprocess_os_priority_lowered Integer Yes scalar_parent_dom_contentprocess_os_priority_raised Integer Yes scalar_parent_networking_data_transferred Record No scalar_parent_webrtc_peerconnection_datachannel_max_life_used Integer Yes scalar_parent_webrtc_peerconnection_datachannel_max_retx_and_life_used Integer Yes scalar_content_webrtc_peerconnection_datachannel_max_retx_and_life_used Integer Yes scalar_content_webrtc_peerconnection_datachannel_max_retx_used Integer Yes scalar_parent_webrtc_peerconnection_datachannel_created Integer Yes scalar_content_webrtc_peerconnection_datachannel_max_life_used Integer Yes scalar_content_webrtc_peerconnection_datachannel_created Integer Yes scalar_parent_webrtc_peerconnection_datachannel_max_retx_used Integer Yes scalar_parent_update_bitshresult Record No scalar_parent_a11y_theme Record No histogram_parent_dns_lookup_time Record No histogram_parent_dns_failed_lookup_time Record No scalar_parent_update_startup_downloads_bits_complete_bytes Integer Yes scalar_parent_update_session_from_app_version String Yes scalar_parent_update_session_mar_partial_size_bytes Integer Yes scalar_parent_networking_http_connections_captive_portal Integer Yes scalar_parent_update_startup_intervals_apply_partial Integer Yes scalar_parent_networking_http_transactions_captive_portal Integer Yes scalar_parent_update_startup_downloads_internal_partial_seconds Integer Yes scalar_parent_update_startup_downloads_internal_partial_bytes Integer Yes scalar_parent_update_startup_mar_partial_size_bytes Integer Yes scalar_parent_update_session_intervals_stage_complete Integer Yes scalar_parent_update_startup_intervals_check Integer Yes scalar_parent_update_session_downloads_internal_complete_seconds Integer Yes scalar_parent_update_startup_downloads_bits_partial_seconds Integer Yes scalar_parent_update_session_intervals_download_internal_partial Integer Yes scalar_parent_update_session_intervals_check Integer Yes scalar_parent_update_startup_intervals_download_bits_complete Integer Yes scalar_parent_update_startup_intervals_download_internal_complete Integer Yes scalar_parent_update_session_downloads_bits_partial_bytes Integer Yes scalar_parent_update_startup_downloads_internal_complete_seconds Integer Yes scalar_parent_update_startup_intervals_download_bits_partial Integer Yes scalar_parent_update_startup_intervals_stage_complete Integer Yes scalar_parent_update_startup_intervals_apply_complete Integer Yes scalar_parent_update_startup_intervals_stage_partial Integer Yes scalar_parent_update_session_intervals_download_internal_complete Integer Yes scalar_parent_update_session_downloads_bits_partial_seconds Integer Yes scalar_parent_update_startup_intervals_download_internal_partial Integer Yes scalar_parent_update_session_downloads_internal_complete_bytes Integer Yes scalar_parent_update_session_intervals_apply_partial Integer Yes scalar_parent_update_session_downloads_internal_partial_seconds Integer Yes scalar_parent_update_session_intervals_download_bits_complete Integer Yes scalar_parent_update_session_downloads_bits_complete_bytes Integer Yes scalar_parent_networking_data_transferred_captive_portal Integer Yes scalar_parent_update_session_intervals_apply_complete Integer Yes scalar_parent_update_session_downloads_internal_partial_bytes Integer Yes scalar_parent_update_startup_downloads_internal_complete_bytes Integer Yes scalar_parent_update_session_downloads_bits_complete_seconds Integer Yes scalar_parent_update_startup_mar_complete_size_bytes Integer Yes scalar_parent_update_startup_downloads_bits_complete_seconds Integer Yes scalar_parent_update_startup_downloads_bits_partial_bytes Integer Yes scalar_parent_update_session_mar_complete_size_bytes Integer Yes scalar_parent_update_session_intervals_stage_partial Integer Yes scalar_parent_update_startup_from_app_version String Yes scalar_parent_update_session_intervals_download_bits_partial Integer Yes scalar_parent_corroborate_omnijar_corrupted Boolean Yes scalar_parent_corroborate_system_addons_corrupted Boolean Yes scalar_parent_networking_data_transferred_kb Record No scalar_parent_telemetry_ecosystem_old_send_time String Yes scalar_parent_telemetry_ecosystem_new_send_time String Yes scalar_parent_startup_is_cold Boolean Yes user_pref_browser_search_region String Yes environment_system_gfx_headless Boolean Yes fxa_configured Boolean Yes scalar_parent_devtools_accessibility_audit_activated Record No scalar_parent_networking_data_transferred_v3_kb Record No scalar_parent_devtools_inspector_node_selection_count Integer Yes hdd_profile_type String Yes hdd_binary_type String Yes hdd_system_type String Yes histogram_parent_update_status_error_code_partial_stage Record No histogram_parent_update_status_error_code_complete_startup Record No histogram_parent_update_state_code_complete_startup Record No histogram_parent_update_download_code_complete Record No histogram_parent_update_state_code_partial_startup Record No histogram_parent_update_download_code_partial Record No histogram_parent_update_state_code_partial_stage Record No histogram_parent_update_state_code_complete_stage Record No histogram_parent_update_status_error_code_partial_startup Record No histogram_parent_update_status_error_code_complete_stage Record No histogram_parent_update_bits_result_partial Record No histogram_parent_update_bits_result_complete Record No histogram_parent_update_can_use_bits_notify Record No scalar_parent_devtools_tooltip_shown Record No scalar_content_dom_event_office_online_load_count Record No scalar_content_webrtc_video_send_codec_used Record No scalar_content_webrtc_video_recv_codec_used Record No scalar_parent_qm_origin_directory_unexpected_filename Record No histogram_parent_cookie_behavior Record No scalar_content_pictureinpicture_opened_method Record No scalar_parent_pictureinpicture_closed_method Record No user_pref_security_enterprise_roots_enabled Boolean Yes user_pref_security_enterprise_roots_auto_enabled Boolean Yes user_pref_security_pki_mitm_detected Boolean Yes attribution_experiment String Yes attribution_variation String Yes user_pref_network_trr_mode Integer Yes scalar_content_pdf_viewer_fallback_shown Integer Yes scalar_content_pdf_viewer_print Integer Yes scalar_parent_pdf_viewer_fallback_shown Integer Yes scalar_parent_pdf_viewer_used Integer Yes scalar_parent_pdf_viewer_print Integer Yes scalar_content_pdf_viewer_used Integer Yes scalar_parent_blocklist_lastmodified_rs_addons String Yes scalar_parent_blocklist_usexml Boolean Yes scalar_parent_blocklist_lastmodified_xml String Yes scalar_parent_blocklist_lastmodified_rs_plugins String Yes scalar_parent_os_environment_is_admin_without_uac Boolean Yes scalar_parent_devtools_accessibility_simulation_activated Record No scalar_parent_firststartup_statuscode Integer Yes scalar_parent_pwmgr_potentially_breached_passwords Integer Yes scalar_parent_contentblocking_trackers_blocked_count Integer Yes scalar_parent_webrtc_hostnameobfuscation_disabled_succeeded Integer Yes scalar_parent_webrtc_hostnameobfuscation_enabled_succeeded Integer Yes scalar_parent_webrtc_hostnameobfuscation_disabled_failed Integer Yes scalar_content_webrtc_hostnameobfuscation_disabled_failed Integer Yes scalar_content_webrtc_hostnameobfuscation_enabled_failed Integer Yes scalar_content_webrtc_hostnameobfuscation_enabled_succeeded Integer Yes scalar_parent_webrtc_hostnameobfuscation_enabled_failed Integer Yes scalar_content_webrtc_hostnameobfuscation_disabled_succeeded Integer Yes scalar_parent_browser_searchinit_engines_cache_corrupted Boolean Yes scalar_parent_update_fix_permissions_attempted Boolean Yes scalar_parent_firststartup_elapsed Integer Yes scalar_parent_security_contentblocker_permissions Record No scalar_parent_a11y_backplate Boolean Yes scalar_parent_security_tls_delegated_credentials_txn Integer Yes experiments_details Record No scalar_parent_networking_ftp_opened_channels_listings Integer Yes scalar_parent_networking_ftp_opened_channels_files Integer Yes default_private_search_engine_data_load_path String Yes default_private_search_engine_data_submission_url String Yes default_private_search_engine_data_origin String Yes default_private_search_engine_data_name String Yes default_private_search_engine String Yes scalar_parent_datasanitization_privacy_clearonshutdown_history Boolean Yes scalar_parent_datasanitization_privacy_clearonshutdown_cookies Boolean Yes scalar_parent_datasanitization_privacy_sanitize_sanitizeonshutdown Boolean Yes scalar_parent_datasanitization_session_permission_exceptions Integer Yes scalar_parent_datasanitization_privacy_clearonshutdown_openwindows Boolean Yes scalar_parent_datasanitization_privacy_clearonshutdown_formdata Boolean Yes scalar_parent_datasanitization_privacy_clearonshutdown_cache Boolean Yes scalar_parent_datasanitization_privacy_clearonshutdown_sitesettings Boolean Yes scalar_parent_datasanitization_privacy_clearonshutdown_sessions Boolean Yes scalar_parent_datasanitization_privacy_clearonshutdown_downloads Boolean Yes scalar_parent_datasanitization_network_cookie_lifetimepolicy Integer Yes scalar_parent_datasanitization_privacy_clearonshutdown_offlineapps Boolean Yes push_api_notification_received Integer Yes loop_activity_counter Record Yes scalar_parent_browser_session_restore_tabbar_restore_clicked Boolean Yes scalar_parent_services_sync_fxa_verification_method String Yes histogram_content_memory_distribution_among_content Record No scalar_parent_browser_session_restore_number_of_win Integer Yes scalar_parent_browser_session_restore_tabbar_restore_available Boolean Yes e10s_cohort String Yes scalar_parent_browser_session_restore_browser_tabs_restorebutton Integer Yes histogram_parent_gc_max_pause_ms Record No scalar_parent_browser_session_restore_number_of_tabs Integer Yes scalar_parent_browser_session_restore_browser_startup_page Integer Yes histogram_content_memory_total Record No histogram_content_gc_max_pause_ms Record No experiment_enrollment_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiments_v0 moz-fx-data-shared-prod telemetry_derived experiments_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#feature_usage","title":"feature_usage","text":"Feature Usage
telemetry.feature_usage
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes submission_date Date Yes activity_segments_v1 String Yes is_allweek_regular_v1 Boolean Yes is_weekday_regular_v1 Boolean Yes is_core_active_v1 Boolean Yes days_since_first_seen Integer Yes days_since_seen Integer Yes new_profile_7_day_activated_v1 Boolean Yes new_profile_14_day_activated_v1 Boolean Yes new_profile_21_day_activated_v1 Boolean Yes first_seen_date Date Yes days_since_created_profile Integer Yes profile_creation_date String Yes country String Yes scalar_parent_os_environment_is_taskbar_pinned Boolean Yes scalar_parent_os_environment_launched_via_desktop Boolean Yes scalar_parent_os_environment_launched_via_other Boolean Yes scalar_parent_os_environment_launched_via_taskbar Boolean Yes scalar_parent_os_environment_launched_via_start_menu Boolean Yes scalar_parent_os_environment_launched_via_other_shortcut Boolean Yes os String Yes normalized_os_version String Yes app_version String Yes attributed Boolean Yes is_default_browser Boolean Yes sync_count_desktop_mean Float Yes sync_count_mobile_mean Float Yes active_hours_sum Float Yes scalar_parent_browser_engagement_total_uri_count_sum Numeric Yes ad_clicks_count_all Integer Yes scalar_parent_browser_engagement_tab_open_event_count_sum Integer Yes scalar_parent_browser_engagement_window_open_event_count_sum Integer Yes scalar_parent_browser_engagement_unique_domains_count_max Integer Yes scalar_parent_browser_engagement_unique_domains_count_mean Float Yes scalar_parent_browser_engagement_max_concurrent_tab_count_max Integer Yes scalar_parent_browser_engagement_max_concurrent_window_count_max Integer Yes search_count_abouthome Integer Yes search_count_all Integer Yes search_count_contextmenu Integer Yes search_count_newtab Integer Yes search_count_organic Integer Yes search_count_searchbar Integer Yes search_count_system Integer Yes search_count_tagged_follow_on Integer Yes search_count_tagged_sap Integer Yes search_count_urlbar Integer Yes search_with_ads_count_all Integer Yes subsample_id Integer Yes is_headless Boolean Yes video_play_time_ms Integer Yes video_encrypted_play_time_ms Integer Yes pdf_viewer_time_to_view_ms_content Integer Yes pip_window_open_duration Integer Yes video_play_time_ms_count Integer Yes video_encrypted_play_time_ms_count Integer Yes pdf_viewer_time_to_view_ms_content_count Integer Yes pip_window_open_duration_count Integer Yes pdf_viewer_doc_size_kb Integer Yes pdf_viewer_doc_size_kb_content Integer Yes pdf_viewer_doc_size_kb_count Integer Yes pdf_viewer_doc_size_kb_content_count Integer Yes sync_signed_in Boolean Yes ccards_saved Boolean Yes pbm_used Boolean Yes unique_sidebars_accessed_count Integer Yes sidebars_accessed_total Integer Yes unique_history_urlbar_indices_picked_count Integer Yes history_urlbar_picked_total Integer Yes unique_remotetab_indices_picked_count Integer Yes remotetab_picked_total Integer Yes uris_from_newtab Integer Yes uris_from_searchbar Integer Yes uris_from_urlbar Integer Yes nav_history_urlbar Integer Yes nav_autocomplete_urlbar Integer Yes nav_visiturl_urlbar Integer Yes nav_searchsuggestion_urlbar Integer Yes nav_topsite_urlbar Integer Yes num_passwords_saved Integer Yes unique_preferences_accessed_count Integer Yes preferences_accessed_total Integer Yes unique_bookmarks_bar_accessed_count Integer Yes bookmarks_bar_accessed_total Integer Yes unique_keyboard_shortcut_count Integer Yes keyboard_shortcut_total Integer Yes pip_count Integer Yes viewed_protection_report_count Integer Yes etp_toggle_off Integer Yes etp_toggle_on Integer Yes protections_popup Integer Yes ccard_filled Integer Yes ccard_saved Integer Yes installed_extension Integer Yes installed_theme Integer Yes installed_l10n Integer Yes used_stored_pw Integer Yes password_filled Integer Yes password_saved Integer Yes pwmgr_opened Integer Yes pwmgr_copy_or_show_info Integer Yes pwmgr_interacted_breach Integer Yes generated_password Integer Yes fxa_connect Integer Yes normandy_enrolled Integer Yes downloads Integer Yes pdf_downloads Integer Yes image_downloads Integer Yes media_downloads Integer Yes msoffice_downloads Integer Yes newtab_click Integer Yes bookmark_added_from_newtab Integer Yes saved_to_pocket_from_newtab Integer Yes newtab_prefs_opened Integer Yes activitystream_reported_3rdparty_abouthome Boolean Yes activitystream_reported_3rdparty_aboutnewtab Boolean Yes activitystream_reported_3rdparty_both Boolean Yes activitystream_topsite_clicks Integer Yes activitystream_highlight_clicks Integer Yes activitystream_pocket_clicks Integer Yes activitystream_reported_newtab_search_off Boolean Yes activitystream_reported_topsites_off Boolean Yes activitystream_reported_pocket_off Boolean Yes activitystream_reported_highlights_off Boolean Yes activitystream_reported_sponsored_topsites_off Boolean Yes activitystream_sessions_abouthome Integer Yes activitystream_sessions_newtab Integer Yes activitystream_sessions_both Integer Yes num_addblockers Integer Yes has_notes_extension Boolean Yes has_facebook_container_extension Boolean Yes has_multiaccount_container_extension Boolean Yes has_private_relay_extension Boolean Yes newtabpage_disabled Boolean Yes num_topsites_new_tab_impressions_sponsored Integer Yes num_new_tab_topsites_clicks_sponsored Integer Yes activitystream_sponsored_pocket_clicks Integer Yes activitystream_sponsored_topsite_clicks Integer Yes activitystream_organic_pocket_clicks Integer Yes activitystream_organic_topsite_clicks Integer Yes activitystream_reported_sponsored_topstories_off Boolean Yes search_count_urlbar_handoff Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived feature_usage_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#fenix_clients_last_seen","title":"fenix_clients_last_seen","text":"Fenix Clients Last Seen
telemetry.fenix_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#fenix_events_v1","title":"fenix_events_v1","text":"Fenix Events V1
telemetry.fenix_events_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#fennec_ios_events_v1","title":"fennec_ios_events_v1","text":"Fennec Ios Events V1
telemetry.fennec_ios_events_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry mobile_event Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_accounts_exact_mau28_by_dimensions","title":"firefox_accounts_exact_mau28_by_dimensions","text":"Firefox Accounts Exact Mau28 By Dimensions
telemetry.firefox_accounts_exact_mau28_by_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes id_bucket Integer Yes country String Yes seen_in_tier1_country_mau Integer Yes country_code String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_accounts_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_accounts_exact_mau28_by_dimensions_v1","title":"firefox_accounts_exact_mau28_by_dimensions_v1","text":"Firefox Accounts Exact Mau28 By Dimensions V1
telemetry.firefox_accounts_exact_mau28_by_dimensions_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes id_bucket Integer Yes country String Yes seen_in_tier1_country_mau Integer Yes country_code String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived exact_mau28_v1 moz-fx-data-shared-prod static country_names_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_accounts_exact_mau28_v1","title":"firefox_accounts_exact_mau28_v1","text":"Firefox Accounts Exact Mau28 V1
telemetry.firefox_accounts_exact_mau28_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_accounts_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_desktop_exact_mau28","title":"firefox_desktop_exact_mau28","text":"Firefox Desktop Exact Mau28
telemetry.firefox_desktop_exact_mau28
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes tier1_wau Integer Yes tier1_dau Integer Yes visited_5_uri_mau Integer Yes visited_5_uri_wau Integer Yes visited_5_uri_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_desktop_exact_mau28_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_desktop_exact_mau28_by_client_count_dimensions","title":"firefox_desktop_exact_mau28_by_client_count_dimensions","text":"Firefox Desktop Exact Mau28 By Client Count Dimensions
telemetry.firefox_desktop_exact_mau28_by_client_count_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes visited_5_uri_mau Integer Yes visited_5_uri_wau Integer Yes visited_5_uri_dau Integer Yes dev_tools_mau Integer Yes dev_tools_wau Integer Yes dev_tools_dau Integer Yes app_name String Yes app_version String Yes country String Yes locale String Yes normalized_channel String Yes os String Yes os_version String Yes distribution_id String Yes country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived firefox_desktop_exact_mau28_by_client_count_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_desktop_exact_mau28_by_dimensions","title":"firefox_desktop_exact_mau28_by_dimensions","text":"Firefox Desktop Exact Mau28 By Dimensions
telemetry.firefox_desktop_exact_mau28_by_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes visited_5_uri_mau Integer Yes visited_5_uri_wau Integer Yes visited_5_uri_dau Integer Yes id_bucket Integer Yes source String Yes medium String Yes campaign String Yes content String Yes country String Yes country_name String Yes distribution_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_desktop_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_desktop_exact_mau28_by_dimensions_v1","title":"firefox_desktop_exact_mau28_by_dimensions_v1","text":"Firefox Desktop Exact Mau28 By Dimensions V1
telemetry.firefox_desktop_exact_mau28_by_dimensions_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes visited_5_uri_mau Integer Yes visited_5_uri_wau Integer Yes visited_5_uri_dau Integer Yes id_bucket Integer Yes source String Yes medium String Yes campaign String Yes content String Yes country String Yes country_name String Yes distribution_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived firefox_desktop_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_desktop_exact_mau28_v1","title":"firefox_desktop_exact_mau28_v1","text":"Firefox Desktop Exact Mau28 V1
telemetry.firefox_desktop_exact_mau28_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes tier1_wau Integer Yes tier1_dau Integer Yes visited_5_uri_mau Integer Yes visited_5_uri_wau Integer Yes visited_5_uri_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod static firefox_desktop_imputed_mau28_v1 moz-fx-data-shared-prod telemetry_derived firefox_desktop_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_desktop_usage_2021","title":"firefox_desktop_usage_2021","text":"Firefox Desktop Usage 2021
telemetry.firefox_desktop_usage_2021
Stable source for 2021 KPI data on Firefox desktop usage, including cumulative days of use (cdou
) and new profiles, broken out by dimensions. Contains data back to 2017 for year-over-year comparisons.
New profile counts are determined using the first_seen_date
approach where we consider a profile new on the day it first sends a main
ping.
Queries should generally be SUM
of the cdou
, new_profiles
, dau
, wau
, or mau
fields, grouped by any dimensions you want to compare or filtered to only your target population.
Example query to see CDOU and new profiles over time for the Windows population:
SELECT\n submission_date,\n os,\n SUM(cdou) AS cdou,\n SUM(new_profiles) AS new_profiles\nFROM mozdata.telemetry.firefox_desktop_usage_2021\nWHERE os = 'Windows'\nGROUP BY submission_date\nORDER BY submission_date\n
Note that some amount of the upstream data in clients_last_seen
will be deleted over time in response to user-initiated deletion requests, but the aggregates in this view (which are no longer client-level) will remain stable. Expect to see slightly higher results from this table compared to queries on client-level tables. The underlying table was initially created on 2021-02-19.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable cdou Integer Yes cumulative_new_profiles Integer Yes attributed Boolean Yes submission_date Date Yes dau Integer Yes mau Integer Yes wau Integer Yes new_profiles Integer Yes submission_year Integer Yes id_bucket Integer Yes activity_segment String Yes os String Yes channel String Yes source String Yes medium String Yes campaign String Yes content String Yes country String Yes distribution_id String Yes country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived firefox_desktop_usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_day_2_7_activation","title":"firefox_nondesktop_day_2_7_activation","text":"Firefox Nondesktop Day 2 7 Activation
telemetry.firefox_nondesktop_day_2_7_activation
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived firefox_nondesktop_day_2_7_activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28","title":"firefox_nondesktop_exact_mau28","text":"Firefox Nondesktop Exact Mau28
telemetry.firefox_nondesktop_exact_mau28
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes tier1_wau Integer Yes tier1_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_nondesktop_exact_mau28_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28_by_client_count_dimensions","title":"firefox_nondesktop_exact_mau28_by_client_count_dimensions","text":"Firefox Nondesktop Exact Mau28 By Client Count Dimensions
telemetry.firefox_nondesktop_exact_mau28_by_client_count_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes app_name String Yes app_version String Yes arch String Yes normalized_channel String Yes default_search String Yes distribution_id String Yes country String Yes locale String Yes os String Yes osversion String Yes country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived firefox_nondesktop_exact_mau28_by_client_count_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28_by_dimensions","title":"firefox_nondesktop_exact_mau28_by_dimensions","text":"Firefox Nondesktop Exact Mau28 By Dimensions
telemetry.firefox_nondesktop_exact_mau28_by_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes id_bucket Integer Yes product String Yes normalized_channel String Yes campaign String Yes country String Yes distribution_id String Yes new_profiles Integer Yes country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_nondesktop_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28_by_dimensions_v1","title":"firefox_nondesktop_exact_mau28_by_dimensions_v1","text":"Firefox Nondesktop Exact Mau28 By Dimensions V1
telemetry.firefox_nondesktop_exact_mau28_by_dimensions_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes id_bucket Integer Yes product String Yes normalized_channel String Yes campaign String Yes country String Yes distribution_id String Yes new_profiles Integer Yes country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod static country_codes_v1 moz-fx-data-shared-prod telemetry_derived firefox_nondesktop_exact_mau28_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28_by_product","title":"firefox_nondesktop_exact_mau28_by_product","text":"Firefox Nondesktop Exact Mau28 By Product
telemetry.firefox_nondesktop_exact_mau28_by_product
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes product String Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes tier1_wau Integer Yes tier1_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_nondesktop_exact_mau28_by_product_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28_by_product_v1","title":"firefox_nondesktop_exact_mau28_by_product_v1","text":"Firefox Nondesktop Exact Mau28 By Product V1
telemetry.firefox_nondesktop_exact_mau28_by_product_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes product String Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes tier1_wau Integer Yes tier1_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_nondesktop_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28_v1","title":"firefox_nondesktop_exact_mau28_v1","text":"Firefox Nondesktop Exact Mau28 V1
telemetry.firefox_nondesktop_exact_mau28_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes tier1_wau Integer Yes tier1_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_nondesktop_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#first_shutdown","title":"first_shutdown","text":"Historical Pings for telemetry/first-shutdown
telemetry.first_shutdown
A historical view of pings sent for the telemetry/first-shutdown
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable first_shutdown_v5 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#first_shutdown_summary","title":"first_shutdown_summary","text":"First Shutdown Summary
telemetry.first_shutdown_summary
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived first_shutdown_summary_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#first_shutdown_summary_v4","title":"first_shutdown_summary_v4","text":"First Shutdown Summary V4
telemetry.first_shutdown_summary_v4
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived first_shutdown_summary_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#first_shutdown_use_counter","title":"first_shutdown_use_counter","text":"Historical Pings for telemetry/first-shutdown-use-counter
telemetry.first_shutdown_use_counter
A historical view of pings sent for the telemetry/first-shutdown-use-counter
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable first_shutdown_use_counter_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#flash_shield_study","title":"flash_shield_study","text":"Historical Pings for telemetry/flash-shield-study
telemetry.flash_shield_study
A historical view of pings sent for the telemetry/flash-shield-study
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable flash_shield_study_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#focus_event","title":"focus_event","text":"Focus Event
telemetry.focus_event
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable focus_event_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#fog_decision_support_percentiles","title":"fog_decision_support_percentiles","text":"Fog Decision Support Percentiles
telemetry.fog_decision_support_percentiles
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes ping String Yes channel String Yes metric_name String Yes percentiles Integer No mean Float Yes std_dev Float Yes median Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived fog_decision_support_percentiles_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#frecency_update","title":"frecency_update","text":"Historical Pings for telemetry/frecency-update
telemetry.frecency_update
A historical view of pings sent for the telemetry/frecency-update
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable frecency_update_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#ftu","title":"ftu","text":"Historical Pings for telemetry/ftu
telemetry.ftu
A historical view of pings sent for the telemetry/ftu
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable ftu_v3 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#health","title":"health","text":"Health
telemetry.health
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable health_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#heartbeat","title":"heartbeat","text":"Historical Pings for telemetry/heartbeat
telemetry.heartbeat
A historical view of pings sent for the telemetry/heartbeat
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes engagement_type String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes environment Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable heartbeat_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#install","title":"install","text":"Install
telemetry.install
View based on firefox_installer.install table. The attribution column in that table is a URL encoded string. This view extracts the fields in the attribution column into STRUCT< campaign STRING, content STRING, dlsource STRING, dltoken STRING, experiment STRING, medium STRING, source STRING, ua STRING, variation STRING
- Owners:
- gleonard@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_installer install Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#installation","title":"installation","text":"Historical Pings for telemetry/installation
telemetry.installation
A historical view of pings sent for the telemetry/installation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes adgroup Adjust AdGroup String Yes app_name String Yes arch device architecture String Yes campaign Adjust campaign String Yes channel String Yes client_id telemetry client_id String Yes created String Yes creative Adjust creative String Yes device_id hashed Google Ad ID String Yes document_id The document ID specified in the URI when the client sent this message String Yes locale application locale, such as 'en-US' String Yes manufacturer Build.MANUFACTURER String Yes metadata Record Yes model Build.MODEL String Yes network Adjust network String Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes os String Yes osversion String Yes profile_date Number of days since the epoch that the profile was created Integer Yes reason String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes seq 0-indexed sequence number Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes tz timezone offset in minutes from UTC Integer Yes v Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable installation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#latest_versions","title":"latest_versions","text":"Latest Versions
telemetry.latest_versions
Please provide a description for the query
Schema Column Description Type Nullable channel String Yes latest_version Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived latest_versions_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#lockwise_mobile_events","title":"lockwise_mobile_events","text":"Lockwise Mobile Events
telemetry.lockwise_mobile_events
Please provide a description for the query
Schema Column Description Type Nullable os String Yes client_id String Yes submission_date_s3 Date Yes submission_timestamp Timestamp Yes device String Yes app_build_id String Yes timestamp Integer Yes category String Yes method String Yes object String Yes value String Yes extra Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry lockwise_mobile_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#lockwise_mobile_events_v1","title":"lockwise_mobile_events_v1","text":"Lockwise Mobile Events V1
telemetry.lockwise_mobile_events_v1
Please provide a description for the query
Schema Column Description Type Nullable os String Yes client_id String Yes submission_date_s3 Date Yes submission_timestamp Timestamp Yes device String Yes app_build_id String Yes timestamp Integer Yes category String Yes method String Yes object String Yes value String Yes extra Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry telemetry_focus_event_parquet_v1 moz-fx-data-shared-prod telemetry telemetry_mobile_event_parquet_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main","title":"main","text":"Historical Pings for telemetry/main
telemetry.main
A historical view of pings sent for the telemetry/main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable main_v5 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_1pct","title":"main_1pct","text":"Main 1 percent
telemetry.main_1pct
A materialized 1 percent sample of main pings without use counters intended as a performance optimization for exploratory queries. It contains only the most recent six months of data.
Queries on this table are logically equivalent to queries on top of main_v5
with a filter on sample_id = 0
, but this table has a few advantages. First, query estimates will be much more accurate; estimates of bytes scanned can't take into account clustering, so we sometimes see valid queries get rejected by Redash due to appearing expensive when they really aren't. Second, simple queries should complete much more quickly on this table compared to main_v5
; for simple queries on a very wide table like this, the execution time appears to be dominated by BQ simply scanning metadata for all the blocks it might need to touch. Because this table contains only 1% of main ping data, it is likely to have many fewer blocks to scan through.
An extra-experimental feature here is the addition of subsample_id, an additional clustering field that allows for queries to efficiently filter down to a 0.01% sample. Like sample_id, it ranges from 0 to 99.
Clustering fields: normalized_channel
, sample_id
, subsample_id
See also: main_nightly
- Owners:
- ascholtz@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry main_remainder_1pct Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_nightly","title":"main_nightly","text":"Main Nightly
telemetry.main_nightly
A materialized subset of main pings intended as a performance optimization for exploratory queries. It contains only the most recent six months of data for the nightly channel of Firefox.
Queries on this table are logically equivalent to queries on top of main_v5
with a filter on normalized_channel = 'nightly'
, but this table has a few advantages. First, query estimates will be much more accurate; estimates of bytes scanned can't take into account clustering, so we sometimes see valid queries get rejected by Redash due to appearing expensive when they really aren't. Second, simple queries should complete much more quickly on this table compared to main_v5
; for simple queries on a very wide table like this, the execution time appears to be dominated by BQ simply scanning metadata for all the blocks it might need to touch. Because this table contains only a fraction of main ping data, it is likely to have many fewer blocks to scan through.
Clustering fields: normalized_channel
, sample_id
See also: main_nightly
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable additional_properties String Yes application Record Yes client_id String Yes creation_date String Yes document_id String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes payload Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived main_nightly_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_remainder_1pct","title":"main_remainder_1pct","text":"Main Remainder 1 percent
telemetry.main_remainder_1pct
A materialized 1 percent sample of main pings without use counter data intended as a performance optimization for exploratory queries. It contains only the most recent six months of data.
Queries on this table are logically equivalent to queries on top of main_v5
with a filter on sample_id = 0
, but this table has a few advantages. First, query estimates will be much more accurate; estimates of bytes scanned can't take into account clustering, so we sometimes see valid queries get rejected by Redash due to appearing expensive when they really aren't. Second, simple queries should complete much more quickly on this table compared to main_v5
; for simple queries on a very wide table like this, the execution time appears to be dominated by BQ simply scanning metadata for all the blocks it might need to touch. Because this table contains only 1% of main ping data, it is likely to have many fewer blocks to scan through.
An extra-experimental feature here is the addition of subsample_id, an additional clustering field that allows for queries to efficiently filter down to a 0.01% sample. Like sample_id, it ranges from 0 to 99.
Clustering fields: normalized_channel
, sample_id
, subsample_id
See also: main_nightly
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable subsample_id Integer Yes additional_properties String Yes application Record Yes client_id String Yes creation_date String Yes document_id String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes payload Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived main_remainder_1pct_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_summary","title":"main_summary","text":"Main Summary
telemetry.main_summary
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry main_summary_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_summary_v3","title":"main_summary_v3","text":"Main Summary V3
telemetry.main_summary_v3
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived main_summary_v3 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_summary_v4","title":"main_summary_v4","text":"Main Summary V4
telemetry.main_summary_v4
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived main_summary_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_use_counter","title":"main_use_counter","text":"Historical Pings for telemetry/main-use-counter
telemetry.main_use_counter
A historical view of pings sent for the telemetry/main-use-counter
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable main_use_counter_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_use_counter_1pct","title":"main_use_counter_1pct","text":"Main Use Counter 1 percent
telemetry.main_use_counter_1pct
A materialized 1 percent sample of main pings use counter data intended as a performance optimization for exploratory queries. It contains only the most recent six months of data.
Queries on this table are logically equivalent to queries on top of main_use_counter_v4
with a filter on sample_id = 0
, but this table has a few advantages. First, query estimates will be much more accurate; estimates of bytes scanned can't take into account clustering, so we sometimes see valid queries get rejected by Redash due to appearing expensive when they really aren't. Second, simple queries should complete much more quickly on this table compared to main_use_counter_v4
; for simple queries on a very wide table like this, the execution time appears to be dominated by BQ simply scanning metadata for all the blocks it might need to touch. Because this table contains only 1% of main ping data, it is likely to have many fewer blocks to scan through.
An extra-experimental feature here is the addition of subsample_id, an additional clustering field that allows for queries to efficiently filter down to a 0.01% sample. Like sample_id, it ranges from 0 to 99.
Clustering fields: normalized_channel
, sample_id
, subsample_id
See also: main_nightly
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable subsample_id Integer Yes additional_properties String Yes client_id String Yes document_id String Yes metadata Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes payload Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived main_use_counter_1pct_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#malware_addon_states","title":"malware_addon_states","text":"Historical Pings for telemetry/malware-addon-states
telemetry.malware_addon_states
A historical view of pings sent for the telemetry/malware-addon-states
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable malware_addon_states_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#mobile_event","title":"mobile_event","text":"Mobile Event
telemetry.mobile_event
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable mobile_event_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#mobile_metrics","title":"mobile_metrics","text":"Historical Pings for telemetry/mobile-metrics
telemetry.mobile_metrics
A historical view of pings sent for the telemetry/mobile-metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes arch String Yes client_id String Yes created_date String Yes created_timestamp Integer Yes device String Yes document_id The document ID specified in the URI when the client sent this message String Yes experiments Record No locale String Yes metadata Record Yes metrics Record No normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes os String Yes osversion String Yes profile_date Integer Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes seq Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes tz Integer Yes v Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable mobile_metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#mobile_usage_2021","title":"mobile_usage_2021","text":"Mobile Usage 2021
telemetry.mobile_usage_2021
Stable source for 2021 KPI data on mobile usage, including cumulative days of use (cdou
) broken out by dimensions. Contains data back to 2017 for year-over-year comparisons.
Queries should generally be SUM
of the cdou
, dau
, wau
, or mau
fields, grouped by any dimensions you want to compare or filtered to only your target population.
Example query to see CDOU over time for Firefox for iOS:
SELECT\n submission_date,\n SUM(cdou) AS cdou\nFROM mozdata.telemetry.mobile_usage_2021\nWHERE app_name = 'firefox_ios'\nGROUP BY submission_date\nORDER BY submission_date\n
Note that some amount of the upstream data in nondesktop_clients_last_seen
will be deleted over time in response to user-initiated deletion requests, but the aggregates in this view (which are no longer client-level) will remain stable. Expect to see slightly higher results from this table compared to queries on client-level tables.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes cdou Integer Yes wau Integer Yes mau Integer Yes dau Integer Yes id_bucket Integer Yes app_name String Yes canonical_app_name String Yes channel String Yes os String Yes campaign String Yes country String Yes country_name String Yes distribution_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod static country_codes_v1 moz-fx-data-shared-prod telemetry_derived mobile_usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#modules","title":"modules","text":"Historical Pings for telemetry/modules
telemetry.modules
A historical view of pings sent for the telemetry/modules
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable modules_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#new_profile","title":"new_profile","text":"Historical Pings for telemetry/new-profile
telemetry.new_profile
A historical view of pings sent for the telemetry/new-profile
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable new_profile_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#newtab_interactions","title":"newtab_interactions","text":"Newtab Interactions
telemetry.newtab_interactions
Please provide a description for the query
Schema Column Description Type Nullable newtab_visit_id String Yes client_id String Yes submission_date Date Yes search_access_point String Yes experiments Record No default_private_search_engine String Yes default_search_engine String Yes os String Yes os_version String Yes country_code String Yes channel String Yes browser_version String Yes browser_name String Yes newtab_open_source String Yes newtab_visit_started_at Integer Yes newtab_visit_ended_at Integer Yes topsite_clicks Integer Yes sponsored_topsite_clicks Integer Yes topsite_impressions Integer Yes sponsored_topsite_impressions Integer Yes searches Integer Yes tagged_search_ad_clicks Integer Yes tagged_search_ad_impressions Integer Yes follow_on_search_ad_clicks Integer Yes follow_on_search_ad_impressions Integer Yes tagged_follow_on_search_ad_clicks Integer Yes tagged_follow_on_search_ad_impressions Integer Yes pocket_story_position Integer Yes pocket_enabled Boolean Yes pocket_impressions Integer Yes sponsored_pocket_impressions Integer Yes organic_pocket_impressions Integer Yes pocket_clicks Integer Yes sponsored_pocket_clicks Integer Yes organic_pocket_clicks Integer Yes pocket_saves Integer Yes sponsored_pocket_saves Integer Yes organic_pocket_saves Integer Yes pocket_is_signed_in Boolean Yes pocket_sponsored_stories_enabled Boolean Yes topsites_enabled Boolean Yes newtab_homepage_category String Yes newtab_newtab_category String Yes newtab_search_enabled Boolean Yes legacy_telemetry_client_id String Yes is_new_profile Boolean Yes activity_segment String Yes topsites_rows Integer Yes organic_topsite_clicks Integer Yes organic_topsite_impressions Integer Yes search_engine String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived newtab_interactions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#newtab_visits","title":"newtab_visits","text":"Newtab Visits
telemetry.newtab_visits
Visits on the newtab page, one row per visit per-day (identified by the visit id).
- Owners:
- anicholson@mozilla.com
Schema Column Description Type Nullable legacy_telemetry_client_id String Yes newtab_visit_id String Yes submission_date Date Yes client_id String Yes normalized_os String Yes normalized_os_version String Yes country_code String Yes channel String Yes browser_version String Yes browser_name String Yes default_search_engine String Yes default_private_search_engine String Yes pocket_is_signed_in Boolean Yes pocket_enabled Boolean Yes pocket_sponsored_stories_enabled Boolean Yes topsites_enabled Boolean Yes newtab_homepage_category String Yes newtab_newtab_category String Yes newtab_search_enabled Boolean Yes topsites_rows Integer Yes newtab_blocked_sponsors String No experiments Record No newtab_visit_started_at Integer Yes newtab_visit_ended_at Integer Yes newtab_open_source String Yes had_non_impression_engagement Boolean Yes search_interactions Record No topsite_tile_interactions Record No pocket_interactions Record No is_new_profile Boolean Yes activity_segment String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived newtab_visits_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#nondesktop_clients_last_seen","title":"nondesktop_clients_last_seen","text":"Nondesktop Clients Last Seen
telemetry.nondesktop_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry nondesktop_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#nondesktop_clients_last_seen_v1","title":"nondesktop_clients_last_seen_v1","text":"Nondesktop Clients Last Seen V1
telemetry.nondesktop_clients_last_seen_v1
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#normandy_login_study","title":"normandy_login_study","text":"Historical Pings for telemetry/normandy-login-study
telemetry.normandy_login_study
A historical view of pings sent for the telemetry/normandy-login-study
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable normandy_login_study_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#optout","title":"optout","text":"Historical Pings for telemetry/optout
telemetry.optout
A historical view of pings sent for the telemetry/optout
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable optout_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#outofdate_notifications_system_addon","title":"outofdate_notifications_system_addon","text":"Historical Pings for telemetry/outofdate-notifications-system-addon
telemetry.outofdate_notifications_system_addon
A historical view of pings sent for the telemetry/outofdate-notifications-system-addon
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable outofdate_notifications_system_addon_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#pioneer_study","title":"pioneer_study","text":"Historical Pings for telemetry/pioneer-study
telemetry.pioneer_study
A historical view of pings sent for the telemetry/pioneer-study
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload pioneer-study - Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type doc_type, restated String Yes version Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable pioneer_study_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#pre_account","title":"pre_account","text":"Historical Pings for telemetry/pre-account
telemetry.pre_account
A historical view of pings sent for the telemetry/pre-account
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable pre_account_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#prio","title":"prio","text":"Historical Pings for telemetry/prio
telemetry.prio
A historical view of pings sent for the telemetry/prio
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable prio_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#regrets_reporter_update","title":"regrets_reporter_update","text":"Historical Pings for telemetry/regrets-reporter-update
telemetry.regrets_reporter_update
A historical view of pings sent for the telemetry/regrets-reporter-update
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable regrets_reporter_update_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#releases","title":"releases","text":"Releases
telemetry.releases
Firefox release information imported from https://product-details.mozilla.org/1.0/firefox.json
For more context, see https://wiki.mozilla.org/Release_Management/Product_details
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable build_number Integer Yes category String Yes date Date Yes description String Yes is_security_driven Boolean Yes product String Yes version String Yes major_version Numeric Yes minor_version Numeric Yes patch_version Numeric Yes beta_version Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived releases_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#releases_latest","title":"releases_latest","text":"Releases Latest
telemetry.releases_latest
This is built on top of telemetry.releases and aims to provide an entry on each day for on each day for the major release channels (\"release\", \"beta\", \"esr\") along with the latest Firefox version released on that day or earlier for those channels.
Firefox release information imported from https://product-details.mozilla.org/1.0/firefox.json
For more context, see https://wiki.mozilla.org/Release_Management/Product_details
Schema Column Description Type Nullable date Date Yes product String Yes category String Yes channel String Yes build_number Integer Yes release_date Date Yes version String Yes major_version Numeric Yes minor_version Numeric Yes patch_version Numeric Yes beta_version Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry releases Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#rocket_android_events_v1","title":"rocket_android_events_v1","text":"Rocket Android Events V1
telemetry.rocket_android_events_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry focus_event Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#rolling_cohorts","title":"rolling_cohorts","text":"Rolling Cohorts
telemetry.rolling_cohorts
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes cohort_date Date Yes activity_segment String Yes app_version String Yes attribution_campaign String Yes attribution_content String Yes attribution_experiment String Yes attribution_medium String Yes attribution_source String Yes attribution_variation String Yes city String Yes country String Yes device_model String Yes distribution_id String Yes is_default_browser Boolean Yes locale String Yes normalized_app_name String Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes os_version_major Integer Yes os_version_minor Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived rolling_cohorts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#saved_session","title":"saved_session","text":"Historical Pings for telemetry/saved-session
telemetry.saved_session
A historical view of pings sent for the telemetry/saved-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable saved_session_v5 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#saved_session_use_counter","title":"saved_session_use_counter","text":"Historical Pings for telemetry/saved-session-use-counter
telemetry.saved_session_use_counter
A historical view of pings sent for the telemetry/saved-session-use-counter
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable saved_session_use_counter_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#searchvol","title":"searchvol","text":"Historical Pings for telemetry/searchvol
telemetry.searchvol
A historical view of pings sent for the telemetry/searchvol
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable searchvol_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#searchvolextra","title":"searchvolextra","text":"Historical Pings for telemetry/searchvolextra
telemetry.searchvolextra
A historical view of pings sent for the telemetry/searchvolextra
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable searchvolextra_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#shield_icq_v1","title":"shield_icq_v1","text":"Historical Pings for telemetry/shield-icq-v1
telemetry.shield_icq_v1
A historical view of pings sent for the telemetry/shield-icq-v1
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable shield_icq_v1_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#shield_study","title":"shield_study","text":"Historical Pings for telemetry/shield-study
telemetry.shield_study
A historical view of pings sent for the telemetry/shield-study
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable shield_study_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#shield_study_addon","title":"shield_study_addon","text":"Historical Pings for telemetry/shield-study-addon
telemetry.shield_study_addon
A historical view of pings sent for the telemetry/shield-study-addon
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable shield_study_addon_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#shield_study_error","title":"shield_study_error","text":"Historical Pings for telemetry/shield-study-error
telemetry.shield_study_error
A historical view of pings sent for the telemetry/shield-study-error
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable shield_study_error_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#simpleprophet_forecasts","title":"simpleprophet_forecasts","text":"Simpleprophet Forecasts
telemetry.simpleprophet_forecasts
Please provide a description for the query
Schema Column Description Type Nullable asofdate Date Yes datasource String Yes date Date Yes type String Yes value Float Yes low90 Float Yes high90 Float Yes p10 Float Yes p20 Float Yes p30 Float Yes p40 Float Yes p50 Float Yes p60 Float Yes p70 Float Yes p80 Float Yes p90 Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived simpleprophet_forecasts_desktop_v1 moz-fx-data-shared-prod telemetry_derived simpleprophet_forecasts_fxa_v1 moz-fx-data-shared-prod telemetry_derived simpleprophet_forecasts_mobile_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#smoot_usage_day_0","title":"smoot_usage_day_0","text":"Smoot Usage Day 0
telemetry.smoot_usage_day_0
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes usage String Yes dau Integer Yes wau Integer Yes mau Integer Yes active_days_in_week Integer Yes id_bucket Integer Yes app_name String Yes app_version String Yes country String Yes locale String Yes os String Yes os_version String Yes channel String Yes attributed Boolean Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#smoot_usage_day_13","title":"smoot_usage_day_13","text":"Smoot Usage Day 13
telemetry.smoot_usage_day_13
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes usage String Yes new_profiles Integer Yes active_in_week_0 Integer Yes active_in_week_1 Integer Yes active_in_weeks_0_and_1 Integer Yes new_profile_active_in_week_0 Integer Yes new_profile_active_in_week_1 Integer Yes new_profile_active_in_weeks_0_and_1 Integer Yes id_bucket Integer Yes app_name String Yes app_version String Yes country String Yes locale String Yes os String Yes os_version String Yes channel String Yes attributed Boolean Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#socorro_crash","title":"socorro_crash","text":"Socorro Crash
telemetry.socorro_crash
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry socorro_crash_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#socorro_crash_v2","title":"socorro_crash_v2","text":"Socorro Crash V2
telemetry.socorro_crash_v2
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived socorro_crash_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#sponsored_tiles_ad_request_fill","title":"sponsored_tiles_ad_request_fill","text":"Sponsored Tiles Ad Request Fill
telemetry.sponsored_tiles_ad_request_fill
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes country String Yes device String Yes form_factor String Yes normalized_os String Yes adm_request_sum Integer Yes adm_empty_response_sum Integer Yes adm_response_tiles_min Integer Yes adm_response_rate Float Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#sponsored_tiles_clients_daily","title":"sponsored_tiles_clients_daily","text":"Sponsored Tiles Clients Daily
telemetry.sponsored_tiles_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes device String Yes client_id String Yes browser_version_info Record Yes country String Yes locale String Yes normalized_channel String Yes normalized_os String Yes is_new_profile Boolean Yes sample_id Integer Yes experiments Record No sponsored_tiles_click_count Integer Yes sponsored_tiles_impression_count Integer Yes sponsored_tiles_dismissal_count Integer Yes sponsored_tiles_disable_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived sponsored_tiles_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#ssl_ratios","title":"ssl_ratios","text":"Ssl Ratios
telemetry.ssl_ratios
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes os String Yes country String Yes reporting_ratio Float Yes normalized_pageloads Float Yes ratio Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry ssl_ratios_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#ssl_ratios_v1","title":"ssl_ratios_v1","text":"Ssl Ratios V1
telemetry.ssl_ratios_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes os String Yes country String Yes reporting_ratio Float Yes normalized_pageloads Float Yes ratio Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived ssl_ratios_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#suggest_clients_daily","title":"suggest_clients_daily","text":"Suggest Clients Daily
telemetry.suggest_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes block_nonsponsored_count Integer Yes block_sponsored_count Integer Yes block_nonsponsored_bestmatch_count Integer Yes block_sponsored_bestmatch_count Integer Yes click_nonsponsored_count Integer Yes click_sponsored_count Integer Yes click_nonsponsored_bestmatch_count Integer Yes click_sponsored_bestmatch_count Integer Yes help_nonsponsored_count Integer Yes help_sponsored_count Integer Yes help_nonsponsored_bestmatch_count Integer Yes help_sponsored_bestmatch_count Integer Yes impression_nonsponsored_count Integer Yes impression_sponsored_count Integer Yes impression_nonsponsored_bestmatch_count Integer Yes impression_sponsored_bestmatch_count Integer Yes user_pref_data_collection_enabled Boolean Yes user_pref_sponsored_suggestions_enabled Boolean Yes user_pref_firefox_suggest_enabled Boolean Yes browser_version_info Record Yes experiments Record No locale String Yes normalized_channel String Yes normalized_os_version String Yes sample_id Integer Yes country String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived suggest_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#sync","title":"sync","text":"Sync
telemetry.sync
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable sync_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#system_addon_deployment_diagnostics","title":"system_addon_deployment_diagnostics","text":"Historical Pings for telemetry/system-addon-deployment-diagnostics
telemetry.system_addon_deployment_diagnostics
A historical view of pings sent for the telemetry/system-addon-deployment-diagnostics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable system_addon_deployment_diagnostics_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_anonymous_parquet","title":"telemetry_anonymous_parquet","text":"Telemetry Anonymous Parquet
telemetry.telemetry_anonymous_parquet
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes metadata Record Yes application Record Yes creation_date String Yes id String Yes payload Record Yes type String Yes version Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_anonymous_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_anonymous_parquet_v1","title":"telemetry_anonymous_parquet_v1","text":"Telemetry Anonymous Parquet V1
telemetry.telemetry_anonymous_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry anonymous Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_core_parquet","title":"telemetry_core_parquet","text":"Telemetry Core Parquet
telemetry.telemetry_core_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry telemetry_core_parquet_v3 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_core_parquet_v3","title":"telemetry_core_parquet_v3","text":"Telemetry Core Parquet V3
telemetry.telemetry_core_parquet_v3
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry core Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_downgrade_parquet","title":"telemetry_downgrade_parquet","text":"Telemetry Downgrade Parquet
telemetry.telemetry_downgrade_parquet
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes id String Yes creation_date String Yes application Record Yes client_id String Yes version Float Yes payload Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_downgrade_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_downgrade_parquet_v1","title":"telemetry_downgrade_parquet_v1","text":"Telemetry Downgrade Parquet V1
telemetry.telemetry_downgrade_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry downgrade Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_focus_event_parquet","title":"telemetry_focus_event_parquet","text":"Telemetry Focus Event Parquet
telemetry.telemetry_focus_event_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry telemetry_focus_event_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_focus_event_parquet_v1","title":"telemetry_focus_event_parquet_v1","text":"Telemetry Focus Event Parquet V1
telemetry.telemetry_focus_event_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry focus_event Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_heartbeat_parquet","title":"telemetry_heartbeat_parquet","text":"Telemetry Heartbeat Parquet
telemetry.telemetry_heartbeat_parquet
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes type String Yes id String Yes creation_date String Yes version Float Yes client_id String Yes application Record Yes payload Record Yes metadata Record Yes engagement_type String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_heartbeat_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_heartbeat_parquet_v1","title":"telemetry_heartbeat_parquet_v1","text":"Telemetry Heartbeat Parquet V1
telemetry.telemetry_heartbeat_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry heartbeat Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_ip_privacy","title":"telemetry_ip_privacy","text":"Telemetry Ip Privacy
telemetry.telemetry_ip_privacy
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_ip_privacy_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_ip_privacy_parquet","title":"telemetry_ip_privacy_parquet","text":"Telemetry Ip Privacy Parquet
telemetry.telemetry_ip_privacy_parquet
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes timestamp Integer Yes fields Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_ip_privacy_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_ip_privacy_parquet_v1","title":"telemetry_ip_privacy_parquet_v1","text":"Telemetry Ip Privacy Parquet V1
telemetry.telemetry_ip_privacy_parquet_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes timestamp Integer Yes fields Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_ip_privacy_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_mobile_event_parquet","title":"telemetry_mobile_event_parquet","text":"Telemetry Mobile Event Parquet
telemetry.telemetry_mobile_event_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry telemetry_mobile_event_parquet_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_mobile_event_parquet_v2","title":"telemetry_mobile_event_parquet_v2","text":"Telemetry Mobile Event Parquet V2
telemetry.telemetry_mobile_event_parquet_v2
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry mobile_event Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_new_profile_parquet","title":"telemetry_new_profile_parquet","text":"Telemetry New Profile Parquet
telemetry.telemetry_new_profile_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry telemetry_new_profile_parquet_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_new_profile_parquet_v2","title":"telemetry_new_profile_parquet_v2","text":"Telemetry New Profile Parquet V2
telemetry.telemetry_new_profile_parquet_v2
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_new_profile_parquet_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_shield_study_parquet","title":"telemetry_shield_study_parquet","text":"Telemetry Shield Study Parquet
telemetry.telemetry_shield_study_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry telemetry_shield_study_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_shield_study_parquet_v1","title":"telemetry_shield_study_parquet_v1","text":"Telemetry Shield Study Parquet V1
telemetry.telemetry_shield_study_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_shield_study_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#testpilot","title":"testpilot","text":"Historical Pings for telemetry/testpilot
telemetry.testpilot
A historical view of pings sent for the telemetry/testpilot
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable testpilot_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#testpilottest","title":"testpilottest","text":"Historical Pings for telemetry/testpilottest
telemetry.testpilottest
A historical view of pings sent for the telemetry/testpilottest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable testpilottest_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#third_party_modules","title":"third_party_modules","text":"Historical Pings for telemetry/third-party-modules
telemetry.third_party_modules
A historical view of pings sent for the telemetry/third-party-modules
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable third_party_modules_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls13_middlebox_alt_server_hello_1","title":"tls13_middlebox_alt_server_hello_1","text":"Historical Pings for telemetry/tls13-middlebox-alt-server-hello-1
telemetry.tls13_middlebox_alt_server_hello_1
A historical view of pings sent for the telemetry/tls13-middlebox-alt-server-hello-1
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls13_middlebox_alt_server_hello_1_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls13_middlebox_beta","title":"tls13_middlebox_beta","text":"Historical Pings for telemetry/tls13-middlebox-beta
telemetry.tls13_middlebox_beta
A historical view of pings sent for the telemetry/tls13-middlebox-beta
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls13_middlebox_beta_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls13_middlebox_draft22","title":"tls13_middlebox_draft22","text":"Historical Pings for telemetry/tls13-middlebox-draft22
telemetry.tls13_middlebox_draft22
A historical view of pings sent for the telemetry/tls13-middlebox-draft22
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls13_middlebox_draft22_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls13_middlebox_ghack","title":"tls13_middlebox_ghack","text":"Historical Pings for telemetry/tls13-middlebox-ghack
telemetry.tls13_middlebox_ghack
A historical view of pings sent for the telemetry/tls13-middlebox-ghack
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls13_middlebox_ghack_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls13_middlebox_repetition","title":"tls13_middlebox_repetition","text":"Historical Pings for telemetry/tls13-middlebox-repetition
telemetry.tls13_middlebox_repetition
A historical view of pings sent for the telemetry/tls13-middlebox-repetition
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls13_middlebox_repetition_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls13_middlebox_testing","title":"tls13_middlebox_testing","text":"Historical Pings for telemetry/tls13-middlebox-testing
telemetry.tls13_middlebox_testing
A historical view of pings sent for the telemetry/tls13-middlebox-testing
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls13_middlebox_testing_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls_13_study","title":"tls_13_study","text":"Historical Pings for telemetry/tls-13-study
telemetry.tls_13_study
A historical view of pings sent for the telemetry/tls-13-study
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls_13_study_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls_13_study_v1","title":"tls_13_study_v1","text":"Historical Pings for telemetry/tls-13-study-v1
telemetry.tls_13_study_v1
A historical view of pings sent for the telemetry/tls-13-study-v1
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls_13_study_v1_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls_13_study_v2","title":"tls_13_study_v2","text":"Historical Pings for telemetry/tls-13-study-v2
telemetry.tls_13_study_v2
A historical view of pings sent for the telemetry/tls-13-study-v2
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls_13_study_v2_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls_13_study_v3","title":"tls_13_study_v3","text":"Historical Pings for telemetry/tls-13-study-v3
telemetry.tls_13_study_v3
A historical view of pings sent for the telemetry/tls-13-study-v3
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls_13_study_v3_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls_13_study_v4","title":"tls_13_study_v4","text":"Historical Pings for telemetry/tls-13-study-v4
telemetry.tls_13_study_v4
A historical view of pings sent for the telemetry/tls-13-study-v4
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls_13_study_v4_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#uitour_tag","title":"uitour_tag","text":"Historical Pings for telemetry/uitour-tag
telemetry.uitour_tag
A historical view of pings sent for the telemetry/uitour-tag
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable uitour_tag_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#unified_metrics","title":"unified_metrics","text":"Unified Metrics
telemetry.unified_metrics
Unified view on common browser metrics across all products.
Note. From Q4/2022 the app name includes the suffix Glean
to differentiate data collected via Glean from the data collected in Legacy Telemetry, until the migration to use only Glean is complete. For this reason is important to query this table always using the view.
Proposal: https://docs.google.com/document/d/1s_9pmDXKjfFpvW31jqnWyaWOE9tmO9_88Jt7inGVGys
- Owners:
- loines@mozilla.com
Schema Column Description Type Nullable client_id String Yes sample_id Integer Yes activity_segment String Yes normalized_channel String Yes country String Yes days_seen_bits Integer Yes days_since_first_seen Integer Yes device_model String Yes is_new_profile Boolean Yes locale String Yes first_seen_date Date Yes normalized_os String Yes durations Numeric Yes submission_date Date Yes uri_count Integer Yes is_default_browser Boolean Yes ad_click Integer Yes organic_search_count Integer Yes search_count Integer Yes search_with_ads Integer Yes active_hours_sum Float Yes normalized_os_version String Yes app_version String Yes city String Yes os_version_major Integer Yes os_version_minor Integer Yes os_version_patch Integer Yes distribution_id String Yes attribution_content String Yes attribution_source String Yes attribution_medium String Yes attribution_campaign String Yes attribution_experiment String Yes attribution_variation String Yes days_since_seen Integer Yes days_created_profile_bits Integer Yes isp String Yes normalized_app_name String Yes browser_version_info Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived unified_metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#uninstall","title":"uninstall","text":"Historical Pings for telemetry/uninstall
telemetry.uninstall
A historical view of pings sent for the telemetry/uninstall
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version Float Yes type String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable uninstall_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#untrusted_modules","title":"untrusted_modules","text":"Historical Pings for telemetry/untrusted-modules
telemetry.untrusted_modules
A historical view of pings sent for the telemetry/untrusted-modules
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable untrusted_modules_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#update","title":"update","text":"Historical Pings for telemetry/update
telemetry.update
A historical view of pings sent for the telemetry/update
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable update_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#urlbar_clients_daily","title":"urlbar_clients_daily","text":"Urlbar Clients Daily
telemetry.urlbar_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes default_search_engine String Yes app_version String Yes normalized_channel String Yes locale String Yes search_region String Yes suggest_enabled Boolean Yes in_navbar Boolean Yes suggest_searches Boolean Yes show_search_suggestions_first Boolean Yes suggest_quicksuggest Boolean Yes suggest_quicksuggest_sponsored Boolean Yes quicksuggest_onboarding_dialog_choice String Yes count_picked_total Integer Yes count_picked_by_type Record No count_picked_by_position Record No urlbar_picked_by_type_by_position Record No suggest_quicksuggest_nonsponsored Boolean Yes quicksuggest_data_collection_enabled String Yes experiments Record No country String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived urlbar_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#voice","title":"voice","text":"Historical Pings for telemetry/voice
telemetry.voice
A historical view of pings sent for the telemetry/voice
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable voice_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#voice_feedback","title":"voice_feedback","text":"Historical Pings for telemetry/voice-feedback
telemetry.voice_feedback
A historical view of pings sent for the telemetry/voice-feedback
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable voice_feedback_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#windows_10_aggregate","title":"windows_10_aggregate","text":"Windows 10 Aggregate
telemetry.windows_10_aggregate
Please provide a description for the query
Schema Column Description Type Nullable name String Yes version String Yes build_number Integer Yes ubr String Yes build_group String Yes ff_build_version String Yes normalized_channel String Yes count Integer Yes total_obs Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#windows_10_build_distribution","title":"windows_10_build_distribution","text":"Windows 10 Build Distribution
telemetry.windows_10_build_distribution
Please provide a description for the query
Schema Column Description Type Nullable normalized_channel String Yes build_group String Yes frequency Float Yes count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry windows_10_aggregate Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#windows_10_patch_adoption","title":"windows_10_patch_adoption","text":"Windows 10 Patch Adoption
telemetry.windows_10_patch_adoption
Please provide a description for the query
Schema Column Description Type Nullable numeric_windows_ubr Integer Yes build_number Integer Yes label String Yes frequency Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry windows_10_aggregate Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#x_contextual_feature_recommendation","title":"x_contextual_feature_recommendation","text":"Historical Pings for telemetry/x-contextual-feature-recommendation
telemetry.x_contextual_feature_recommendation
A historical view of pings sent for the telemetry/x-contextual-feature-recommendation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable x_contextual_feature_recommendation_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#xfocsp_error_report","title":"xfocsp_error_report","text":"Historical Pings for telemetry/xfocsp-error-report
telemetry.xfocsp_error_report
A historical view of pings sent for the telemetry/xfocsp-error-report
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable xfocsp_error_report_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/treeherder/","title":"treeherder","text":"User-facing views related to document namespace treeherder; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/treeherder
Source Directory
"},{"location":"mozdata/treeherder/#classified","title":"classified","text":"Historical Pings for treeherder/classified
treeherder.classified
A historical view of pings sent for the treeherder/classified
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod treeherder_stable classified_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/treeherder/#deletion_request","title":"deletion_request","text":"Historical Pings for treeherder/deletion-request
treeherder.deletion_request
A historical view of pings sent for the treeherder/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod treeherder_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/treeherder/#events","title":"events","text":"Historical Pings for treeherder/events
treeherder.events
A historical view of pings sent for the treeherder/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod treeherder_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/treeherder/#events_unnested","title":"events_unnested","text":"Events Unnested
treeherder.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod treeherder events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/udf/","title":"User-Defined Functions","text":"Persistent user-defined functions
Source Directory
"},{"location":"mozdata/udf/#active_n_weeks_ago","title":"active_n_weeks_ago","text":"Active N Weeks Ago
udf.active_n_weeks_ago
Source Directory | Metadata File
"},{"location":"mozdata/udf/#active_values_from_days_seen_map","title":"active_values_from_days_seen_map","text":"Active Values From Days Seen Map
udf.active_values_from_days_seen_map
Given a map of representing activity for STRING key
s, this function returns an array of which key
s were active for the time period in question. start_offset should be at most 0. n_bits should be at most the remaining bits.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#add_monthly_engine_searches","title":"add_monthly_engine_searches","text":"Add Monthly Engine Searches
udf.add_monthly_engine_searches
This function specifically windows searches into calendar-month windows. This means groups are not necessarily directly comparable, since different months have different numbers of days. On the first of each month, a new month is appended, and the first month is dropped. If the date is not the first of the month, the new entry is added to the last element in the array. For example, if we were adding 12 to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]: On the first of the month, the result would be [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 12] On any other day of the month, the result would be [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 24] This happens for every aggregate (searches, ad clicks, etc.)
Source Directory | Metadata File
"},{"location":"mozdata/udf/#add_monthly_searches","title":"add_monthly_searches","text":"Add Monthly Searches
udf.add_monthly_searches
Adds together two engine searches structs. Each engine searches struct has a MAP[engine -> search_counts_struct]. We want to add add together the prev and curr's values for a certain engine. This allows us to be flexible with the number of engines we're using.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#add_searches_by_index","title":"add_searches_by_index","text":"Add Searches By Index
udf.add_searches_by_index
Return sums of each search type grouped by the index. Results are ordered by index.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#aggregate_active_addons","title":"aggregate_active_addons","text":"Aggregate Active Addons
udf.aggregate_active_addons
This function selects most frequently occuring value for each addon_id, using the latest value in the input among ties. The type for active_addons is ARRAY>, i.e. the output of SELECT ARRAY_CONCAT_AGG(active_addons) FROM telemetry.main_summary_v4
, and is left unspecified to allow changes to the fields of the STRUCT.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#aggregate_map_first","title":"aggregate_map_first","text":"Aggregate Map First
udf.aggregate_map_first
Returns an aggregated map with all the keys and the first corresponding value from the given maps
Source Directory | Metadata File
"},{"location":"mozdata/udf/#aggregate_search_counts","title":"aggregate_search_counts","text":"Aggregate Search Counts
udf.aggregate_search_counts
Source Directory | Metadata File
"},{"location":"mozdata/udf/#aggregate_search_map","title":"aggregate_search_map","text":"Aggregate Search Map
udf.aggregate_search_map
Aggregates the total counts of the given search counters
Source Directory | Metadata File
"},{"location":"mozdata/udf/#array_11_zeroes_then","title":"array_11_zeroes_then","text":"Array 11 Zeroes Then
udf.array_11_zeroes_then
An array of 11 zeroes, followed by a supplied value
Source Directory | Metadata File
"},{"location":"mozdata/udf/#array_drop_first_and_append","title":"array_drop_first_and_append","text":"Array Drop First And Append
udf.array_drop_first_and_append
Drop the first element of an array, and append the given element. Result is an array with the same length as the input.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#array_of_12_zeroes","title":"array_of_12_zeroes","text":"Array Of 12 Zeroes
udf.array_of_12_zeroes
An array of 12 zeroes
Source Directory | Metadata File
"},{"location":"mozdata/udf/#array_slice","title":"array_slice","text":"Array Slice
udf.array_slice
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bitcount_lowest_7","title":"bitcount_lowest_7","text":"Bitcount Lowest 7
udf.bitcount_lowest_7
This function counts the 1s in lowest 7 bits of an INT64
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bitmask_365","title":"bitmask_365","text":"Bitmask 365
udf.bitmask_365
A bitmask for 365 bits
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bitmask_lowest_28","title":"bitmask_lowest_28","text":"Bitmask Lowest 28
udf.bitmask_lowest_28
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bitmask_lowest_7","title":"bitmask_lowest_7","text":"Bitmask Lowest 7
udf.bitmask_lowest_7
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bitmask_range","title":"bitmask_range","text":"Bitmask Range
udf.bitmask_range
Returns a bitmask that can be used to return a subset of an integer representing a bit array. The start_ordinal argument is an integer specifying the starting position of the slice, with start_ordinal = 1 indicating the first bit. The length argument is the number of bits to include in the mask. The arguments were chosen to match the semantics of the SUBSTR function; see https://cloud.google.com/bigquery/docs/reference/standard-sql/functions-and-operators#substr
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_active_in_range","title":"bits28_active_in_range","text":"Bits28 Active In Range
udf.bits28_active_in_range
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_days_since_seen","title":"bits28_days_since_seen","text":"Bits28 Days Since Seen
udf.bits28_days_since_seen
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_from_string","title":"bits28_from_string","text":"Bits28 From String
udf.bits28_from_string
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_range","title":"bits28_range","text":"Bits28 Range
udf.bits28_range
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_retention","title":"bits28_retention","text":"Bits28 Retention
udf.bits28_retention
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_to_dates","title":"bits28_to_dates","text":"Bits28 To Dates
udf.bits28_to_dates
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_to_string","title":"bits28_to_string","text":"Bits28 To String
udf.bits28_to_string
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits_from_offsets","title":"bits_from_offsets","text":"Bits From Offsets
udf.bits_from_offsets
Returns a bit pattern of type BYTES compactly encoding the given array of positive integer offsets. This is primarily useful to generate a compact encoding of dates on which a feature was used, with arbitrarily long history. Example aggregation: sql bits_from_offsets( ARRAY_AGG(IF(foo, DATE_DIFF(anchor_date, submission_date, DAY), NULL) IGNORE NULLS) )
The resulting value can be cast to an INT64 representing the most recent 64 days via: sql CAST(CONCAT('0x', TO_HEX(RIGHT(bits >> i, 4))) AS INT64)
Or representing the most recent 28 days (compatible with bits28 functions) via: sql CAST(CONCAT('0x', TO_HEX(RIGHT(bits >> i, 4))) AS INT64) << 36 >> 36
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits_to_active_n_weeks_ago","title":"bits_to_active_n_weeks_ago","text":"Bits To Active N Weeks Ago
udf.bits_to_active_n_weeks_ago
Given a BYTE and an INT64, return whether the user was active that many weeks ago. NULL input returns NULL output.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits_to_days_seen","title":"bits_to_days_seen","text":"Bits To Days Seen
udf.bits_to_days_seen
Given a BYTE, get the number of days the user was seen. NULL input returns NULL output.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits_to_days_since_first_seen","title":"bits_to_days_since_first_seen","text":"Bits To Days Since First Seen
udf.bits_to_days_since_first_seen
Given a BYTES, return the number of days since the client was first seen. If no bits are set, returns NULL, indicating we don't know. Otherwise the result is 0-indexed, meaning that for \\x01, it will return 0. Results showed this being between 5-10x faster than the simpler alternative: CREATE OR REPLACE FUNCTION udf.bits_to_days_since_first_seen(b BYTES) AS (( SELECT MAX(n) FROM UNNEST(GENERATE_ARRAY( 0, 8 * BYTE_LENGTH(b))) AS n WHERE BIT_COUNT(SUBSTR(b >> n, -1) & b'\\x01') > 0)); See also: bits_to_days_since_seen.sql
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits_to_days_since_seen","title":"bits_to_days_since_seen","text":"Bits To Days Since Seen
udf.bits_to_days_since_seen
Given a BYTES, return the number of days since the client was last seen. If no bits are set, returns NULL, indicating we don't know. Otherwise the results are 0-indexed, meaning \\x01 will return 0. Tests showed this being 5-10x faster than the simpler alternative: CREATE OR REPLACE FUNCTION udf.bits_to_days_since_seen(b BYTES) AS (( SELECT MIN(n) FROM UNNEST(GENERATE_ARRAY(0, 364)) AS n WHERE BIT_COUNT(SUBSTR(b >> n, -1) & b'\\x01') > 0)); See also: bits_to_days_since_first_seen.sql
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bool_to_365_bits","title":"bool_to_365_bits","text":"Bool To 365 Bits
udf.bool_to_365_bits
Convert a boolean to 365 bit byte array
Source Directory | Metadata File
"},{"location":"mozdata/udf/#boolean_histogram_to_boolean","title":"boolean_histogram_to_boolean","text":"Boolean Histogram To Boolean
udf.boolean_histogram_to_boolean
Given histogram h, return TRUE if it has a value in the \"true\" bucket, or FALSE if it has a value in the \"false\" bucket, or NULL otherwise. https://github.com/mozilla/telemetry-batch-view/blob/ea0733c/src/main/scala/com/mozilla/telemetry/utils/MainPing.scala#L309-L317
Source Directory | Metadata File
"},{"location":"mozdata/udf/#coalesce_adjacent_days_28_bits","title":"coalesce_adjacent_days_28_bits","text":"Coalesce Adjacent Days 28 Bits
udf.coalesce_adjacent_days_28_bits
We generally want to believe only the first reasonable profile creation date that we receive from a client. Given bits representing usage from the previous day and the current day, this function shifts the first argument by one day and returns either that value if non-zero and non-null, the current day value if non-zero and non-null, or else 0.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#coalesce_adjacent_days_365_bits","title":"coalesce_adjacent_days_365_bits","text":"Coalesce Adjacent Days 365 Bits
udf.coalesce_adjacent_days_365_bits
Coalesce previous data's PCD with the new data's PCD. We generally want to believe only the first reasonable profile creation date that we receive from a client. Given bytes representing usage from the previous day and the current day, this function shifts the first argument by one day and returns either that value if non-zero and non-null, the current day value if non-zero and non-null, or else 0.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#combine_adjacent_days_28_bits","title":"combine_adjacent_days_28_bits","text":"Combine Adjacent Days 28 Bits
udf.combine_adjacent_days_28_bits
Combines two bit patterns. The first pattern represents activity over a 28-day period ending \"yesterday\". The second pattern represents activity as observed today (usually just 0 or 1). We shift the bits in the first pattern by one to set the new baseline as \"today\", then perform a bitwise OR of the two patterns.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#combine_adjacent_days_365_bits","title":"combine_adjacent_days_365_bits","text":"Combine Adjacent Days 365 Bits
udf.combine_adjacent_days_365_bits
Source Directory | Metadata File
"},{"location":"mozdata/udf/#combine_days_seen_maps","title":"combine_days_seen_maps","text":"Combine Days Seen Maps
udf.combine_days_seen_maps
The \"clients_last_seen\" class of tables represent various types of client activity within a 28-day window as bit patterns. This function takes in two arrays of structs (aka maps) where each entry gives the bit pattern for days in which we saw a ping for a given user in a given key. We combine the bit patterns for the previous day and the current day, returning a single map. See udf.combine_experiment_days
for a more specific example of this approach.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#combine_experiment_days","title":"combine_experiment_days","text":"Combine Experiment Days
udf.combine_experiment_days
The \"clients_last_seen\" class of tables represent various types of client activity within a 28-day window as bit patterns. This function takes in two arrays of structs where each entry gives the bit pattern for days in which we saw a ping for a given user in a given experiment. We combine the bit patterns for the previous day and the current day, returning a single array of experiment structs.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#country_code_to_flag","title":"country_code_to_flag","text":"Country Code To Flag
udf.country_code_to_flag
For a given two-letter ISO 3166-1 alpha-2 country code, returns a string consisting of two Unicode regional indicator symbols, which is rendered in supporting fonts (such as in the BigQuery console or STMO) as flag emoji. This is just for fun. See: - https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 - https://en.wikipedia.org/wiki/Regional_Indicator_Symbol
Source Directory | Metadata File
"},{"location":"mozdata/udf/#days_seen_bytes_to_rfm","title":"days_seen_bytes_to_rfm","text":"Days Seen Bytes To Rfm
udf.days_seen_bytes_to_rfm
Return the frequency, recency, and T from a BYTE array, as defined in https://lifetimes.readthedocs.io/en/latest/Quickstart.html#the-shape-of-your-data RFM refers to Recency, Frequency, and Monetary value.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#days_since_created_profile_as_28_bits","title":"days_since_created_profile_as_28_bits","text":"Days Since Created Profile As 28 Bits
udf.days_since_created_profile_as_28_bits
Takes in a difference between submission date and profile creation date and returns a bit pattern representing the profile creation date IFF the profile date is the same as the submission date or no more than 6 days earlier. Analysis has shown that client-reported profile creation dates are much less reliable outside of this range and cannot be used as reliable indicators of new profile creation.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#deanonymize_event","title":"deanonymize_event","text":"Deanonymize Event
udf.deanonymize_event
Rename struct fields in anonymous event tuples to meaningful names.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#decode_int64","title":"decode_int64","text":"Decode Int64
udf.decode_int64
Source Directory | Metadata File
"},{"location":"mozdata/udf/#dedupe_array","title":"dedupe_array","text":"Dedupe Array
udf.dedupe_array
Return an array containing only distinct values of the given array
Source Directory | Metadata File
"},{"location":"mozdata/udf/#event_code_points_to_string","title":"event_code_points_to_string","text":"udf.event_code_points_to_string
Source Directory
"},{"location":"mozdata/udf/#experiment_search_metric_to_array","title":"experiment_search_metric_to_array","text":"Experiment search metric to array
udf.experiment_search_metric_to_array
Used for testing only. Reproduces the string transformations done in experiment_search_events_live_v1 materialized views.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#extract_count_histogram_value","title":"extract_count_histogram_value","text":"Extract Count Histogram Value
udf.extract_count_histogram_value
Source Directory | Metadata File
"},{"location":"mozdata/udf/#extract_document_type","title":"extract_document_type","text":"Extract Document Type
udf.extract_document_type
Extract the document type from a table name e.g. _TABLE_SUFFIX.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#extract_document_version","title":"extract_document_version","text":"Extract Document Version
udf.extract_document_version
Extract the document version from a table name e.g. _TABLE_SUFFIX.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#extract_histogram_sum","title":"extract_histogram_sum","text":"Extract Histogram Sum
udf.extract_histogram_sum
This is a performance optimization compared to the more general mozfun.hist.extract for cases where only the histogram sum is needed. It must support all the same format variants as mozfun.hist.extract but this simplification is necessary to keep the main_summary query complexity in check.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#extract_schema_validation_path","title":"extract_schema_validation_path","text":"Extract Schema Validation Path
udf.extract_schema_validation_path
Return a path derived from an error message in payload_bytes_error
Source Directory | Metadata File
"},{"location":"mozdata/udf/#fenix_build_to_datetime","title":"fenix_build_to_datetime","text":"Fenix Build To Datetime
udf.fenix_build_to_datetime
Convert the Fenix client_info.app_build-format string to a DATETIME. May return NULL on failure.
Fenix originally used an 8-digit app_build format
In short it is yDDDHHmm
:
- y is years since 2018
- DDD is day of year, 0-padded, 001-366
- HH is hour of day, 00-23
- mm is minute of hour, 00-59
The last date seen with an 8-digit build ID is 2020-08-10.
Newer builds use a 10-digit format where the integer represents a pattern consisting of 32 bits. The 17 bits starting 13 bits from the left represent a number of hours since UTC midnight beginning 2014-12-28.
This function tolerates both formats.
After using this you may wish to DATETIME_TRUNC(result, DAY)
for grouping by build date.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#ga_is_mozilla_browser","title":"ga_is_mozilla_browser","text":"Is Mozilla Browser
udf.ga_is_mozilla_browser
Determine if a browser in a Google Analytics data is produced by Mozilla
Source Directory | Metadata File
"},{"location":"mozdata/udf/#geo_struct","title":"geo_struct","text":"Geo Struct
udf.geo_struct
Convert geoip lookup fields to a struct, replacing '??' with NULL. Returns NULL if if required field country would be NULL. Replaces '??' with NULL because '??' is a placeholder that may be used if there was an issue during geoip lookup in hindsight.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#get_key","title":"get_key","text":"Get Key
udf.get_key
Source Directory | Metadata File
"},{"location":"mozdata/udf/#get_key_with_null","title":"get_key_with_null","text":"Get Key With Null
udf.get_key_with_null
Source Directory | Metadata File
"},{"location":"mozdata/udf/#glean_timespan_nanos","title":"glean_timespan_nanos","text":"Glean Timespan Nanos
udf.glean_timespan_nanos
Source Directory | Metadata File
"},{"location":"mozdata/udf/#glean_timespan_seconds","title":"glean_timespan_seconds","text":"Glean Timespan Seconds
udf.glean_timespan_seconds
Source Directory | Metadata File
"},{"location":"mozdata/udf/#gzip_length_footer","title":"gzip_length_footer","text":"Gzip Length Footer
udf.gzip_length_footer
Given a gzip compressed byte string, extract the uncompressed size from the footer. WARNING: THIS FUNCTION IS NOT RELIABLE FOR ARBITRARY GZIP STREAMS. It should, however, be safe to use for checking the decompressed size of payload in payload_bytes_decoded (and NOT payload_bytes_raw) because that payload is produced by the decoder and limited to conditions where the footer is accurate. From https://stackoverflow.com/a/9213826 First, the only information about the uncompressed length is four bytes at the end of the gzip file (stored in little-endian order). By necessity, that is the length modulo 232. So if the uncompressed length is 4 GB or more, you won't know what the length is. You can only be certain that the uncompressed length is less than 4 GB if the compressed length is less than something like 232 / 1032 + 18, or around 4 MB. (1032 is the maximum compression factor of deflate.) Second, and this is worse, a gzip file may actually be a concatenation of multiple gzip streams. Other than decoding, there is no way to find where each gzip stream ends in order to look at the four-byte uncompressed length of that piece. (Which may be wrong anyway due to the first reason.) Third, gzip files will sometimes have junk after the end of the gzip stream (usually zeros). Then the last four bytes are not the length.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#histogram_max_key_with_nonzero_value","title":"histogram_max_key_with_nonzero_value","text":"Histogram Max Key With Nonzero Value
udf.histogram_max_key_with_nonzero_value
Find the largest numeric bucket that contains a value greater than zero. https://github.com/mozilla/telemetry-batch-view/blob/ea0733c/src/main/scala/com/mozilla/telemetry/utils/MainPing.scala#L253-L266
Source Directory | Metadata File
"},{"location":"mozdata/udf/#histogram_merge","title":"histogram_merge","text":"Histogram Merge
udf.histogram_merge
Source Directory | Metadata File
"},{"location":"mozdata/udf/#histogram_normalize","title":"histogram_normalize","text":"Histogram Normalize
udf.histogram_normalize
Source Directory | Metadata File
"},{"location":"mozdata/udf/#histogram_percentiles","title":"histogram_percentiles","text":"Histogram Percentiles
udf.histogram_percentiles
Source Directory | Metadata File
"},{"location":"mozdata/udf/#histogram_to_mean","title":"histogram_to_mean","text":"Histogram To Mean
udf.histogram_to_mean
Source Directory | Metadata File
"},{"location":"mozdata/udf/#histogram_to_threshold_count","title":"histogram_to_threshold_count","text":"Histogram To Threshold Count
udf.histogram_to_threshold_count
Source Directory | Metadata File
"},{"location":"mozdata/udf/#hmac_sha256","title":"hmac_sha256","text":"Hmac Sha256
udf.hmac_sha256
Given a key and message, return the HMAC-SHA256 hash. This algorithm can be found in Wikipedia: https://en.wikipedia.org/wiki/HMAC#Implementation This implentation is validated against the NIST test vectors. See test/validation/hmac_sha256.py for more information.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#int_to_365_bits","title":"int_to_365_bits","text":"Int To 365 Bits
udf.int_to_365_bits
Source Directory | Metadata File
"},{"location":"mozdata/udf/#int_to_hex_string","title":"int_to_hex_string","text":"Int To Hex String
udf.int_to_hex_string
Source Directory | Metadata File
"},{"location":"mozdata/udf/#json_extract_histogram","title":"json_extract_histogram","text":"Json Extract Histogram
udf.json_extract_histogram
Source Directory | Metadata File
"},{"location":"mozdata/udf/#json_extract_int_map","title":"json_extract_int_map","text":"Json Extract Int Map
udf.json_extract_int_map
Source Directory | Metadata File
"},{"location":"mozdata/udf/#json_mode_last","title":"json_mode_last","text":"Json Mode Last
udf.json_mode_last
Source Directory | Metadata File
"},{"location":"mozdata/udf/#keyed_histogram_get_sum","title":"keyed_histogram_get_sum","text":"Keyed Histogram Get Sum
udf.keyed_histogram_get_sum
Take a keyed histogram of type STRUCT, extract the histogram of the given key, and return the sum value
Source Directory | Metadata File
"},{"location":"mozdata/udf/#kv_array_append_to_json_string","title":"kv_array_append_to_json_string","text":"Kv Array Append To Json String
udf.kv_array_append_to_json_string
Returns a JSON string which has the pair
appended to the provided input
JSON string. NULL is also valid for input
. Examples: udf.kv_array_append_to_json_string('{\"foo\":\"bar\"}', [STRUCT(\"baz\" AS key, \"boo\" AS value)]) '{\"foo\":\"bar\",\"baz\":\"boo\"}' udf.kv_array_append_to_json_string('{}', [STRUCT(\"baz\" AS key, \"boo\" AS value)]) '{\"baz\": \"boo\"}'
Source Directory | Metadata File
"},{"location":"mozdata/udf/#kv_array_to_json_string","title":"kv_array_to_json_string","text":"Kv Array To Json String
udf.kv_array_to_json_string
Returns a JSON string representing the input key-value array. Value type must be able to be represented as a string - this function will cast to a string. At Mozilla, the schema for a map is STRUCT>>. To use this with that representation, it should be as udf.kv_array_to_json_string(struct.key_value)
.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#main_summary_scalars","title":"main_summary_scalars","text":"Main Summary Scalars
udf.main_summary_scalars
Source Directory | Metadata File
"},{"location":"mozdata/udf/#map_bing_revenue_country_to_country_code","title":"map_bing_revenue_country_to_country_code","text":"Map Bing Revenue Country To Country Code
udf.map_bing_revenue_country_to_country_code
For use by LTV revenue join only. Maps the Bing country to a country code. Only keeps the country codes we want to aggregate on.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#map_mode_last","title":"map_mode_last","text":"Map Mode Last
udf.map_mode_last
Source Directory | Metadata File
"},{"location":"mozdata/udf/#map_revenue_country","title":"map_revenue_country","text":"Map Revenue Country
udf.map_revenue_country
Only for use by the LTV Revenue join. Maps country codes to the codes we have in the revenue dataset. Buckets small Bing countries into \"other\".
Source Directory | Metadata File
"},{"location":"mozdata/udf/#map_sum","title":"map_sum","text":"Map Sum
udf.map_sum
Source Directory | Metadata File
"},{"location":"mozdata/udf/#merge_scalar_user_data","title":"merge_scalar_user_data","text":"Merge Scalar User Data
udf.merge_scalar_user_data
Given an array of scalar metric data that might have duplicate values for a metric, merge them into one value.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#mod_uint128","title":"mod_uint128","text":"Mod Uint128
udf.mod_uint128
This function returns \"dividend mod divisor\" where the dividend and the result is encoded in bytes, and divisor is an integer.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#mode_last","title":"mode_last","text":"Mode Last
udf.mode_last
Source Directory | Metadata File
"},{"location":"mozdata/udf/#mode_last_retain_nulls","title":"mode_last_retain_nulls","text":"Mode Last Retain Nulls
udf.mode_last_retain_nulls
Source Directory | Metadata File
"},{"location":"mozdata/udf/#monetized_search","title":"monetized_search","text":"Monetized Search Stub
udf.monetized_search
Stub monetized_search UDF for tests
Source Directory | Metadata File
"},{"location":"mozdata/udf/#new_monthly_engine_searches_struct","title":"new_monthly_engine_searches_struct","text":"New Monthly Engine Searches Struct
udf.new_monthly_engine_searches_struct
This struct represents the past year's worth of searches. Each month has its own entry, hence 12.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_fenix_metrics","title":"normalize_fenix_metrics","text":"Normalize Fenix Metrics
udf.normalize_fenix_metrics
Accepts a glean metrics struct as input and returns a modified struct that nulls out histograms for older versions of the Glean SDK that reported pathological binning; see https://bugzilla.mozilla.org/show_bug.cgi?id=1592930
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_glean_baseline_client_info","title":"normalize_glean_baseline_client_info","text":"Normalize Glean Baseline Client Info
udf.normalize_glean_baseline_client_info
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_glean_ping_info","title":"normalize_glean_ping_info","text":"Normalize Glean Ping Info
udf.normalize_glean_ping_info
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_main_payload","title":"normalize_main_payload","text":"Normalize Main Payload
udf.normalize_main_payload
Accepts a pipeline metadata struct as input and returns a modified struct that includes a few parsed or normalized variants of the input metadata fields.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_metadata","title":"normalize_metadata","text":"Normalize Metadata
udf.normalize_metadata
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_monthly_searches","title":"normalize_monthly_searches","text":"Normalize Monthly Searches
udf.normalize_monthly_searches
Sum up the monthy search count arrays by normalized engine
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_os","title":"normalize_os","text":"Normalize Os
udf.normalize_os
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_search_engine","title":"normalize_search_engine","text":"Normalize Search Engine
udf.normalize_search_engine
Return normalized engine name for recognized engines This is a stub implementation for use with tests; real implementation is in private-bigquery-etl
Source Directory | Metadata File
"},{"location":"mozdata/udf/#null_if_empty_list","title":"null_if_empty_list","text":"Null If Empty List
udf.null_if_empty_list
Return NULL if list is empty, otherwise return list. This cannot be done with NULLIF because NULLIF does not support arrays.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#one_as_365_bits","title":"one_as_365_bits","text":"One As 365 Bits
udf.one_as_365_bits
One represented as a byte array of 365 bits
Source Directory | Metadata File
"},{"location":"mozdata/udf/#pack_event_properties","title":"pack_event_properties","text":"udf.pack_event_properties
Source Directory
"},{"location":"mozdata/udf/#parquet_array_sum","title":"parquet_array_sum","text":"Parquet Array Sum
udf.parquet_array_sum
Sum an array from a parquet-derived field. These are lists of an element
that contain the field value.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#parse_desktop_telemetry_uri","title":"parse_desktop_telemetry_uri","text":"Parse Desktop Telemetry Uri
udf.parse_desktop_telemetry_uri
Parses and labels the components of a telemetry desktop ping submission uri Per https://docs.telemetry.mozilla.org/concepts/pipeline/http_edge_spec.html#special-handling-for-firefox-desktop-telemetry the format is /submit/telemetry/docId/docType/appName/appVersion/appUpdateChannel/appBuildID e.g. /submit/telemetry/ce39b608-f595-4c69-b6a6-f7a436604648/main/Firefox/61.0a1/nightly/20180328030202
Source Directory | Metadata File
"},{"location":"mozdata/udf/#parse_iso8601_date","title":"parse_iso8601_date","text":"Parse Iso8601 Date
udf.parse_iso8601_date
Take a ISO 8601 date or date and time string and return a DATE. Return null if parse fails. Possible formats: 2019-11-04, 2019-11-04T21:15:00+00:00, 2019-11-04T21:15:00Z, 20191104T211500Z
Source Directory | Metadata File
"},{"location":"mozdata/udf/#pos_of_leading_set_bit","title":"pos_of_leading_set_bit","text":"Pos Of Leading Set Bit
udf.pos_of_leading_set_bit
Returns the 0-based index of the first set bit. No set bits returns NULL.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#pos_of_trailing_set_bit","title":"pos_of_trailing_set_bit","text":"Pos Of Trailing Set Bit
udf.pos_of_trailing_set_bit
Identical to bits28_days_since_seen. Returns a 0-based index of the rightmost set bit in the passed bit pattern or null if no bits are set (bits = 0). To determine this position, we take a bitwise AND of the bit pattern and its complement, then we determine the position of the bit via base-2 logarithm; see https://stackoverflow.com/a/42747608/1260237
Source Directory | Metadata File
"},{"location":"mozdata/udf/#product_info_with_baseline","title":"product_info_with_baseline","text":"Product Info with Baseline
udf.product_info_with_baseline
Similar to mozfun.norm.product_info(), but this UDF also handles \"baseline\" apps that were introduced differentiate for certain apps whether data is sent through Glean or core pings. This UDF has been temporarily introduced as part of https://bugzilla.mozilla.org/show_bug.cgi?id=1775216
Source Directory | Metadata File
"},{"location":"mozdata/udf/#pseudonymize_ad_id","title":"pseudonymize_ad_id","text":"Pseudonymize Ad Ids
udf.pseudonymize_ad_id
Pseudonymize Ad IDs, handling opt-outs.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#quantile_search_metric_contribution","title":"quantile_search_metric_contribution","text":"Quantile Search Metric Contribution
udf.quantile_search_metric_contribution
This function returns how much of one metric is contributed by the quantile of another metric. Quantile variable should add an offset to get the requried percentile value. Example: udf.quantile_search_metric_contribution(sap, search_with_ads, sap_percentiles[OFFSET(9)]) It returns search_with_ads if sap value in top 10% volumn else null.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#round_timestamp_to_minute","title":"round_timestamp_to_minute","text":"Round Timestamp To Minute
udf.round_timestamp_to_minute
Floor a timestamp object to the given minute interval.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#safe_crc32_uuid","title":"safe_crc32_uuid","text":"Safe CRC-32 Uuid
udf.safe_crc32_uuid
Calculate the CRC-32 hash of a 36-byte UUID, or NULL if the value isn't 36 bytes. This implementation is limited to an exact length because recursion does not work. Based on https://stackoverflow.com/a/18639999/1260237 See https://en.wikipedia.org/wiki/Cyclic_redundancy_check
Source Directory | Metadata File
"},{"location":"mozdata/udf/#safe_sample_id","title":"safe_sample_id","text":"Safe Sample Id
udf.safe_sample_id
Stably hash a client_id to an integer between 0 and 99, or NULL if client_id isn't 36 bytes
Source Directory | Metadata File
"},{"location":"mozdata/udf/#search_counts_map_sum","title":"search_counts_map_sum","text":"Search Counts Map Sum
udf.search_counts_map_sum
Calculate the sums of search counts per source and engine
Source Directory | Metadata File
"},{"location":"mozdata/udf/#shift_28_bits_one_day","title":"shift_28_bits_one_day","text":"Shift 28 Bits One Day
udf.shift_28_bits_one_day
Shift input bits one day left and drop any bits beyond 28 days.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#shift_365_bits_one_day","title":"shift_365_bits_one_day","text":"Shift 365 Bits One Day
udf.shift_365_bits_one_day
Shift input bits one day left and drop any bits beyond 365 days.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#shift_one_day","title":"shift_one_day","text":"Shift One Day
udf.shift_one_day
Returns the bitfield shifted by one day, 0 for NULL
Source Directory | Metadata File
"},{"location":"mozdata/udf/#smoot_usage_from_28_bits","title":"smoot_usage_from_28_bits","text":"Smoot Usage From 28 Bits
udf.smoot_usage_from_28_bits
Calculates a variety of metrics based on bit patterns of daily usage for the smoot_usage_* tables.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#vector_add","title":"vector_add","text":"Vector Add
udf.vector_add
This function adds two vectors. The two vectors can have different length. If one vector is null, the other vector will be returned directly.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#zero_as_365_bits","title":"zero_as_365_bits","text":"Zero As 365 Bits
udf.zero_as_365_bits
Zero represented as a 365-bit byte array
Source Directory | Metadata File
"},{"location":"mozdata/udf/#zeroed_array","title":"zeroed_array","text":"Zeroed Array
udf.zeroed_array
Generates an array if all zeroes, of arbitrary length
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/","title":"User-Defined Functions (Javascript)","text":"Persistent user-defined functions written in Javascript
Source Directory
"},{"location":"mozdata/udf_js/#bootstrap_percentile_ci","title":"bootstrap_percentile_ci","text":"Bootstrap Percentile CI
udf_js.bootstrap_percentile_ci
Calculate a confidence interval using an efficient bootstrap sampling technique for a given percentile of a histogram. This implementation relies on the stdlib.js library and the binomial quantile function (https://github.com/stdlib-js/stats-base-dists-binomial-quantile/) for randomly sampling from a binomial distribution.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#crc32","title":"crc32","text":"CRC-32
udf_js.crc32
Calculate the CRC-32 hash of an input string. The implementation here could be optimized. In particular, it calculates a lookup table on every invocation which could be cached and reused. In practice, though, this implementation appears to be fast enough that further optimization is not yet warranted. Based on https://stackoverflow.com/a/18639999/1260237 See https://en.wikipedia.org/wiki/Cyclic_redundancy_check
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#decode_uri_attribution","title":"decode_uri_attribution","text":"Decode Uri Attribution
udf_js.decode_uri_attribution
URL decodes the raw firefox_installer.install.attribution string to a STRUCT. The fields campaign, content, dlsource, dltoken, experiment, medium, source, ua, variation the string are extracted. If any value is (not+set) it is converted to (not set) to match the text from GA when the fields are not set.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#extract_string_from_bytes","title":"extract_string_from_bytes","text":"Extract string from bytes
udf_js.extract_string_from_bytes
Related to https://mozilla-hub.atlassian.net/browse/RS-682. The function extracts string data from payload
which is in bytes.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#gunzip","title":"gunzip","text":"Gunzip
udf_js.gunzip
Unzips a GZIP string. This implementation relies on the zlib.js library (https://github.com/imaya/zlib.js) and the atob function for decoding base64.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#jackknife_mean_ci","title":"jackknife_mean_ci","text":"Jackknife Mean Ci
udf_js.jackknife_mean_ci
Calculates a confidence interval using a jackknife resampling technique for the mean of an array of values for various buckets; see https://en.wikipedia.org/wiki/Jackknife_resampling Users must specify the number of expected buckets as the first parameter to guard against the case where empty buckets lead to an array with missing elements. Usage generally involves first calculating an aggregate per bucket, then aggregating over buckets, passing ARRAY_AGG(metric) to this function.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#jackknife_percentile_ci","title":"jackknife_percentile_ci","text":"Jackknife Percentile CI
udf_js.jackknife_percentile_ci
Calculate a confidence interval using a jackknife resampling technique for a given percentile of a histogram.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#jackknife_ratio_ci","title":"jackknife_ratio_ci","text":"Jackknife Ratio Ci
udf_js.jackknife_ratio_ci
Calculates a confidence interval using a jackknife resampling technique for the weighted mean of an array of ratios for various buckets; see https://en.wikipedia.org/wiki/Jackknife_resampling Users must specify the number of expected buckets as the first parameter to guard against the case where empty buckets lead to an array with missing elements. Usage generally involves first calculating an aggregate per bucket, then aggregating over buckets, passing ARRAY_AGG(metric) to this function. Example: WITH bucketed AS ( SELECT submission_date, SUM(active_days_in_week) AS active_days_in_week, SUM(wau) AS wau FROM mytable GROUP BY submission_date, bucket_id ) SELECT submission_date, udf_js.jackknife_ratio_ci(20, ARRAY_AGG(STRUCT(CAST(active_days_in_week AS float64), CAST(wau as FLOAT64)))) AS intensity FROM bucketed GROUP BY submission_date
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#jackknife_sum_ci","title":"jackknife_sum_ci","text":"Jackknife Sum Ci
udf_js.jackknife_sum_ci
Calculates a confidence interval using a jackknife resampling technique for the sum of an array of counts for various buckets; see https://en.wikipedia.org/wiki/Jackknife_resampling Users must specify the number of expected buckets as the first parameter to guard against the case where empty buckets lead to an array with missing elements. Usage generally involves first calculating an aggregate count per bucket, then aggregating over buckets, passing ARRAY_AGG(metric) to this function. Example: WITH bucketed AS ( SELECT submission_date, SUM(dau) AS dau_sum FROM mytable GROUP BY submission_date, bucket_id ) SELECT submission_date, udf_js.jackknife_sum_ci(ARRAY_AGG(dau_sum)).* FROM bucketed GROUP BY submission_date
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#json_extract_events","title":"json_extract_events","text":"Json Extract Events
udf_js.json_extract_events
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#json_extract_histogram","title":"json_extract_histogram","text":"Json Extract Histogram
udf_js.json_extract_histogram
Returns a parsed struct from a JSON string representing a histogram. This implementation uses JavaScript and is provided for performance comparison; see udf/udf_json_extract_histogram for a pure SQL implementation that will likely be more usable in practice.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#json_extract_keyed_histogram","title":"json_extract_keyed_histogram","text":"Json Extract Keyed Histogram
udf_js.json_extract_keyed_histogram
Returns an array of parsed structs from a JSON string representing a keyed histogram. This is likely only useful for histograms that weren't properly parsed to fields, so ended up embedded in an additional_properties JSON blob. Normally, keyed histograms will be modeled as a key/value struct where the values are JSON representations of single histograms. There is no pure SQL equivalent to this function, since BigQuery does not provide any functions for listing or iterating over keysn in a JSON map.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#json_extract_missing_cols","title":"json_extract_missing_cols","text":"Json Extract Missing Cols
udf_js.json_extract_missing_cols
Extract missing columns from additional properties. More generally, get a list of nodes from a JSON blob. Array elements are indicated as [...]. param input: The JSON blob to explode param indicates_node: An array of strings. If a key's value is an object, and contains one of these values, that key is returned as a node. param known_nodes: An array of strings. If a key is in this array, it is returned as a node. Notes: - Use indicates_node for things like histograms. For example ['histogram_type'] will ensure that each histogram will be returned as a missing node, rather than the subvalues within the histogram (e.g. values, sum, etc.) - Use known_nodes if you're aware of a missing section, like ['simpleMeasurements'] See here for an example usage https://sql.telemetry.mozilla.org/queries/64460/source
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#main_summary_active_addons","title":"main_summary_active_addons","text":"Main Summary Active Addons
udf_js.main_summary_active_addons
Add fields from additional_attributes to active_addons in main pings. Return an array instead of a \"map\" for backwards compatibility. The INT64 columns from BigQuery may be passed as strings, so parseInt before returning them if they will be coerced to BOOL. The fields from additional_attributes due to union types: integer or boolean for foreignInstall and userDisabled; string or number for version. https://github.com/mozilla/telemetry-batch-view/blob/ea0733c00df191501b39d2c4e2ece3fe703a0ef3/src/main/scala/com/mozilla/telemetry/views/MainSummaryView.scala#L422-L449
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#main_summary_addon_scalars","title":"main_summary_addon_scalars","text":"Main Summary Addon Scalars
udf_js.main_summary_addon_scalars
Parse scalars from payload.processes.dynamic into map columns for each value type. https://github.com/mozilla/telemetry-batch-view/blob/ea0733c00df191501b39d2c4e2ece3fe703a0ef3/src/main/scala/com/mozilla/telemetry/utils/MainPing.scala#L385-L399
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#main_summary_disabled_addons","title":"main_summary_disabled_addons","text":"Main Summary Disabled Addons
udf_js.main_summary_disabled_addons
Report the ids of the addons which are in the addonDetails but not in the activeAddons. They are the disabled addons (possibly because they are legacy). We need this as addonDetails may contain both disabled and active addons. https://github.com/mozilla/telemetry-batch-view/blob/ea0733c00df191501b39d2c4e2ece3fe703a0ef3/src/main/scala/com/mozilla/telemetry/views/MainSummaryView.scala#L451-L464
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#parse_sponsored_interaction","title":"parse_sponsored_interaction","text":"Extract string from bytes
udf_js.parse_sponsored_interaction
Related to https://mozilla-hub.atlassian.net/browse/RS-682. The function parses the sponsored interaction column from payload_error_bytes.contextual_services table.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#sample_id","title":"sample_id","text":"Sample Id
udf_js.sample_id
Stably hash a client_id to an integer between 0 and 99. This function is technically defined in SQL, but it calls a JS UDF implementation of a CRC-32 hash, so we defined it here to make it clear that its performance may be limited by BigQuery's JavaScript UDF environment.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js_lib/","title":"udf_js_lib","text":"Source Directory
"},{"location":"mozdata/udf_legacy/","title":"User-Defined Functions (Legacy)","text":"Persistent user-defined functions intended for compatibility with queries from legacy AWS infrastructure
"},{"location":"mozdata/udf_legacy/#legacy-udfs","title":"Legacy UDFs","text":"This directory contains compatibility functions for query migrations from Athena/Presto, and is named udf_legacy
to discourage their ongoing use.
Source Directory
"},{"location":"mozdata/viu_politica/","title":"viu-politica","text":"User-facing views related to document namespace viu-politica; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/viu-politica
Source Directory
"},{"location":"mozdata/viu_politica/#deletion_request","title":"deletion_request","text":"Historical Pings for viu-politica/deletion-request
viu_politica.deletion_request
A historical view of pings sent for the viu-politica/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/viu_politica/#events","title":"events","text":"Historical Pings for viu-politica/events
viu_politica.events
A historical view of pings sent for the viu-politica/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/viu_politica/#events_unnested","title":"events_unnested","text":"Events Unnested
viu_politica.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/viu_politica/#main_events","title":"main_events","text":"Historical Pings for viu-politica/main-events
viu_politica.main_events
A historical view of pings sent for the viu-politica/main-events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica_stable main_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/viu_politica/#regret_details","title":"regret_details","text":"Historical Pings for viu-politica/regret-details
viu_politica.regret_details
A historical view of pings sent for the viu-politica/regret-details
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica_stable regret_details_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/viu_politica/#video_data","title":"video_data","text":"Historical Pings for viu-politica/video-data
viu_politica.video_data
A historical view of pings sent for the viu-politica/video-data
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica_stable video_data_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/viu_politica/#video_index","title":"video_index","text":"Historical Pings for viu-politica/video-index
viu_politica.video_index
A historical view of pings sent for the viu-politica/video-index
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica_stable video_index_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/webpagetest/","title":"webpagetest","text":"User-facing views related to document namespace webpagetest; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/webpagetest
Source Directory
"},{"location":"mozdata/webpagetest/#webpagetest_run","title":"webpagetest_run","text":"Historical Pings for webpagetest/webpagetest-run
webpagetest.webpagetest_run
A historical view of pings sent for the webpagetest/webpagetest-run
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes app_name String Yes channel String Yes connection String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes metrics Record No normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes platform String Yes run_id String Yes runner String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes session_state String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes url String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod webpagetest_stable webpagetest_run_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozfun/about/","title":"mozfun","text":"mozfun
is a public GCP project provisioning publicly accessible user-defined functions (UDFs) and other function-like resources.
"},{"location":"mozfun/addons/","title":"Addons","text":""},{"location":"mozfun/addons/#is_adblocker-udf","title":"is_adblocker (UDF)","text":"Returns whether a given Addon ID is an adblocker.
Determine if a given Addon ID is for an adblocker.
As an example, this query will give the number of users who have an adblocker installed.
SELECT\n submission_date,\n COUNT(DISTINCT client_id) AS dau,\nFROM\n mozdata.telemetry.addons\nWHERE\n mozfun.addons.is_adblocker(addon_id)\n AND submission_date >= \"2023-01-01\"\nGROUP BY\n submission_date\n
"},{"location":"mozfun/addons/#parameters","title":"Parameters","text":"INPUTS
addon_id STRING\n
OUTPUTS
BOOLEAN\n
Source | Edit
"},{"location":"mozfun/bits28/","title":"bits28","text":"The bits28
functions provide an API for working with \"bit pattern\" INT64 fields, as used in the clients_last_seen
dataset for desktop Firefox and similar datasets for other applications.
A powerful feature of the clients_last_seen
methodology is that it doesn't record specific metrics like MAU and WAU directly, but rather each row stores a history of the discrete days on which a client was active in the past 28 days. We could calculate active users in a 10 day or 25 day window just as efficiently as a 7 day (WAU) or 28 day (MAU) window. But we can also define completely new metrics based on these usage histories, such as various retention definitions.
The usage history is encoded as a \"bit pattern\" where the physical type of the field is a BigQuery INT64, but logically the integer represents an array of bits, with each 1 indicating a day where the given clients was active and each 0 indicating a day where the client was inactive.
"},{"location":"mozfun/bits28/#to_string-udf","title":"to_string (UDF)","text":"Convert an INT64 field into a 28-character string representing the individual bits.
Implementation based on https://stackoverflow.com/a/51600210/1260237
See detailed docs for the bits28 suite of functions: https://docs.telemetry.mozilla.org/cookbooks/clients_last_seen_bits.html#udf-reference
SELECT\n [mozfun.bits28.to_string(1), mozfun.bits28.to_string(2), mozfun.bits28.to_string(3)]\n-- >>> ['0000000000000000000000000001',\n-- '0000000000000000000000000010',\n-- '0000000000000000000000000011']\n
"},{"location":"mozfun/bits28/#parameters","title":"Parameters","text":"INPUTS
bits INT64\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/bits28/#retention-udf","title":"retention (UDF)","text":"Return a nested struct providing booleans indicating whether a given client was active various time periods based on the passed bit pattern.
"},{"location":"mozfun/bits28/#parameters_1","title":"Parameters","text":"INPUTS
bits INT64, submission_date DATE\n
Source | Edit
"},{"location":"mozfun/bits28/#active_in_range-udf","title":"active_in_range (UDF)","text":"Return a boolean indicating if any bits are set in the specified range of a bit pattern. The start_offset
must be zero or a negative number indicating an offset from the rightmost bit in the pattern. n_bits is the number of bits to consider, counting right from the bit at start_offset
.
See detailed docs for the bits28 suite of functions: https://docs.telemetry.mozilla.org/cookbooks/clients_last_seen_bits.html#udf-reference
"},{"location":"mozfun/bits28/#parameters_2","title":"Parameters","text":"INPUTS
bits INT64, start_offset INT64, n_bits INT64\n
OUTPUTS
BOOLEAN\n
Source | Edit
"},{"location":"mozfun/bits28/#range-udf","title":"range (UDF)","text":"Return an INT64 representing a range of bits from a source bit pattern.
The start_offset must be zero or a negative number indicating an offset from the rightmost bit in the pattern.
n_bits is the number of bits to consider, counting right from the bit at start_offset.
See detailed docs for the bits28 suite of functions: https://docs.telemetry.mozilla.org/cookbooks/clients_last_seen_bits.html#udf-reference
SELECT\n -- Signature is bits28.range(offset_to_day_0, start_bit, number_of_bits)\n mozfun.bits28.range(days_seen_bits, -13 + 0, 7) AS week_0_bits,\n mozfun.bits28.range(days_seen_bits, -13 + 7, 7) AS week_1_bits\nFROM\n telemetry.clients_last_seen\nWHERE\n submission_date > '2020-01-01'\n
"},{"location":"mozfun/bits28/#parameters_3","title":"Parameters","text":"INPUTS
bits INT64, start_offset INT64, n_bits INT64\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/bits28/#to_dates-udf","title":"to_dates (UDF)","text":"Convert a bit pattern into an array of the dates is represents.
See detailed docs for the bits28 suite of functions: https://docs.telemetry.mozilla.org/cookbooks/clients_last_seen_bits.html#udf-reference
"},{"location":"mozfun/bits28/#parameters_4","title":"Parameters","text":"INPUTS
bits INT64, submission_date DATE\n
OUTPUTS
ARRAY<DATE>\n
Source | Edit
"},{"location":"mozfun/bits28/#from_string-udf","title":"from_string (UDF)","text":"Convert a string representing individual bits into an INT64.
Implementation based on https://stackoverflow.com/a/51600210/1260237
See detailed docs for the bits28 suite of functions: https://docs.telemetry.mozilla.org/cookbooks/clients_last_seen_bits.html#udf-reference
"},{"location":"mozfun/bits28/#parameters_5","title":"Parameters","text":"INPUTS
s STRING\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/bits28/#days_since_seen-udf","title":"days_since_seen (UDF)","text":"Return the position of the rightmost set bit in an INT64 bit pattern.
To determine this position, we take a bitwise AND of the bit pattern and its complement, then we determine the position of the bit via base-2 logarithm; see https://stackoverflow.com/a/42747608/1260237
See detailed docs for the bits28 suite of functions: https://docs.telemetry.mozilla.org/cookbooks/clients_last_seen_bits.html#udf-reference
SELECT\n mozfun.bits28.days_since_seen(18)\n-- >> 1\n
"},{"location":"mozfun/bits28/#parameters_6","title":"Parameters","text":"INPUTS
bits INT64\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/bytes/","title":"bytes","text":""},{"location":"mozfun/bytes/#bit_pos_to_byte_pos-udf","title":"bit_pos_to_byte_pos (UDF)","text":"Given a bit position, get the byte that bit appears in. 1-indexed (to match substr), and accepts negative values.
"},{"location":"mozfun/bytes/#parameters","title":"Parameters","text":"INPUTS
bit_pos INT64\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/bytes/#extract_bits-udf","title":"extract_bits (UDF)","text":"Extract bits from a byte array. Roughly matches substr with three arguments: b: bytes - The byte string we need to extract from start: int - The position of the first bit we want to extract. Can be negative to start from the end of the byte array. One-indexed, like substring. length: int - The number of bits we want to extract
The return byte array will have CEIL(length/8) bytes. The bits of interest will start at the beginning of the byte string. In other words, the byte array will have trailing 0s for any non-relevant fields.
Examples: bytes.extract_bits(b'\\x0F\\xF0', 5, 8) = b'\\xFF' bytes.extract_bits(b'\\x0C\\xC0', -12, 8) = b'\\xCC'
"},{"location":"mozfun/bytes/#parameters_1","title":"Parameters","text":"INPUTS
b BYTES, `begin` INT64, length INT64\n
OUTPUTS
BYTES\n
Source | Edit
"},{"location":"mozfun/bytes/#zero_right-udf","title":"zero_right (UDF)","text":"Zero bits on the right of byte
"},{"location":"mozfun/bytes/#parameters_2","title":"Parameters","text":"INPUTS
b BYTES, length INT64\n
OUTPUTS
BYTES\n
Source | Edit
"},{"location":"mozfun/datetime_util/","title":"datetime_util.fxa_parse_date","text":""},{"location":"mozfun/datetime_util/#fxa_parse_date-udf","title":"fxa_parse_date (UDF)","text":"Function for converting a datetime or date string in various formats into a date object
"},{"location":"mozfun/datetime_util/#parameters","title":"Parameters","text":"INPUTS
date_string STRING\n
OUTPUTS
DATE\n
Source | Edit
"},{"location":"mozfun/event_analysis/","title":"event_analysis","text":"These functions are specific for use with the events_daily
and event_types
tables. By themselves, these two tables are nearly impossible to use since the event history is compressed; however, these stored procedures should make the data accessible.
The events_daily
table is created as a result of two steps: 1. Map each event to a single UTF8 char which will represent it 2. Group each client-day and store a string that records, using the compressed format, that clients' event history for that day. The characters are ordered by the timestamp which they appeared that day.
The best way to access this data is to create a view to do the heavy lifting. For example, to see which clients completed a certain action, you can create a view using these functions that knows what that action's representation is (using the compressed mapping from 1.) and create a regex string that checks for the presence of that event. The view makes this transparent, and allows users to simply query a boolean field representing the presence of that event on that day.
"},{"location":"mozfun/event_analysis/#create_funnel_steps_query-stored-procedure","title":"create_funnel_steps_query (Stored Procedure)","text":"Generate the SQL statement that can be used to create an easily queryable view on events data.
"},{"location":"mozfun/event_analysis/#parameters","title":"Parameters","text":"INPUTS
project STRING, dataset STRING, funnel ARRAY<STRUCT<list ARRAY<STRUCT<category STRING, event_name STRING>>>>\n
OUTPUTS
sql STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#get_count_sql-stored-procedure","title":"get_count_sql (Stored Procedure)","text":"For a given funnel, get a SQL statement that can be used to determine if an events string contains that funnel.
"},{"location":"mozfun/event_analysis/#parameters_1","title":"Parameters","text":"INPUTS
project STRING, dataset STRING, count_name STRING, events ARRAY<STRUCT<category STRING, event_name STRING>>\n
OUTPUTS
count_sql STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#create_funnel_regex-udf","title":"create_funnel_regex (UDF)","text":"Given an array of match strings, each representing a single funnel step, aggregate them into a regex string that will match only against the entire funnel. If intermediate_steps is TRUE, this allows for there to be events that occur between the funnel steps.
"},{"location":"mozfun/event_analysis/#parameters_2","title":"Parameters","text":"INPUTS
step_regexes ARRAY<STRING>, intermediate_steps BOOLEAN\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#extract_event_counts_with_properties-udf","title":"extract_event_counts_with_properties (UDF)","text":"Extract events with event properties and their associated counts. Also extracts raw events and their counts. This allows for querying with and without properties in the same dashboard.
"},{"location":"mozfun/event_analysis/#usage","title":"Usage","text":"extract_event_counts_with_properties(\n events STRING\n)\n
events
- A comma-separated events string, where each event is represented as a string of unicode chars.
"},{"location":"mozfun/event_analysis/#example","title":"Example","text":"See this query for example usage.
"},{"location":"mozfun/event_analysis/#caveats","title":"Caveats","text":"This function extracts both counts for events with each property, and for all events without their properties.
This allows us to include both total counts for an event (with any property value), and events that don't have properties.
"},{"location":"mozfun/event_analysis/#parameters_3","title":"Parameters","text":"INPUTS
events STRING\n
OUTPUTS
ARRAY<STRUCT<event_index STRING, property_index INT64, property_value_index STRING, count INT64>>\n
Source | Edit
"},{"location":"mozfun/event_analysis/#create_events_view-stored-procedure","title":"create_events_view (Stored Procedure)","text":"Create a view that queries the events_daily
table. This view currently supports both funnels and event counts. Funnels are created as a struct, with each step in the funnel as a boolean column in the struct, indicating whether the user completed that step on that day. Event counts are simply integers.
"},{"location":"mozfun/event_analysis/#usage_1","title":"Usage","text":"create_events_view(\n view_name STRING,\n project STRING,\n dataset STRING,\n funnels ARRAY<STRUCT<\n funnel_name STRING,\n funnel ARRAY<STRUCT<\n step_name STRING,\n events ARRAY<STRUCT<\n category STRING,\n event_name STRING>>>>>>,\n counts ARRAY<STRUCT<\n count_name STRING,\n events ARRAY<STRUCT<\n category STRING,\n event_name STRING>>>>\n )\n
project
: The project where the dataset
is located.
dataset
: The dataset that must contain both the events_daily
and event_types
tables.
"},{"location":"mozfun/event_analysis/#recommended-pattern","title":"Recommended Pattern","text":"Because the view definitions themselves are not informative about the contents of the events fields, it is best to put your query immediately after the procedure invocation, rather than invoking the procedure and running a separate query.
This STMO query is an example of doing so. This allows viewers of the query to easily interpret what the funnel and count columns represent.
"},{"location":"mozfun/event_analysis/#structure-of-the-resulting-view","title":"Structure of the Resulting View","text":"The view will be created at
`moz-fx-data-shared-prod`.analysis.{event_name}.\n
The view will have a schema roughly matching the following:
root\n |-- submission_date: date\n |-- client_id: string\n |-- {funnel_1_name}: record\n | |-- {funnel_step_1_name} boolean\n | |-- {funnel_step_2_name} boolean\n ...\n |-- {funnel_N_name}: record\n | |-- {funnel_step_M_name}: boolean\n |-- {count_1_name}: integer\n ...\n |-- {count_N_name}: integer\n ...dimensions...\n
"},{"location":"mozfun/event_analysis/#funnels","title":"Funnels","text":"Each funnel will be a STRUCT
with nested columns representing completion of each step The types of those columns are boolean, and represent whether the user completed that step on that day.
STRUCT(\n completed_step_1 BOOLEAN,\n completed_step_2 BOOLEAN,\n ...\n) AS funnel_name\n
With one row per-user per-day, you can use COUNTIF(funnel_name.completed_step_N)
to query these fields. See below for an example.
"},{"location":"mozfun/event_analysis/#event-counts","title":"Event Counts","text":"Each event count is simply an INT64
representing the number of times the user completed those events on that day. If there are multiple events represented within one count, the values are summed. For example, if you wanted to know the number of times a user opened or closed the app, you could create a single event count with those two events.
event_count_name INT64\n
"},{"location":"mozfun/event_analysis/#examples","title":"Examples","text":"The following creates a few fields: - collection_flow
is a funnel for those that started creating a collection within Fenix, and then finished, either by adding those tabs to an existing collection or saving it as a new collection. - collection_flow_saved
represents users who started the collection flow then saved it as a new collection. - number_of_collections_created
is the number of collections created - number_of_collections_deleted
is the number of collections deleted
CALL mozfun.event_analysis.create_events_view(\n 'fenix_collection_funnels',\n 'moz-fx-data-shared-prod',\n 'org_mozilla_firefox',\n\n -- Funnels\n [\n STRUCT(\n \"collection_flow\" AS funnel_name,\n [STRUCT(\n \"started_collection_creation\" AS step_name,\n [STRUCT('collections' AS category, 'tab_select_opened' AS event_name)] AS events),\n STRUCT(\n \"completed_collection_creation\" AS step_name,\n [STRUCT('collections' AS category, 'saved' AS event_name),\n STRUCT('collections' AS category, 'tabs_added' AS event_name)] AS events)\n ] AS funnel),\n\n STRUCT(\n \"collection_flow_saved\" AS funnel_name,\n [STRUCT(\n \"started_collection_creation\" AS step_name,\n [STRUCT('collections' AS category, 'tab_select_opened' AS event_name)] AS events),\n STRUCT(\n \"saved_collection\" AS step_name,\n [STRUCT('collections' AS category, 'saved' AS event_name)] AS events)\n ] AS funnel)\n ],\n\n -- Event Counts\n [\n STRUCT(\n \"number_of_collections_created\" AS count_name,\n [STRUCT('collections' AS category, 'saved' AS event_name)] AS events\n ),\n STRUCT(\n \"number_of_collections_deleted\" AS count_name,\n [STRUCT('collections' AS category, 'removed' AS event_name)] AS events\n )\n ]\n);\n
From there, you can query a few things. For example, the fraction of users who completed each step of the collection flow over time:
SELECT\n submission_date,\n COUNTIF(collection_flow.started_collection_creation) / COUNT(*) AS started_collection_creation,\n COUNTIF(collection_flow.completed_collection_creation) / COUNT(*) AS completed_collection_creation,\nFROM\n `moz-fx-data-shared-prod`.analysis.fenix_collection_funnels\nWHERE\n submission_date >= DATE_SUB(current_date, INTERVAL 28 DAY)\nGROUP BY\n submission_date\n
Or you can see the number of collections created and deleted:
SELECT\n submission_date,\n SUM(number_of_collections_created) AS number_of_collections_created,\n SUM(number_of_collections_deleted) AS number_of_collections_deleted,\nFROM\n `moz-fx-data-shared-prod`.analysis.fenix_collection_funnels\nWHERE\n submission_date >= DATE_SUB(current_date, INTERVAL 28 DAY)\nGROUP BY\n submission_date\n
"},{"location":"mozfun/event_analysis/#parameters_4","title":"Parameters","text":"INPUTS
view_name STRING, project STRING, dataset STRING, funnels ARRAY<STRUCT<funnel_name STRING, funnel ARRAY<STRUCT<step_name STRING, events ARRAY<STRUCT<category STRING, event_name STRING>>>>>>, counts ARRAY<STRUCT<count_name STRING, events ARRAY<STRUCT<category STRING, event_name STRING>>>>\n
Source | Edit
"},{"location":"mozfun/event_analysis/#extract_event_counts-udf","title":"extract_event_counts (UDF)","text":"Extract the events and their counts from an events string. This function explicitly ignores event properties, and retrieves just the counts of the top-level events.
"},{"location":"mozfun/event_analysis/#usage_2","title":"Usage","text":"extract_event_counts(\n events STRING\n)\n
events
- A comma-separated events string, where each event is represented as a string of unicode chars.
"},{"location":"mozfun/event_analysis/#example_1","title":"Example","text":"See this dashboard for example usage.
"},{"location":"mozfun/event_analysis/#parameters_5","title":"Parameters","text":"INPUTS
events STRING\n
OUTPUTS
ARRAY<STRUCT<index STRING, count INT64>>\n
Source | Edit
"},{"location":"mozfun/event_analysis/#create_count_steps_query-stored-procedure","title":"create_count_steps_query (Stored Procedure)","text":"Generate the SQL statement that can be used to create an easily queryable view on events data.
"},{"location":"mozfun/event_analysis/#parameters_6","title":"Parameters","text":"INPUTS
project STRING, dataset STRING, events ARRAY<STRUCT<category STRING, event_name STRING>>\n
OUTPUTS
sql STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#event_index_to_match_string-udf","title":"event_index_to_match_string (UDF)","text":"Given an event index string, create a match string that is an exact match in the events_daily table.
"},{"location":"mozfun/event_analysis/#parameters_7","title":"Parameters","text":"INPUTS
index STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#aggregate_match_strings-udf","title":"aggregate_match_strings (UDF)","text":"Given an array of strings that each match a single event, aggregate those into a single regex string that will match any of the events.
"},{"location":"mozfun/event_analysis/#parameters_8","title":"Parameters","text":"INPUTS
match_strings ARRAY<STRING>\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#escape_metachars-udf","title":"escape_metachars (UDF)","text":"Escape all metachars from a regex string. This will make the string an exact match, no matter what it contains.
"},{"location":"mozfun/event_analysis/#parameters_9","title":"Parameters","text":"INPUTS
s STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#get_funnel_steps_sql-stored-procedure","title":"get_funnel_steps_sql (Stored Procedure)","text":"For a given funnel, get a SQL statement that can be used to determine if an events string contains that funnel.
"},{"location":"mozfun/event_analysis/#parameters_10","title":"Parameters","text":"INPUTS
project STRING, dataset STRING, funnel_name STRING, funnel ARRAY<STRUCT<step_name STRING, list ARRAY<STRUCT<category STRING, event_name STRING>>>>\n
OUTPUTS
funnel_sql STRING\n
Source | Edit
"},{"location":"mozfun/ga/","title":"Ga","text":""},{"location":"mozfun/ga/#nullify_string-udf","title":"nullify_string (UDF)","text":"Nullify a GA string, which sometimes come in \"(not set)\" or simply \"\"
UDF for handling empty Google Analytics data.
"},{"location":"mozfun/ga/#parameters","title":"Parameters","text":"INPUTS
s STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/glam/","title":"Glam","text":""},{"location":"mozfun/glam/#map_from_array_offsets-udf","title":"map_from_array_offsets (UDF)","text":""},{"location":"mozfun/glam/#parameters","title":"Parameters","text":"INPUTS
required ARRAY<FLOAT64>, `values` ARRAY<FLOAT64>\n
OUTPUTS
ARRAY<STRUCT<key STRING, value FLOAT64>>\n
Source | Edit
"},{"location":"mozfun/glam/#map_from_array_offsets_precise-udf","title":"map_from_array_offsets_precise (UDF)","text":""},{"location":"mozfun/glam/#parameters_1","title":"Parameters","text":"INPUTS
required ARRAY<FLOAT64>, `values` ARRAY<FLOAT64>\n
OUTPUTS
ARRAY<STRUCT<key STRING, value FLOAT64>>\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_generate_scalar_buckets-udf","title":"histogram_generate_scalar_buckets (UDF)","text":"Generate scalar buckets for a histogram using a fixed number of buckets.
"},{"location":"mozfun/glam/#parameters_2","title":"Parameters","text":"INPUTS
min_bucket FLOAT64, max_bucket FLOAT64, num_buckets INT64\n
OUTPUTS
ARRAY<FLOAT64>DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_generate_exponential_buckets-udf","title":"histogram_generate_exponential_buckets (UDF)","text":"Generate exponential buckets for a histogram.
"},{"location":"mozfun/glam/#parameters_3","title":"Parameters","text":"INPUTS
min FLOAT64, max FLOAT64, nBuckets FLOAT64\n
OUTPUTS
ARRAY<FLOAT64>DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/glam/#fenix_build_to_build_hour-udf","title":"fenix_build_to_build_hour (UDF)","text":"Returns a custom build id generated from the build hour of a Fenix build.
"},{"location":"mozfun/glam/#parameters_4","title":"Parameters","text":"INPUTS
app_build_id STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_bucket_from_value-udf","title":"histogram_bucket_from_value (UDF)","text":""},{"location":"mozfun/glam/#parameters_5","title":"Parameters","text":"INPUTS
buckets ARRAY<STRING>, val FLOAT64\n
OUTPUTS
FLOAT64\n
Source | Edit
"},{"location":"mozfun/glam/#build_hour_to_datetime-udf","title":"build_hour_to_datetime (UDF)","text":"Parses the custom build id used for Fenix builds in GLAM to a datetime.
"},{"location":"mozfun/glam/#parameters_6","title":"Parameters","text":"INPUTS
build_hour STRING\n
OUTPUTS
DATETIME\n
Source | Edit
"},{"location":"mozfun/glam/#percentile-udf","title":"percentile (UDF)","text":"Get the value of the approximate CDF at the given percentile.
"},{"location":"mozfun/glam/#parameters_7","title":"Parameters","text":"INPUTS
percentile FLOAT64, histogram ARRAY<STRUCT<key STRING, value FLOAT64>>, type STRING\n
OUTPUTS
FLOAT64 DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_normalized_sum-udf","title":"histogram_normalized_sum (UDF)","text":"Compute the normalized sum of an array of histograms.
"},{"location":"mozfun/glam/#parameters_8","title":"Parameters","text":"INPUTS
arrs ARRAY<STRUCT<key STRING, value INT64>>, weight FLOAT64\n
OUTPUTS
ARRAY<STRUCT<key STRING, value FLOAT64>>\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_fill_buckets-udf","title":"histogram_fill_buckets (UDF)","text":"Interpolate missing histogram buckets with empty buckets.
"},{"location":"mozfun/glam/#parameters_9","title":"Parameters","text":"INPUTS
input_map ARRAY<STRUCT<key STRING, value FLOAT64>>, buckets ARRAY<STRING>\n
OUTPUTS
ARRAY<STRUCT<key STRING, value FLOAT64>>\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_fill_buckets_dirichlet-udf","title":"histogram_fill_buckets_dirichlet (UDF)","text":"Interpolate missing histogram buckets with empty buckets so it becomes a valid estimator for the dirichlet distribution.
See: https://docs.google.com/document/d/1ipy1oFIKDvHr3R6Ku0goRjS11R1ZH1z2gygOGkSdqUg
To use this, you must first: Aggregate the histograms to the client level, to get a histogram {k1: p1, k2:p2, ..., kK: pN} where the p's are proportions(and p1, p2, ... sum to 1) and Kis the number of buckets.
This is then the client's estimated density, and every client has been reduced to one row (i.e the client's histograms are reduced to this single one and normalized).
Then add all of these across clients to get {k1: P1, k2:P2, ..., kK: PK} where P1 = sum(p1 across N clients) and P2 = sum(p2 across N clients).
Calculate the total number of buckets K, as well as the total number of profiles N reporting
Then our estimate for final density is: [{k1: ((P1 + 1/K) / (nreporting+1)), k2: ((P2 + 1/K) /(nreporting+1)), ... }
"},{"location":"mozfun/glam/#parameters_10","title":"Parameters","text":"INPUTS
input_map ARRAY<STRUCT<key STRING, value FLOAT64>>, buckets ARRAY<STRING>, total_users INT64\n
OUTPUTS
ARRAY<STRUCT<key STRING, value FLOAT64>>\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_buckets_cast_string_array-udf","title":"histogram_buckets_cast_string_array (UDF)","text":"Cast histogram buckets into a string array.
"},{"location":"mozfun/glam/#parameters_11","title":"Parameters","text":"INPUTS
buckets ARRAY<INT64>\n
OUTPUTS
ARRAY<STRING>\n
Source | Edit
"},{"location":"mozfun/glam/#build_seconds_to_hour-udf","title":"build_seconds_to_hour (UDF)","text":"Returns a custom build id generated from the build seconds of a FOG build.
"},{"location":"mozfun/glam/#parameters_12","title":"Parameters","text":"INPUTS
build_hour STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_generate_functional_buckets-udf","title":"histogram_generate_functional_buckets (UDF)","text":"Generate functional buckets for a histogram. This is specific to Glean.
See: https://github.com/mozilla/glean/blob/main/glean-core/src/histogram/functional.rs
A functional bucketing algorithm. The bucket index of a given sample is determined with the following function:
i = $$ \\lfloor{n log_{\\text{base}}{(x)}}\\rfloor $$
In other words, there are n buckets for each power of base
magnitude.
"},{"location":"mozfun/glam/#parameters_13","title":"Parameters","text":"INPUTS
log_base INT64, buckets_per_magnitude INT64, range_max INT64\n
OUTPUTS
ARRAY<FLOAT64>DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_generate_linear_buckets-udf","title":"histogram_generate_linear_buckets (UDF)","text":"Generate linear buckets for a histogram.
"},{"location":"mozfun/glam/#parameters_14","title":"Parameters","text":"INPUTS
min FLOAT64, max FLOAT64, nBuckets FLOAT64\n
OUTPUTS
ARRAY<FLOAT64>DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_from_buckets_uniform-udf","title":"histogram_from_buckets_uniform (UDF)","text":"Create an empty histogram from an array of buckets.
"},{"location":"mozfun/glam/#parameters_15","title":"Parameters","text":"INPUTS
buckets ARRAY<STRING>\n
OUTPUTS
ARRAY<STRUCT<key STRING, value FLOAT64>>\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_cast_json-udf","title":"histogram_cast_json (UDF)","text":"Cast a histogram into a JSON blob.
"},{"location":"mozfun/glam/#parameters_16","title":"Parameters","text":"INPUTS
histogram ARRAY<STRUCT<key STRING, value FLOAT64>>\n
OUTPUTS
STRING DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/glean/","title":"glean","text":"Functions for working with Glean data.
"},{"location":"mozfun/glean/#timespan_seconds-udf","title":"timespan_seconds (UDF)","text":"Returns the number of seconds represented by a Glean timespan struct, rounded down to full seconds.
See https://mozilla.github.io/glean/book/user/metrics/timespan.html
"},{"location":"mozfun/glean/#parameters","title":"Parameters","text":"INPUTS
timespan STRUCT<time_unit STRING, value INT64>\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/glean/#legacy_compatible_experiments-udf","title":"legacy_compatible_experiments (UDF)","text":"Formats a Glean experiments field into a Legacy Telemetry experiments field by dropping the extra information that Glean collects
This UDF transforms the ping_info.experiments
field from Glean pings into the format for experiments
used by Legacy Telemetry pings. In particular, it drops the exta information that Glean pings collect.
If you need to combine Glean data with Legacy Telemetry data, then you can use this UDF to transform a Glean experiments field into the structure of a Legacy Telemetry one.
"},{"location":"mozfun/glean/#parameters_1","title":"Parameters","text":"INPUTS
ping_info__experiments ARRAY<STRUCT<key STRING, value STRUCT<branch STRING, extra STRUCT<type STRING, enrollment_id STRING>>>>\n
OUTPUTS
ARRAY<STRUCT<key STRING, value STRING>>\n
Source | Edit
"},{"location":"mozfun/glean/#parse_datetime-udf","title":"parse_datetime (UDF)","text":"Parses a Glean datetime metric string value as a BigQuery timestamp.
See https://mozilla.github.io/glean/book/reference/metrics/datetime.html
"},{"location":"mozfun/glean/#parameters_2","title":"Parameters","text":"INPUTS
datetime_string STRING\n
OUTPUTS
TIMESTAMP\n
Source | Edit
"},{"location":"mozfun/glean/#timespan_nanos-udf","title":"timespan_nanos (UDF)","text":"Returns the number of nanoseconds represented by a Glean timespan struct.
See https://mozilla.github.io/glean/book/user/metrics/timespan.html
"},{"location":"mozfun/glean/#parameters_3","title":"Parameters","text":"INPUTS
timespan STRUCT<time_unit STRING, value INT64>\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/hist/","title":"hist","text":"Functions for working with string encodings of histograms from desktop telemetry.
"},{"location":"mozfun/hist/#mean-udf","title":"mean (UDF)","text":"Given histogram h, return floor(mean) of the measurements in the bucket. That is, the histogram sum divided by the number of measurements taken.
https://github.com/mozilla/telemetry-batch-view/blob/ea0733c/src/main/scala/com/mozilla/telemetry/utils/MainPing.scala#L292-L307
"},{"location":"mozfun/hist/#parameters","title":"Parameters","text":"INPUTS
histogram ANY TYPE\n
OUTPUTS
STRUCT<sum INT64, VALUES ARRAY<STRUCT<value INT64>>>\n
Source | Edit
"},{"location":"mozfun/hist/#merge-udf","title":"merge (UDF)","text":"Merge an array of histograms into a single histogram.
- The histogram values will be summed per-bucket
- The count will be summed
- Other fields will take the mode_last
"},{"location":"mozfun/hist/#parameters_1","title":"Parameters","text":"INPUTS
histogram_list ANY TYPE\n
Source | Edit
"},{"location":"mozfun/hist/#extract_keyed_hist_sum-udf","title":"extract_keyed_hist_sum (UDF)","text":"Sum of a keyed histogram, across all keys it contains.
"},{"location":"mozfun/hist/#extract-keyed-histogram-sum","title":"Extract Keyed Histogram Sum","text":"Takes a keyed histogram and returns a single number: the sum of all keys it contains. The expected input type is ARRAY<STRUCT<key STRING, value STRING>>
The return type is INT64
.
The key
field will be ignored, and the `value is expected to be the compact histogram representation.
"},{"location":"mozfun/hist/#parameters_2","title":"Parameters","text":"INPUTS
keyed_histogram ARRAY<STRUCT<key STRING, value STRING>>\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/hist/#string_to_json-udf","title":"string_to_json (UDF)","text":"Convert a histogram string (in JSON or compact format) to a full histogram JSON blob.
"},{"location":"mozfun/hist/#parameters_3","title":"Parameters","text":"INPUTS
input STRING\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/hist/#threshold_count-udf","title":"threshold_count (UDF)","text":"Return the number of recorded observations greater than threshold for the histogram. CAUTION: Does not count any buckets that have any values less than the threshold. For example, a bucket with range (1, 10) will not be counted for a threshold of 2. Use threshold that are not bucket boundaries with caution.
https://github.com/mozilla/telemetry-batch-view/blob/ea0733c/src/main/scala/com/mozilla/telemetry/utils/MainPing.scala#L213-L239
"},{"location":"mozfun/hist/#parameters_4","title":"Parameters","text":"INPUTS
histogram STRING, threshold INT64\n
Source | Edit
"},{"location":"mozfun/hist/#percentiles-udf","title":"percentiles (UDF)","text":"Given histogram and list of percentiles,calculate what those percentiles are for the histogram. If the histogram is empty, returns NULL.
"},{"location":"mozfun/hist/#parameters_5","title":"Parameters","text":"INPUTS
histogram ANY TYPE, percentiles ARRAY<FLOAT64>\n
OUTPUTS
ARRAY<STRUCT<percentile FLOAT64, value INT64>>\n
Source | Edit
"},{"location":"mozfun/hist/#count-udf","title":"count (UDF)","text":"Given histogram h, return the count of all measurements across all buckets.
Given histogram h, return the count of all measurements across all buckets.
Extracts the values from the histogram and sums them, returning the total_count.
"},{"location":"mozfun/hist/#parameters_6","title":"Parameters","text":"INPUTS
histogram STRING\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/hist/#extract_histogram_sum-udf","title":"extract_histogram_sum (UDF)","text":"Extract a histogram sum from a JSON str representation
"},{"location":"mozfun/hist/#extract-histogram-sum","title":"Extract Histogram Sum","text":""},{"location":"mozfun/hist/#parameters_7","title":"Parameters","text":"INPUTS
input STRING\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/hist/#extract-udf","title":"extract (UDF)","text":"Return a parsed struct from a string-encoded histogram.
We support a variety of compact encodings as well as the classic JSON representation as sent in main pings.
The built-in BigQuery JSON parsing functions are not powerful enough to handle all the logic here, so we resort to some string processing. This function could behave unexpectedly on poorly-formatted histogram JSON, but we expect that payload validation in the data pipeline should ensure that histograms are well formed, which gives us some flexibility.
For more on desktop telemetry histogram structure, see:
- https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/collection/histograms.html
The compact encodings were originally proposed in:
- https://docs.google.com/document/d/1k_ji_1DB6htgtXnPpMpa7gX0klm-DGV5NMY7KkvVB00/edit#
SELECT\n mozfun.hist.extract(\n '{\"bucket_count\":3,\"histogram_type\":4,\"sum\":1,\"range\":[1,2],\"values\":{\"0\":1,\"1\":0}}'\n ).sum\n-- 1\n
SELECT\n mozfun.hist.extract('5').sum\n-- 5\n
"},{"location":"mozfun/hist/#parameters_8","title":"Parameters","text":"INPUTS
input STRING\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/hist/#normalize-udf","title":"normalize (UDF)","text":"Normalize a histogram. Set sum to 1, and normalize to 1 the histogram bucket counts.
"},{"location":"mozfun/hist/#parameters_9","title":"Parameters","text":"INPUTS
histogram STRUCT<bucket_count INT64, `sum` INT64, histogram_type INT64, `range` ARRAY<INT64>, `values` ARRAY<STRUCT<key INT64, value INT64>>>\n
OUTPUTS
STRUCT<bucket_count INT64, `sum` INT64, histogram_type INT64, `range` ARRAY<INT64>, `values` ARRAY<STRUCT<key INT64, value FLOAT64>>>\n
Source | Edit
"},{"location":"mozfun/iap/","title":"iap","text":""},{"location":"mozfun/iap/#parse_android_receipt-udf","title":"parse_android_receipt (UDF)","text":"Used to parse data
field from firestore export of fxa dataset iap_google_raw. The content is documented at https://developer.android.com/google/play/billing/subscriptions and https://developers.google.com/android-publisher/api-ref/rest/v3/purchases.subscriptions
"},{"location":"mozfun/iap/#parameters","title":"Parameters","text":"INPUTS
input STRING\n
Source | Edit
"},{"location":"mozfun/iap/#scrub_apple_receipt-udf","title":"scrub_apple_receipt (UDF)","text":"Take output from mozfun.iap.parse_apple_receipt and remove fields or reduce their granularity so that the returned value can be exposed to all employees via redash.
"},{"location":"mozfun/iap/#parameters_1","title":"Parameters","text":"INPUTS
apple_receipt ANY TYPE\n
OUTPUTS
STRUCT<environment STRING, active_period STRUCT<start_date DATE, end_date DATE, start_time TIMESTAMP, end_time TIMESTAMP, `interval` STRING, interval_count INT64>, trial_period STRUCT<start_time TIMESTAMP, end_time TIMESTAMP>>\n
Source | Edit
"},{"location":"mozfun/iap/#parse_apple_event-udf","title":"parse_apple_event (UDF)","text":"Used to parse data
field from firestore export of fxa dataset iap_app_store_purchases_raw. The content is documented at https://developer.apple.com/documentation/appstoreservernotifications/responsebodyv2decodedpayload and https://github.com/mozilla/fxa/blob/700ed771860da450add97d62f7e6faf2ead0c6ba/packages/fxa-shared/payments/iap/apple-app-store/subscription-purchase.ts#L115-L171
"},{"location":"mozfun/iap/#parameters_2","title":"Parameters","text":"INPUTS
input STRING\n
Source | Edit
"},{"location":"mozfun/iap/#parse_apple_receipt-udf","title":"parse_apple_receipt (UDF)","text":"Used to parse provider_receipt_json in mozilla vpn subscriptions where provider is \"APPLE\". The content is documented at https://developer.apple.com/documentation/appstorereceipts/responsebody
"},{"location":"mozfun/iap/#parameters_3","title":"Parameters","text":"INPUTS
provider_receipt_json STRING\n
OUTPUTS
STRUCT<environment STRING, latest_receipt BYTES, latest_receipt_info ARRAY<STRUCT<cancellation_date STRING, cancellation_date_ms INT64, cancellation_date_pst STRING, cancellation_reason STRING, expires_date STRING, expires_date_ms INT64, expires_date_pst STRING, in_app_ownership_type STRING, is_in_intro_offer_period STRING, is_trial_period STRING, original_purchase_date STRING, original_purchase_date_ms INT64, original_purchase_date_pst STRING, original_transaction_id STRING, product_id STRING, promotional_offer_id STRING, purchase_date STRING, purchase_date_ms INT64, purchase_date_pst STRING, quantity INT64, subscription_group_identifier INT64, transaction_id INT64, web_order_line_item_id INT64>>, pending_renewal_info ARRAY<STRUCT<auto_renew_product_id STRING, auto_renew_status INT64, expiration_intent INT64, is_in_billing_retry_period INT64, original_transaction_id STRING, product_id STRING>>, receipt STRUCT<adam_id INT64, app_item_id INT64, application_version STRING, bundle_id STRING, download_id INT64, in_app ARRAY<STRUCT<cancellation_date STRING, cancellation_date_ms INT64, cancellation_date_pst STRING, cancellation_reason STRING, expires_date STRING, expires_date_ms INT64, expires_date_pst STRING, in_app_ownership_type STRING, is_in_intro_offer_period STRING, is_trial_period STRING, original_purchase_date STRING, original_purchase_date_ms INT64, original_purchase_date_pst STRING, original_transaction_id STRING, product_id STRING, promotional_offer_id STRING, purchase_date STRING, purchase_date_ms INT64, purchase_date_pst STRING, quantity INT64, subscription_group_identifier INT64, transaction_id INT64, web_order_line_item_id INT64>>, original_application_version STRING, original_purchase_date STRING, original_purchase_date_ms INT64, original_purchase_date_pst STRING, receipt_creation_date STRING, receipt_creation_date_ms INT64, receipt_creation_date_pst STRING, receipt_type STRING, request_date STRING, request_date_ms INT64, request_date_pst STRING, version_external_identifier INT64>, status INT64>DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/iap/#derive_apple_subscription_interval-udf","title":"derive_apple_subscription_interval (UDF)","text":"Take output purchase_date and expires_date from mozfun.iap.parse_apple_receipt and return the subscription interval to use for accounting. Values must be DATETIME in America/Los_Angeles to get correct results because of how timezone and daylight savings impact the time of day and the length of a month.
"},{"location":"mozfun/iap/#parameters_4","title":"Parameters","text":"INPUTS
start DATETIME, `end` DATETIME\n
OUTPUTS
STRUCT<`interval` STRING, interval_count INT64>\n
Source | Edit
"},{"location":"mozfun/json/","title":"json","text":"Functions for parsing Mozilla-specific JSON data types.
"},{"location":"mozfun/json/#mode_last-udf","title":"mode_last (UDF)","text":"Returns the most frequently occuring element in an array of json-compatible elements. In the case of multiple values tied for the highest count, it returns the value that appears latest in the array. Nulls are ignored.
"},{"location":"mozfun/json/#parameters","title":"Parameters","text":"INPUTS
list ANY TYPE\n
Source | Edit
"},{"location":"mozfun/json/#extract_int_map-udf","title":"extract_int_map (UDF)","text":"Returns an array of key/value structs from a string representing a JSON map. Both keys and values are cast to integers.
This is the format for the \"values\" field in the desktop telemetry histogram JSON representation.
"},{"location":"mozfun/json/#parameters_1","title":"Parameters","text":"INPUTS
input STRING\n
Source | Edit
"},{"location":"mozfun/json/#from_map-udf","title":"from_map (UDF)","text":"Converts a standard \"map\" like datastructure array<struct<key, value>>
into a JSON value.
Convert the standard Array<Struct<key, value>>
style maps to JSON
values.
"},{"location":"mozfun/json/#parameters_2","title":"Parameters","text":"INPUTS
input JSON\n
OUTPUTS
json\n
Source | Edit
"},{"location":"mozfun/json/#js_extract_string_map-udf","title":"js_extract_string_map (UDF)","text":"Returns an array of key/value structs from a string representing a JSON map.
BigQuery Standard SQL JSON functions are insufficient to implement this function, so JS is being used and it may not perform well with large or numerous inputs.
Non-string non-null values are encoded as json.
"},{"location":"mozfun/json/#parameters_3","title":"Parameters","text":"INPUTS
input STRING\n
OUTPUTS
ARRAY<STRUCT<key STRING, value STRING>>\n
Source | Edit
"},{"location":"mozfun/map/","title":"map","text":"Functions for working with arrays of key/value structs.
"},{"location":"mozfun/map/#set_key-udf","title":"set_key (UDF)","text":"Set a key to a value in a map. If you call map.get_key after setting, the value you set will be returned.
map.set_key
Set a key to a specific value in a map. We represent maps as Arrays of Key/Value structs: ARRAY<STRUCT<key ANY TYPE, value ANY TYPE>>
.
The type of the key and value you are setting must match the types in the map itself.
"},{"location":"mozfun/map/#parameters","title":"Parameters","text":"INPUTS
map ANY TYPE, new_key ANY TYPE, new_value ANY TYPE\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/map/#get_key-udf","title":"get_key (UDF)","text":"Fetch the value associated with a given key from an array of key/value structs.
Because map types aren't available in BigQuery, we model maps as arrays of structs instead, and this function provides map-like access to such fields.
"},{"location":"mozfun/map/#parameters_1","title":"Parameters","text":"INPUTS
map ANY TYPE, k ANY TYPE\n
Source | Edit
"},{"location":"mozfun/map/#mode_last-udf","title":"mode_last (UDF)","text":"Combine entries from multiple maps, determine the value for each key using mozfun.stats.mode_last.
"},{"location":"mozfun/map/#parameters_2","title":"Parameters","text":"INPUTS
entries ANY TYPE\n
Source | Edit
"},{"location":"mozfun/map/#sum-udf","title":"sum (UDF)","text":"Return the sum of values by key in an array of map entries. The expected schema for entries is ARRAY>, where the type for value must be supported by SUM, which allows numeric data types INT64, NUMERIC, and FLOAT64."},{"location":"mozfun/map/#parameters_3","title":"Parameters","text":"
INPUTS
entries ANY TYPE\n
Source | Edit
"},{"location":"mozfun/map/#extract_keyed_scalar_sum-udf","title":"extract_keyed_scalar_sum (UDF)","text":"Sums all values in a keyed scalar.
"},{"location":"mozfun/map/#extract-keyed-scalar-sum","title":"Extract Keyed Scalar Sum","text":"Takes a keyed scalar and returns a single number: the sum of all values it contains. The expected input type is ARRAY<STRUCT<key STRING, value INT64>>
The return type is INT64
.
The key
field will be ignored.
"},{"location":"mozfun/map/#parameters_4","title":"Parameters","text":"INPUTS
keyed_scalar ARRAY<STRUCT<key STRING, value INT64>>\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/map/#get_key_with_null-udf","title":"get_key_with_null (UDF)","text":"Fetch the value associated with a given key from an array of key/value structs.
Because map types aren't available in BigQuery, we model maps as arrays of structs instead, and this function provides map-like access to such fields. This version matches NULL keys as well.
"},{"location":"mozfun/map/#parameters_5","title":"Parameters","text":"INPUTS
map ANY TYPE, k ANY TYPE\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/norm/","title":"norm","text":"Functions for normalizing data.
"},{"location":"mozfun/norm/#get_windows_info-udf","title":"get_windows_info (UDF)","text":"Exract the name, the version name, the version number, and the build number corresponding to a Microsoft Windows operating system version string in the form of .. or ... for most release versions of Windows after 2007."},{"location":"mozfun/norm/#windows-names-versions-and-builds","title":"Windows Names, Versions, and Builds","text":""},{"location":"mozfun/norm/#summary","title":"Summary","text":"
This function is primarily designed to parse the field os_version
in table mozdata.default_browser_agent.default_browser
. Given a Microsoft Windows OS version string, the function returns the name of the operating system, the version name, the version number, and the build number corresponding to the operating system. As of November 2022, the parser can handle 99.89% of the os_version
values collected in table mozdata.default_browser_agent.default_browser
.
"},{"location":"mozfun/norm/#status-as-of-november-2022","title":"Status as of November 2022","text":"As of November 2022, the expected valid values of os_version
are either x.y.z
or w.x.y.z
where w
, x
, y
, and z
are integers.
As of November 2022, the return values for Windows 10 and Windows 11 are based on Windows 10 release information and Windows 11 release information. For 3-number version strings, the parser assumes the valid values of z
in x.y.z
are at most 5 digits in length. For 4-number version strings, the parser assumes the valid values of z
in w.x.y.z
are at most 6 digits in length. The function makes an educated effort to handle Windows Vista, Windows 7, Windows 8, and Windows 8.1 information, but does not guarantee the return values are absolutely accurate. The function assumes the presence of undocumented non-release versions of Windows 10 and Windows 11, and will return an estimated name, version number, build number but not the version name. The function does not handle other versions of Windows.
As of November 2022, the parser currently handles just over 99.89% of data in the field os_version
in table mozdata.default_browser_agent.default_browser
.
"},{"location":"mozfun/norm/#build-number-conventions","title":"Build number conventions","text":"Note: Microsoft convention for build numbers for Windows 10 and 11 include two numbers, such as build number 22621.900
for version 22621
. The first number repeats the version number and the second number uniquely identifies the build within the version. To simplify data processing and data analysis, this function returns the second unique identifier as an integer instead of returning the full build number as a string.
"},{"location":"mozfun/norm/#example-usage","title":"Example usage","text":"SELECT\n `os_version`,\n mozfun.norm.get_windows_info(`os_version`) AS windows_info\nFROM `mozdata.default_browser_agent.default_browser`\nWHERE `submission_timestamp` > (CURRENT_TIMESTAMP() - INTERVAL 7 DAY) AND LEFT(document_id, 2) = '00'\nLIMIT 1000\n
"},{"location":"mozfun/norm/#mapping","title":"Mapping","text":"os_version windows_name windows_version_name windows_version_number windows_build_number 6.0.z Windows Vista 6.0 6.0 z 6.1.z Windows 7 7.0 6.1 z 6.2.z Windows 8 8.0 6.2 z 6.3.z Windows 8.1 8.1 6.3 z 10.0.10240.z Windows 10 1507 10240 z 10.0.10586.z Windows 10 1511 10586 z 10.0.14393.z Windows 10 1607 14393 z 10.0.15063.z Windows 10 1703 15063 z 10.0.16299.z Windows 10 1709 16299 z 10.0.17134.z Windows 10 1803 17134 z 10.0.17763.z Windows 10 1809 17763 z 10.0.18362.z Windows 10 1903 18362 z 10.0.18363.z Windows 10 1909 18363 z 10.0.19041.z Windows 10 2004 19041 z 10.0.19042.z Windows 10 20H2 19042 z 10.0.19043.z Windows 10 21H1 19043 z 10.0.19044.z Windows 10 21H2 19044 z 10.0.19045.z Windows 10 22H2 19045 z 10.0.y.z Windows 10 UNKNOWN y z 10.0.22000.z Windows 11 21H2 22000 z 10.0.22621.z Windows 11 22H2 22621 z 10.0.y.z Windows 11 UNKNOWN y z all other values (null) (null) (null) (null)"},{"location":"mozfun/norm/#parameters","title":"Parameters","text":"INPUTS
os_version STRING\n
OUTPUTS
STRUCT<name STRING, version_name STRING, version_number DECIMAL, build_number INT64>\n
Source | Edit
"},{"location":"mozfun/norm/#fenix_build_to_datetime-udf","title":"fenix_build_to_datetime (UDF)","text":"Convert the Fenix client_info.app_build-format string to a DATETIME. May return NULL on failure.
Fenix originally used an 8-digit app_build format>
In short it is yDDDHHmm
:
- y is years since 2018
- DDD is day of year, 0-padded, 001-366
- HH is hour of day, 00-23
- mm is minute of hour, 00-59
The last date seen with an 8-digit build ID is 2020-08-10.
Newer builds use a 10-digit format> where the integer represents a pattern consisting of 32 bits. The 17 bits starting 13 bits from the left represent a number of hours since UTC midnight beginning 2014-12-28.
This function tolerates both formats.
After using this you may wish to DATETIME_TRUNC(result, DAY)
for grouping by build date.
"},{"location":"mozfun/norm/#parameters_1","title":"Parameters","text":"INPUTS
app_build STRING\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/norm/#extract_version-udf","title":"extract_version (UDF)","text":"Extracts numeric version data from a version string like <major>.<minor>.<patch>
.
Note: Non-zero minor and patch versions will be floating point Numeric
.
Usage:
SELECT\n mozfun.norm.extract_version(version_string, 'major') as major_version,\n mozfun.norm.extract_version(version_string, 'minor') as minor_version,\n mozfun.norm.extract_version(version_string, 'patch') as patch_version\n
Example using \"96.05.01\"
:
SELECT\n mozfun.norm.extract_version('96.05.01', 'major') as major_version, -- 96\n mozfun.norm.extract_version('96.05.01', 'minor') as minor_version, -- 5\n mozfun.norm.extract_version('96.05.01', 'patch') as patch_version -- 1\n
"},{"location":"mozfun/norm/#parameters_2","title":"Parameters","text":"INPUTS
version_string STRING, extraction_level STRING\n
OUTPUTS
NUMERIC\n
Source | Edit
"},{"location":"mozfun/norm/#os-udf","title":"os (UDF)","text":"Normalize an operating system string to one of the three major desktop platforms, one of the two major mobile platforms, or \"Other\".
This is a reimplementation of logic used in the data pipeline> to populate normalized_os
.
"},{"location":"mozfun/norm/#parameters_3","title":"Parameters","text":"INPUTS
os STRING\n
Source | Edit
"},{"location":"mozfun/norm/#glean_baseline_client_info-udf","title":"glean_baseline_client_info (UDF)","text":"Accepts a glean client_info struct as input and returns a modified struct that includes a few parsed or normalized variants of the input fields.
"},{"location":"mozfun/norm/#parameters_4","title":"Parameters","text":"INPUTS
client_info ANY TYPE, metrics ANY TYPE\n
OUTPUTS
string\n
Source | Edit
"},{"location":"mozfun/norm/#get_earliest_value-udf","title":"get_earliest_value (UDF)","text":"This UDF returns the earliest not-null value pair and datetime from a list of values and their corresponding timestamp.
The function will return the first value pair in the input array, that is not null and has the earliest timestamp.
Because there may be more than one value on the same date e.g. more than one value reported by different pings on the same date, the dates must be given as TIMESTAMPS and the values as STRING.
Usage:
SELECT\n mozfun.norm.get_earliest_value(ARRAY<STRUCT<value STRING, value_source STRING, value_date DATETIME>>) AS <alias>\n
"},{"location":"mozfun/norm/#parameters_5","title":"Parameters","text":"INPUTS
value_set ARRAY<STRUCT<value STRING, value_source STRING, value_date DATETIME>>\n
OUTPUTS
STRUCT<earliest_value STRING, earliest_value_source STRING, earliest_date DATETIME>\n
Source | Edit
"},{"location":"mozfun/norm/#browser_version_info-udf","title":"browser_version_info (UDF)","text":"Adds metadata related to the browser version in a struct.
This is a temporary solution that allows browser version analysis. It should eventually be replaced with one or more browser version tables that serves as a source of truth for version releases.
"},{"location":"mozfun/norm/#parameters_6","title":"Parameters","text":"INPUTS
version_string STRING\n
OUTPUTS
STRUCT<version STRING, major_version NUMERIC, minor_version NUMERIC, patch_revision NUMERIC, is_major_release BOOLEAN>\n
Source | Edit
"},{"location":"mozfun/norm/#vpn_attribution-udf","title":"vpn_attribution (UDF)","text":"Accepts vpn attribution fields as input and returns a struct of normalized fields.
"},{"location":"mozfun/norm/#parameters_7","title":"Parameters","text":"INPUTS
utm_campaign STRING, utm_content STRING, utm_medium STRING, utm_source STRING\n
OUTPUTS
STRUCT<normalized_acquisition_channel STRING, normalized_campaign STRING, normalized_content STRING, normalized_medium STRING, normalized_source STRING, website_channel_group STRING>\n
Source | Edit
"},{"location":"mozfun/norm/#product_info-udf","title":"product_info (UDF)","text":"Returns a normalized app_name
and canonical_app_name
for a product based on legacy_app_name
and normalized_os
values. Thus, this function serves as a bridge to get from legacy application identifiers to the consistent identifiers we are using for reporting in 2021.
As of 2021, most Mozilla products are sending telemetry via the Glean SDK, with Glean telemetry in active development for desktop Firefox as well. The probeinfo
API is the single source of truth for metadata about applications sending Glean telemetry; the values for app_name
and canonical_app_name
returned here correspond to the \"end-to-end identifier\" values documented in the v2 Glean app listings endpoint . For non-Glean telemetry, we provide values in the same style to provide continuity as we continue the migration to Glean.
For legacy telemetry pings like main
ping for desktop and core
ping for mobile products, the legacy_app_name
given as input to this function should come from the submission URI (stored as metadata.uri.app_name
in BigQuery ping tables). For Glean pings, we have invented product
values that can be passed in to this function as the legacy_app_name
parameter.
The returned app_name
values are intended to be readable and unambiguous, but short and easy to type. They are suitable for use as a key in derived tables. product
is a deprecated field that was similar in intent.
The returned canonical_app_name
is more verbose and is suited for displaying in visualizations. canonical_name
is a synonym that we provide for historical compatibility with previous versions of this function.
The returned struct also contains boolean contributes_to_2021_kpi
as the canonical reference for whether the given application is included in KPI reporting. Additional fields may be added for future years.
The normalized_os
value that's passed in should be the top-level normalized_os
value present in any ping table or you may want to wrap a raw value in mozfun.norm.os
like mozfun.norm.product_info(app_name, mozfun.norm.os(os))
.
This function also tolerates passing in a product
value as legacy_app_name
so that this function is still useful for derived tables which have thrown away the raw app_name
value from legacy pings.
The mappings are as follows:
legacy_app_name normalized_os app_name product canonical_app_name 2019 2020 2021 Firefox * firefox_desktop Firefox Firefox for Desktop true true true Fenix Android fenix Fenix Firefox for Android (Fenix) true true true Fennec Android fennec Fennec Firefox for Android (Fennec) true true true Firefox Preview Android firefox_preview Firefox Preview Firefox Preview for Android true true true Fennec iOS firefox_ios Firefox iOS Firefox for iOS true true true FirefoxForFireTV Android firefox_fire_tv Firefox Fire TV Firefox for Fire TV false false false FirefoxConnect Android firefox_connect Firefox Echo Firefox for Echo Show true true false Zerda Android firefox_lite Firefox Lite Firefox Lite true true false Zerda_cn Android firefox_lite_cn Firefox Lite CN Firefox Lite (China) false false false Focus Android focus_android Focus Android Firefox Focus for Android true true true Focus iOS focus_ios Focus iOS Firefox Focus for iOS true true true Klar Android klar_android Klar Android Firefox Klar for Android false false false Klar iOS klar_ios Klar iOS Firefox Klar for iOS false false false Lockbox Android lockwise_android Lockwise Android Lockwise for Android true true false Lockbox iOS lockwise_ios Lockwise iOS Lockwise for iOS true true false FirefoxReality* Android firefox_reality Firefox Reality Firefox Reality false false false"},{"location":"mozfun/norm/#parameters_8","title":"Parameters","text":"INPUTS
legacy_app_name STRING, normalized_os STRING\n
OUTPUTS
STRUCT<app_name STRING, product STRING, canonical_app_name STRING, canonical_name STRING, contributes_to_2019_kpi BOOLEAN, contributes_to_2020_kpi BOOLEAN, contributes_to_2021_kpi BOOLEAN>\n
Source | Edit
"},{"location":"mozfun/norm/#glean_ping_info-udf","title":"glean_ping_info (UDF)","text":"Accepts a glean ping_info struct as input and returns a modified struct that includes a few parsed or normalized variants of the input fields.
"},{"location":"mozfun/norm/#parameters_9","title":"Parameters","text":"INPUTS
ping_info ANY TYPE\n
Source | Edit
"},{"location":"mozfun/norm/#metadata-udf","title":"metadata (UDF)","text":"Accepts a pipeline metadata struct as input and returns a modified struct that includes a few parsed or normalized variants of the input metadata fields.
"},{"location":"mozfun/norm/#parameters_10","title":"Parameters","text":"INPUTS
metadata ANY TYPE\n
OUTPUTS
`date`, CAST(NULL\n
Source | Edit
"},{"location":"mozfun/norm/#fenix_app_info-udf","title":"fenix_app_info (UDF)","text":"Returns canonical, human-understandable identification info for Fenix sources.
The Glean telemetry library for Android by design routes pings based on the Play Store appId value of the published application. As of August 2020, there have been 5 separate Play Store appId values associated with different builds of Fenix, each corresponding to different datasets in BigQuery, and the mapping of appId to logical app names (Firefox vs. Firefox Preview) and channel names (nightly, beta, or release) has changed over time; see the spreadsheet of naming history for Mozilla's mobile browsers.>
This function is intended as the source of truth for how to map a specific ping in BigQuery to a logical app names and channel. It should be expected that the output of this function may evolve over time. If we rename a product or channel, we may choose to update the values here so that analyses consistently get the new name.
The first argument (app_id
) can be fairly fuzzy; it is tolerant of actual Google Play Store appId values like 'org.mozilla.firefox_beta' (mix of periods and underscores) as well as BigQuery dataset names with suffixes like 'org_mozilla_firefox_beta_stable'.
The second argument (app_build_id
) should be the value in client_info.app_build.
The function returns a STRUCT
that contains the logical app_name
and channel
as well as the Play Store app_id
in the canonical form which would appear in Play Store URLs.
Note that the naming of Fenix applications changed on 2020-07-03, so to get a continuous view of the pings associated with a logical app channel, you may need to union together tables from multiple BigQuery datasets. To see data for all Fenix channels together, it is necessary to union together tables from all 5 datasets. For basic usage information, consider using telemetry.fenix_clients_last_seen
which already handles the union. Otherwise, see the example below as a template for how construct a custom union.
Mapping of channels to datasets:
- release:
org_mozilla_firefox
- beta:
org_mozilla_firefox_beta
(current) and org_mozilla_fenix
- nightly:
org_mozilla_fenix
(current), org_mozilla_fennec_aurora
, and org_mozilla_fenix_nightly
-- Example of a query over all Fenix builds advertised as \"Firefox Beta\"\nCREATE TEMP FUNCTION extract_fields(app_id STRING, m ANY TYPE) AS (\n (\n SELECT AS STRUCT\n m.submission_timestamp,\n m.metrics.string.geckoview_version,\n mozfun.norm.fenix_app_info(app_id, m.client_info.app_build).*\n )\n);\n\nWITH base AS (\n SELECT\n extract_fields('org_mozilla_firefox_beta', m).*\n FROM\n org_mozilla_firefox_beta.metrics AS m\n UNION ALL\n SELECT\n extract_fields('org_mozilla_fenix', m).*\n FROM\n org_mozilla_fenix.metrics AS m\n)\nSELECT\n DATE(submission_timestamp) AS submission_date,\n geckoview_version,\n COUNT(*)\nFROM\n base\nWHERE\n app_name = 'Fenix' -- excludes 'Firefox Preview'\n AND channel = 'beta'\n AND DATE(submission_timestamp) = '2020-08-01'\nGROUP BY\n submission_date,\n geckoview_version\n
"},{"location":"mozfun/norm/#parameters_11","title":"Parameters","text":"INPUTS
app_id STRING, app_build_id STRING\n
OUTPUTS
STRUCT<app_name STRING, channel STRING, app_id STRING>\n
Source | Edit
"},{"location":"mozfun/norm/#diff_months-udf","title":"diff_months (UDF)","text":"Determine the number of whole months after grace period between start and end. Month is dependent on timezone, so start and end must both be datetimes, or both be dates, in the correct timezone. Grace period can be used to account for billing delay, usually 1 day, and is counted after months. When inclusive is FALSE, start and end are not included in whole months. For example, diff_months(start => '2021-01-01', end => '2021-03-01', grace_period => INTERVAL 0 day, inclusive => FALSE) returns 1, because start plus two months plus grace period is not less than end. Changing inclusive to TRUE returns 2, because start plus two months plus grace period is less than or equal to end. diff_months(start => '2021-01-01', end => '2021-03-02 00:00:00.000001', grace_period => INTERVAL 1 DAY, inclusive => FALSE) returns 2, because start plus two months plus grace period is less than end.
"},{"location":"mozfun/norm/#parameters_12","title":"Parameters","text":"INPUTS
start DATETIME, `end` DATETIME, grace_period INTERVAL, inclusive BOOLEAN\n
Source | Edit
"},{"location":"mozfun/norm/#windows_version_info-udf","title":"windows_version_info (UDF)","text":"Given an unnormalized set off Windows identifiers, return a friendly version of the operating system name.
Requires os, os_version and windows_build_number.
E.G. from windows_build_number >= 22000 return Windows 11
"},{"location":"mozfun/norm/#parameters_13","title":"Parameters","text":"INPUTS
os STRING, os_version STRING, windows_build_number INT64\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/norm/#result_type_to_product_name-udf","title":"result_type_to_product_name (UDF)","text":"Convert urlbar result types into product-friendly names
This UDF converts result types from urlbar events (engagement, impression, abandonment) into product-friendly names.
"},{"location":"mozfun/norm/#parameters_14","title":"Parameters","text":"INPUTS
res STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/norm/#truncate_version-udf","title":"truncate_version (UDF)","text":"Truncates a version string like <major>.<minor>.<patch>
to either the major or minor version. The return value is NUMERIC
, which means that you can sort the results without fear (e.g. 100 will be categorized as greater than 80, which isn't the case when sorting lexigraphically).
For example, \"5.1.0\" would be translated to 5.1
if the parameter is \"minor\" or 5
if the parameter is major.
If the version is only a major and/or minor version, then it will be left unchanged (for example \"10\" would stay as 10
when run through this function, no matter what the arguments).
This is useful for grouping Linux and Mac operating system versions inside aggregate datasets or queries where there may be many different patch releases in the field.
"},{"location":"mozfun/norm/#parameters_15","title":"Parameters","text":"INPUTS
os_version STRING, truncation_level STRING\n
OUTPUTS
NUMERIC\n
Source | Edit
"},{"location":"mozfun/stats/","title":"stats","text":"Statistics functions.
"},{"location":"mozfun/stats/#mode_last_retain_nulls-udf","title":"mode_last_retain_nulls (UDF)","text":"Returns the most frequently occuring element in an array. In the case of multiple values tied for the highest count, it returns the value that appears latest in the array. Nulls are retained. See also: `stats.mode_last, which ignores nulls.
"},{"location":"mozfun/stats/#parameters","title":"Parameters","text":"INPUTS
list ANY TYPE\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/stats/#mode_last-udf","title":"mode_last (UDF)","text":"Returns the most frequently occuring element in an array.
In the case of multiple values tied for the highest count, it returns the value that appears latest in the array. Nulls are ignored. See also: stats.mode_last_retain_nulls
, which retains nulls.
"},{"location":"mozfun/stats/#parameters_1","title":"Parameters","text":"INPUTS
list ANY TYPE\n
Source | Edit
"},{"location":"mozfun/vpn/","title":"vpn","text":"Functions for processing VPN data.
"},{"location":"mozfun/vpn/#pricing_plan-udf","title":"pricing_plan (UDF)","text":"Combine the pricing and interval for a subscription plan into a single field
"},{"location":"mozfun/vpn/#parameters","title":"Parameters","text":"INPUTS
provider STRING, amount INTEGER, currency STRING, `interval` STRING, interval_count INTEGER\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/vpn/#acquisition_channel-udf","title":"acquisition_channel (UDF)","text":"Assign an acquisition channel based on utm parameters
"},{"location":"mozfun/vpn/#parameters_1","title":"Parameters","text":"INPUTS
utm_campaign STRING, utm_content STRING, utm_medium STRING, utm_source STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/vpn/#channel_group-udf","title":"channel_group (UDF)","text":"Assign a channel group based on utm parameters
"},{"location":"mozfun/vpn/#parameters_2","title":"Parameters","text":"INPUTS
utm_campaign STRING, utm_content STRING, utm_medium STRING, utm_source STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/vpn/#normalize_utm_parameters-udf","title":"normalize_utm_parameters (UDF)","text":"Normalize utm parameters to use the same NULL placeholders as Google Analytics
"},{"location":"mozfun/vpn/#parameters_3","title":"Parameters","text":"INPUTS
utm_campaign STRING, utm_content STRING, utm_medium STRING, utm_source STRING\n
OUTPUTS
STRUCT<utm_campaign STRING, utm_content STRING, utm_medium STRING, utm_source STRING>\n
Source | Edit
"},{"location":"reference/airflow_tags/","title":"Airflow Tags","text":""},{"location":"reference/airflow_tags/#why","title":"Why","text":"Airflow tags enable DAGs to be filtered in the web ui view to reduce the number of DAGs shown to just those that you are interested in.
Additionally, their objective is to provide a little bit more information such as their impact to make it easier to understand the DAG and impact of failures when doing Airflow triage.
More information and the discussions can be found the the original Airflow Tags Proposal (can be found within data org proposals/
folder).
"},{"location":"reference/airflow_tags/#valid-tags","title":"Valid tags","text":""},{"location":"reference/airflow_tags/#impacttier-tag","title":"impact/tier tag","text":"We borrow the tiering system used by our integration and testing sheriffs. This is to maintain a level of consistency across different systems to ensure common language and understanding across teams. Valid tier tags include:
- impact/tier_1: Highest priority/impact/critical DAG. A job with this tag implies that many downstream processes are impacted and affects Mozilla\u2019s (many users across different teams and departments) ability to make decisions. A bug ticket must be created and the issue needs to be resolved as soon as possible.
- impact/tier_2: Job of increased importance and impact, however, not critical and only limited impact on other processes. One team or group of people is affected and the pipeline does not generate any business critical metrics. A bug ticket must be created and should be addressed within a few working days.
- impact/tier_3: No impact on other processes and is not used to generate any metrics used by business users or to make any decisions. A bug ticket should be created and it\u2019s up to the job owner to fix this issue in whatever time frame they deem to be reasonable.
"},{"location":"reference/airflow_tags/#triage-tag","title":"triage/ tag","text":"This tag is meant to provide guidance to a triage engineer on how to respond to a specific DAG failure when the job owner does not want the standard process to be followed.
- triage/record_only: Failures should only be recorded and the job owner informed without taking any active steps to fix the failure.
- triage/no_triage: No triage should be performed on this job. Should only be used in a limited number of cases, like this is still WIP, where no production processes are affected.
"},{"location":"reference/configuration/","title":"Configuration","text":"The behaviour of bqetl
can be configured via the bqetl_project.yaml
file. This file, for example, specifies the queries that should be skipped during dryrun, views that should not be published and contains various other configurations.
The general structure of bqetl_project.yaml
is as follows:
dry_run:\n function: https://us-central1-moz-fx-data-shared-prod.cloudfunctions.net/bigquery-etl-dryrun\n test_project: bigquery-etl-integration-test\n skip:\n - sql/moz-fx-data-shared-prod/account_ecosystem_derived/desktop_clients_daily_v1/query.sql\n - sql/**/apple_ads_external*/**/query.sql\n # - ...\n\nviews:\n skip_validation:\n - sql/moz-fx-data-test-project/test/simple_view/view.sql\n - sql/moz-fx-data-shared-prod/mlhackweek_search/events/view.sql\n - sql/moz-fx-data-shared-prod/**/client_deduplication/view.sql\n # - ...\n skip_publishing:\n - activity_stream/tile_id_types/view.sql\n - pocket/pocket_reach_mau/view.sql\n # - ...\n non_user_facing_suffixes:\n - _derived\n - _external\n # - ...\n\nschema:\n skip_update:\n - sql/moz-fx-data-shared-prod/mozilla_vpn_derived/users_v1/schema.yaml\n # - ...\n skip_prefixes:\n - pioneer\n - rally\n\nroutines:\n skip_publishing:\n - sql/moz-fx-data-shared-prod/udf/main_summary_scalars/udf.sql\n\nformatting:\n skip:\n - bigquery_etl/glam/templates/*.sql\n - sql/moz-fx-data-shared-prod/telemetry/fenix_events_v1/view.sql\n - stored_procedures/safe_crc32_uuid.sql\n # - ...\n
"},{"location":"reference/configuration/#accessing-configurations","title":"Accessing configurations","text":"ConfigLoader
can be used in the bigquery_etl tooling codebase to access configuration parameters. bqetl_project.yaml
is automatically loaded in ConfigLoader
and parameters can be accessed via a get()
method:
from bigquery_etl.config import ConfigLoader\n\nskipped_formatting = cfg.get(\"formatting\", \"skip\", fallback=[])\ndry_run_function = cfg.get(\"dry_run\", \"function\", fallback=None)\nschema_config_dict = cfg.get(\"schema\")\n
The ConfigLoader.get()
method allows multiple string parameters to reference a configuration value that is stored in a nested structure. A fallback
value can be optionally provided in case the configuration parameter is not set.
"},{"location":"reference/configuration/#adding-configuration-parameters","title":"Adding configuration parameters","text":"New configuration parameters can simply be added to bqetl_project.yaml
. ConfigLoader.get()
allows for these new parameters simply to be referenced without needing to be changed or updated.
"},{"location":"reference/data_checks/","title":"bqetl Data Checks","text":"Instructions on how to add data checks can be found under the Adding data checks cookbook.
"},{"location":"reference/data_checks/#background","title":"Background","text":"To create more confidence and trust in our data is crucial to provide some form of data checks. These checks should uncover problems as soon as possible, ideally as part of the data process creating the data. This includes checking that the data produced follows certain assumptions determined by the dataset owner. These assumptions need to be easy to define, but at the same time flexible enough to encode more complex business logic. For example, checks for null columns, for range/size properties, duplicates, table grain etc.
"},{"location":"reference/data_checks/#bqetl-data-checks-to-the-rescue","title":"bqetl Data Checks to the Rescue","text":"bqetl data checks aim to provide this ability by providing a simple interface for specifying our \"assumptions\" about the data the query should produce and checking them against the actual result.
This easy interface is achieved by providing a number of jinja templates providing \"out-of-the-box\" logic for performing a number of common checks without having to rewrite the logic. For example, checking if any nulls are present in a specific column. These templates can be found here and are available as jinja macros inside the checks.sql
files. This allows to \"configure\" the logic by passing some details relevant to our specific dataset. Check templates will get rendered as raw SQL expressions. Take a look at the examples below for practical examples.
It is also possible to write checks using raw SQL by using assertions. This is, for example, useful when writing checks for custom business logic.
"},{"location":"reference/data_checks/#two-categories-of-checks","title":"Two categories of checks","text":"Each check needs to be categorised with a marker, currently following markers are available:
#fail
indicates that the ETL pipeline should stop if this check fails (circuit-breaker pattern) and a notification is sent out. This marker should be used for checks that indicate a serious data issue.
#warn
indicates that the ETL pipeline should continue even if this check fails. These type of checks can be used to indicate potential issues that might require more manual investigation.
Checks can be marked by including one of the markers on the line preceeding the check definition, see Example checks.sql section for an example.
"},{"location":"reference/data_checks/#adding-data-checks","title":"Adding Data Checks","text":""},{"location":"reference/data_checks/#create-checkssql","title":"Create checks.sql","text":"Inside the query directory, which usually contains query.sql
or query.py
, metadata.yaml
and schema.yaml
, create a new file called checks.sql
(unless already exists).
Please make sure each check you add contains a marker (see: the Two categories of checks section above).
Once checks have been added, we need to regenerate the DAG
responsible for scheduling the query.
"},{"location":"reference/data_checks/#update-checkssql","title":"Update checks.sql","text":"If checks.sql
already exists for the query, you can always add additional checks to the file by appending it to the list of already defined checks.
When adding additional checks there should be no need to have to regenerate the DAG responsible for scheduling the query as all checks are executed using a single Airflow task.
"},{"location":"reference/data_checks/#removing-checkssql","title":"Removing checks.sql","text":"All checks can be removed by deleting the checks.sql
file and regenerating the DAG responsible for scheduling the query.
Alternatively, specific checks can be removed by deleting them from the checks.sql
file.
"},{"location":"reference/data_checks/#example-checkssql","title":"Example checks.sql","text":"Checks can either be written as raw SQL, or by referencing existing Jinja macros defined in tests/checks
which may take different parameters used to generate the SQL check expression.
Example of what a checks.sql
may look like:
-- raw SQL checks\n#fail\nASSERT (\n SELECT\n COUNTIF(ISNULL(country)) / COUNT(*)\n FROM telemetry.table_v1\n WHERE submission_date = @submission_date\n ) > 0.2\n) AS \"More than 20% of clients have country set to NULL\";\n\n-- macro checks\n#fail\n{{ not_null([\"submission_date\", \"os\"], \"submission_date = @submission_date\") }}\n\n#warn\n{{ min_row_count(1, \"submission_date = @submission_date\") }}\n\n#fail\n{{ is_unique([\"submission_date\", \"os\", \"country\"], \"submission_date = @submission_date\")}}\n\n#warn\n{{ in_range([\"non_ssl_loads\", \"ssl_loads\", \"reporting_ratio\"], 0, none, \"submission_date = @submission_date\") }}\n
"},{"location":"reference/data_checks/#data-checks-available-with-examples","title":"Data Checks Available with Examples","text":""},{"location":"reference/data_checks/#in_range-source","title":"in_range (source)","text":"Usage:
Arguments:\n\ncolumns: List[str] - A list of columns which we want to check the values of.\nmin: Optional[int] - Minimum value we should observe in the specified columns.\nmax: Optional[int] - Maximum value we should observe in the specified columns.\nwhere: Optional[str] - A condition that will be injected into the `WHERE` clause of the check. For example, \"submission_date = @submission_date\" so that the check is only executed against a specific partition.\n
Example:
#warn\n{{ in_range([\"non_ssl_loads\", \"ssl_loads\", \"reporting_ratio\"], 0, none, \"submission_date = @submission_date\") }}\n
"},{"location":"reference/data_checks/#is_unique-source","title":"is_unique (source)","text":"Usage:
Arguments:\n\ncolumns: List[str] - A list of columns which should produce a unique record.\nwhere: Optional[str] - A condition that will be injected into the `WHERE` clause of the check. For example, \"submission_date = @submission_date\" so that the check is only executed against a specific partition.\n
Example:
#warn\n{{ is_unique([\"submission_date\", \"os\", \"country\"], \"submission_date = @submission_date\")}}\n
"},{"location":"reference/data_checks/#min_row_countsource","title":"min_row_count(source)","text":"Usage:
Arguments:\n\nthreshold: Optional[int] - What is the minimum number of rows we expect (default: 1)\nwhere: Optional[str] - A condition that will be injected into the `WHERE` clause of the check. For example, \"submission_date = @submission_date\" so that the check is only executed against a specific partition.\n
Example:
#fail\n{{ min_row_count(1, \"submission_date = @submission_date\") }}\n
"},{"location":"reference/data_checks/#not_null-source","title":"not_null (source)","text":"Usage:
Arguments:\n\ncolumns: List[str] - A list of columns which should not contain a null value.\nwhere: Optional[str] - A condition that will be injected into the `WHERE` clause of the check. For example, \"submission_date = @submission_date\" so that the check is only executed against a specific partition.\n
Example:
#fail\n{{ not_null([\"submission_date\", \"os\"], \"submission_date = @submission_date\") }}\n
Please keep in mind the below checks can be combined and specified in the same checks.sql
file. For example:
#fail\n{{ not_null([\"submission_date\", \"os\"], \"submission_date = @submission_date\") }}\n #fail\n {{ min_row_count(1, \"submission_date = @submission_date\") }}\n #fail\n {{ is_unique([\"submission_date\", \"os\", \"country\"], \"submission_date = @submission_date\")}}\n #warn\n {{ in_range([\"non_ssl_loads\", \"ssl_loads\", \"reporting_ratio\"], 0, none, \"submission_date = @submission_date\") }}\n
"},{"location":"reference/data_checks/#running-checks-locally-commands","title":"Running checks locally / Commands","text":"To list all available commands in the bqetl data checks CLI:
$ ./bqetl check\n\nUsage: bqetl check [OPTIONS] COMMAND [ARGS]...\n\n Commands for managing and running bqetl data checks.\n\n \u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\n\n IN ACTIVE DEVELOPMENT\n\n The current progress can be found under:\n\n https://mozilla-hub.atlassian.net/browse/DENG-919\n\n \u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\n\nOptions:\n --help Show this message and exit.\n\nCommands:\n render Renders data check query using parameters provided (OPTIONAL).\n run Runs data checks defined for the dataset (checks.sql).\n
To see see how to use a specific command use:
$ ./bqetl check [command] --help\n
render
"},{"location":"reference/data_checks/#usage","title":"Usage","text":"$ ./bqetl check render [OPTIONS] DATASET [ARGS]\n\nRenders data check query using parameters provided (OPTIONAL). The result\nis what would be used to run a check to ensure that the specified dataset\nadheres to the assumptions defined in the corresponding checks.sql file\n\nOptions:\n --project-id, --project_id TEXT\n GCP project ID\n --sql_dir, --sql-dir DIRECTORY Path to directory which contains queries.\n --help Show this message and exit.\n
"},{"location":"reference/data_checks/#example","title":"Example","text":"./bqetl check render --project_id=moz-fx-data-marketing-prod ga_derived.downloads_with_attribution_v2 --parameter=download_date:DATE:2023-05-01\n
run
"},{"location":"reference/data_checks/#usage_1","title":"Usage","text":"$ ./bqetl check run [OPTIONS] DATASET\n\nRuns data checks defined for the dataset (checks.sql).\n\nChecks can be validated using the `--dry_run` flag without executing them:\n\nOptions:\n --project-id, --project_id TEXT\n GCP project ID\n --sql_dir, --sql-dir DIRECTORY Path to directory which contains queries.\n --dry_run, --dry-run To dry run the query to make sure it is\n valid\n --marker TEXT Marker to filter checks.\n --help Show this message and exit.\n
"},{"location":"reference/data_checks/#examples","title":"Examples","text":"# to run checks for a specific dataset\n$ ./bqetl check run ga_derived.downloads_with_attribution_v2 --parameter=download_date:DATE:2023-05-01 --marker=fail --marker=warn\n\n# to only dry_run the checks\n$ ./bqetl check run --dry_run ga_derived.downloads_with_attribution_v2 --parameter=download_date:DATE:2023-05-01 --marker=fail\n
"},{"location":"reference/incremental/","title":"Incremental Queries","text":""},{"location":"reference/incremental/#benefits","title":"Benefits","text":" - BigQuery billing discounts for destination table partitions not modified in the last 90 days
- May use dags.utils.gcp.bigquery_etl_query to simplify airflow configuration e.g. see dags.main_summary.exact_mau28_by_dimensions
- May use script/generate_incremental_table to automate backfilling
- Should use
WRITE_TRUNCATE
mode or bq query --replace
to replace partitions atomically to prevent duplicate data - Will have tooling to generate an optimized mostly materialized view that only calculates the most recent partition
"},{"location":"reference/incremental/#properties","title":"Properties","text":" - Must accept a date via
@submission_date
query parameter - Must output a column named
submission_date
matching the query parameter
- Must produce similar results when run multiple times
- Should produce identical results when run multiple times
- May depend on the previous partition
- If using previous partition, must include an
init.sql
query to initialize the table, e.g. sql/moz-fx-data-shared-prod/telemetry_derived/clients_last_seen_v1/init.sql
- Should be impacted by values from a finite number of preceding partitions
- This allows for backfilling in chunks instead of serially for all time and limiting backfills to a certain number of days following updated data
- For example
sql/moz-fx-data-shared-prod/clients_last_seen_v1.sql
can be run serially on any 28 day period and the last day will be the same whether or not the partition preceding the first day was missing because values are only impacted by 27 preceding days
"},{"location":"reference/public_data/","title":"Public Data","text":"For background, see Accessing Public Data on docs.telemetry.mozilla.org
.
- To make query results publicly available, the
public_bigquery
flag must be set in metadata.yaml
- Tables will get published in the
mozilla-public-data
GCP project which is accessible by everyone, also external users
- To make query results publicly available as JSON,
public_json
flag must be set in metadata.yaml
- Data will be accessible under https://public-data.telemetry.mozilla.org
- A list of all available datasets is published under https://public-data.telemetry.mozilla.org/all-datasets.json
- For example: https://public-data.telemetry.mozilla.org/api/v1/tables/telemetry_derived/ssl_ratios/v1/files/000000000000.json
- Output JSON files have a maximum size of 1GB, data can be split up into multiple files (
000000000000.json
, 000000000001.json
, ...) incremental_export
controls how data should be exported as JSON: false
: all data of the source table gets exported to a single location - https://public-data.telemetry.mozilla.org/api/v1/tables/telemetry_derived/ssl_ratios/v1/files/000000000000.json
true
: only data that matches the submission_date
parameter is exported as JSON to a separate directory for this date - https://public-data.telemetry.mozilla.org/api/v1/tables/telemetry_derived/ssl_ratios/v1/files/2020-03-15/000000000000.json
- For each dataset, a
metadata.json
gets published listing all available files, for example: https://public-data.telemetry.mozilla.org/api/v1/tables/telemetry_derived/ssl_ratios/v1/files/metadata.json - The timestamp when the dataset was last updated is recorded in
last_updated
, e.g.: https://public-data.telemetry.mozilla.org/api/v1/tables/telemetry_derived/ssl_ratios/v1/last_updated
"},{"location":"reference/recommended_practices/","title":"Recommended practices","text":""},{"location":"reference/recommended_practices/#queries","title":"Queries","text":" - Should be defined in files named as
sql/<project>/<dataset>/<table>_<version>/query.sql
e.g. <project>
defines both where the destination table resides and in which project the query job runs sql/moz-fx-data-shared-prod/telemetry_derived/clients_daily_v7/query.sql
- Queries that populate tables should always be named with a version suffix; we assume that future optimizations to the data representation may require schema-incompatible changes such as dropping columns
- May be generated using a python script that prints the query to stdout
- Should not specify a project or dataset in table names to simplify testing
- Should be incremental
- Should filter input tables on partition and clustering columns
- Should use
_
prefix in generated column names not meant for output - Should use
_bits
suffix for any integer column that represents a bit pattern - Should not use
DATETIME
type, due to incompatibility with spark-bigquery-connector - Should read from
*_stable
tables instead of including custom deduplication - Should use the earliest row for each
document_id
by submission_timestamp
where filtering duplicates is necessary
- Should not refer to views in the
mozdata
project which are duplicates of views in another project (commonly moz-fx-data-shared-prod
). Refer to the original view instead. - Should escape identifiers that match keywords, even if they aren't reserved keywords
- Queries are interpreted as Jinja templates, so it is possible to use Jinja statements and expressions
"},{"location":"reference/recommended_practices/#querying-metrics","title":"Querying Metrics","text":" - Queries, views and UDFs can reference metrics and data sources that have been defined in metric-hub
- To reference metrics use
{{ metrics.calculate() }}
: SELECT\n *\nFROM\n {{ metrics.calculate(\n metrics=['days_of_use', 'active_hours'],\n platform='firefox_desktop',\n group_by={'sample_id': 'sample_id', 'channel': 'application.channel'},\n where='submission_date = \"2023-01-01\"'\n ) }}\n\n-- this translates to\nSELECT\n *\nFROM\n (\n WITH clients_daily AS (\n SELECT\n client_id AS client_id,\n submission_date AS submission_date,\n COALESCE(SUM(active_hours_sum), 0) AS active_hours,\n COUNT(submission_date) AS days_of_use,\n FROM\n mozdata.telemetry.clients_daily\n GROUP BY\n client_id,\n submission_date\n )\n SELECT\n clients_daily.client_id,\n clients_daily.submission_date,\n active_hours,\n days_of_use,\n FROM\n clients_daily\n )\n
metrics
: unique reference(s) to metric definition, all metric definitions are aggregations (e.g. SUM, AVG, ...) platform
: platform to compute metrics for (e.g. firefox_desktop
, firefox_ios
, fenix
, ...) group_by
: fields used in the GROUP BY statement; this is a dictionary where the key represents the alias, the value is the field path; GROUP BY
always includes the configured client_id
and submission_date
fields where
: SQL filter clause group_by_client_id
: Whether the field configured as client_id
(defined as part of the data source specification in metric-hub) should be part of the GROUP BY
. True
by default group_by_submission_date
: Whether the field configured as submission_date
(defined as part of the data source specification in metric-hub) should be part of the GROUP BY
. True
by default
- To reference data source definitions use
{{ metrics.data_source() }}
: SELECT\n *\nFROM\n {{ metrics.data_source(\n data_source='main',\n platform='firefox_desktop',\n where='submission_date = \"2023-01-01\"'\n ) }}\n\n-- this translates to\nSELECT\n *\nFROM\n (\n SELECT *\n FROM `mozdata.telemetry.main`\n WHERE submission_date = \"2023-01-01\"\n )\n
- To render queries that use Jinja expressions or statements use
./bqetl query render path/to/query.sql
- The
generated-sql
branch has rendered queries/views/UDFs ./bqetl query run
does support running Jinja queries
"},{"location":"reference/recommended_practices/#query-metadata","title":"Query Metadata","text":" - For each query, a
metadata.yaml
file should be created in the same directory - This file contains a description, owners and labels. As an example:
friendly_name: SSL Ratios\ndescription: >\n Percentages of page loads Firefox users have performed that were\n conducted over SSL broken down by country.\nowners:\n - example@mozilla.com\nlabels:\n application: firefox\n incremental: true # incremental queries add data to existing tables\n schedule: daily # scheduled in Airflow to run daily\n public_json: true\n public_bigquery: true\n review_bugs:\n - 1414839 # Bugzilla bug ID of data review\n incremental_export: false # non-incremental JSON export writes all data to a single location\n
- only labels where value types are eithers integers or strings are published, all other values types are being skipped
"},{"location":"reference/recommended_practices/#views","title":"Views","text":" - Should be defined in files named as
sql/<project>/<dataset>/<table>/view.sql
e.g. sql/moz-fx-data-shared-prod/telemetry/core/view.sql
- Views should generally not be named with a version suffix; a view represents a stable interface for users and whenever possible should maintain compatibility with existing queries; if the view logic cannot be adapted to changes in underlying tables, breaking changes must be communicated to
fx-data-dev@mozilla.org
- Must specify project and dataset in all table names
- Should default to using the
moz-fx-data-shared-prod
project; the scripts/publish_views
tooling can handle parsing the definitions to publish to other projects such as derived-datasets
- Should not refer to views in the
mozdata
project which are duplicates of views in another project (commonly moz-fx-data-shared-prod
). Refer to the original view instead. - Views are interpreted as Jinja templates, so it is possible to use Jinja statements and expressions
"},{"location":"reference/recommended_practices/#udfs","title":"UDFs","text":" - Should limit the number of expression subqueries to avoid:
BigQuery error in query operation: Resources exceeded during query execution: Not enough resources for query planning - too many subqueries or query is too complex.
- Should be used to avoid code duplication
- Must be named in files with lower snake case names ending in
.sql
e.g. mode_last.sql
- Each file must only define effectively private helper functions and one public function which must be defined last
- Helper functions must not conflict with function names in other files
- SQL UDFs must be defined in the
udf/
directory and JS UDFs must be defined in the udf_js
directory - The
udf_legacy/
directory is an exception which must only contain compatibility functions for queries migrated from Athena/Presto.
- Functions must be defined as persistent UDFs using
CREATE OR REPLACE FUNCTION
syntax - Function names must be prefixed with a dataset of
<dir_name>.
so, for example, all functions in udf/*.sql
are part of the udf
dataset - The final syntax for creating a function in a file will look like
CREATE OR REPLACE FUNCTION <dir_name>.<file_name>
- We provide tooling in
scripts/publish_persistent_udfs
for publishing these UDFs to BigQuery - Changes made to UDFs need to be published manually in order for the dry run CI task to pass
- Should use
SQL
over js
for performance - UDFs are interpreted as Jinja templates, so it is possible to use Jinja statements and expressions
"},{"location":"reference/recommended_practices/#backfills","title":"Backfills","text":" - Should be documented and reviewed by a peer using a new bug that describes the context that required the backfill and the command or script used.
- Should be avoided on large tables
- Backfills may double storage cost for a table for 90 days by moving data from long-term storage to short-term storage
- For example regenerating
clients_last_seen_v1
from scratch would cost about $1600 for the query and about $6800 for data moved to short-term storage
- Should combine multiple backfills happening around the same time
- Should delay column deletes until the next other backfill
- Should use
NULL
for new data and EXCEPT
to exclude from views until dropped
- Should use copy operations in append mode to change column order
- Copy operations do not allow changing partitioning, changing clustering, or column deletes
- Should split backfilling into queries that finish in minutes not hours
- May use [script/generate_incremental_table] to automate backfilling incremental queries
- May be performed in a single query for smaller tables that do not depend on history
- A useful pattern is to have the only reference to
@submission_date
be a clause WHERE (@submission_date IS NULL OR @submission_date = submission_date)
which allows recreating all dates by passing --parameter=submission_date:DATE:NULL
- After running the backfill, is important to validate that the job ran without errors and the execution times and bytes processed are as expected. Errors normally appear in the parent job and may or may not include the dataset and table names, therefore it is important to check for errors in the jobs ran on that date. Here is a query you may use for this purpose:
SELECT\n job_id,\n user_email,\n parent_job_id,\n creation_time,\n destination_table.dataset_id,\n destination_table.table_id,\n end_time-start_time as task_duration,\n total_bytes_processed/(1024*1024*1024) as gigabytes_processed,\n state,\n error_result.location AS error_location,\n error_result.reason AS error_reason,\n error_result.message AS error_message,\nFROM `moz-fx-data-shared-prod`.`region-us`.INFORMATION_SCHEMA.JOBS_BY_PROJECT\nWHERE DATE(creation_time) = <'YYYY-MM-DD'>\n AND user_email = <'user@mozilla.com'>\nORDER BY creation_time DESC\n
"},{"location":"reference/scheduling/","title":"Scheduling Queries in Airflow","text":" - bigquery-etl has tooling to automatically generate Airflow DAGs for scheduling queries
- To be scheduled, a query must be assigned to a DAG that is specified in
dags.yaml
- Alternatively, new DAGs can also be created via the
bqetl
CLI by running bqetl dag create bqetl_ssl_ratios --schedule_interval='0 2 * * *' --owner=\"example@mozilla.com\" --start_date=\"2020-04-05\" --description=\"This DAG generates SSL ratios.\"
- To schedule a specific query, add a
metadata.yaml
file that includes a scheduling
section, for example: friendly_name: SSL ratios\n# ... more metadata, see Query Metadata section above\nscheduling:\n dag_name: bqetl_ssl_ratios\n
- Additional scheduling options:
depends_on_past
keeps query from getting executed if the previous schedule for the query hasn't succeeded date_partition_parameter
- by default set to submission_date
; can be set to null
if query doesn't write to a partitioned table parameters
specifies a list of query parameters, e.g. [\"n_clients:INT64:500\"]
arguments
- a list of arguments passed when running the query, for example: [\"--append_table\"]
referenced_tables
- manually curated list of tables the query depends on; used to speed up the DAG generation process or to specify tables that the dry run doesn't have permissions to access, e. g. [['telemetry_stable', 'main_v4']]
multipart
indicates whether a query is split over multiple files part1.sql
, part2.sql
, ... depends_on
defines external dependencies in telemetry-airflow that are not detected automatically: depends_on:\n - task_id: external_task\n dag_name: external_dag\n execution_delta: 1h\n
task_id
: name of task query depends on dag_name
: name of the DAG the external task is part of execution_delta
: time difference between the schedule_intervals
of the external DAG and the DAG the query is part of
trigger_rule
: The rule that determines when the airflow task that runs this query should run. The default is all_success
(\"trigger this task when all directly upstream tasks have succeeded\"); other rules can allow a task to run even if not all preceding tasks have succeeded. See the Airflow docs for the list of trigger rule options. destination_table
: The table to write to. If unspecified, defaults to the query destination; if None, no destination table is used (the query is simply run as-is). Note that if no destination table is specified, you will need to specify the submission_date
parameter manually external_downstream_tasks
defines external downstream dependencies for which ExternalTaskMarker
s will be added to the generated DAG. These task markers ensure that when the task is cleared for triggering a rerun, all downstream tasks are automatically cleared as well. external_downstream_tasks:\n - task_id: external_downstream_task\n dag_name: external_dag\n execution_delta: 1h\n
- Queries can also be scheduled using the
bqetl
CLI: ./bqetl query schedule path/to/query_v1 --dag bqetl_ssl_ratios
- To generate all Airflow DAGs run
./bqetl dag generate
- Generated DAGs are located in the
dags/
directory - Dependencies between queries scheduled in bigquery-etl and dependencies to stable tables are detected automatically
- Specific DAGs can be generated by running
./bqetl dag generate bqetl_ssl_ratios
- Generated DAGs do not need to be checked into
main
. CI automatically generates DAGs and writes them to the telemetry-airflow-dags repo from where Airflow will pick them up - Generated DAGs will be automatically detected and scheduled by Airflow
- It might take up to 10 minutes for new DAGs and updates to show up in the Airflow UI
- To generate tasks for importing data from Fivetran that an ETL task depends on add:
depends_on_fivetran:\n - task_id: fivetran_import_1\n - task_id: another_fivetran_import\n
- The Fivetran connector ID needs to be set as a variable
<task_id>_connector_id
in the Airflow admin interface for each import task
"},{"location":"reference/stage-deploys-continuous-integration/","title":"Stage Deploys","text":""},{"location":"reference/stage-deploys-continuous-integration/#stage-deploys-in-continuous-integration","title":"Stage Deploys in Continuous Integration","text":"Before changes, such as adding new fields to existing datasets or adding new datasets, can be deployed to production, bigquery-etl's CI (continuous integration) deploys these changes to a stage environment and uses these stage artifacts to run its various checks.
Currently, the bigquery-etl-integration-test
project serves as the stage environment. CI does have read and write access, but does at no point publish actual data to this project. Only UDFs, table schemas and views are published. The project itself does not have access to any production project, like mozdata
, so stage artifacts cannot reference any other artifacts that live in production.
Deploying artifacts to stage follows the following steps: 1. Once a new pull-request gets created in bigquery-etl, CI will pull in the generated-sql
branch to determine all files that show any changes compared to what is deployed in production (it is assumed that the generated-sql
branch reflects the artifacts currently deployed in production). All of these changed artifacts (UDFs, tables and views) will be deployed to the stage environment. * This CI step runs after the generate-sql
CI step to ensure that checks will also be executed on generated queries and to ensure schema.yaml
files have been automatically created for queries. 2. The bqetl
CLI has a command to run stage deploys, which is called in the CI: ./bqetl stage deploy --dataset-suffix=$CIRCLE_SHA1 $FILE_PATHS
* --dataset-suffix
will result in the artifacts being deployed to datasets that are suffixed by the current commit hash. This is to prevent any conflicts when deploying changes for the same artifacts in parallel and helps with debugging deployed artifacts. 3. For every artifacts that gets deployed to stage all dependencies need to be determined and deployed to the stage environment as well since the stage environment doesn't have access to production. Before these artifacts get actually deployed, they need to be determined first by traversing artifact definitions. * Determining dependencies is only relevant for UDFs and views. For queries, available schema.yaml
files will simply be deployed. * For UDFs, if a UDF does call another UDF then this UDF needs to be deployed to stage as well. * For views, if a view references another view, table or UDF then each of these referenced artifacts needs to be available on stage as well, otherwise the view cannot even be deployed to stage. * If artifacts are referenced that are not defined as part of the bigquery-etl repo (like stable or live tables) then their schema will get determined and a placeholder query.sql
file will be created * Also dependencies of dependencies need to be deployed, and so on 4. Once all artifacts that need to be deployed have been determined, all references to these artifacts in existing SQL files need to be updated. These references will need to point to the stage project and the temporary datasets that artifacts will be published to. * Artifacts that get deployed are determined from the files that got changed and any artifacts that are referenced in the SQL definitions of these files, as well as their references and so on. 5. To run the deploy, all artifacts will be copied to sql/bigquery-etl-integration-test
into their corresponding temporary datasets. * Also if any existing SQL tests the are related to changed artifacts will have their referenced artifacts updated and will get copied to a bigquery-etl-integration-test
folder * The deploy is executed in the order of: UDFs, tables, views * UDFs and views get deployed in a way that ensures that the right order of deployments (e.g. dependencies need to be deployed before the views referencing them) 6. Once the deploy has been completed, the CI will use these staged artifacts to run its tests 7. After checks have succeeded, the deployed artifacts will be removed from stage * By default the table expiration is set to 1 hour * This step will also automatically remove any tables and datasets that got previously deployed, are older than an hour but haven't been removed (for example due to some CI check failing)
After CI checks have passed and the pull-request has been approved, changes can be merged to main
. Once a new version of bigquery-etl has been published the changes can be deployed to production through the bqetl_artifact_deployment
Airflow DAG. For more information on artifact deployments to production see: https://docs.telemetry.mozilla.org/concepts/pipeline/artifact_deployment.html
"},{"location":"reference/stage-deploys-continuous-integration/#local-deploys-to-stage","title":"Local Deploys to Stage","text":"Local changes can be deployed to stage using the ./bqetl stage deploy
command:
./bqetl stage deploy \\\n --dataset-suffix=test \\\n --copy-sql-to-tmp-dir \\\n sql/moz-fx-data-shared-prod/firefox_ios/new_profile_activation/view.sql \\\n sql/mozfun/map/sum/udf.sql\n
Files (for example ones with changes) that should be deployed to stage need to be specified. The stage deploy
accepts the following parameters: * --dataset-suffix
is an optional suffix that will be added to the datasets deployed to stage * --copy-sql-to-tmp-dir
copies SQL stored in sql/
to a temporary folder. Reference updates and any other modifications required to run the stage deploy will be performed in this temporary directory. This is an optional parameter. If not specified, changes get applied to the files directly and can be reverted, for example, by running git checkout -- sql/
* (optional) --remove-updated-artifacts
removes artifact files that have been deployed from the \"prod\" folders. This ensures that tests don't run on outdated or undeployed artifacts.
Deployed stage artifacts can be deleted from bigquery-etl-integration-test
by running:
./bqetl stage clean --delete-expired --dataset-suffix=test\n
"}]}
\ No newline at end of file
+{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"bqetl/","title":"bqetl CLI","text":"The bqetl
command-line tool aims to simplify working with the bigquery-etl repository by supporting common workflows, such as creating, validating and scheduling queries or adding new UDFs.
Running some commands, for example to create or query tables, will require Mozilla GCP access.
"},{"location":"bqetl/#installation","title":"Installation","text":"Follow the Quick Start to set up bigquery-etl and the bqetl CLI.
"},{"location":"bqetl/#configuration","title":"Configuration","text":"bqetl
can be configured via the bqetl_project.yaml
file. See Configuration to find available configuration options.
"},{"location":"bqetl/#commands","title":"Commands","text":"To list all available commands in the bqetl CLI:
$ ./bqetl\n\nUsage: bqetl [OPTIONS] COMMAND [ARGS]...\n\n CLI tools for working with bigquery-etl.\n\nOptions:\n --version Show the version and exit.\n --help Show this message and exit.\n\nCommands:\n alchemer Commands for importing alchemer data.\n dag Commands for managing DAGs.\n dependency Build and use query dependency graphs.\n dryrun Dry run SQL.\n format Format SQL.\n glam Tools for GLAM ETL.\n mozfun Commands for managing mozfun routines.\n query Commands for managing queries.\n routine Commands for managing routines.\n stripe Commands for Stripe ETL.\n view Commands for managing views.\n backfill Commands for managing backfills.\n
See help for any command:
$ ./bqetl [command] --help\n
"},{"location":"bqetl/#query","title":"query
","text":"Commands for managing queries.
"},{"location":"bqetl/#create","title":"create
","text":"Create a new query with name ., for example: telemetry_derived.active_profiles. Use the --project_id
option to change the project the query is added to; default is moz-fx-data-shared-prod
. Views are automatically generated in the publicly facing dataset.
Usage
$ ./bqetl query create [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--owner: Owner of the query (email address)\n--init: Create an init.sql file to initialize the table\n--dag: Name of the DAG the query should be scheduled under.If there is no DAG name specified, the query isscheduled by default in DAG bqetl_default.To skip the automated scheduling use --no_schedule.To see available DAGs run `bqetl dag info`.To create a new DAG run `bqetl dag create`.\n--no_schedule: Using this option creates the query without scheduling information. Use `bqetl query schedule` to add it manually if required.\n
Examples
./bqetl query create telemetry_derived.deviations_v1 \\\n --owner=example@mozilla.com\n\n\n# The query version gets autocompleted to v1. Queries are created in the\n# _derived dataset and accompanying views in the public dataset.\n./bqetl query create telemetry.deviations --owner=example@mozilla.com\n
"},{"location":"bqetl/#schedule","title":"schedule
","text":"Schedule an existing query
Usage
$ ./bqetl query schedule [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--dag: Name of the DAG the query should be scheduled under. To see available DAGs run `bqetl dag info`. To create a new DAG run `bqetl dag create`.\n--depends_on_past: Only execute query if previous scheduled run succeeded.\n--task_name: Custom name for the Airflow task. By default the task name is a combination of the dataset and table name.\n
Examples
./bqetl query schedule telemetry_derived.deviations_v1 \\\n --dag=bqetl_deviations\n\n\n# Set a specific name for the task\n./bqetl query schedule telemetry_derived.deviations_v1 \\\n --dag=bqetl_deviations \\\n --task-name=deviations\n
"},{"location":"bqetl/#info","title":"info
","text":"Get information about all or specific queries.
Usage
$ ./bqetl query info [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--cost: Include information about query costs\n--last_updated: Include timestamps when destination tables were last updated\n
Examples
# Get info for specific queries\n./bqetl query info telemetry_derived.*\n\n\n# Get cost and last update timestamp information\n./bqetl query info telemetry_derived.clients_daily_v6 \\\n --cost --last_updated\n
"},{"location":"bqetl/#backfill","title":"backfill
","text":"Run a backfill for a query. Additional parameters will get passed to bq.
Usage
$ ./bqetl query backfill [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--start_date: First date to be backfilled\n--end_date: Last date to be backfilled\n--exclude: Dates excluded from backfill. Date format: yyyy-mm-dd\n--dry_run: Dry run the backfill\n--max_rows: How many rows to return in the result\n--parallelism: How many threads to run backfill in parallel\n--no_partition: Disable writing results to a partition. Overwrites entire destination table.\n--destination_table: Destination table name results are written to. If not set, determines destination table based on query.\n--checks: Whether to run checks during backfill\n
Examples
# Backfill for specific date range\n# second comment line\n./bqetl query backfill telemetry_derived.ssl_ratios_v1 \\\n --start_date=2021-03-01 \\\n --end_date=2021-03-31\n\n\n# Dryrun backfill for specific date range and exclude date\n./bqetl query backfill telemetry_derived.ssl_ratios_v1 \\\n --start_date=2021-03-01 \\\n --end_date=2021-03-31 \\\n --exclude=2021-03-03 \\\n --dry_run\n
"},{"location":"bqetl/#run","title":"run
","text":"Run a query. Additional parameters will get passed to bq. If a destination_table is set, the query result will be written to BigQuery. Without a destination_table specified, the results are not stored. If the name
is not found within the sql/
folder bqetl assumes it hasn't been generated yet and will start the generating process for all sql_generators/
files. This generation process will take some time and run dryrun calls against BigQuery but this is expected. Additional parameters (all parameters that are not specified in the Options) must come after the query-name. Otherwise the first parameter that is not an option is interpreted as the query-name and since it can't be found the generation process will start.
Usage
$ ./bqetl query run [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--public_project_id: Project with publicly accessible data\n--destination_table: Destination table name results are written to. If not set, the query result will not be written to BigQuery.\n--dataset_id: Destination dataset results are written to. If not set, determines destination dataset based on query.\n
Examples
# Run a query by name\n./bqetl query run telemetry_derived.ssl_ratios_v1\n\n\n# Run a query file\n./bqetl query run /path/to/query.sql\n\n\n# Run a query and save the result to BigQuery\n./bqetl query run telemetry_derived.ssl_ratios_v1 --project_id=moz-fx-data-shared-prod --dataset_id=telemetry_derived --destination_table=ssl_ratios_v1\n
"},{"location":"bqetl/#run-multipart","title":"run-multipart
","text":"Run a multipart query.
Usage
$ ./bqetl query run-multipart [OPTIONS] [query_dir]\n\nOptions:\n\n--using: comma separated list of join columns to use when combining results\n--parallelism: Maximum number of queries to execute concurrently\n--dataset_id: Default dataset, if not specified all tables must be qualified with dataset\n--project_id: GCP project ID\n--temp_dataset: Dataset where intermediate query results will be temporarily stored, formatted as PROJECT_ID.DATASET_ID\n--destination_table: table where combined results will be written\n--time_partitioning_field: time partition field on the destination table\n--clustering_fields: comma separated list of clustering fields on the destination table\n--dry_run: Print bytes that would be processed for each part and don't run queries\n--parameters: query parameter(s) to pass when running parts\n--priority: Priority for BigQuery query jobs; BATCH priority will significantly slow down queries if reserved slots are not enabled for the billing project; defaults to INTERACTIVE\n--schema_update_options: Optional options for updating the schema.\n
Examples
# Run a multipart query\n./bqetl query run_multipart /path/to/query.sql\n
"},{"location":"bqetl/#validate","title":"validate
","text":"Validate a query. Checks formatting, scheduling information and dry runs the query.
Usage
$ ./bqetl query validate [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--use_cloud_function: Use the Cloud Function for dry running SQL, if set to `True`. The Cloud Function can only access tables in shared-prod. If set to `False`, use active GCP credentials for the dry run.\n--validate_schemas: Require dry run schema to match destination table and file if present.\n--respect_dryrun_skip: Respect or ignore dry run skip configuration. Default is --ignore-dryrun-skip.\n--no_dryrun: Skip running dryrun. Default is False.\n
Examples
./bqetl query validate telemetry_derived.clients_daily_v6\n\n\n# Validate query not in shared-prod\n./bqetl query validate \\\n --use_cloud_function=false \\\n --project_id=moz-fx-data-marketing-prod \\\n ga_derived.blogs_goals_v1\n
"},{"location":"bqetl/#initialize","title":"initialize
","text":"Run a full backfill on the destination table for the query. Using this command will: - Create the table if it doesn't exist and run a full backfill. - Run a full backfill if the table exists and is empty. - Raise an exception if the table exists and has data, or if the table exists and the schema doesn't match the query. It supports query.sql
files that use the is_init() pattern, and init.sql
files. To run in parallel per sample_id, include a @sample_id parameter in the query.
Usage
$ ./bqetl query initialize [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--dry_run: Dry run the initialization\n--parallelism: Number of threads for parallel processing\n
Examples
Examples:\n - For init.sql files: ./bqetl query initialize telemetry_derived.ssl_ratios_v1\n - For query.sql files and parallel run: ./bqetl query initialize sql/moz-fx-data-shared-prod/telemetry_derived/clients_first_seen_v2/query.sql\n
"},{"location":"bqetl/#render","title":"render
","text":"Render a query Jinja template.
Usage
$ ./bqetl query render [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--output_dir: Output directory generated SQL is written to. If not specified, rendered queries are printed to console.\n
Examples
./bqetl query render telemetry_derived.ssl_ratios_v1 \\\n --output-dir=/tmp\n
"},{"location":"bqetl/#schema","title":"schema
","text":"Commands for managing query schemas.
"},{"location":"bqetl/#update","title":"update
","text":"Update the query schema based on the destination table schema and the query schema. If no schema.yaml file exists for a query, one will be created.
Usage
$ ./bqetl query schema update [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--update_downstream: Update downstream dependencies. GCP authentication required.\n--tmp_dataset: GCP datasets for creating updated tables temporarily.\n--use_cloud_function: Use the Cloud Function for dry running SQL, if set to `True`. The Cloud Function can only access tables in shared-prod. If set to `False`, use active GCP credentials for the dry run.\n--respect_dryrun_skip: Respect or ignore dry run skip configuration. Default is --respect-dryrun-skip.\n--parallelism: Number of threads for parallel processing\n
Examples
./bqetl query schema update telemetry_derived.clients_daily_v6\n\n# Update schema including downstream dependencies (requires GCP)\n./bqetl query schema update telemetry_derived.clients_daily_v6 --update-downstream\n
"},{"location":"bqetl/#deploy","title":"deploy
","text":"Deploy the query schema.
Usage
$ ./bqetl query schema deploy [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--force: Deploy the schema file without validating that it matches the query\n--use_cloud_function: Use the Cloud Function for dry running SQL, if set to `True`. The Cloud Function can only access tables in shared-prod. If set to `False`, use active GCP credentials for the dry run.\n--respect_dryrun_skip: Respect or ignore dry run skip configuration. Default is --respect-dryrun-skip.\n--skip_existing: Skip updating existing tables. This option ensures that only new tables get deployed.\n--skip_external_data: Skip publishing external data, such as Google Sheets.\n--destination_table: Destination table name results are written to. If not set, determines destination table based on query. Must be fully qualified (project.dataset.table).\n--parallelism: Number of threads for parallel processing\n
Examples
./bqetl query schema deploy telemetry_derived.clients_daily_v6\n
"},{"location":"bqetl/#validate_1","title":"validate
","text":"Validate the query schema
Usage
$ ./bqetl query schema validate [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--use_cloud_function: Use the Cloud Function for dry running SQL, if set to `True`. The Cloud Function can only access tables in shared-prod. If set to `False`, use active GCP credentials for the dry run.\n--respect_dryrun_skip: Respect or ignore dry run skip configuration. Default is --respect-dryrun-skip.\n
Examples
./bqetl query schema validate telemetry_derived.clients_daily_v6\n
"},{"location":"bqetl/#dag","title":"dag
","text":"Commands for managing DAGs.
"},{"location":"bqetl/#info_1","title":"info
","text":"Get information about available DAGs.
Usage
$ ./bqetl dag info [OPTIONS] [name]\n\nOptions:\n\n--dags_config: Path to dags.yaml config file\n--sql_dir: Path to directory which contains queries.\n--with_tasks: Include scheduled tasks\n
Examples
# Get information about all available DAGs\n./bqetl dag info\n\n# Get information about a specific DAG\n./bqetl dag info bqetl_ssl_ratios\n\n# Get information about a specific DAG including scheduled tasks\n./bqetl dag info --with_tasks bqetl_ssl_ratios\n
"},{"location":"bqetl/#create_1","title":"create
","text":"Create a new DAG with name bqetl_, for example: bqetl_search When creating new DAGs, the DAG name must have a bqetl_
prefix. Created DAGs are added to the dags.yaml
file.
Usage
$ ./bqetl dag create [OPTIONS] [name]\n\nOptions:\n\n--dags_config: Path to dags.yaml config file\n--schedule_interval: Schedule interval of the new DAG. Schedule intervals can be either in CRON format or one of: once, hourly, daily, weekly, monthly, yearly or a timedelta []d[]h[]m\n--owner: Email address of the DAG owner\n--description: Description for DAG\n--tag: Tag to apply to the DAG\n--start_date: First date for which scheduled queries should be executed\n--email: Email addresses that Airflow will send alerts to\n--retries: Number of retries Airflow will attempt in case of failures\n--retry_delay: Time period Airflow will wait after failures before running failed tasks again\n
Examples
./bqetl dag create bqetl_core \\\n--schedule-interval=\"0 2 * * *\" \\\n--owner=example@mozilla.com \\\n--description=\"Tables derived from `core` pings sent by mobile applications.\" \\\n--tag=impact/tier_1 \\\n--start-date=2019-07-25\n\n\n# Create DAG and overwrite default settings\n./bqetl dag create bqetl_ssl_ratios --schedule-interval=\"0 2 * * *\" \\\n--owner=example@mozilla.com \\\n--description=\"The DAG schedules SSL ratios queries.\" \\\n--tag=impact/tier_1 \\\n--start-date=2019-07-20 \\\n--email=example2@mozilla.com \\\n--email=example3@mozilla.com \\\n--retries=2 \\\n--retry_delay=30m\n
"},{"location":"bqetl/#generate","title":"generate
","text":"Generate Airflow DAGs from DAG definitions.
Usage
$ ./bqetl dag generate [OPTIONS] [name]\n\nOptions:\n\n--dags_config: Path to dags.yaml config file\n--sql_dir: Path to directory which contains queries.\n--output_dir: Path directory with generated DAGs\n
Examples
# Generate all DAGs\n./bqetl dag generate\n\n# Generate a specific DAG\n./bqetl dag generate bqetl_ssl_ratios\n
"},{"location":"bqetl/#remove","title":"remove
","text":"Remove a DAG. This will also remove the scheduling information from the queries that were scheduled as part of the DAG.
Usage
$ ./bqetl dag remove [OPTIONS] [name]\n\nOptions:\n\n--dags_config: Path to dags.yaml config file\n--sql_dir: Path to directory which contains queries.\n--output_dir: Path directory with generated DAGs\n
Examples
# Remove a specific DAG\n./bqetl dag remove bqetl_vrbrowser\n
"},{"location":"bqetl/#dependency","title":"dependency
","text":"Build and use query dependency graphs.
"},{"location":"bqetl/#show","title":"show
","text":"Show table references in sql files.
Usage
$ ./bqetl dependency show [OPTIONS] [paths]\n
"},{"location":"bqetl/#record","title":"record
","text":"Record table references in metadata. Fails if metadata already contains references section.
Usage
$ ./bqetl dependency record [OPTIONS] [paths]\n
"},{"location":"bqetl/#dryrun","title":"dryrun
","text":"Dry run SQL. Uses the dryrun Cloud Function by default which only has access to shared-prod. To dryrun queries accessing tables in another project use set --use-cloud-function=false
and ensure that the command line has access to a GCP service account.
Usage
$ ./bqetl dryrun [OPTIONS] [paths]\n\nOptions:\n\n--use_cloud_function: Use the Cloud Function for dry running SQL, if set to `True`. The Cloud Function can only access tables in shared-prod. If set to `False`, use active GCP credentials for the dry run.\n--validate_schemas: Require dry run schema to match destination table and file if present.\n--respect_skip: Respect or ignore query skip configuration. Default is --respect-skip.\n--project: GCP project to perform dry run in when --use_cloud_function=False\n
Examples
Examples:\n./bqetl dryrun sql/moz-fx-data-shared-prod/telemetry_derived/\n\n# Dry run SQL with tables that are not in shared prod\n./bqetl dryrun --use-cloud-function=false sql/moz-fx-data-marketing-prod/\n
"},{"location":"bqetl/#format","title":"format
","text":"Format SQL files.
Usage
$ ./bqetl format [OPTIONS] [paths]\n
Examples
# Format a specific file\n./bqetl format sql/moz-fx-data-shared-prod/telemetry/core/view.sql\n\n# Format all SQL files in `sql/`\n./bqetl format sql\n\n# Format standard in (will write to standard out)\necho 'SELECT 1,2,3' | ./bqetl format\n
"},{"location":"bqetl/#routine","title":"routine
","text":"Commands for managing routines for internal use.
"},{"location":"bqetl/#create_2","title":"create
","text":"Create a new routine. Specify whether the routine is a UDF or stored procedure by adding a --udf or --stored_prodecure flag.
Usage
$ ./bqetl routine create [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--udf: Create a new UDF\n--stored_procedure: Create a new stored procedure\n
Examples
# Create a UDF\n./bqetl routine create --udf udf.array_slice\n\n\n# Create a stored procedure\n./bqetl routine create --stored_procedure udf.events_daily\n\n\n# Create a UDF in a project other than shared-prod\n./bqetl routine create --udf udf.active_last_week --project=moz-fx-data-marketing-prod\n
"},{"location":"bqetl/#info_2","title":"info
","text":"Get routine information.
Usage
$ ./bqetl routine info [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--usages: Show routine usages\n
Examples
# Get information about all internal routines in a specific dataset\n./bqetl routine info udf.*\n\n\n# Get usage information of specific routine\n./bqetl routine info --usages udf.get_key\n
"},{"location":"bqetl/#validate_2","title":"validate
","text":"Validate formatting of routines and run tests.
Usage
$ ./bqetl routine validate [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--docs_only: Only validate docs.\n
Examples
# Validate all routines\n./bqetl routine validate\n\n\n# Validate selected routines\n./bqetl routine validate udf.*\n
"},{"location":"bqetl/#publish","title":"publish
","text":"Publish routines to BigQuery. Requires service account access.
Usage
$ ./bqetl routine publish [OPTIONS] [name]\n\nOptions:\n\n--project_id: GCP project ID\n--dependency_dir: The directory JavaScript dependency files for UDFs are stored.\n--gcs_bucket: The GCS bucket where dependency files are uploaded to.\n--gcs_path: The GCS path in the bucket where dependency files are uploaded to.\n--dry_run: Dry run publishing udfs.\n
Examples
# Publish all routines\n./bqetl routine publish\n\n\n# Publish selected routines\n./bqetl routine validate udf.*\n
"},{"location":"bqetl/#rename","title":"rename
","text":"Rename routine or routine dataset. Replaces all usages in queries with the new name.
Usage
$ ./bqetl routine rename [OPTIONS] [name] [new_name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n
Examples
# Rename routine\n./bqetl routine rename udf.array_slice udf.list_slice\n\n\n# Rename routine matching a specific pattern\n./bqetl routine rename udf.array_* udf.list_*\n
"},{"location":"bqetl/#mozfun","title":"mozfun
","text":"Commands for managing public mozfun routines.
"},{"location":"bqetl/#create_3","title":"create
","text":"Create a new mozfun routine. Specify whether the routine is a UDF or stored procedure by adding a --udf or --stored_prodecure flag. UDFs are added to the mozfun
project.
Usage
$ ./bqetl mozfun create [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--udf: Create a new UDF\n--stored_procedure: Create a new stored procedure\n
Examples
# Create a UDF\n./bqetl mozfun create --udf bytes.zero_right\n\n\n# Create a stored procedure\n./bqetl mozfun create --stored_procedure event_analysis.events_daily\n
"},{"location":"bqetl/#info_3","title":"info
","text":"Get mozfun routine information.
Usage
$ ./bqetl mozfun info [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--usages: Show routine usages\n
Examples
# Get information about all internal routines in a specific dataset\n./bqetl mozfun info hist.*\n\n\n# Get usage information of specific routine\n./bqetl mozfun info --usages hist.mean\n
"},{"location":"bqetl/#validate_3","title":"validate
","text":"Validate formatting of mozfun routines and run tests.
Usage
$ ./bqetl mozfun validate [OPTIONS] [name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n--docs_only: Only validate docs.\n
Examples
# Validate all routines\n./bqetl mozfun validate\n\n\n# Validate selected routines\n./bqetl mozfun validate hist.*\n
"},{"location":"bqetl/#publish_1","title":"publish
","text":"Publish mozfun routines. This command is used by Airflow only.
Usage
$ ./bqetl mozfun publish [OPTIONS] [name]\n\nOptions:\n\n--project_id: GCP project ID\n--dependency_dir: The directory JavaScript dependency files for UDFs are stored.\n--gcs_bucket: The GCS bucket where dependency files are uploaded to.\n--gcs_path: The GCS path in the bucket where dependency files are uploaded to.\n--dry_run: Dry run publishing udfs.\n
"},{"location":"bqetl/#rename_1","title":"rename
","text":"Rename mozfun routine or mozfun routine dataset. Replaces all usages in queries with the new name.
Usage
$ ./bqetl mozfun rename [OPTIONS] [name] [new_name]\n\nOptions:\n\n--sql_dir: Path to directory which contains queries.\n--project_id: GCP project ID\n
Examples
# Rename routine\n./bqetl mozfun rename hist.extract hist.ext\n\n\n# Rename routine matching a specific pattern\n./bqetl mozfun rename *.array_* *.list_*\n\n\n# Rename routine dataset\n./bqetl mozfun rename hist.* histogram.*\n
"},{"location":"cookbooks/common_workflows/","title":"Common bigquery-etl workflows","text":"This is a quick guide of how to perform common workflows in bigquery-etl using the bqetl
CLI.
For any workflow, the bigquery-etl repositiory needs to be locally available, for example by cloning the repository, and the bqetl
CLI needs to be installed by running ./bqetl bootstrap
.
"},{"location":"cookbooks/common_workflows/#adding-a-new-scheduled-query","title":"Adding a new scheduled query","text":"The Creating derived datasets tutorial provides a more detailed guide on creating scheduled queries.
- Run
./bqetl query create <dataset>.<table>_<version>
- Specify the desired destination dataset and table name for
<dataset>.<table>_<version>
- Directories and files are generated automatically
- Open
query.sql
file that has been created in sql/moz-fx-data-shared-prod/<dataset>/<table>_<version>/
to write the query - [Optional] Run
./bqetl query schema update <dataset>.<table>_<version>
to generate the schema.yaml
file - Optionally add column descriptions to
schema.yaml
- Open the
metadata.yaml
file in sql/moz-fx-data-shared-prod/<dataset>/<table>_<version>/
- Add a description of the query
- Add BigQuery information such as table partitioning or clustering
- See clients_daily_v6 for reference
- Run
./bqetl query validate <dataset>.<table>_<version>
to dry run and format the query - To schedule the query, first select a DAG from the
./bqetl dag info
list or create a new DAG ./bqetl dag create <bqetl_new_dag>
- Run
./bqetl query schedule <dataset>.<table>_<version> --dag <bqetl_dag>
to schedule the query - Create a pull request
- PR gets reviewed and eventually approved
- Merge pull-request
- Table deploys happen on a nightly cadence through the
bqetl_artifact_deployment
Airflow DAG - Clear the most recent DAG run once a new version of bigquery-etl has been deployed to create new datasets earlier
- Backfill data
- Option 1: via Airflow interface
- Option 2:
./bqetl query backfill --project-id <project id> <dataset>.<table>_<version>
"},{"location":"cookbooks/common_workflows/#update-an-existing-query","title":"Update an existing query","text":" - Open the
query.sql
file of the query to be updated and make changes - Run
./bqetl query validate <dataset>.<table>_<version>
to dry run and format the query - If the query scheduling metadata has changed, run
./bqetl dag generate <bqetl_dag>
to update the DAG file - If the query adds new columns, run
./bqetl query schema update <dataset>.<table>_<version>
to make local schema.yaml
updates - Open PR with changes
- PR reviewed and approved
- Merge pull-request
- Table deploys (including schema changes) happen on a nightly cadence through the
bqetl_artifact_deployment
Airflow DAG - Clear the most recent DAG run once a new version of bigquery-etl has been deployed to apply changes earlier
"},{"location":"cookbooks/common_workflows/#formatting-sql","title":"Formatting SQL","text":"We enforce consistent SQL formatting as part of CI. After adding or changing a query, use ./bqetl format
to apply formatting rules.
Directories and files passed as arguments to ./bqetl format
will be formatted in place, with directories recursively searched for files with a .sql
extension, e.g.:
$ echo 'SELECT 1,2,3' > test.sql\n$ ./bqetl format test.sql\nmodified test.sql\n1 file(s) modified\n$ cat test.sql\nSELECT\n 1,\n 2,\n 3\n
If no arguments are specified the script will read from stdin and write to stdout, e.g.:
$ echo 'SELECT 1,2,3' | ./bqetl format\nSELECT\n 1,\n 2,\n 3\n
To turn off sql formatting for a block of SQL, wrap it in format:off
and format:on
comments, like this:
SELECT\n -- format:off\n submission_date, sample_id, client_id\n -- format:on\n
"},{"location":"cookbooks/common_workflows/#add-a-new-field-to-a-table-schema","title":"Add a new field to a table schema","text":"Adding a new field to a table schema also means that the field has to propagate to several downstream tables, which makes it a more complex case.
- Open the
query.sql
file inside the <dataset>.<table>
location and add the new definitions for the field. - Run
./bqetl format <path to the query>
to format the query. Alternatively, run ./bqetl format $(git ls-tree -d HEAD --name-only)
validate the format of all queries that have been modified. - Run
./bqetl query validate <dataset>.<table>
to dry run the query. - For data scientists (and anyone without
jobs.create
permissions in moz-fx-data-shared-prod
), run: - (a)
gcloud auth login --update-adc # to authenticate to GCP
- (b)
gcloud config set project mozdata # to set the project
- (c)
./bqetl query validate --use-cloud-function=false --project-id=mozdata <full path to the query file>
- Run
./bqetl query schema update <dataset>.<table> --update_downstream
to make local schema.yaml updates and update schemas of downstream dependencies. - This requires GCP access.
-
--update_downstream
is optional as it takes longer. It is recommended when you know that there are downstream dependencies whose schema.yaml
need to be updated, in which case, the update will happen automatically. -
--force
should only be used in very specific cases, particularly the clients_last_seen
tables. It skips some checks that would otherwise catch some error scenarios.
- Open a new PR with these changes.
- PR reviewed and approved.
- Find and run again the CI pipeline for the PR.
- Make sure all dry runs are successful.
- Merge pull-request.
- Table deploys happen on a nightly cadence through the
bqetl_artifact_deployment
Airflow DAG - Clear the most recent DAG run once a new version of bigquery-etl has been deployed to apply changes earlier
The following is an example to update a new field in telemetry_derived.clients_daily_v6
"},{"location":"cookbooks/common_workflows/#example-add-a-new-field-to-clients_daily","title":"Example: Add a new field to clients_daily","text":" - Open the
clients_daily_v6
query.sql
file and add new field definitions. - Run
./bqetl format sql/moz-fx-data-shared-prod/telemetry_derived/clients_daily_v6/query.sql
- Run
./bqetl query validate telemetry_derived.clients_daily_v6
. - Authenticate to GCP:
gcloud auth login --update-adc
- Run
./bqetl query schema update telemetry_derived.clients_daily_v6 --update_downstream --ignore-dryrun-skip --use-cloud-function=false
. -
schema.yaml
files of downstream dependencies, like clients_last_seen_v1
are updated. - If the schema has no changes, we do not run schema updates on any of its downstream dependencies.
--use-cloud-function=false
is necessary when updating tables related to clients_daily
but optional for other tables. The dry run cloud function times out when fetching the deployed table schema for some of clients_daily
s downstream dependencies. Using GCP credentials instead works, however this means users need to have permissions to run queries in moz-fx-data-shared-prod
.
- Open a PR with these changes.
- PR is reviewed and approved.
- Merge pull-request.
- Table deploys happen on a nightly cadence through the
bqetl_artifact_deployment
Airflow DAG - Clear the most recent DAG run once a new version of bigquery-etl has been deployed to apply changes earlier
"},{"location":"cookbooks/common_workflows/#remove-a-field-from-a-table-schema","title":"Remove a field from a table schema","text":"Deleting a field from an existing table schema should be done only when is totally neccessary. If you decide to delete it: 1. Validate if there is data in the column and make sure data it is either backed up or it can be reprocessed. 1. Follow Big Query docs recommendations for deleting. 1. If the column size exceeds the allowed limit, consider setting the field as NULL. See this search_clients_daily_v8 PR for an example.
"},{"location":"cookbooks/common_workflows/#adding-a-new-mozfun-udf","title":"Adding a new mozfun UDF","text":" - Run
./bqetl mozfun create <dataset>.<name> --udf
. - Navigate to the
udf.sql
file in sql/mozfun/<dataset>/<name>/
and add UDF the definition and tests. - Run
./bqetl mozfun validate <dataset>.<name>
for formatting and running tests. - Before running the tests, you need to setup the access to the Google Cloud API.
- Open a PR.
- PR gets reviewed, approved and merged.
- To publish UDF immediately:
- Go to Airflow
mozfun
DAG and clear latest run. - Or else it will get published within a day when mozfun is executed next.
"},{"location":"cookbooks/common_workflows/#adding-a-new-internal-udf","title":"Adding a new internal UDF","text":"Internal UDFs are usually only used by specific queries. If your UDF might be useful to others consider publishing it as a mozfun
UDF.
- Run
./bqetl routine create <dataset>.<name> --udf
- Navigate to the
udf.sql
in sql/moz-fx-data-shared-prod/<dataset>/<name>/
file and add UDF definition and tests - Run
./bqetl routine validate <dataset>.<name>
for formatting and running tests - Before running the tests, you need to setup the access to the Google Cloud API.
- Open a PR
- PR gets reviewed and approved and merged
- UDF deploys happen on a nightly cadence through the
bqetl_artifact_deployment
Airflow DAG - Clear the most recent DAG run once a new version of bigquery-etl has been deployed to apply changes earlier
"},{"location":"cookbooks/common_workflows/#adding-a-stored-procedure","title":"Adding a stored procedure","text":"The same steps as creating a new UDF apply for creating stored procedures, except when initially creating the procedure execute ./bqetl mozfun create <dataset>.<name> --stored_procedure
or ./bqetl routine create <dataset>.<name> --stored_procedure
for internal stored procedures.
"},{"location":"cookbooks/common_workflows/#updating-an-existing-udf","title":"Updating an existing UDF","text":" - Navigate to the
udf.sql
file and make updates - Run
./bqetl mozfun validate <dataset>.<name>
or ./bqetl routine validate <dataset>.<name>
for formatting and running tests - Open a PR
- PR gets reviewed, approved and merged
"},{"location":"cookbooks/common_workflows/#renaming-an-existing-udf","title":"Renaming an existing UDF","text":" - Run
./bqetl mozfun rename <dataset>.<name> <new_dataset>.<new_name>
- References in queries to the UDF are automatically updated
- Open a PR
- PR gets reviews, approved and merged
"},{"location":"cookbooks/common_workflows/#using-a-private-internal-udf","title":"Using a private internal UDF","text":" - Follow the steps for Adding a new internal UDF above to create a stub of the private UDF. Note this should not contain actual private UDF code or logic. The directory name and function parameters should match the private UDF.
- Do Not publish the stub UDF. This could result in incorrect results for other users of the private UDF.
- Open a PR
- PR gets reviewed, approved and merged
"},{"location":"cookbooks/common_workflows/#creating-a-new-bigquery-dataset","title":"Creating a new BigQuery Dataset","text":"To provision a new BigQuery dataset for holding tables, you'll need to create a dataset_metadata.yaml
which will cause the dataset to be automatically deployed after merging. Changes to existing datasets may trigger manual operator approval (such as changing access policies). For more on access controls, see Data Access Workgroups in Mana.
The bqetl query create
command will automatically generate a skeleton dataset_metadata.yaml
file if the query name contains a dataset that is not yet defined.
See example with commentary for telemetry_derived
:
friendly_name: Telemetry Derived\ndescription: |-\n Derived data based on pings from legacy Firefox telemetry, plus many other\n general-purpose derived tables\nlabels: {}\n\n# Base ACL should can be:\n# \"derived\" for `_derived` datasets that contain concrete tables\n# \"view\" for user-facing datasets containing virtual views\ndataset_base_acl: derived\n\n# Datasets with user-facing set to true will be created both in shared-prod\n# and in mozdata; this should be false for all `_derived` datasets\nuser_facing: false\n\n# Most datasets can have mozilla-confidential access like below, but some\n# datasets will be defined with more restricted access or with additional\n# access for services; see \"Data Access Workgroups\" link above.\nworkgroup_access:\n- role: roles/bigquery.dataViewer\n members:\n - workgroup:mozilla-confidential\n
"},{"location":"cookbooks/common_workflows/#publishing-data","title":"Publishing data","text":"See also the reference for Public Data.
- Get a data review by following the data publishing process
- Update the
metadata.yaml
file of the query to be published - Set
public_bigquery: true
and optionally public_json: true
- Specify the
review_bugs
- If an internal dataset already exists, move it to
mozilla-public-data
- If an
init.sql
file exists for the query, change the destination project for the created table to mozilla-public-data
- Open a PR
- PR gets reviewed, approved and merged
- Once, ETL is running a view will get automatically published to
moz-fx-data-shared-prod
referencing the public dataset
"},{"location":"cookbooks/common_workflows/#adding-new-python-requirements","title":"Adding new Python requirements","text":"When adding a new library to the Python requirements, first add the library to the requirements and then add any meta-dependencies into constraints. Constraints are discovered by installing requirements into a fresh virtual environment. A dependency should be added to either requirements.txt
or constraints.txt
, but not both.
# Create a python virtual environment (not necessary if you have already\n# run `./bqetl bootstrap`)\npython3 -m venv venv/\n\n# Activate the virtual environment\nsource venv/bin/activate\n\n# If not installed:\npip install pip-tools --constraint requirements.in\n\n# Add the dependency to requirements.in e.g. Jinja2.\necho Jinja2==2.11.1 >> requirements.in\n\n# Compile hashes for new dependencies.\npip-compile --generate-hashes requirements.in\n\n# Deactivate the python virtual environment.\ndeactivate\n
"},{"location":"cookbooks/common_workflows/#making-a-pull-request-from-a-fork","title":"Making a pull request from a fork","text":"When opening a pull-request to merge a fork, the manual-trigger-required-for-fork
CI task will fail and some integration test tasks will be skipped. A user with repository write permissions will have to run the Push to upstream workflow and provide the <username>:<branch>
of the fork as parameter. The parameter will also show up in the logs of the manual-trigger-required-for-fork
CI task together with more detailed instructions. Once the workflow has been executed, the CI tasks, including the integration tests, of the PR will be executed.
"},{"location":"cookbooks/common_workflows/#building-the-documentation","title":"Building the Documentation","text":"The repository documentation is built using MkDocs. To generate and check the docs locally:
- Run
./bqetl docs generate --output_dir generated_docs
- Navigate to the
generated_docs
directory - Run
mkdocs serve
to start a local mkdocs
server.
"},{"location":"cookbooks/common_workflows/#setting-up-change-control-to-code-files","title":"Setting up change control to code files","text":"Each code files in the bigquery-etl repository can have a set of owners who are responsible to review and approve changes, and are automatically assigned as PR reviewers. The query files in the repo also benefit from the metadata labels to be able to validate and identify the data that is change controlled.
Here is a sample PR with the implementation of change control for contextual services data.
- Select or create a Github team or identity and add the GitHub emails of the query codeowners. A GitHub identity is particularly useful when you need to include non @mozilla emails or to randomly assign PR reviewers from the team members. This team requires edit permissions to bigquery-etl, to achieve this, inherit the team from one that has the required permissions e.g.
mozilla > telemetry
. - Open the
metadata.yaml
for the query where you want to apply change control: - In the section
owners
, add the selected GitHub identity, along with the list of owners' emails. - In the section
labels
, add change_controlled: true
. This enables identifying change controlled data in the BigQuery console and in the Data Catalog.
- Setup the
CODEOWNERS
: - Open the
CODEOWNERS
file located in the root of the repo. - Add a new row with the path and owners for the query. You can place it in the corresponding section or create a new section in the file, e.g.
/sql_generators/active_users/templates/ @mozilla/kpi_table_reviewers
.
- The queries labeled change_controlled are automatically validated in the CI. To run the validation locally:
- Run the command
script/bqetl query validate <query_path>
. - If the query is generated using the
/sql-generators
, first run ./script/bqetl generate <path>
and then run script/bqetl query validate <query_path>
.
"},{"location":"cookbooks/creating_a_derived_dataset/","title":"A quick guide to creating a derived dataset with BigQuery-ETL and how to set it up as a public dataset","text":"This guide takes you through the creation of a simple derived dataset using bigquery-etl and scheduling it using Airflow, to be updated on a daily basis. It applies to the products we ship to customers, that use (or will use) the Glean SDK.
This guide also includes the specific instructions to set it as a public dataset. Make sure you only set the dataset public if you expect the data to be available outside Mozilla. Read our public datasets reference for context.
To illustrate the overall process, we will use a simple test case and a small Glean application for which we want to generate an aggregated dataset based on the raw ping data.
If you are interested in looking at the end result, you can view the pull request at mozilla/bigquery-etl#1760.
"},{"location":"cookbooks/creating_a_derived_dataset/#background","title":"Background","text":"Mozregression is a developer tool used to help developers and community members bisect builds of Firefox to find a regression range in which a bug was introduced. It forms a key part of our quality assurance process.
In this example, we will create a table of aggregated metrics related to mozregression
, that will be used in dashboards to help prioritize feature development inside Mozilla.
"},{"location":"cookbooks/creating_a_derived_dataset/#initial-steps","title":"Initial steps","text":"Set up bigquery-etl on your system per the instructions in the README.md.
"},{"location":"cookbooks/creating_a_derived_dataset/#create-the-query","title":"Create the Query","text":"The first step is to create a query file and decide on the name of your derived dataset. In this case, we'll name it org_mozilla_mozregression_derived.mozregression_aggregates
.
The org_mozilla_mozregression_derived
part represents a BigQuery dataset, which is essentially a container of tables. By convention, we use the _derived
postfix to hold derived tables like this one.
Run:
./bqetl query create <dataset>.<table_name>\n
In our example: ./bqetl query create org_mozilla_mozregression_derived.mozregression_aggregates --dag bqetl_internal_tooling\n
This command does three things:
- Generate the template files
metadata.yaml
and query.sql
representing the query to build the dataset in sql/moz-fx-data-shared-prod/org_mozilla_mozregression_derived/mozregression_aggregates_v1
- Generate a \"view\" of the dataset in
sql/moz-fx-data-shared-prod/org_mozilla_mozregression/mozregression_aggregates
. - Add the scheduling information in the metadata, required to create a task in Airflow DAG
bqetl_internal_tooling
. - When the dag name is not given, the query is scheduled by default in DAG
bqetl_default
. - When the option
--no-schedule
is used, queries are not schedule. This option is available for queries that run once or should be scheduled at a later time. The query can be manually scheduled at a later time.
We generate the view to have a stable interface, while allowing the dataset backend to evolve over time. Views are automatically published to the mozdata
project.
"},{"location":"cookbooks/creating_a_derived_dataset/#fill-out-the-yaml","title":"Fill out the YAML","text":"The next step is to modify the generated metadata.yaml
and query.sql
sections with specific information.
Let's look at what the metadata.yaml
file for our example looks like. Make sure to adapt this file for your own dataset.
friendly_name: mozregression aggregates\ndescription:\n Aggregated metrics of mozregression usage\nlabels:\n incremental: true\nowners:\n - wlachance@mozilla.com\nbigquery:\n time_partitioning:\n type: day\n field: date\n require_partition_filter: true\n expiration_days: null\n clustering:\n fields:\n - app_used\n - os\n
Most of the fields are self-explanatory. incremental
means that the table is updated incrementally, e.g. a new partition gets added/updated to the destination table whenever the query is run. For non-incremental queries the entire destination is overwritten when the query is executed.
For big datasets make sure to include optimization strategies. Our aggregation is small so it is only for illustration purposes that we are including a partition by the date
field and a clustering on app_used
and os
.
"},{"location":"cookbooks/creating_a_derived_dataset/#the-yaml-file-structure-for-a-public-dataset","title":"The YAML file structure for a public dataset","text":"Setting the dataset as public means that it will be both in Mozilla's public BigQuery project and a world-accessible JSON endpoint, and is a process that requires a data review. The required labels are: public_json
, public_bigquery
and review_bugs
which refers to the Bugzilla bug where opening this data set up to the public was approved: we'll get to that in a subsequent section.
friendly_name: mozregression aggregates\ndescription:\n Aggregated metrics of mozregression usage\nlabels:\n incremental: true\n public_json: true\n public_bigquery: true\n review_bugs:\n - 1691105\nowners:\n - wlachance@mozilla.com\nbigquery:\n time_partitioning:\n type: day\n field: date\n require_partition_filter: true\n expiration_days: null\n clustering:\n fields:\n - app_used\n - os\n
"},{"location":"cookbooks/creating_a_derived_dataset/#fill-out-the-query","title":"Fill out the query","text":"Now that we've filled out the metadata, we can look into creating a query. In many ways, this is similar to creating a SQL query to run on BigQuery in other contexts (e.g. on sql.telemetry.mozilla.org or the BigQuery console)-- the key difference is that we use a @submission_date
parameter so that the query can be run on a day's worth of data to update the underlying table incrementally.
Test your query and add it to the query.sql
file.
In our example, the query is tested in sql.telemetry.mozilla.org
, and the query.sql
file looks like this:
SELECT\n DATE(submission_timestamp) AS date,\n client_info.app_display_version AS mozregression_version,\n metrics.string.usage_variant AS mozregression_variant,\n metrics.string.usage_app AS app_used,\n normalized_os AS os,\n mozfun.norm.truncate_version(normalized_os_version, \"minor\") AS os_version,\n count(DISTINCT(client_info.client_id)) AS distinct_clients,\n count(*) AS total_uses\nFROM\n `moz-fx-data-shared-prod`.org_mozilla_mozregression.usage\nWHERE\n DATE(submission_timestamp) = @submission_date\n AND client_info.app_display_version NOT LIKE '%.dev%'\nGROUP BY\n date,\n mozregression_version,\n mozregression_variant,\n app_used,\n os,\n os_version;\n
We use the truncate_version
UDF to omit the patch level for MacOS and Linux, which should both reduce the size of the dataset as well as make it more difficult to identify individual clients in an aggregated dataset.
We also have a short clause (client_info.app_display_version NOT LIKE '%.dev%'
) to omit developer versions from the aggregates: this makes sure we're not including people developing or testing mozregression itself in our results.
"},{"location":"cookbooks/creating_a_derived_dataset/#formatting-and-validating-the-query","title":"Formatting and validating the query","text":"Now that we've written our query, we can format it and validate it. Once that's done, we run:
./bqetl query validate <dataset>.<table>\n
For our example: ./bqetl query validate org_mozilla_mozregression_derived.mozregression_aggregates_v1\n
If there are no problems, you should see no output."},{"location":"cookbooks/creating_a_derived_dataset/#creating-the-table-schema","title":"Creating the table schema","text":"Use bqetl to set up the schema that will be used to create the table.
Review the schema.YAML generated as an output of the following command, and make sure all data types are set correctly and according to the data expected from the query.
./bqetl query schema update <dataset>.<table>`\n
For our example:
./bqetl query schema update org_mozilla_mozregression_derived.mozregression_aggregates_v1\n
"},{"location":"cookbooks/creating_a_derived_dataset/#creating-a-dag","title":"Creating a DAG","text":"BigQuery-ETL has some facilities in it to automatically add your query to telemetry-airflow (our instance of Airflow).
Before scheduling your query, you'll need to find an Airflow DAG to run it off of. In some cases, one may already exist that makes sense to use for your dataset -- look in dags.yaml
at the root or run ./bqetl dag info
. In this particular case, there's no DAG that really makes sense -- so we'll create a new one:
./bqetl dag create <dag_name> --schedule-interval \"0 4 * * *\" --owner <email_for_notifications> --description \"Add a clear description of the DAG here\" --start-date <YYYY-MM-DD> --tag impact/<tier>\n
For our example, the starting date is 2020-06-01
and we use a schedule interval of 0 4 \\* \\* \\*
(4am UTC daily) instead of \"daily\" (12am UTC daily) to make sure this isn't competing for slots with desktop and mobile product ETL.
The --tag impact/tier3
parameter specifies that this DAG is considered \"tier 3\". For a list of valid tags and their descriptions see Airflow Tags.
./bqetl dag create bqetl_internal_tooling --schedule-interval \"0 4 * * *\" --owner wlachance@mozilla.com --description \"This DAG schedules queries for populating queries related to Mozilla's internal developer tooling (e.g. mozregression).\" --start-date 2020-06-01 --tag impact/tier_3\n
"},{"location":"cookbooks/creating_a_derived_dataset/#scheduling-your-query","title":"Scheduling your query","text":"Queries are automatically scheduled during creation in the DAG set using the option --dag
, or in the default DAG bqetl_default
when this option is not used.
If the query was created with --no-schedule
, it is possible to manually schedule the query via the bqetl
tool:
./bqetl query schedule <dataset>.<table> --dag <dag_name> --task-name <task_name>\n
Here is the command for our example. Notice the name of the table as created with the suffix _v1.
./bqetl query schedule org_mozilla_mozregression_derived.mozregression_aggregates_v1 --dag bqetl_internal_tooling --task-name mozregression_aggregates__v1\n
Note that we are scheduling the generation of the underlying table which is org_mozilla_mozregression_derived.mozregression_aggregates_v1
rather than the view.
"},{"location":"cookbooks/creating_a_derived_dataset/#get-data-review","title":"Get Data Review","text":"This is for public datasets only! You can skip this step if you're only creating a dataset for Mozilla-internal use.
Before a dataset can be made public, it needs to go through data review according to our data publishing process. This means filing a bug, answering a few questions, and then finding a data steward to review your proposal.
The dataset we're using in this example is very simple and straightforward and does not have any particularly sensitive data, so the data review is very simple. You can see the full details in bug 1691105.
"},{"location":"cookbooks/creating_a_derived_dataset/#create-a-pull-request","title":"Create a Pull Request","text":"Now is a good time to create a pull request with your changes to GitHub. This is the usual git workflow:
git checkout -b <new_branch_name>\ngit add dags.yaml dags/<dag_name>.py sql/moz-fx-data-shared-prod/telemetry/<view> sql/moz-fx-data-shared-prod/<dataset>/<table>\ngit commit\ngit push origin <new_branch_name>\n
And next is the workflow for our specific example:
git checkout -b mozregression-aggregates\ngit add dags.yaml dags/bqetl_internal_tooling.py sql/moz-fx-data-shared-prod/org_mozilla_mozregression/mozregression_aggregates sql/moz-fx-data-shared-prod/org_mozilla_mozregression_derived/mozregression_aggregates_v1\ngit commit\ngit push origin mozregression-aggregates\n
Then create your pull request, either from the GitHub web interface or the command line, per your preference.
Note At this point, the CI is expected to fail because the schema does not exist yet in BigQuery. This will be handled in the next step.
This example assumes that origin
points to your fork. Adjust the last push invocation appropriately if you have a different remote set.
Speaking of forks, note that if you're making this pull request from a fork, many jobs will currently fail due to lack of credentials. In fact, even if you're pushing to the origin, you'll get failures because the table is not yet created. That brings us to the next step, but before going further it's generally best to get someone to review your work: at this point we have more than enough for people to provide good feedback on.
"},{"location":"cookbooks/creating_a_derived_dataset/#creating-an-initial-table","title":"Creating an initial table","text":"Once the PR has been approved, deploy the schema to bqetl using this command:
./bqetl query schema deploy <schema>.<table>\n
For our example:
./bqetl query schema deploy org_mozilla_mozregression_derived.mozregression_aggregates_v1\n
"},{"location":"cookbooks/creating_a_derived_dataset/#backfilling-the-dataset","title":"Backfilling the dataset","text":"It is recommended to use the bqetl backfill command in order to load the data in your new table, and set specific dates for large sets of data, as well as following the recommended practices.
bqetl query backfill <dataset>.<table> --project_id=moz-fx-data-shared-prod -s <YYYY-MM-DD> -e <YYYY-MM-DD> -n 0\n
For our example:
./bqetl query backfill org_mozilla_mozregression_derived.mozregression_aggregates_v1 --s 2020-04-01 --e 2021-02-01\n
Note. Alternatively, you can trigger the Airflow DAG to backfill the data. In this case, it is recommended to talk to someone in in Data Engineering or Data SRE to trigger the DAG.
"},{"location":"cookbooks/creating_a_derived_dataset/#completing-the-pull-request","title":"Completing the Pull Request","text":"At this point, the table exists in Bigquery so you are able to: - Find and re-run the CI of your PR and make sure that all tests pass - Merge your PR.
"},{"location":"cookbooks/testing/","title":"How to Run Tests","text":"This repository uses pytest
:
# create a venv\npython3.10 -m venv venv/\n\n# install pip-tools for managing dependencies\n./venv/bin/pip install pip-tools -c requirements.in\n\n# install python dependencies with pip-sync (provided by pip-tools)\n./venv/bin/pip-sync --pip-args=--no-deps requirements.txt\n\n# run pytest with all linters and 8 workers in parallel\n./venv/bin/pytest --black --flake8 --isort --mypy-ignore-missing-imports --pydocstyle -n 8\n\n# use -k to selectively run a set of tests that matches the expression `udf`\n./venv/bin/pytest -k udf\n\n# narrow down testpaths for quicker turnaround when selecting a single test\n./venv/bin/pytest -o \"testpaths=tests/sql\" -k mobile_search_aggregates_v1\n\n# run integration tests with 4 workers in parallel\ngcloud auth application-default login # or set GOOGLE_APPLICATION_CREDENTIALS\nexport GOOGLE_PROJECT_ID=bigquery-etl-integration-test\ngcloud config set project $GOOGLE_PROJECT_ID\n./venv/bin/pytest -m integration -n 4\n
To provide authentication credentials for the Google Cloud API the GOOGLE_APPLICATION_CREDENTIALS
environment variable must be set to the file path of the JSON file that contains the service account key. See Mozilla BigQuery API Access instructions to request credentials if you don't already have them.
"},{"location":"cookbooks/testing/#how-to-configure-a-udf-test","title":"How to Configure a UDF Test","text":"Include a comment like -- Tests
followed by one or more query statements after the UDF in the SQL file where it is defined. Each statement in a SQL file that defines a UDF that does not define a temporary function is collected as a test and executed independently of other tests in the file.
Each test must use the UDF and throw an error to fail. Assert functions defined in sql/mozfun/assert/
may be used to evaluate outputs. Tests must not use any query parameters and should not reference any tables. Each test that is expected to fail must be preceded by a comment like #xfail
, similar to a SQL dialect prefix in the BigQuery Cloud Console.
For example:
CREATE TEMP FUNCTION udf_example(option INT64) AS (\n CASE\n WHEN option > 0 then TRUE\n WHEN option = 0 then FALSE\n ELSE ERROR(\"invalid option\")\n END\n);\n-- Tests\nSELECT\n mozfun.assert.true(udf_example(1)),\n mozfun.assert.false(udf_example(0));\n#xfail\nSELECT\n udf_example(-1);\n#xfail\nSELECT\n udf_example(NULL);\n
"},{"location":"cookbooks/testing/#how-to-configure-a-generated-test","title":"How to Configure a Generated Test","text":"Queries are tested by running the query.sql
with test-input tables and comparing the result to an expected table. 1. Make a directory for test resources named tests/sql/{project}/{dataset}/{table}/{test_name}/
, e.g. tests/sql/moz-fx-data-shared-prod/telemetry_derived/clients_last_seen_raw_v1/test_single_day
- table
must match a directory named like {dataset}/{table}
, e.g. telemetry_derived/clients_last_seen_v1
- test_name
should start with test_
, e.g. test_single_day
- If test_name
is test_init
or test_script
, then the query will run init.sql
or script.sql
respectively; otherwise, the test will run query.sql
1. Add .yaml
files for input tables, e.g. clients_daily_v6.yaml
- Include the dataset prefix if it's set in the tested query, e.g. analysis.clients_last_seen_v1.yaml
- Include the project prefix if it's set in the tested query, e.g. moz-fx-other-data.new_dataset.table_1.yaml
- This will result in the dataset prefix being removed from the query, e.g. query = query.replace(\"analysis.clients_last_seen_v1\", \"clients_last_seen_v1\")
1. Add .sql
files for input view queries, e.g. main_summary_v4.sql
- Don't include a CREATE ... AS
clause - Fully qualify table names as `{project}.{dataset}.table`
- Include the dataset prefix if it's set in the tested query, e.g. telemetry.main_summary_v4.sql
- This will result in the dataset prefix being removed from the query, e.g. query = query.replace(\"telemetry.main_summary_v4\", \"main_summary_v4\")
1. Add expect.yaml
to validate the result - DATE
and DATETIME
type columns in the result are coerced to strings using .isoformat()
- Columns named generated_time
are removed from the result before comparing to expect
because they should not be static - NULL
values should be omitted in expect.yaml
. If a column is expected to be NULL
don't add it to expect.yaml
. (Be careful with spreading previous rows (-<<: *base
) here) 1. Optionally add .schema.json
files for input table schemas to the table directory, e.g. tests/sql/moz-fx-data-shared-prod/telemetry_derived/clients_last_seen_raw_v1/clients_daily_v6.schema.json
. These tables will be available for every test in the suite. The schema.json
file need to match the table name in the query.sql
file. If it has project and dataset listed there, the schema file also needs project and dataset. 1. Optionally add query_params.yaml
to define query parameters - query_params
must be a list
"},{"location":"cookbooks/testing/#init-tests","title":"Init Tests","text":"Tests of init.sql
statements are supported, similarly to other generated tests. Simply name the test test_init
. The other guidelines still apply.
Note: Init SQL statements must contain a create statement with the dataset and table name, like so:
CREATE OR REPLACE TABLE\n dataset.table_v1\nAS\n...\n
"},{"location":"cookbooks/testing/#additional-guidelines-and-options","title":"Additional Guidelines and Options","text":" - If the destination table is also an input table then
generated_time
should be a required DATETIME
field to ensure minimal validation - Input table files
- All of the formats supported by
bq load
are supported yaml
and json
format are supported and must contain an array of rows which are converted in memory to ndjson
before loading - Preferred formats are
yaml
for readability or ndjson
for compatiblity with bq load
expect.yaml
- File extensions
yaml
, json
and ndjson
are supported - Preferred formats are
yaml
for readability or ndjson
for compatiblity with bq load
- Schema files
- Setting the description of a top level field to
time_partitioning_field
will cause the table to use it for time partitioning - File extensions
yaml
, json
and ndjson
are supported - Preferred formats are
yaml
for readability or json
for compatiblity with bq load
- Query parameters
- Scalar query params should be defined as a dict with keys
name
, type
or type_
, and value
query_parameters.yaml
may be used instead of query_params.yaml
, but they are mutually exclusive - File extensions
yaml
, json
and ndjson
are supported - Preferred format is
yaml
for readability
"},{"location":"cookbooks/testing/#how-to-run-circleci-locally","title":"How to Run CircleCI Locally","text":" - Install the CircleCI Local CI
- Download GCP service account keys
- Integration tests will only successfully run with service account keys that belong to the
circleci
service account in the biguqery-etl-integration-test
project
- Run
circleci build
and set required environment variables GOOGLE_PROJECT_ID
and GCLOUD_SERVICE_KEY
:
gcloud_service_key=`cat /path/to/key_file.json`\n\n# to run a specific job, e.g. integration:\ncircleci build --job integration \\\n --env GOOGLE_PROJECT_ID=bigquery-etl-integration-test \\\n --env GCLOUD_SERVICE_KEY=$gcloud_service_key\n\n# to run all jobs\ncircleci build \\\n --env GOOGLE_PROJECT_ID=bigquery-etl-integration-test \\\n --env GCLOUD_SERVICE_KEY=$gcloud_service_key\n
"},{"location":"mozdata/accounts_backend/","title":"Accounts backend","text":"Views for accessing Mozilla Accounts backend derived data
Source Directory
"},{"location":"mozdata/accounts_backend/#accounts","title":"accounts","text":"Accounts table from production FxA database
accounts_backend.accounts
An authorized view on top of the accounts_backend_external.accounts_v1
table that only includes non-sensitive fields. Some fields in this table are converted to a more user-friendly, BigQuery-native format: - uid
is converted from bytes to a hex string - boolean integer columns are converted to BOOL - timestamp columns are converted to TIMESTAMP
See https://mozilla.github.io/ecosystem-platform/reference/database-structure#database-fxa
Schema Column Description Type Nullable uid Account ID in hexadecimal format. FxA stores this as bytes, for purposes of logging or integration with other systems we convert it to a hex string. String Yes emailVerified Boolean Yes verifierVersion Integer Yes verifierSetAt Timestamp Yes createdAt Timestamp Yes locale String Yes lockedAt Timestamp Yes profileChangedAt Timestamp Yes keysChangedAt Timestamp Yes ecosystemAnonId String Yes disabledAt Timestamp Yes metricsOptOutAt Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_external accounts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#accounts_events","title":"accounts_events","text":"Historical Pings for accounts-backend/accounts-events
accounts_backend.accounts_events
A historical view of pings sent for the accounts-backend/accounts-events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_stable accounts_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#baseline","title":"baseline","text":"Historical Pings for accounts-backend/baseline
accounts_backend.baseline
A historical view of pings sent for the accounts-backend/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
accounts_backend.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
accounts_backend.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
accounts_backend.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#deletion_request","title":"deletion_request","text":"Historical Pings for accounts-backend/deletion-request
accounts_backend.deletion_request
A historical view of pings sent for the accounts-backend/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#events","title":"events","text":"Historical Pings for accounts-backend/events
accounts_backend.events
A historical view of pings sent for the accounts-backend/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#events_unnested","title":"events_unnested","text":"Events Unnested
accounts_backend.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#metrics","title":"metrics","text":"Historical Pings for accounts-backend/metrics
accounts_backend.metrics
A historical view of pings sent for the accounts-backend/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
accounts_backend.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_backend/#nonprod_accounts","title":"nonprod_accounts","text":"Accounts table from FxA database in stage environment
accounts_backend.nonprod_accounts
An authorized view on top of the accounts_backend_external.nonprod_accounts_v1
table that only includes non-sensitive fields. Some fields in this table are converted to a more user-friendly, BigQuery-native format: - uid
is converted from bytes to a hex string - boolean integer columns are converted to BOOL - timestamp columns are converted to TIMESTAMP
See https://mozilla.github.io/ecosystem-platform/reference/database-structure#database-fxa
Schema Column Description Type Nullable uid Account ID in hexadecimal format. FxA stores this as bytes, for purposes of logging or integration with other systems we convert it to a hex string. String Yes emailVerified Boolean Yes verifierVersion Integer Yes verifierSetAt Timestamp Yes createdAt Timestamp Yes locale String Yes lockedAt Timestamp Yes profileChangedAt Timestamp Yes keysChangedAt Timestamp Yes ecosystemAnonId String Yes disabledAt Timestamp Yes metricsOptOutAt Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_external nonprod_accounts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_frontend/","title":"accounts-frontend","text":"User-facing views related to document namespace accounts-frontend; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/accounts-frontend
Source Directory
"},{"location":"mozdata/accounts_frontend/#accounts_events","title":"accounts_events","text":"Historical Pings for accounts-frontend/accounts-events
accounts_frontend.accounts_events
A historical view of pings sent for the accounts-frontend/accounts-events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_frontend_stable accounts_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_frontend/#deletion_request","title":"deletion_request","text":"Historical Pings for accounts-frontend/deletion-request
accounts_frontend.deletion_request
A historical view of pings sent for the accounts-frontend/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_frontend_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_frontend/#events","title":"events","text":"Historical Pings for accounts-frontend/events
accounts_frontend.events
A historical view of pings sent for the accounts-frontend/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_frontend_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/accounts_frontend/#events_unnested","title":"events_unnested","text":"Events Unnested
accounts_frontend.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_frontend events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/","title":"Activity Stream","text":"User-facing views related to document namespace activity-stream; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/activity-stream
Source Directory
"},{"location":"mozdata/activity_stream/#events","title":"events","text":"Historical Pings for activity-stream/events
activity_stream.events
A historical view of pings sent for the activity-stream/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable action_position A zero based integer indicating the position of this event Integer Yes additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes locale String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes page String Yes profile_creation_date Integer Yes region String Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes session_id A UUID representing an Activity Stream session. This can be used to do table joins between `sessions` and `events` in Activity Stream. Note that `n/a` denotes that the session is not applicable in the context. String Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes source String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes user_prefs An encoded integer representing user's preferences of Activity Stream Integer Yes value A string that describes the context about this event String Yes version String Yes browser_session_id A mirror of the browser sessionId, as defined in https://github.com/mozilla-services/mozilla-pipeline-schemas/blob/main/schemas/telemetry/main/main.4.schema.json String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#impression_stats","title":"impression_stats","text":"Historical Pings for activity-stream/impression-stats
activity_stream.impression_stats
A historical view of pings sent for the activity-stream/impression-stats
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_stable impression_stats_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#impression_stats_by_experiment","title":"impression_stats_by_experiment","text":"Impression Stats By Experiment
activity_stream.impression_stats_by_experiment
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_bi impression_stats_by_experiment_v1 moz-fx-data-shared-prod pocket spoc_tile_ids Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#impression_stats_flat","title":"impression_stats_flat","text":"Impression Stats Flat
activity_stream.impression_stats_flat
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_bi impression_stats_flat_v1 moz-fx-data-shared-prod pocket spoc_tile_ids Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#on_save_recs","title":"on_save_recs","text":"Historical Pings for activity-stream/on-save-recs
activity_stream.on_save_recs
A historical view of pings sent for the activity-stream/on-save-recs
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No impression_id A UUID representing this user. Note that it's not client_id, nor can it be used to link to a client_id String Yes locale String Yes metadata Record Yes model An identifier for the machine learning model used to generate the recommendations String Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_stable on_save_recs_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#pocket_button","title":"pocket_button","text":"Historical Pings for activity-stream/pocket-button
activity_stream.pocket_button
A historical view of pings sent for the activity-stream/pocket-button
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No impression_id A UUID representing this user. Note that it's not client_id, nor can it be used to link to a client_id String Yes locale String Yes metadata Record Yes model (In the case of actions related to on-save recs) An identifier for the machine learning model used to generate the recommendations. String Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes pocket_logged_in_status A boolean for whether the user was logged-in to the Pocket Firefox integration when they performed the indicated action(s). True = logged in. Boolean Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_stable pocket_button_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#sessions","title":"sessions","text":"Historical Pings for activity-stream/sessions
activity_stream.sessions
A historical view of pings sent for the activity-stream/sessions
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes locale String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes page String Yes perf Record Yes profile_creation_date Profile age in days since Unix epoch Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes session_duration The duration of this session in milliseconds. The session begins at `perf.visibility_event_rcvd_ts` and ends when the page is navigated away Integer Yes session_id A UUID representing an Activity Stream session. This can be used to do table joins between `sessions` and `events` in Activity Stream. Note that `n/a` denotes that the session is not applicable in the context. String Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes user_prefs An encoded integer representing user's preferences of Activity Stream Integer Yes version String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_stable sessions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#spoc_fills","title":"spoc_fills","text":"Historical Pings for activity-stream/spoc-fills
activity_stream.spoc_fills
A historical view of pings sent for the activity-stream/spoc-fills
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes document_id The document ID specified in the URI when the client sent this message String Yes impression_id A UUID representing this user. Note that it's not client_id, nor can it be used to link to a client_id String Yes locale String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes spoc_fills Record No submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod activity_stream_stable spoc_fills_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/activity_stream/#tile_id_types","title":"tile_id_types","text":"Tile Id Types
activity_stream.tile_id_types
Please provide a description for the query
Schema Column Description Type Nullable tile_id Integer Yes type String Yes Referenced Tables Project Dataset Table pocket-tiles pocket_tiles_data tile_id_types Source Directory | View Definition | Metadata File
"},{"location":"mozdata/adjust/","title":"Adjust","text":"Views for accessing Adjust derived data
Source Directory
"},{"location":"mozdata/adjust/#adjust_cohort","title":"adjust_cohort","text":"Adjust Cohort
adjust.adjust_cohort
Please provide a description for the query
Schema Column Description Type Nullable cohort_start_month first day of the month when cohort starts being recorded Date Yes period_length length of period - in this table period is set to month String Yes period period number - number of period(months) between cohort start month and date data is recorded Integer Yes app application name ex. Firefox iOS and Android, pocket String Yes network String Yes network_token String Yes country String Yes os String Yes cohort_size Integer Yes retained_users Integer Yes retention_rate Float Yes time_spent_per_user Integer Yes time_spent_per_session Integer Yes time_spent Integer Yes sessions_per_user Float Yes sessions Integer Yes date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod adjust_derived adjust_cohort_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/adjust/#adjust_kpi_deliverables","title":"adjust_kpi_deliverables","text":"Adjust Kpi Deliverables
adjust.adjust_kpi_deliverables
Please provide a description for the query
Schema Column Description Type Nullable date date of the report and field that the table is partitioned by Date Yes app name of the application such as Firefox iOS and Android, pocket String Yes network String Yes network_token String Yes campaign String Yes campaign_token String Yes adgroup String Yes adgroup_token String Yes creative String Yes creative_token String Yes country String Yes os String Yes device String Yes clicks Integer Yes installs Integer Yes limit_ad_tracking_install_rate Float Yes click_conversion_rate Float Yes impression_conversion_rate Float Yes sessions Integer Yes daus Integer Yes waus Integer Yes maus Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod adjust_derived adjust_deliverables_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/ads/","title":"Ads","text":"Data related to the work of Mozilla Ads
Source Directory
"},{"location":"mozdata/ads/#nt_visits_to_sessions_conversion_factors_daily","title":"nt_visits_to_sessions_conversion_factors_daily","text":"Newtab Visits to Sessions Conversion Factors Daily
ads.nt_visits_to_sessions_conversion_factors_daily
Daily conversion factors allowing the translation of (Glean) Newtab visits to (PingCentre) Activity Stream sessions. This calculation only considers Desktop--Mobile's not in PingCentre.
Schema Column Description Type Nullable submission_date Data submission date Date Yes country Two-letter code corresponding to country String Yes newtab_clients Count of clients available in newtab for submission_date Integer Yes as_clients Count of clients available in activity-stream for submission_date Integer Yes newtab_visits Count of visits available in newtab for submission_date Integer Yes as_sessions Count of sessions available in activity-stream for submission_date Integer Yes conversion_factor Daily conversion factor allowing the translation of newtab visits to activity-stream sessions (as_sessions / newtab_visits) Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod ads_derived nt_visits_to_sessions_conversion_factors_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/amo_dev/","title":"AMO Stats Dev","text":"Derived data used to power the dev instance of the AMO stats dashboards
Source Directory
"},{"location":"mozdata/amo_dev/#amo_stats_dau","title":"amo_stats_dau","text":"Amo Stats Dau
amo_dev.amo_stats_dau
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes addon_id String Yes dau Integer Yes dau_by_addon_version Record No dau_by_app_os Record No dau_by_app_version Record No dau_by_fenix_build Record No dau_by_country Record No dau_by_locale Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod amo_dev amo_stats_dau_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/amo_dev/#amo_stats_dau_v2","title":"amo_stats_dau_v2","text":"AMO Stats DAU dev/stage
amo_dev.amo_stats_dau_v2
Reduced stats table for dev and stage versions of the AMO service.
- Schedule: daily
- Owners:
- kik@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes addon_id String Yes dau Integer Yes dau_by_addon_version Record No dau_by_app_version Record No dau_by_fenix_build Record No dau_by_locale Record No dau_by_country Record No dau_by_app_os Record No Source Directory | Metadata File
"},{"location":"mozdata/amo_dev/#amo_stats_installs","title":"amo_stats_installs","text":"Amo Stats Installs
amo_dev.amo_stats_installs
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes hashed_addon_id String Yes total_downloads Integer Yes downloads_per_campaign Record No downloads_per_content Record No downloads_per_source Record No downloads_per_medium Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod amo_dev amo_stats_installs_v3 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/amo_dev/#amo_stats_installs_v3","title":"amo_stats_installs_v3","text":"AMO Installs dev/stage
amo_dev.amo_stats_installs_v3
Reduced daily installs table for dev and stage versions of the AMO service.
- Schedule: daily
- Owners:
- kik@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes hashed_addon_id String Yes total_downloads Integer Yes downloads_per_source Record No downloads_per_content Record No downloads_per_medium Record No downloads_per_campaign Record No Source Directory | Metadata File
"},{"location":"mozdata/amo_prod/","title":"AMO Stats Prod","text":"Derived data used to power the AMO stats dashboards
Source Directory
"},{"location":"mozdata/amo_prod/#amo_stats_dau","title":"amo_stats_dau","text":"Amo Stats Dau
amo_prod.amo_stats_dau
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes addon_id String Yes dau Integer Yes dau_by_addon_version Record No dau_by_app_os Record No dau_by_app_version Record No dau_by_fenix_build Record No dau_by_country Record No dau_by_locale Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod amo_prod amo_stats_dau_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/amo_prod/#amo_stats_dau_v2","title":"amo_stats_dau_v2","text":"AMO Stats DAU
amo_prod.amo_stats_dau_v2
Daily user statistics to power addons.mozilla.org stats pages. See bug 1572873.
Each row in this table represents a particular addon on a particular day and provides all the information needed to populate the various \"Daily Users\" plots for the AMO stats dashboard.
- Schedule: daily
- Owners:
- kik@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes addon_id String Yes dau Integer Yes dau_by_addon_version Record No dau_by_app_version Record No dau_by_fenix_build Record No dau_by_locale Record No dau_by_country Record No dau_by_app_os Record No Source Directory | Metadata File
"},{"location":"mozdata/amo_prod/#amo_stats_installs","title":"amo_stats_installs","text":"Amo Stats Installs
amo_prod.amo_stats_installs
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes hashed_addon_id String Yes total_downloads Integer Yes downloads_per_campaign Record No downloads_per_content Record No downloads_per_source Record No downloads_per_medium Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod amo_prod amo_stats_installs_v3 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/amo_prod/#amo_stats_installs_v3","title":"amo_stats_installs_v3","text":"AMO Stats DAU
amo_prod.amo_stats_installs_v3
Daily install statistics to power addons.mozilla.org stats pages. See bug 1654330. Note that this table uses a hashed_addon_id defined as TO_HEX(SHA256(addon_id))
because the underlying event pings have limitations on length of properties attached to events and addon_id values are sometimes too long. The AMO stats application looks up records in this table based on the hashed_addon_id.
- Schedule: daily
- Owners:
- kik@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes hashed_addon_id String Yes total_downloads Integer Yes downloads_per_source Record No downloads_per_content Record No downloads_per_medium Record No downloads_per_campaign Record No Source Directory | Metadata File
"},{"location":"mozdata/amo_prod/#desktop_addons_by_client_v1","title":"desktop_addons_by_client_v1","text":"Desktop addons by client
amo_prod.desktop_addons_by_client_v1
Clients_daily-like table that records only the dimensions and addon info necessary to power daily the amo_stats_dau_v2 query.
- Schedule: daily
- Owners:
- kik@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes app_version String Yes country String Yes locale String Yes app_os String Yes addons Record No Source Directory | Metadata File
"},{"location":"mozdata/amo_prod/#fenix_addons_by_client_v1","title":"fenix_addons_by_client_v1","text":"Fenix addons by client
amo_prod.fenix_addons_by_client_v1
Clients_daily-like table on top of the various Firefox for Android channels that records only the dimensions and addon info necessary to power the daily amo_stats_dau_v2 query.
- Schedule: daily
- Owners:
- kik@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes app_version String Yes country String Yes locale String Yes app_os String Yes addons Record No Source Directory | Metadata File
"},{"location":"mozdata/analysis/","title":"Analysis","text":"User-generated tables for analysis
Source Directory
"},{"location":"mozdata/analysis/#bqetl_default_task_v1","title":"bqetl_default_task_v1","text":"Default Task for DAG bqetl_default
analysis.bqetl_default_task_v1
Placeholder task to generate the default DAG. See https://github.com/mozilla/bigquery-etl/issues/3650. This query returns no rows and is just used to ensure that the bqetl_default DAG has at least one task, otherwise the DAG would be invalid.
Schema Column Description Type Nullable f0_ Integer Yes Source Directory | Metadata File
"},{"location":"mozdata/app_store/","title":"App Store","text":"Views on the App Store data pulled from Fivetran.
Source Directory
"},{"location":"mozdata/app_store/#firefox_app_store_territory_source_type_report","title":"firefox_app_store_territory_source_type_report","text":"Firefox App Store Territory Source Type Report
app_store.firefox_app_store_territory_source_type_report
Please provide a description for the query
Schema Column Description Type Nullable app_id Integer Yes date Timestamp Yes source_type String Yes territory String Yes _fivetran_synced Timestamp Yes impressions Integer Yes impressions_unique_device Integer Yes meets_threshold Boolean Yes page_views Integer Yes page_views_unique_device Integer Yes date_pst Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod app_store_external firefox_app_store_territory_source_type_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/app_store/#firefox_downloads_territory_source_type_report","title":"firefox_downloads_territory_source_type_report","text":"Firefox Downloads Territory Source Type Report
app_store.firefox_downloads_territory_source_type_report
Please provide a description for the query
Schema Column Description Type Nullable app_id Integer Yes date Timestamp Yes source_type String Yes territory String Yes _fivetran_synced Timestamp Yes first_time_downloads Integer Yes meets_threshold Boolean Yes redownloads Integer Yes total_downloads Integer Yes date_pst Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod app_store_external firefox_downloads_territory_source_type_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/app_store/#firefox_usage_territory_source_type_report","title":"firefox_usage_territory_source_type_report","text":"Firefox Usage Territory Source Type Report
app_store.firefox_usage_territory_source_type_report
Please provide a description for the query
Schema Column Description Type Nullable app_id Integer Yes date Timestamp Yes source_type String Yes territory String Yes _fivetran_synced Timestamp Yes active_devices Integer Yes active_devices_last_30_days Integer Yes deletions Integer Yes installations Integer Yes meets_threshold Boolean Yes sessions Integer Yes date_pst Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod app_store_external firefox_usage_territory_source_type_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/apple_ads/","title":"Apple Ads","text":"User facing views for Apple Ads data ingested via Fivetran.
Source Directory
"},{"location":"mozdata/apple_ads/#ad_group_report","title":"ad_group_report","text":"Ad Group Report
apple_ads.ad_group_report
Please provide a description for the query
Schema Column Description Type Nullable date_day Date of the report. Date Yes organization_id Organization ID associated with this record. Integer Yes organization_name Organization name associated with this record. String Yes campaign_id Campaign ID associated with this record. Integer Yes campaign_name Campaign name associated with this record. String Yes ad_group_id Ad group ID associated with this record. Integer Yes ad_group_name Ad group name associated with this record. String Yes currency This currency value should match the respective organization's currency value. String Yes ad_group_status The status of the ad group associated with this record. String Yes start_at The start timestamp for this ad group. Timestamp Yes end_at The end timestamp for this ad group. Timestamp Yes taps Number of taps on ad group on given day. Integer Yes new_downloads App downloads from new users who have never before installed app of ad group in a given day. Integer Yes redownloads Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of ad group in a given day. Integer Yes total_downloads The sum of new_downloads and redownloads. Integer Yes impressions The number of impressions of ad group in a given day. Integer Yes spend The spend on ad group in the given day. Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod apple_ads_external ad_group_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/apple_ads/#campaign_report","title":"campaign_report","text":"Campaign Report
apple_ads.campaign_report
Please provide a description for the query
Schema Column Description Type Nullable date_day Date of the report. Date Yes organization_id Organization ID associated with this record. Integer Yes organization_name Organization name associated with this record. String Yes campaign_id Campaign ID associated with this record. Integer Yes campaign_name Campaign name associated with this record. String Yes currency This currency value should match the respective organization's currency value. String Yes campaign_status The status of the campaign associted with this record. String Yes start_at The start timestamp for this ad group. Timestamp Yes end_at The end timestamp for this ad group. Timestamp Yes taps Number of taps on ad group on given day. Integer Yes new_downloads App downloads from new users who have never before installed app of ad group in a given day. Integer Yes redownloads Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of ad group in a given day. Integer Yes total_downloads The sum of new_downloads and redownloads. Integer Yes impressions The number of impressions of ad group in a given day. Integer Yes spend The spend on ad group in the given day. Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod apple_ads_external campaign_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/apple_ads/#keyword_report","title":"keyword_report","text":"Keyword Report
apple_ads.keyword_report
Please provide a description for the query
Schema Column Description Type Nullable date_day Date of the report. Date Yes organization_id Organization ID associated with this record. Integer Yes organization_name Organization name associated with this record. String Yes campaign_id Campaign ID associated with this record. Integer Yes campaign_name Campaign name associated with this record. String Yes ad_group_id Ad group ID associated with this record. Integer Yes ad_group_name Ad group name associated with this record. String Yes keyword_id Creative set name associatd with this record. Integer Yes keyword_text Creative set ID associated with this record. String Yes match_type Controls how ads are matched to user searches; EXACT or BROAD. String Yes currency This currency value should match the respective organization's currency value. String Yes keyword_status The status of the keyword associated with this record. String Yes taps Number of taps on keyword on given day. Integer Yes new_downloads App downloads from new users who have never before installed app of keyword in a given day. Integer Yes redownloads Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of keyword in a given day. Integer Yes total_downloads The sum of new_downloads and redownloads. Integer Yes impressions The number of impressions of keyword in a given day. Integer Yes spend The spend on keyword in the given day. Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod apple_ads_external keyword_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/apple_ads/#organization_report","title":"organization_report","text":"Organization Report
apple_ads.organization_report
Please provide a description for the query
Schema Column Description Type Nullable date_day Date of the report. Date Yes organization_id Organization ID associated with this record. Integer Yes organization_name Organization name associated with this record. String Yes currency This currency value should match the respective organization's currency value. String Yes taps Number of taps on organization on given day. Integer Yes new_downloads App downloads from new users who have never before installed app of organization in a given day. Integer Yes redownloads Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of organization in a given day. Integer Yes total_downloads The sum of new_downloads and redownloads. Integer Yes impressions The number of impressions of organization in a given day. Integer Yes spend The spend on organization in the given day. Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod apple_ads_external organization_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/apple_ads/#search_term_report","title":"search_term_report","text":"Search Term Report
apple_ads.search_term_report
Please provide a description for the query
Schema Column Description Type Nullable date_day Date of the report. Date Yes organization_id Organization ID associated with this record. Integer Yes organization_name Organization name associated with this record. String Yes campaign_id Campaign ID associated with this record. Integer Yes campaign_name Campaign name associated with this record. String Yes ad_group_id Ad group ID associated with this record. Integer Yes ad_group_name Ad group name associated with this record. String Yes keyword_id Integer Yes keyword_text String Yes search_term_text Search term text. String Yes match_type Controls how ads are matched to user searches; EXACT or BROAD. String Yes currency This currency value should match the respective organization's currency value. String Yes taps Number of taps on organization on given day. Integer Yes new_downloads App downloads from new users who have never before installed app of organization in a given day. Integer Yes redownloads Number of user downloads where user deletes app and downloads the same app again following a tap on an ad on the App Store, or downloads the same app to an additional device of organization in a given day. Integer Yes total_downloads The sum of new_downloads and redownloads. Integer Yes impressions The number of impressions of organization in a given day. Integer Yes spend The spend on organization in the given day. Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod apple_ads_external search_term_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bedrock/","title":"bedrock","text":"User-facing views related to document namespace bedrock; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/bedrock
Source Directory
"},{"location":"mozdata/bedrock/#deletion_request","title":"deletion_request","text":"Historical Pings for bedrock/deletion-request
bedrock.deletion_request
A historical view of pings sent for the bedrock/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod bedrock_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bedrock/#events","title":"events","text":"Historical Pings for bedrock/events
bedrock.events
A historical view of pings sent for the bedrock/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod bedrock_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bedrock/#events_unnested","title":"events_unnested","text":"Events Unnested
bedrock.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod bedrock events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bedrock/#interaction","title":"interaction","text":"Historical Pings for bedrock/interaction
bedrock.interaction
A historical view of pings sent for the bedrock/interaction
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod bedrock_stable interaction_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bedrock/#non_interaction","title":"non_interaction","text":"Historical Pings for bedrock/non-interaction
bedrock.non_interaction
A historical view of pings sent for the bedrock/non-interaction
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod bedrock_stable non_interaction_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bedrock/#page_view","title":"page_view","text":"Historical Pings for bedrock/page-view
bedrock.page_view
A historical view of pings sent for the bedrock/page-view
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod bedrock_stable page_view_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bergamot/","title":"Bergamot","text":"Views on data from bergamot
Source Directory
"},{"location":"mozdata/bergamot/#custom","title":"custom","text":"App-specific view for Glean ping \"custom\"
bergamot.custom
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Bergamot Translator\" (org_mozilla_bergamot.custom).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot custom Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bergamot/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
bergamot.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Bergamot Translator\" (org_mozilla_bergamot.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bergamot/#events","title":"events","text":"App-specific view for Glean ping \"events\"
bergamot.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Bergamot Translator\" (org_mozilla_bergamot.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/bergamot/#events_unnested","title":"events_unnested","text":"Events Unnested
bergamot.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/blpadi/","title":"Blocklist ADI","text":"Historical data for Firefox active daily installations.
See https://wiki.mozilla.org/ADI
Source Directory
"},{"location":"mozdata/burnham/","title":"burnham","text":"User-facing views related to document namespace burnham; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/burnham
Source Directory
"},{"location":"mozdata/burnham/#baseline","title":"baseline","text":"Historical Pings for burnham/baseline
burnham.baseline
A historical view of pings sent for the burnham/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
burnham.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
burnham.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
burnham.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
burnham.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#deletion_request","title":"deletion_request","text":"Historical Pings for burnham/deletion-request
burnham.deletion_request
A historical view of pings sent for the burnham/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#discovery","title":"discovery","text":"Historical Pings for burnham/discovery
burnham.discovery
A historical view of pings sent for the burnham/discovery
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable discovery_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#events","title":"events","text":"Historical Pings for burnham/events
burnham.events
A historical view of pings sent for the burnham/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#events_unnested","title":"events_unnested","text":"Events Unnested
burnham.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#metrics","title":"metrics","text":"Historical Pings for burnham/metrics
burnham.metrics
A historical view of pings sent for the burnham/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
burnham.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
burnham.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#space_ship_ready","title":"space_ship_ready","text":"Historical Pings for burnham/space-ship-ready
burnham.space_ship_ready
A historical view of pings sent for the burnham/space-ship-ready
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable space_ship_ready_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/burnham/#starbase46","title":"starbase46","text":"Historical Pings for burnham/starbase46
burnham.starbase46
A historical view of pings sent for the burnham/starbase46
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod burnham_stable starbase46_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/","title":"contextual-services","text":"User-facing views related to document namespace contextual-services; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/contextual-services
Source Directory
"},{"location":"mozdata/contextual_services/#adm_forecasting","title":"adm_forecasting","text":"AdM Forecasting
contextual_services.adm_forecasting
Data for AdM forecasts: Sponsored Tiles and Suggest.
- Owners:
- skahmann@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived adm_forecasting_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#event_aggregates","title":"event_aggregates","text":"Contextual Services Event Aggregates
contextual_services.event_aggregates
Aggregated event and user counts for topsites and quicksuggest
- Owners:
- rburwei@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived event_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#event_aggregates_spons_tiles","title":"event_aggregates_spons_tiles","text":"Contextual Services Event Aggregates for Sponsored tiles
contextual_services.event_aggregates_spons_tiles
Aggregated event counts for sponsored tiles
- Owners:
- rburwei@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived event_aggregates_spons_tiles_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#event_aggregates_suggest","title":"event_aggregates_suggest","text":"Contextual Services Event Aggregates for Suggest
contextual_services.event_aggregates_suggest
Aggregated event counts for suggest
- Owners:
- rburwei@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived event_aggregates_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#quicksuggest_block","title":"quicksuggest_block","text":"Historical Pings for contextual-services/quicksuggest-block
contextual_services.quicksuggest_block
A historical view of pings sent for the contextual-services/quicksuggest-block
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_stable quicksuggest_block_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#quicksuggest_click","title":"quicksuggest_click","text":"Historical Pings for contextual-services/quicksuggest-click
contextual_services.quicksuggest_click
A historical view of pings sent for the contextual-services/quicksuggest-click
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_stable quicksuggest_click_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#quicksuggest_click_live","title":"quicksuggest_click_live","text":"Live Pings for contextual-services/quicksuggest-click
contextual_services.quicksuggest_click_live
A live view of pings sent for the contextual-services/quicksuggest-click
document type.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_live quicksuggest_click_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#quicksuggest_impression","title":"quicksuggest_impression","text":"Historical Pings for contextual-services/quicksuggest-impression
contextual_services.quicksuggest_impression
A historical view of pings sent for the contextual-services/quicksuggest-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_stable quicksuggest_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#quicksuggest_impression_live","title":"quicksuggest_impression_live","text":"Live Pings for contextual-services/quicksuggest-impression
contextual_services.quicksuggest_impression_live
A live view of pings sent for the contextual-services/quicksuggest-impression
document type, but with search terms fields excluded.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_live quicksuggest_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#request_payload_suggest","title":"request_payload_suggest","text":"Request Payload Suggest
contextual_services.request_payload_suggest
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived request_payload_suggest_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#request_payload_tiles","title":"request_payload_tiles","text":"Request Payload Tiles
contextual_services.request_payload_tiles
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived request_payload_tiles_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#suggest_revenue_levers_daily","title":"suggest_revenue_levers_daily","text":"Suggest Revenue Levers Daily
contextual_services.suggest_revenue_levers_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_derived suggest_revenue_levers_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#topsites_click","title":"topsites_click","text":"Historical Pings for contextual-services/topsites-click
contextual_services.topsites_click
A historical view of pings sent for the contextual-services/topsites-click
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_stable topsites_click_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#topsites_click_live","title":"topsites_click_live","text":"Live Pings for contextual-services/topsites-click
contextual_services.topsites_click_live
A live view of pings sent for the contextual-services/topsites-click
document type.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_live topsites_click_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#topsites_impression","title":"topsites_impression","text":"Historical Pings for contextual-services/topsites-impression
contextual_services.topsites_impression
A historical view of pings sent for the contextual-services/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/contextual_services/#topsites_impression_live","title":"topsites_impression_live","text":"Live Pings for contextual-services/topsites-impression
contextual_services.topsites_impression_live
A live view of pings sent for the contextual-services/topsites-impression
document type.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod contextual_services_live topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/coverage/","title":"coverage","text":"User-facing views related to document namespace coverage; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/coverage
Source Directory
"},{"location":"mozdata/coverage/#coverage","title":"coverage","text":"Historical Pings for coverage/coverage
coverage.coverage
A historical view of pings sent for the coverage/coverage
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes app_update_channel String Yes app_version String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes os_name String Yes os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes telemetry_enabled Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod coverage_stable coverage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/debug_ping_view/","title":"debug-ping-view","text":"User-facing views related to document namespace debug-ping-view; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/debug-ping-view
Source Directory
"},{"location":"mozdata/debug_ping_view/#deletion_request","title":"deletion_request","text":"Historical Pings for debug-ping-view/deletion-request
debug_ping_view.deletion_request
A historical view of pings sent for the debug-ping-view/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod debug_ping_view_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/debug_ping_view/#events","title":"events","text":"Historical Pings for debug-ping-view/events
debug_ping_view.events
A historical view of pings sent for the debug-ping-view/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod debug_ping_view_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/debug_ping_view/#events_unnested","title":"events_unnested","text":"Events Unnested
debug_ping_view.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod debug_ping_view events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/default_browser_agent/","title":"default-browser-agent","text":"User-facing views related to document namespace default-browser-agent; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/default-browser-agent
Source Directory
"},{"location":"mozdata/default_browser_agent/#default_browser","title":"default_browser","text":"Default Browser
default_browser_agent.default_browser
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod default_browser_agent_stable default_browser_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/edge_validator/","title":"edge-validator","text":"User-facing views related to document namespace edge-validator; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/edge-validator
Source Directory
"},{"location":"mozdata/edge_validator/#error_report","title":"error_report","text":"Historical Pings for edge-validator/error-report
edge_validator.error_report
A historical view of pings sent for the edge-validator/error-report
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes results Record No sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod edge_validator_stable error_report_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/eng_workflow/","title":"eng-workflow","text":"User-facing views related to document namespace eng-workflow; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/eng-workflow
Source Directory
"},{"location":"mozdata/eng_workflow/#bmobugs","title":"bmobugs","text":"Historical Pings for eng-workflow/bmobugs
eng_workflow.bmobugs
A historical view of pings sent for the eng-workflow/bmobugs
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes assigned_to Integer Yes blocked_by Integer No bug_id Integer Yes bug_severity String Yes bug_status String Yes component String Yes creation_ts String Yes delta_ts String Yes depends_on Integer No document_id The document ID specified in the URI when the client sent this message String Yes duplicate_of Integer Yes duplicates Integer No flags Record No groups String No keywords String No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes priority String Yes product String Yes qa_contact Integer Yes reporter Integer Yes resolution String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes target_milestone String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod eng_workflow_stable bmobugs_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/eng_workflow/#build","title":"build","text":"Historical Pings for eng-workflow/build
eng_workflow.build
A historical view of pings sent for the eng-workflow/build
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes argv String No build_attrs Attributes characterizing a build Record Yes build_opts Selected build options Record Yes client_id A UUID to uniquely identify a client String Yes command The mach command that was invoked String Yes document_id The document ID specified in the URI when the client sent this message String Yes duration_ms Command duration in milliseconds Float Yes exception If a Python exception was encountered during the execution of the command, this value contains the result of calling `repr` on the exception object. String Yes file_types_changed Record No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes success true if the command succeeded Boolean Yes system Record Yes time Time at which this event happened Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod eng_workflow_stable build_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/eng_workflow/#hgpush","title":"hgpush","text":"Historical Pings for eng-workflow/hgpush
eng_workflow.hgpush
A historical view of pings sent for the eng-workflow/hgpush
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes changeset_id The 40 char hex ID of the changeset. See https://www.mercurial-scm.org/wiki/ChangeSetID. String Yes diffstat Statistics about files changed by this changeset. Similar to running 'hg diff --stat'. May be null if diffstats were not computed. Record Yes document_id The document ID specified in the URI when the client sent this message String Yes landing_system A string labelling the automated system used to land this changeset in this repository. May be empty. String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes push_date Timestamp, in Unix time (seconds since the Unix epoch), of when the push to the repository occurred. This value is obtained from the original repository pushlog. Integer Yes repository The URL of the repository the changeset was pushed to. String Yes review_system_used A string labelling the code review system used to review this changeset. Possible values include (but are not limited to): 'mozreview', 'phabricator', 'bmo', 'unknown', and 'not_applicable'. String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod eng_workflow_stable hgpush_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/","title":"Fenix","text":"Data related to Fenix (Firefox for Android)
Source Directory
"},{"location":"mozdata/fenix/#activation","title":"activation","text":"App-specific view for Glean ping \"activation\"
fenix.activation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.activation, org_mozilla_firefox_beta.activation, org_mozilla_fenix.activation, org_mozilla_fenix_nightly.activation, org_mozilla_fennec_aurora.activation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
fenix.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived active_users_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#addresses_sync","title":"addresses_sync","text":"App-specific view for Glean ping \"addresses-sync\"
fenix.addresses_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.addresses_sync, org_mozilla_firefox_beta.addresses_sync, org_mozilla_fenix.addresses_sync, org_mozilla_fenix_nightly.addresses_sync, org_mozilla_fennec_aurora.addresses_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#attributable_clients","title":"attributable_clients","text":"Attributable Clients
fenix.attributable_clients
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes cohort_date Date Yes sample_id Integer Yes client_id String Yes country String Yes adjust_network String Yes adjust_adgroup String Yes adjust_campaign String Yes adjust_creative String Yes is_new_profile Boolean Yes searches Integer Yes searches_with_ads Integer Yes ad_clicks Integer Yes is_new_install Boolean Yes activated Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived attributable_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#attributable_clients_v2","title":"attributable_clients_v2","text":"Attributable Clients V2
fenix.attributable_clients_v2
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes cohort_date Date Yes first_seen_date Date Yes sample_id Integer Yes client_id String Yes activations_count Integer Yes active_day_count Integer Yes searches Integer Yes searches_with_ads Integer Yes ad_clicks Integer Yes first_reported_country String Yes adjust_network String Yes adjust_ad_group String Yes adjust_campaign String Yes adjust_creative String Yes is_new_install Boolean Yes is_new_profile Boolean Yes is_activated Boolean Yes metadata Record Yes firefox_android_clients_metadata Record Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
fenix.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.baseline, org_mozilla_firefox_beta.baseline, org_mozilla_fenix.baseline, org_mozilla_fenix_nightly.baseline, org_mozilla_fennec_aurora.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
fenix.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
fenix.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
fenix.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#bookmarks_sync","title":"bookmarks_sync","text":"App-specific view for Glean ping \"bookmarks-sync\"
fenix.bookmarks_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.bookmarks_sync, org_mozilla_firefox_beta.bookmarks_sync, org_mozilla_fenix.bookmarks_sync, org_mozilla_fenix_nightly.bookmarks_sync, org_mozilla_fennec_aurora.bookmarks_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#client_adclicks_history","title":"client_adclicks_history","text":"Client Adclicks History
fenix.client_adclicks_history
Contains the full history of ad-clicks for each client.
This should only be used for the LTV project. To calculate LTV for any client, we add together two things - 1. Predicted future Ad Clicks 2. Total historical ad clicks
This table provides 2. The full history of each client's ad_clicks are available as a MAP, keyed by date, where the value is the number of ad clicks.
- Owners:
- frank@mozilla.com
Schema Column Description Type Nullable client_id Unique ID for the client installation. String Yes sample_id Sample ID to limit query results during an analysis. Integer Yes ad_click_history History of ad_clicks for a user, by submission_date Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived client_adclicks_history_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#client_deduplication","title":"client_deduplication","text":"Client Deduplication
fenix.client_deduplication
A view over all client deduplication pings, from all channels.
- Owners:
- frank@mozilla.com
Schema Column Description Type Nullable client_id String Yes hashed_ad_id String Yes valid_advertising_id Boolean Yes submission_date Date Yes normalized_app_id String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix client_deduplication moz-fx-data-shared-prod org_mozilla_firefox client_deduplication moz-fx-data-shared-prod org_mozilla_firefox_beta client_deduplication Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
fenix.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#clients_yearly","title":"clients_yearly","text":"Clients Yearly
fenix.clients_yearly
Please provide a description for the query
Schema Column Description Type Nullable days_seen_bytes Bytes Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes days_since_seen Integer Yes consecutive_days_seen Integer Yes days_seen_in_past_year Integer Yes days_since_first_seen Integer Yes day_of_week Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived clients_yearly_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"App-specific view for Glean ping \"cookie-banner-report-site\"
fenix.cookie_banner_report_site
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.cookie_banner_report_site, org_mozilla_firefox_beta.cookie_banner_report_site, org_mozilla_fenix.cookie_banner_report_site, org_mozilla_fenix_nightly.cookie_banner_report_site, org_mozilla_fennec_aurora.cookie_banner_report_site).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#crash","title":"crash","text":"App-specific view for Glean ping \"crash\"
fenix.crash
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.crash, org_mozilla_firefox_beta.crash, org_mozilla_fenix.crash, org_mozilla_fenix_nightly.crash, org_mozilla_fennec_aurora.crash).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#creditcards_sync","title":"creditcards_sync","text":"App-specific view for Glean ping \"creditcards-sync\"
fenix.creditcards_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.creditcards_sync, org_mozilla_firefox_beta.creditcards_sync, org_mozilla_fenix.creditcards_sync, org_mozilla_fenix_nightly.creditcards_sync, org_mozilla_fennec_aurora.creditcards_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
fenix.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.deletion_request, org_mozilla_firefox_beta.deletion_request, org_mozilla_fenix.deletion_request, org_mozilla_fenix_nightly.deletion_request, org_mozilla_fennec_aurora.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#event_types","title":"event_types","text":"Event Types
fenix.event_types
Please provide a description for the query
Schema Column Description Type Nullable category String Yes event String Yes first_timestamp Timestamp Yes numeric_index Integer Yes index String Yes event_properties Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived event_types_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#events","title":"events","text":"App-specific view for Glean ping \"events\"
fenix.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.events, org_mozilla_firefox_beta.events, org_mozilla_fenix.events, org_mozilla_fenix_nightly.events, org_mozilla_fennec_aurora.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#events_daily","title":"events_daily","text":"Events Daily
fenix.events_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes events String Yes android_sdk_version String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes first_run_date String Yes telemetry_sdk_build String Yes locale String Yes city String Yes country String Yes subdivision1 String Yes channel String Yes os String Yes os_version String Yes experiments Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived events_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#events_unnested","title":"events_unnested","text":"Events Unnested
fenix.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#firefox_android_clients","title":"firefox_android_clients","text":"Firefox Android Clients
fenix.firefox_android_clients
Please provide a description for the query
Schema Column Description Type Nullable first_seen_date Date when the app first reported a baseline ping for the client. Date Yes client_id Unique ID for the client installation. String Yes sample_id Sample ID to limit query results during an analysis. Integer Yes submission_date Date when the server first received a baseline ping for the client. Date Yes first_run_date Date when the browser first ran. Date Yes first_reported_country First reported country for the client installation String Yes first_reported_isp Name of the first reported isp (Internet Service Provider). String Yes channel Channel where the browser is released. String Yes device_manufacturer Manufacturer of the device where the client is installed. String Yes device_model Model of the device where the client is installed. String Yes os_version Version of the Operating System where the client is originally installed. String Yes app_version App display version for this client installation. String Yes locale Client locale. String Yes activated Determines if a client is activated based on the activation metric and a 7 day lag. Boolean Yes adjust_campaign Structure parameter for the campaign name. String Yes adjust_ad_group Structure parameter for the the ad group of a campaign. String Yes adjust_creative Structure parameter for the creative content of a campaign. String Yes last_reported_adjust_campaign Last reported campaign name. String Yes last_reported_adjust_ad_group Last reported campaign ad group. String Yes last_reported_adjust_creative Last reported campaign name. String Yes last_reported_adjust_network Last reported client campaign network. String Yes last_reported_date Last date client seen. Date Yes last_reported_channel Last reported client channel. String Yes last_reported_country Last reported client country. String Yes last_reported_device_model Last reported client device model. String Yes last_reported_device_manufacturer Last reported client device manufacturer. String Yes last_reported_locale Last reported client locale. String Yes metadata Record Yes adjust_network Structure parameter for the network of a campaign. String Yes install_source The source of a client installation. String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived firefox_android_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#first_session","title":"first_session","text":"App-specific view for Glean ping \"first-session\"
fenix.first_session
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.first_session, org_mozilla_firefox_beta.first_session, org_mozilla_fenix.first_session, org_mozilla_fenix_nightly.first_session, org_mozilla_fennec_aurora.first_session).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#fog_validation","title":"fog_validation","text":"App-specific view for Glean ping \"fog-validation\"
fenix.fog_validation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.fog_validation, org_mozilla_firefox_beta.fog_validation, org_mozilla_fenix.fog_validation, org_mozilla_fenix_nightly.fog_validation, org_mozilla_fennec_aurora.fog_validation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#font_list","title":"font_list","text":"App-specific view for Glean ping \"font-list\"
fenix.font_list
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.font_list, org_mozilla_firefox_beta.font_list, org_mozilla_fenix.font_list, org_mozilla_fenix_nightly.font_list, org_mozilla_fennec_aurora.font_list).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#funnel_retention_clients","title":"funnel_retention_clients","text":"Funnel Retention Clients
fenix.funnel_retention_clients
Please provide a description for the query
Schema Column Description Type Nullable first_seen_date Date Yes client_id String Yes sample_id Integer Yes first_reported_country String Yes first_reported_isp String Yes adjust_ad_group String Yes adjust_campaign String Yes adjust_creative String Yes adjust_network String Yes retained_week_2 Boolean Yes retained_week_4 Boolean Yes days_seen_in_first_28_days Integer Yes repeat_first_month_user Boolean Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#funnel_retention_week_4","title":"funnel_retention_week_4","text":"Funnel Retention Week 4
fenix.funnel_retention_week_4
Please provide a description for the query
Schema Column Description Type Nullable submission_date Partition field, also corresponds to internal execution date of the job (first_seen_date + 28 days). Date Yes first_seen_date Date of when the client was first seen. Date Yes first_reported_country First reported country for the client installation. String Yes first_reported_isp Name of the first reported isp (Internet Service Provider). String Yes adjust_ad_group Structure parameter for the the ad group of a campaign. String Yes adjust_campaign Structure parameter for the campaign name. String Yes adjust_creative Structure parameter for the creative content of a campaign. String Yes adjust_network The type of source of a client installation. String Yes new_profiles Count of new_profiles for the given grouping. Integer Yes repeat_user Count of clients categorised as \"repeat_first_month_user\" for the grouping. Integer Yes retained_week_4 Count of clients categorised as \"retained_week_4\" for the grouping. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived funnel_retention_week_4_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#fx_suggest","title":"fx_suggest","text":"App-specific view for Glean ping \"fx-suggest\"
fenix.fx_suggest
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.fx_suggest, org_mozilla_firefox_beta.fx_suggest, org_mozilla_fenix.fx_suggest, org_mozilla_fenix_nightly.fx_suggest, org_mozilla_fennec_aurora.fx_suggest).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#gplay_installs_by_country","title":"gplay_installs_by_country","text":"Gplay Installs By Country
fenix.gplay_installs_by_country
A view on Fenix Google Play Install Data by Country
- Owners:
- frank@mozilla.com
Schema Column Description Type Nullable date Date Yes channel String Yes country_code String Yes country_name String Yes region_name String Yes subregion_name String Yes install_count Integer Yes uninstall_count Integer Yes update_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_external gplay_installs_by_country_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#history_sync","title":"history_sync","text":"App-specific view for Glean ping \"history-sync\"
fenix.history_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.history_sync, org_mozilla_firefox_beta.history_sync, org_mozilla_fenix.history_sync, org_mozilla_fenix_nightly.history_sync, org_mozilla_fennec_aurora.history_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#installation","title":"installation","text":"App-specific view for Glean ping \"installation\"
fenix.installation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.installation, org_mozilla_firefox_beta.installation, org_mozilla_fenix.installation, org_mozilla_fenix_nightly.installation, org_mozilla_fennec_aurora.installation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#logins_sync","title":"logins_sync","text":"App-specific view for Glean ping \"logins-sync\"
fenix.logins_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.logins_sync, org_mozilla_firefox_beta.logins_sync, org_mozilla_fenix.logins_sync, org_mozilla_fenix_nightly.logins_sync, org_mozilla_fennec_aurora.logins_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#marketing_attributable_metrics","title":"marketing_attributable_metrics","text":"Marketing Attributable Metrics
fenix.marketing_attributable_metrics
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes cohort_date Date Yes sample_id Integer Yes client_id String Yes country String Yes adjust_network String Yes adjust_adgroup String Yes adjust_campaign String Yes adjust_creative String Yes is_new_profile Boolean Yes searches_with_ads Integer Yes ad_clicks Integer Yes is_new_install Boolean Yes activated Boolean Yes dau Integer Yes new_profiles Integer Yes search_count Integer Yes new_installs Integer Yes activations Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix attributable_clients Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
fenix.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.metrics, org_mozilla_firefox_beta.metrics, org_mozilla_fenix.metrics, org_mozilla_fenix_nightly.metrics, org_mozilla_fennec_aurora.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
fenix.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
fenix.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#migrated_clients","title":"migrated_clients","text":"Migrated Clients
fenix.migrated_clients
Please provide a description for the query
Schema Column Description Type Nullable fenix_client_id String Yes submission_date Date Yes normalized_channel String Yes manufacturer String Yes country String Yes fennec_client_id String Yes migration_ping_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_derived migrated_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#migration","title":"migration","text":"App-specific view for Glean ping \"migration\"
fenix.migration
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.migration, org_mozilla_firefox_beta.migration, org_mozilla_fenix.migration, org_mozilla_fenix_nightly.migration, org_mozilla_fennec_aurora.migration).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes submission_date Date Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#new_profile_activation","title":"new_profile_activation","text":"New Profile Activation
fenix.new_profile_activation
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes sample_id Integer Yes normalized_channel String Yes app_build String Yes app_channel String Yes app_display_version String Yes device_manufacturer String Yes device_model String Yes isp String Yes locale String Yes city String Yes country String Yes adjust_network String Yes adjust_adgroup String Yes adjust_campaign String Yes adjust_creative String Yes first_seen_date Date Yes submission_date Date Yes new_profile Integer Yes activated Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fenix_derived new_profile_activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#pageload","title":"pageload","text":"App-specific view for Glean ping \"pageload\"
fenix.pageload
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.pageload, org_mozilla_firefox_beta.pageload, org_mozilla_fenix.pageload, org_mozilla_fenix_nightly.pageload, org_mozilla_fennec_aurora.pageload).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#spoc","title":"spoc","text":"App-specific view for Glean ping \"spoc\"
fenix.spoc
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.spoc, org_mozilla_firefox_beta.spoc, org_mozilla_fenix.spoc, org_mozilla_fenix_nightly.spoc, org_mozilla_fennec_aurora.spoc).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#startup_timeline","title":"startup_timeline","text":"App-specific view for Glean ping \"startup-timeline\"
fenix.startup_timeline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.startup_timeline, org_mozilla_firefox_beta.startup_timeline, org_mozilla_fenix.startup_timeline, org_mozilla_fenix_nightly.startup_timeline, org_mozilla_fennec_aurora.startup_timeline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#sync","title":"sync","text":"App-specific view for Glean ping \"sync\"
fenix.sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.sync, org_mozilla_firefox_beta.sync, org_mozilla_fenix.sync, org_mozilla_fenix_nightly.sync, org_mozilla_fennec_aurora.sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fenix/#tabs_sync","title":"tabs_sync","text":"App-specific view for Glean ping \"tabs-sync\"
fenix.tabs_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Android\" (org_mozilla_firefox.tabs_sync, org_mozilla_firefox_beta.tabs_sync, org_mozilla_fenix.tabs_sync, org_mozilla_fenix_nightly.tabs_sync, org_mozilla_fennec_aurora.tabs_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/","title":"Firefox Accounts","text":"Data related to Firefox Accounts
Source Directory
"},{"location":"mozdata/firefox_accounts/#activity_flow_metrics","title":"activity_flow_metrics","text":"Historical Pings for firefox-accounts/activity-flow-metrics
firefox_accounts.activity_flow_metrics
A historical view of pings sent for the firefox-accounts/activity-flow-metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_stable activity_flow_metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#amplitude_event","title":"amplitude_event","text":"Historical Pings for firefox-accounts/amplitude-event
firefox_accounts.amplitude_event
A historical view of pings sent for the firefox-accounts/amplitude-event
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes op Pre-existing Firefox Accounts metrics field used to identify Amplitude metrics events. String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_stable amplitude_event_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#docker_fxa_admin_server_sanitized","title":"docker_fxa_admin_server_sanitized","text":"Docker Fxa Admin Server Sanitized
firefox_accounts.docker_fxa_admin_server_sanitized
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes logName String Yes resource Record Yes textPayload String Yes jsonPayload Record Yes timestamp Timestamp Yes receiveTimestamp Timestamp Yes severity String Yes insertId String Yes httpRequest Record Yes labels Record Yes operation Record Yes trace String Yes spanId String Yes traceSampled Boolean Yes sourceLocation Record Yes split Record Yes errorGroups Record No Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#docker_fxa_customs_sanitized","title":"docker_fxa_customs_sanitized","text":"Docker Fxa Customs Sanitized
firefox_accounts.docker_fxa_customs_sanitized
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes logName String Yes resource Record Yes textPayload String Yes jsonPayload Record Yes timestamp Timestamp Yes receiveTimestamp Timestamp Yes severity String Yes insertId String Yes httpRequest Record Yes labels Record Yes operation Record Yes trace String Yes spanId String Yes traceSampled Boolean Yes sourceLocation Record Yes split Record Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#event_types","title":"event_types","text":"Event Types
firefox_accounts.event_types
Please provide a description for the query
Schema Column Description Type Nullable category String Yes event String Yes first_timestamp Timestamp Yes numeric_index Integer Yes index String Yes event_properties Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived event_types_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#events_daily","title":"events_daily","text":"Events Daily
firefox_accounts.events_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes events String Yes utm_term String Yes utm_source String Yes utm_medium String Yes utm_campaign String Yes ua_version String Yes ua_browser String Yes entrypoint String Yes flow_id String Yes sync_device_count String Yes sync_active_devices_day String Yes sync_active_devices_week String Yes sync_active_devices_month String Yes app_version String Yes os_name String Yes os_version String Yes country String Yes language String Yes experiments Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived events_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_all_events","title":"fxa_all_events","text":"Fxa All Events
firefox_accounts.fxa_all_events
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_content_auth_events","title":"fxa_content_auth_events","text":"Fxa Content Auth Events
firefox_accounts.fxa_content_auth_events
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts fxa_all_events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_content_auth_oauth_events","title":"fxa_content_auth_oauth_events","text":"Fxa Content Auth Oauth Events
firefox_accounts.fxa_content_auth_oauth_events
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts fxa_all_events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_content_auth_stdout_events","title":"fxa_content_auth_stdout_events","text":"Fxa Content Auth Stdout Events
firefox_accounts.fxa_content_auth_stdout_events
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts fxa_all_events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_log_auth_events","title":"fxa_log_auth_events","text":"Fxa Log Auth Events
firefox_accounts.fxa_log_auth_events
Please provide a description for the query
Schema Column Description Type Nullable timestamp Timestamp Yes event String Yes flow_id String Yes entrypoint String Yes service String Yes useragent String Yes os_version String Yes utm_source String Yes utm_campaign String Yes utm_content String Yes utm_medium String Yes utm_term String Yes device_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_log_auth_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_log_content_events","title":"fxa_log_content_events","text":"Fxa Log Content Events
firefox_accounts.fxa_log_content_events
Please provide a description for the query
Schema Column Description Type Nullable timestamp Timestamp Yes event String Yes flow_time Float Yes locale String Yes useragent String Yes country String Yes entrypoint String Yes flow_id String Yes region String Yes service String Yes utm_campaign String Yes utm_content String Yes utm_medium String Yes utm_source String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_log_content_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_log_device_command_events","title":"fxa_log_device_command_events","text":"Fxa Log Device Command Events
firefox_accounts.fxa_log_device_command_events
Please provide a description for the query
Schema Column Description Type Nullable timestamp Timestamp Yes type String Yes user_id String Yes index String Yes command String Yes target String Yes target_os String Yes target_type String Yes sender String Yes sender_os String Yes sender_type String Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_log_performance_events","title":"fxa_log_performance_events","text":"Fxa Log Performance Events
firefox_accounts.fxa_log_performance_events
Please provide a description for the query
Schema Column Description Type Nullable timestamp Timestamp Yes event String Yes flow_time Float Yes locale String Yes useragent String Yes country String Yes entrypoint String Yes flow_id String Yes region String Yes service String Yes utm_campaign String Yes utm_content String Yes utm_medium String Yes utm_source String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_log_content_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_daily","title":"fxa_users_daily","text":"Fxa Users Daily
firefox_accounts.fxa_users_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Represents ETL job date. Also, used for table partitioning. Date Yes user_id A 36 char long hash value representing User ID (registered user). Also, used as a clustering field. String Yes country User's country where activity took place. See: UDF mozdata.stats.mode_last for more info on how the function operates. String Yes language User's language. String Yes app_version Mozilla app version, follows format: major.minor.patch (e.g. 99.3.3). String Yes os_name OS on which the app was running. For example: Android. String Yes os_version Version of the OS the device was using. String Yes seen_in_tier1_country Set to True if a user sent an event from one of the following countries for a specific submission_date: ('United States','France', 'Germany','United Kingdom','Canada') Boolean Yes registered Set to True if the user submitted the event_type of `fxa_reg - complete` event on the specific submission_date. Boolean Yes monitor_only Set to True if the user contains events of event_type `fxa_rp - engage` only for service `fx-monitor`. Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_first_seen","title":"fxa_users_first_seen","text":"Fxa Users First Seen
firefox_accounts.fxa_users_first_seen
Please provide a description for the query
Schema Column Description Type Nullable user_id String Yes first_seen_date Date Yes services_used String No Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_first_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_last_seen","title":"fxa_users_last_seen","text":"Fxa Users Last Seen
firefox_accounts.fxa_users_last_seen
Please provide a description for the query
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_seen_in_tier1_country Integer Yes days_since_registered Integer Yes days_since_seen_no_monitor Integer Yes submission_date Corresponds to ETL processing date. Also, used for partitioning the table. Date Yes days_seen_bits No. of days since the user had activity event. Integer Yes days_seen_in_tier1_country_bits No. of days since seen_in_tier1_country was last True. Integer Yes days_registered_bits No. of days since registration event. Integer Yes user_id A 36 char long hash value representing User ID (registered user). String Yes country User's country where activity took place. See: UDF mozdata.stats.mode_last for more info on how the function operates. String Yes language Most recently used language. String Yes app_version Mozilla app version most recently used, follows format: major.minor.patch (e.g. 99.3.3). String Yes os_name OS on which the app was most recently running. For example: Android. String Yes os_version Version of the OS the device was most recently using. String Yes days_seen_no_monitor_bits No. of days since monitor flag was last True. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_services_daily","title":"fxa_users_services_daily","text":"Fxa Users Services Daily
firefox_accounts.fxa_users_services_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes user_id String Yes service String Yes country String Yes language String Yes app_version String Yes os_name String Yes os_version String Yes seen_in_tier1_country Boolean Yes registered Boolean Yes name String Yes code String Yes country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_services_daily_v1 moz-fx-data-shared-prod static country_names_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_services_devices_daily","title":"fxa_users_services_devices_daily","text":"Fxa Users Services Devices Daily
firefox_accounts.fxa_users_services_devices_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_services_devices_daily_v1 moz-fx-data-shared-prod static country_names_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_services_devices_first_seen","title":"fxa_users_services_devices_first_seen","text":"Fxa Users Services Devices First Seen
firefox_accounts.fxa_users_services_devices_first_seen
Please provide a description for the query
Schema Column Description Type Nullable flow_id The flow associated with the first seen session. The flow identifier is a hash value representing a registration and login sessions. String Yes user_id Unique identifier of a registered user. String Yes service The service identifier. For Sync it may be empty or sync. For OAuth reliers it is their hex client id. A service corresponds to a specific application, for example: \"sync\". String Yes device_id This DOES NOT correspond to a physical device! Everytime a user logs out and back in will have a different value for device_id. This should be treated more like a session identified (in our case, session does not expire). There are two ways in which device_id field value gets populated/generated: 1. If the current flow session does not have a device_id associated with it we set it to the device_id/deviceId value found inside urlParams object. 2. If during the above process we find urlParams object to not have this attribute set, then we use uuid.v4() to generate a new unique value and assign it to deviceId flow session. _devide_id generation: https://github.com/mozilla/fxa/blob/main/packages/fxa-content-server/app/scripts/models/flow.js#L61-L69_ String Yes os_name Name of the operating system the device was using. E.g. Android String Yes country 2 char string representing the country where the device was located. String Yes language Language settings used by the device. String Yes entrypoint The entrypoint of the flow session. How a user begins their registration or login flow. Typically a UI touchpoint like \"preferences\". String Yes first_seen_date Datetime value when the user, service, device_id was seen for the first time. Timestamp Yes utm_term Marketing campaign search term for the flow session. Not stored if the DNT request header was 1. String Yes utm_medium Marketing campaign medium for the flow session. Not stored if the DNT request header was 1. String Yes utm_source Marketing campaign source for the flow session. Not stored if the DNT request header was 1. String Yes utm_campaign Marketing campaign identifier for the flow session. Not stored if the DNT request header was 1. String Yes utm_content Marketing campaign content identifier for the flow session. Not stored if the DNT request header was 1. String Yes ua_version The user's browser version. String Yes ua_browser The user's web browser, e.g. 'Firefox' or 'Chrome'. String Yes event_type Type of the FxA event recorded. `fxa_login - complete' and 'fxa_reg - complete` are the events used to create this table. String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_services_devices_first_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_services_devices_last_seen","title":"fxa_users_services_devices_last_seen","text":"Fxa Users Services Devices Last Seen
firefox_accounts.fxa_users_services_devices_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_services_devices_last_seen_v1 moz-fx-data-shared-prod static country_names_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_services_first_seen","title":"fxa_users_services_first_seen","text":"Fxa Users Services First Seen
firefox_accounts.fxa_users_services_first_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Corresponds to the submission_date of the record used from fxa_users_services_daily_v2. IMPORTANT: submission_date and first_service_flow_timestamp will not always have the same date (should at most be 1 day difference). When filtering for users that we first saw on x day should be done using DATE(first_service_flow_timestamp) = \"DAY\". Date Yes user_id 36-char long hash randomly assigned when the account is created. String Yes service The service identifier. For Sync it may be empty or sync. For OAuth reliers it is their hex client id. Example: sync String Yes did_register Set to True if the user submitted the event_type of `fxa_reg - complete` event on the specific submission_date. Boolean Yes first_service_os_name Name of the operating system the device was using. E.g. Android String Yes first_service_os_version Version of the OS the device was using. String Yes first_service_app_version Mozilla app version, follows format: major.minor.patch (e.g. 99.3.3). String Yes first_service_country 2 char string representing the country where the device was located. String Yes first_service_language Language settings used by the device. String Yes first_service_ua_version The user's browser version. String Yes first_service_ua_browser The user's web browser, e.g. 'Firefox' or 'Chrome'. String Yes first_service_flow_timestamp Timestamp Yes first_service_flow_entrypoint String Yes first_service_flow_utm_term String Yes first_service_flow_utm_medium String Yes first_service_flow_utm_source String Yes first_service_flow_utm_campaign String Yes first_service_flow_utm_content String Yes first_service_flow_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_services_first_seen_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#fxa_users_services_last_seen","title":"fxa_users_services_last_seen","text":"Fxa Users Services Last Seen
firefox_accounts.fxa_users_services_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes days_seen_bits Integer Yes days_seen_in_tier1_country_bits Integer Yes days_registered_bits Integer Yes resurrected_same_service Boolean Yes resurrected_any_service Boolean Yes user_id String Yes service String Yes country String Yes language String Yes app_version String Yes os_name String Yes os_version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived fxa_users_services_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#nonprod_fxa_all_events","title":"nonprod_fxa_all_events","text":"Nonprod Fxa All Events
firefox_accounts.nonprod_fxa_all_events
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_accounts/#nonprod_fxa_content_auth_stdout_events","title":"nonprod_fxa_content_auth_stdout_events","text":"Nonprod Fxa Content Auth Stdout Events
firefox_accounts.nonprod_fxa_content_auth_stdout_events
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts nonprod_fxa_all_events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/","title":"Firefox Desktop","text":"Data related to messaging_system.
Source Directory
"},{"location":"mozdata/firefox_desktop/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
firefox_desktop.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived active_users_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#baseline","title":"baseline","text":"Historical Pings for firefox-desktop/baseline
firefox_desktop.baseline
A historical view of pings sent for the firefox-desktop/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_desktop.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_desktop.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_desktop.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_desktop.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#crash","title":"crash","text":"Historical Pings for firefox-desktop/crash
firefox_desktop.crash
A historical view of pings sent for the firefox-desktop/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#deletion_request","title":"deletion_request","text":"Historical Pings for firefox-desktop/deletion-request
firefox_desktop.deletion_request
A historical view of pings sent for the firefox-desktop/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#events","title":"events","text":"Historical Pings for firefox-desktop/events
firefox_desktop.events
A historical view of pings sent for the firefox-desktop/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_desktop.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#first_startup","title":"first_startup","text":"Historical Pings for firefox-desktop/first-startup
firefox_desktop.first_startup
A historical view of pings sent for the firefox-desktop/first-startup
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable first_startup_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#fog_validation","title":"fog_validation","text":"Historical Pings for firefox-desktop/fog-validation
firefox_desktop.fog_validation
A historical view of pings sent for the firefox-desktop/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#messaging_system","title":"messaging_system","text":"Historical Pings for firefox-desktop/messaging-system
firefox_desktop.messaging_system
A historical view of pings sent for the firefox-desktop/messaging-system
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable messaging_system_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#metrics","title":"metrics","text":"Historical Pings for firefox-desktop/metrics
firefox_desktop.metrics
A historical view of pings sent for the firefox-desktop/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_desktop.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_desktop.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#new_metric_capture_emulation","title":"new_metric_capture_emulation","text":"Historical Pings for firefox-desktop/new-metric-capture-emulation
firefox_desktop.new_metric_capture_emulation
A historical view of pings sent for the firefox-desktop/new-metric-capture-emulation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable new_metric_capture_emulation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#newtab","title":"newtab","text":"Historical Pings for firefox-desktop/newtab
firefox_desktop.newtab
A historical view of pings sent for the firefox-desktop/newtab
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable newtab_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#onboarding","title":"onboarding","text":"Onboarding
firefox_desktop.onboarding
Please provide a description for the query
Schema Column Description Type Nullable submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event String Yes event_context A string that describes the context about this event String Yes event_page The event_context's page. Almost always \"about:welcome\". String Yes event_reason The event_context's reason. Likely something like \"welcome-window-closed\" or \"app-shut-down\". String Yes event_source The event_context's source. Likely something like \"primary_button\". String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes release_channel String Yes sample_id Integer Yes version String Yes browser_session_id A mirror of the browser sessionId, as defined in https://github.com/mozilla-services/mozilla-pipeline-schemas/blob/main/schemas/telemetry/main/main.4.schema.json String Yes experiments Record No attribution Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived onboarding_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#pageload","title":"pageload","text":"Historical Pings for firefox-desktop/pageload
firefox_desktop.pageload
A historical view of pings sent for the firefox-desktop/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#pocket_button","title":"pocket_button","text":"Historical Pings for firefox-desktop/pocket-button
firefox_desktop.pocket_button
A historical view of pings sent for the firefox-desktop/pocket-button
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable pocket_button_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#pseudo_main","title":"pseudo_main","text":"Historical Pings for firefox-desktop/pseudo-main
firefox_desktop.pseudo_main
A historical view of pings sent for the firefox-desktop/pseudo-main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable pseudo_main_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#quick_suggest","title":"quick_suggest","text":"Historical Pings for firefox-desktop/quick-suggest
firefox_desktop.quick_suggest
A historical view of pings sent for the firefox-desktop/quick-suggest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable quick_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#review_checker_clients","title":"review_checker_clients","text":"Review Checker Clients
firefox_desktop.review_checker_clients
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes normalized_country_code String Yes legacy_client_id String Yes client_id String Yes sample_id Integer Yes shopping_product_page_visits Integer Yes is_opt_in Integer Yes is_opt_out Integer Yes sap Integer Yes ad_click Integer Yes active_hours_sum Float Yes is_fx_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived review_checker_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#review_checker_events","title":"review_checker_events","text":"Review Checker Events
firefox_desktop.review_checker_events
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes is_exposed_event Integer Yes is_opt_in_event Integer Yes is_surface_displayed Integer Yes is_engaged_with_sidebar Integer Yes experiments Record No normalized_channel String Yes normalized_country_code String Yes sample_id Integer Yes os_version Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived review_checker_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#review_checker_microsurvey","title":"review_checker_microsurvey","text":"Review Checker Microsurvey
firefox_desktop.review_checker_microsurvey
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes sample_id Integer Yes normalized_channel String Yes country_code String Yes os_version Numeric Yes submission_date Date Yes message_id String Yes event String Yes event_page String Yes event_reason String Yes event_source String Yes new_user Integer Yes existing_user Integer Yes coded_question String Yes coded_answers String Yes experiments Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived review_checker_microsurvey_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#serp_events","title":"serp_events","text":"Serp Events
firefox_desktop.serp_events
Please provide a description for the query
Schema Column Description Type Nullable impression_id String Yes submission_date Date Yes glean_client_id String Yes legacy_telemetry_client_id String Yes event_timestamp Integer Yes normalized_channel String Yes normalized_country_code String Yes os String Yes browser_version_info Record Yes sample_id Integer Yes is_shopping_page Boolean Yes search_engine String Yes sap_source String Yes is_tagged Boolean Yes is_engaged Boolean Yes abandon_reason String Yes ping_seq Integer Yes experiments Record No has_ads_loaded Boolean Yes component String Yes is_ad_component Boolean Yes num_clicks Integer Yes num_expands Integer Yes num_submits Integer Yes num_ads_loaded_reported Integer Yes num_ads_visible_reported Integer Yes num_ads_hidden_reported Integer Yes ad_blocker_inferred Boolean Yes num_ads_showing Integer Yes num_ads_notshowing Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived serp_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#snippets","title":"snippets","text":"Snippets
firefox_desktop.snippets
Please provide a description for the query
Schema Column Description Type Nullable submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes version String Yes experiments Record No source A string describing the source of this event String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived snippets_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#top_sites","title":"top_sites","text":"Historical Pings for firefox-desktop/top-sites
firefox_desktop.top_sites
A historical view of pings sent for the firefox-desktop/top-sites
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_stable top_sites_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop/#urlbar_events","title":"urlbar_events","text":"Urlbar Events
firefox_desktop.urlbar_events
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes glean_client_id String Yes legacy_telemetry_client_id String Yes sample_id Integer Yes event_name String Yes event_timestamp Integer Yes event_id String Yes experiments Record No seq Integer Yes normalized_channel String Yes normalized_country_code String Yes normalized_engine String Yes pref_data_collection Boolean Yes pref_sponsored_suggestions Boolean Yes pref_fx_suggestions Boolean Yes engagement_type String Yes interaction String Yes num_chars_typed Integer Yes num_total_results Integer Yes selected_position Integer Yes selected_result String Yes results Record No product_selected_result String Yes event_action String Yes is_terminal Boolean Yes engaged_result_type String Yes product_engaged_result_type String Yes annoyance_signal_type String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_derived urlbar_events_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/","title":"firefox-desktop-background-defaultagent","text":"User-facing views related to document namespace firefox-desktop-background-defaultagent; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/firefox-desktop-background-defaultagent
Source Directory
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#baseline","title":"baseline","text":"Historical Pings for firefox-desktop-background-defaultagent/baseline
firefox_desktop_background_defaultagent.baseline
A historical view of pings sent for the firefox-desktop-background-defaultagent/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_desktop_background_defaultagent.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_desktop_background_defaultagent.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_desktop_background_defaultagent.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#default_agent","title":"default_agent","text":"Historical Pings for firefox-desktop-background-defaultagent/default-agent
firefox_desktop_background_defaultagent.default_agent
A historical view of pings sent for the firefox-desktop-background-defaultagent/default-agent
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_stable default_agent_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#deletion_request","title":"deletion_request","text":"Historical Pings for firefox-desktop-background-defaultagent/deletion-request
firefox_desktop_background_defaultagent.deletion_request
A historical view of pings sent for the firefox-desktop-background-defaultagent/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#events","title":"events","text":"Historical Pings for firefox-desktop-background-defaultagent/events
firefox_desktop_background_defaultagent.events
A historical view of pings sent for the firefox-desktop-background-defaultagent/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_desktop_background_defaultagent.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#metrics","title":"metrics","text":"Historical Pings for firefox-desktop-background-defaultagent/metrics
firefox_desktop_background_defaultagent.metrics
A historical view of pings sent for the firefox-desktop-background-defaultagent/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_defaultagent/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_desktop_background_defaultagent.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_defaultagent_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/","title":"firefox-desktop-background-tasks","text":"User-facing views related to document namespace firefox-desktop-background-tasks; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/firefox-desktop-background-tasks
Source Directory
"},{"location":"mozdata/firefox_desktop_background_tasks/#background_tasks","title":"background_tasks","text":"Historical Pings for firefox-desktop-background-tasks/background-tasks
firefox_desktop_background_tasks.background_tasks
A historical view of pings sent for the firefox-desktop-background-tasks/background-tasks
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable background_tasks_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#baseline","title":"baseline","text":"Historical Pings for firefox-desktop-background-tasks/baseline
firefox_desktop_background_tasks.baseline
A historical view of pings sent for the firefox-desktop-background-tasks/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_desktop_background_tasks.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_desktop_background_tasks.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_desktop_background_tasks.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#crash","title":"crash","text":"Historical Pings for firefox-desktop-background-tasks/crash
firefox_desktop_background_tasks.crash
A historical view of pings sent for the firefox-desktop-background-tasks/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#default_agent","title":"default_agent","text":"Historical Pings for firefox-desktop-background-tasks/default-agent
firefox_desktop_background_tasks.default_agent
A historical view of pings sent for the firefox-desktop-background-tasks/default-agent
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable default_agent_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#deletion_request","title":"deletion_request","text":"Historical Pings for firefox-desktop-background-tasks/deletion-request
firefox_desktop_background_tasks.deletion_request
A historical view of pings sent for the firefox-desktop-background-tasks/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#events","title":"events","text":"Historical Pings for firefox-desktop-background-tasks/events
firefox_desktop_background_tasks.events
A historical view of pings sent for the firefox-desktop-background-tasks/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_desktop_background_tasks.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#metrics","title":"metrics","text":"Historical Pings for firefox-desktop-background-tasks/metrics
firefox_desktop_background_tasks.metrics
A historical view of pings sent for the firefox-desktop-background-tasks/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_tasks/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_desktop_background_tasks.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_tasks_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/","title":"firefox-desktop-background-update","text":"User-facing views related to document namespace firefox-desktop-background-update; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/firefox-desktop-background-update
Source Directory
"},{"location":"mozdata/firefox_desktop_background_update/#background_update","title":"background_update","text":"Historical Pings for firefox-desktop-background-update/background-update
firefox_desktop_background_update.background_update
A historical view of pings sent for the firefox-desktop-background-update/background-update
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable background_update_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#baseline","title":"baseline","text":"Historical Pings for firefox-desktop-background-update/baseline
firefox_desktop_background_update.baseline
A historical view of pings sent for the firefox-desktop-background-update/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_desktop_background_update.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_desktop_background_update.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_desktop_background_update.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_desktop_background_update.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#crash","title":"crash","text":"Historical Pings for firefox-desktop-background-update/crash
firefox_desktop_background_update.crash
A historical view of pings sent for the firefox-desktop-background-update/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#deletion_request","title":"deletion_request","text":"Historical Pings for firefox-desktop-background-update/deletion-request
firefox_desktop_background_update.deletion_request
A historical view of pings sent for the firefox-desktop-background-update/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#events","title":"events","text":"Historical Pings for firefox-desktop-background-update/events
firefox_desktop_background_update.events
A historical view of pings sent for the firefox-desktop-background-update/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_desktop_background_update.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#fog_validation","title":"fog_validation","text":"Historical Pings for firefox-desktop-background-update/fog-validation
firefox_desktop_background_update.fog_validation
A historical view of pings sent for the firefox-desktop-background-update/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#metrics","title":"metrics","text":"Historical Pings for firefox-desktop-background-update/metrics
firefox_desktop_background_update.metrics
A historical view of pings sent for the firefox-desktop-background-update/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_desktop_background_update.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_desktop_background_update.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_desktop_background_update/#pageload","title":"pageload","text":"Historical Pings for firefox-desktop-background-update/pageload
firefox_desktop_background_update.pageload
A historical view of pings sent for the firefox-desktop-background-update/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop_background_update_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/","title":"Firefox Echo Show","text":"Views on data from firefox_echo_show
Source Directory
"},{"location":"mozdata/firefox_echo_show/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
firefox_echo_show.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Echo Show\" (org_mozilla_connect_firefox.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_echo_show.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_echo_show.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_echo_show.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_echo_show.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_echo_show_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
firefox_echo_show.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Echo Show\" (org_mozilla_connect_firefox.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#events","title":"events","text":"App-specific view for Glean ping \"events\"
firefox_echo_show.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Echo Show\" (org_mozilla_connect_firefox.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_echo_show.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
firefox_echo_show.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Echo Show\" (org_mozilla_connect_firefox.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_echo_show.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_echo_show_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_echo_show/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_echo_show.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_echo_show_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/","title":"Firefox Fire Tv","text":"Views on data from firefox_fire_tv
Source Directory
"},{"location":"mozdata/firefox_fire_tv/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
firefox_fire_tv.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Fire TV\" (org_mozilla_tv_firefox.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_fire_tv.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_fire_tv.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_fire_tv.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_fire_tv.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_fire_tv_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
firefox_fire_tv.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Fire TV\" (org_mozilla_tv_firefox.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#events","title":"events","text":"App-specific view for Glean ping \"events\"
firefox_fire_tv.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Fire TV\" (org_mozilla_tv_firefox.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_fire_tv.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
firefox_fire_tv.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for Fire TV\" (org_mozilla_tv_firefox.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_fire_tv.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_fire_tv_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_fire_tv/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_fire_tv.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_fire_tv_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_installer/","title":"firefox-installer","text":"User-facing views related to document namespace firefox-installer; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/firefox-installer
Source Directory
"},{"location":"mozdata/firefox_installer/#install","title":"install","text":"Historical Pings for firefox-installer/install
firefox_installer.install
A historical view of pings sent for the firefox-installer/install
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable _64bit_build True if the installed build is 64-bit Boolean Yes _64bit_os True if the OS this installer ran on is 64-bit Boolean Yes additional_properties A JSON string containing any payload properties not present in the schema String Yes admin_user True if the user account which ran the installer had administrative privileges Boolean Yes attribution Any attribution data that was included with the installer String Yes build_channel Channel the installer was built with the branding for String Yes build_id Build ID of the installed product. Absent for a failed stub installation. String Yes bytes_downloaded Size of the full installer data that was actually transferred Integer Yes default_path True if the user did not customize the installation path Boolean Yes disk_space_error True if the installation failed because the drive we're trying to install to does not have enough space Boolean Yes document_id The document ID specified in the URI when the client sent this message String Yes download_ip IP address of the server the full installer was downloaded from. May be either IPv4 or IPv6. String Yes download_latency Seconds between sending the full installer download request and receiving the first response data Integer Yes download_retries Number of times the full installer download was retried or resumed Integer Yes download_size Expected size of the full installer download according to the HTTP response Integer Yes download_time Seconds spent downloading the full installer Integer Yes file_error True if the installation failed because the downloaded file couldn\u2019t be read from Boolean Yes finish_time For a stub ping, seconds spent waiting for the installed application to launch. For a full ping, seconds spent on the finish page. Integer Yes from_msi True if the install was launched from an MSI wrapper Boolean Yes funnelcake Funnelcake ID String Yes had_old_install True if at least one existing installation of Firefox was found on the system prior to this installation Boolean Yes install_time For a stub ping, seconds the full installer ran for. For a full ping, seconds spent on the install progress page. Integer Yes install_timeout True if the installation failed because running the full installer timed out. Currently that means it ran for more than 150 seconds for a new installation, or 165 seconds for a paveover installation. Boolean Yes installer_type Which type of installer generated this ping (full or stub) String Yes installer_version Version of the installer itself. May be different from the product version for a stub install. String Yes intro_time Seconds spent on the intro screen Integer Yes locale Locale of the installer and the installed product, in AB_CD format String Yes manual_download True if the user clicked through the error message to the manual full installer download page. Boolean Yes metadata Record Yes new_default True if the new installation was successfully set as the default browser Boolean Yes new_launched True if the installation succeeded and we were able to launch the newly installed application. Boolean Yes no_write_access True if the installation failed because the user doesn\u2019t have permission to write to the path we\u2019re trying to install to. Boolean Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes old_build_id Build ID of the previously installed Firefox, if any String Yes old_default True if an existing Firefox installation was already set as the default browser Boolean Yes old_running True if the installation succeeded and we weren\u2019t able to launch the newly installed application because a copy of Firefox was already running. Boolean Yes old_version Version of the previously installed Firefox, if any String Yes options_time Seconds spent in the options screens. For the stub installer this includes only the profile cleanup prompt. Integer Yes os_version Windows version number in major.minor.build format String Yes out_of_retries True if the installation failed because the download had to be retried too many times (currently 10) Boolean Yes ping_version Only set for stub installer pings String Yes preinstall_time Seconds spent verifying the downloaded full installer and preparing to run it Integer Yes profile_cleanup_prompt Which type of profile cleanup prompt was shown, (reinstall or paveover) String Yes profile_cleanup_requested True if either profile cleanup prompt was shown and the user accepted the prompt Boolean Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes server_os True if the OS this installer ran on is Windows Server Boolean Yes service_pack Latest installed service pack number String Yes set_default True if the option to set the new installation as the default browser was selected Boolean Yes sig_not_trusted True if the installation failed because the signature on the downloaded file wasn\u2019t valid and/or wasn\u2019t signed by a trusted authority Boolean Yes sig_unexpected True if the installation failed because the signature on the downloaded file didn\u2019t have the expected subject and issuer names Boolean Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes succeeded True if a new installation was successfully created. If false, check the error status fields for the failure reason. Boolean Yes update_channel Value of MOZ_UPDATE_CHANNEL the installer was built with. Generally the same as build_channel String Yes user_cancelled True if the installation failed because the user cancelled it or closed the window Boolean Yes version Version of the installed product. May be different from installer_version for a stub install. Absent for a failed stub installation. String Yes silent True if the installer was run in silent mode (either from an MSI or with command-line parameters) Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_installer_stable install_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/","title":"Firefox iOS","text":"Data related to Firefox for iOS
Source Directory
"},{"location":"mozdata/firefox_ios/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
firefox_ios.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived active_users_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#ad_activation_performance","title":"ad_activation_performance","text":"Ad Activation Performance
firefox_ios.ad_activation_performance
Please provide a description for the query
Schema Column Description Type Nullable date_day Date Yes campaign_id Integer Yes campaign_name String Yes currency String Yes taps Integer Yes new_downloads Integer Yes redownloads Integer Yes total_downloads Integer Yes impressions Integer Yes campaign_spend Bignumeric Yes clients_activated Integer Yes new_profiles Integer Yes campaign_spend_per_activation Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod apple_ads campaign_report moz-fx-data-shared-prod firefox_ios firefox_ios_clients Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#addresses_sync","title":"addresses_sync","text":"App-specific view for Glean ping \"addresses-sync\"
firefox_ios.addresses_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.addresses_sync, org_mozilla_ios_firefoxbeta.addresses_sync, org_mozilla_ios_fennec.addresses_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#app_store_funnel","title":"app_store_funnel","text":"App Store Funnel
firefox_ios.app_store_funnel
Please provide a description for the query
Schema Column Description Type Nullable submission_date Partition field, also corresponds to internal execution date of the job. submision_date - 7 days gives us the same date as the date field. Date Yes first_seen_date Date of when the user was first seen. Date Yes country Dimension by which the numeric values are grouped. String Yes impressions Number of Firefox iOS app unique impressions in the Apple Store. Integer Yes total_downloads Total number of downloads of the Firefox iOS app from the Apple Store. Integer Yes first_time_downloads Number of first time downloads of the Firefox iOS app from the Apple Store. Integer Yes redownloads Number of redownloads of the Firefox iOS app from the Apple Store. Integer Yes new_profiles Number of new profiles on the date. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived app_store_funnel_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#attributable_clients","title":"attributable_clients","text":"Attributable Clients
firefox_ios.attributable_clients
Please provide a description for the query
Schema Column Description Type Nullable submission_date Processing date, this indicates which date partiion was used when generating this record. Date Yes first_seen_date Date when we observed the user for the first time. Date Yes sample_id Sample ID to limit query results during an analysis. Integer Yes client_id Unique ID for the client installation. String Yes adjust_network The type of source of a client installation. String Yes adjust_adgroup Structure parameter for the the ad group of a campaign. String Yes adjust_campaign Structure parameter for the campaign name. String Yes adjust_creative Structure parameter for the creative content of a campaign. String Yes is_new_profile Determines if a client is a new profile. Boolean Yes searches The number of search interactions the user had on SERP pages. Integer Yes searches_with_ads The number of SERP pages with ads shown to the user. Integer Yes ad_clicks The number of times a user clicked on an ad on SERP pages. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived attributable_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
firefox_ios.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.baseline, org_mozilla_ios_firefoxbeta.baseline, org_mozilla_ios_fennec.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_ios.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_ios.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_ios.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#baseline_clients_yearly","title":"baseline_clients_yearly","text":"Baseline Clients Yearly
firefox_ios.baseline_clients_yearly
Captures activity history of each client in 1-Year windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- frank@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes consecutive_days_seen Integer Yes days_seen_in_past_year Integer Yes days_since_active Integer Yes consecutive_days_active Integer Yes days_active_in_past_year Integer Yes days_since_first_seen Integer Yes day_of_week Integer Yes days_seen_bytes Bytes Yes days_active_bytes Bytes Yes normalized_app_id String Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived baseline_clients_yearly_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#bookmarks_sync","title":"bookmarks_sync","text":"App-specific view for Glean ping \"bookmarks-sync\"
firefox_ios.bookmarks_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.bookmarks_sync, org_mozilla_ios_firefoxbeta.bookmarks_sync, org_mozilla_ios_fennec.bookmarks_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#client_adclicks_history","title":"client_adclicks_history","text":"Client Adclicks History
firefox_ios.client_adclicks_history
Client Adclick History. Contains a map of each day in a clients history and the number of adclicks on that day.
For use with LTV.
- Owners:
- frank@mozilla.com
Schema Column Description Type Nullable client_id Unique ID for the client installation. String Yes sample_id Sample ID to limit query results during an analysis. Integer Yes ad_click_history History of ad_clicks for a user, by submission_date Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived client_adclicks_history_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_ios.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#creditcards_sync","title":"creditcards_sync","text":"App-specific view for Glean ping \"creditcards-sync\"
firefox_ios.creditcards_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.creditcards_sync, org_mozilla_ios_firefoxbeta.creditcards_sync, org_mozilla_ios_fennec.creditcards_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
firefox_ios.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.deletion_request, org_mozilla_ios_firefoxbeta.deletion_request, org_mozilla_ios_fennec.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#events","title":"events","text":"App-specific view for Glean ping \"events\"
firefox_ios.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.events, org_mozilla_ios_firefoxbeta.events, org_mozilla_ios_fennec.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_ios.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#firefox_ios_clients","title":"firefox_ios_clients","text":"Firefox Ios Clients
firefox_ios.firefox_ios_clients
Please provide a description for the query
Schema Column Description Type Nullable client_id Unique ID for the client installation. String Yes sample_id Sample ID to limit query results during an analysis. Integer Yes first_seen_date Date when the app first reported a baseline ping for the client. Date Yes first_reported_country First reported country for the client installation. String Yes first_reported_isp Name of the first reported isp (Internet Service Provider). String Yes channel Channel where the browser is released. String Yes device_manufacturer Manufacturer of the device where the client is installed. String Yes device_model Model of the device where the client is installed. String Yes os_version Version of the Operating System where the client is originally installed. String Yes app_version App display version for this client installation. String Yes is_activated Determines if a client is activated based on the activation metric and a 7 day lag. Boolean Yes submission_timestamp Timestamp of the ping which contained the adjust information. Timestamp Yes adjust_ad_group Structure parameter for the the ad group of a campaign. String Yes adjust_campaign Structure parameter for the campaign name. String Yes adjust_creative Structure parameter for the creative content of a campaign. String Yes adjust_network The type of source of a client installation. String Yes metadata Additional context around the source of this record. Record Yes is_suspicious_device_client Flag to identify suspicious device users, see bug-1846554 for more info. Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived firefox_ios_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#first_session","title":"first_session","text":"App-specific view for Glean ping \"first-session\"
firefox_ios.first_session
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.first_session, org_mozilla_ios_firefoxbeta.first_session, org_mozilla_ios_fennec.first_session).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#funnel_retention_clients","title":"funnel_retention_clients","text":"Funnel Retention Clients
firefox_ios.funnel_retention_clients
Please provide a description for the query
Schema Column Description Type Nullable first_seen_date Date Yes client_id String Yes sample_id Integer Yes first_reported_country String Yes first_reported_isp String Yes adjust_ad_group String Yes adjust_campaign String Yes adjust_creative String Yes adjust_network String Yes retained_week_2 Boolean Yes retained_week_4 Boolean Yes days_seen_in_first_28_days Integer Yes repeat_first_month_user Boolean Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#funnel_retention_week_4","title":"funnel_retention_week_4","text":"Funnel Retention Week 4
firefox_ios.funnel_retention_week_4
Please provide a description for the query
Schema Column Description Type Nullable submission_date Partition field, also corresponds to internal execution date of the job (first_seen_date + 28 days). Date Yes first_seen_date Date of when the client was first seen. Date Yes first_reported_country First reported country for the client installation. String Yes first_reported_isp Name of the first reported isp (Internet Service Provider). String Yes adjust_ad_group Structure parameter for the the ad group of a campaign. String Yes adjust_campaign Structure parameter for the campaign name. String Yes adjust_creative Structure parameter for the creative content of a campaign. String Yes adjust_network The type of source of a client installation. String Yes new_profiles Count of new_profiles for the given grouping. Integer Yes repeat_user Count of clients categorised as \"repeat_first_month_user\" for the grouping. Integer Yes retained_week_4 Count of clients categorised as \"retained_week_4\" for the grouping. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived funnel_retention_week_4_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#history_sync","title":"history_sync","text":"App-specific view for Glean ping \"history-sync\"
firefox_ios.history_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.history_sync, org_mozilla_ios_firefoxbeta.history_sync, org_mozilla_ios_fennec.history_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#logins_sync","title":"logins_sync","text":"App-specific view for Glean ping \"logins-sync\"
firefox_ios.logins_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.logins_sync, org_mozilla_ios_firefoxbeta.logins_sync, org_mozilla_ios_fennec.logins_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
firefox_ios.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.metrics, org_mozilla_ios_firefoxbeta.metrics, org_mozilla_ios_fennec.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_ios.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_ios.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#new_profile_activation","title":"new_profile_activation","text":"New Profile Activation
firefox_ios.new_profile_activation
Please provide a description for the query
Schema Column Description Type Nullable client_id Unique ID for the client installation. String Yes sample_id Sample ID to limit query results during an analysis. Integer Yes normalized_channel The channel the application is being distributed on (normalized). This could be release, beta, etc. String Yes app_build The build identifier generated by the CI system (e.g. \"1234/A\"). If the value was not provided through configuration, this metric gets set to Unknown. String Yes app_channel The channel the application is being distributed on. String Yes app_display_version The user visible version string (e.g. \"1.0.3\"). If the value was not provided through configuration, this metric gets set to Unknown. String Yes device_manufacturer The manufacturer of the device the application is running on. Not set if the device manufacturer can't be determined (e.g. on Desktop). String Yes device_model The model of the device the application is running on. On Android, this is Build.MODEL, the user-visible marketing name, like \"Pixel 2 XL\". Not set if the device model can't be determined (e.g. on Desktop). String Yes isp Name of the isp (Internet Service Provider). String Yes locale The locale of the application during initialization (e.g. \"es-ES\"). If the locale can't be determined on the system, the value is \"und\", to indicate \"undetermined\". String Yes city City associated with the client's activity. String Yes country Country associated with the client's activity (2 letter ISO country codes used). String Yes first_seen_date Date when the app first reported a baseline ping for the client. Date Yes submission_date Processing date, this indicates which date partiion was used when generating this record. Date Yes new_profile Determines if a client is a new profile. Integer Yes activated Determines if a client is activated based on the activation metric and a 7 day lag. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_ios_derived new_profile_activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#sync","title":"sync","text":"App-specific view for Glean ping \"sync\"
firefox_ios.sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.sync, org_mozilla_ios_firefoxbeta.sync, org_mozilla_ios_fennec.sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#tabs_sync","title":"tabs_sync","text":"App-specific view for Glean ping \"tabs-sync\"
firefox_ios.tabs_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.tabs_sync, org_mozilla_ios_firefoxbeta.tabs_sync, org_mozilla_ios_fennec.tabs_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_baseline","title":"temp_baseline","text":"App-specific view for Glean ping \"temp-baseline\"
firefox_ios.temp_baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_baseline, org_mozilla_ios_firefoxbeta.temp_baseline, org_mozilla_ios_fennec.temp_baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_bookmarks_sync","title":"temp_bookmarks_sync","text":"App-specific view for Glean ping \"temp-bookmarks-sync\"
firefox_ios.temp_bookmarks_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_bookmarks_sync, org_mozilla_ios_firefoxbeta.temp_bookmarks_sync, org_mozilla_ios_fennec.temp_bookmarks_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_clients_sync","title":"temp_clients_sync","text":"App-specific view for Glean ping \"temp-clients-sync\"
firefox_ios.temp_clients_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_clients_sync, org_mozilla_ios_firefoxbeta.temp_clients_sync, org_mozilla_ios_fennec.temp_clients_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_credit_cards_sync","title":"temp_credit_cards_sync","text":"App-specific view for Glean ping \"temp-credit-cards-sync\"
firefox_ios.temp_credit_cards_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_credit_cards_sync, org_mozilla_ios_firefoxbeta.temp_credit_cards_sync, org_mozilla_ios_fennec.temp_credit_cards_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_history_sync","title":"temp_history_sync","text":"App-specific view for Glean ping \"temp-history-sync\"
firefox_ios.temp_history_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_history_sync, org_mozilla_ios_firefoxbeta.temp_history_sync, org_mozilla_ios_fennec.temp_history_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_logins_sync","title":"temp_logins_sync","text":"App-specific view for Glean ping \"temp-logins-sync\"
firefox_ios.temp_logins_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_logins_sync, org_mozilla_ios_firefoxbeta.temp_logins_sync, org_mozilla_ios_fennec.temp_logins_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_rust_tabs_sync","title":"temp_rust_tabs_sync","text":"App-specific view for Glean ping \"temp-rust-tabs-sync\"
firefox_ios.temp_rust_tabs_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_rust_tabs_sync, org_mozilla_ios_firefoxbeta.temp_rust_tabs_sync, org_mozilla_ios_fennec.temp_rust_tabs_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_sync","title":"temp_sync","text":"App-specific view for Glean ping \"temp-sync\"
firefox_ios.temp_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_sync, org_mozilla_ios_firefoxbeta.temp_sync, org_mozilla_ios_fennec.temp_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#temp_tabs_sync","title":"temp_tabs_sync","text":"App-specific view for Glean ping \"temp-tabs-sync\"
firefox_ios.temp_tabs_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.temp_tabs_sync, org_mozilla_ios_firefoxbeta.temp_tabs_sync, org_mozilla_ios_fennec.temp_tabs_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_ios/#topsites_impression","title":"topsites_impression","text":"App-specific view for Glean ping \"topsites-impression\"
firefox_ios.topsites_impression
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox for iOS\" (org_mozilla_ios_firefox.topsites_impression, org_mozilla_ios_firefoxbeta.topsites_impression, org_mozilla_ios_fennec.topsites_impression).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_launcher_process/","title":"firefox-launcher-process","text":"User-facing views related to document namespace firefox-launcher-process; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/firefox-launcher-process
Source Directory
"},{"location":"mozdata/firefox_launcher_process/#launcher_process_failure","title":"launcher_process_failure","text":"Historical Pings for firefox-launcher-process/launcher-process-failure
firefox_launcher_process.launcher_process_failure
A historical view of pings sent for the firefox-launcher-process/launcher-process-failure
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes build_id Build ID of the failing binary String Yes build_version Version of the failing binary String Yes cpu_arch One of the values from the Windows SYSTEM_INFO::wProcessorArchitecture field Integer Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes launcher_error The error that raised the launcher process failure Record Yes memory Information about the host computer's memory configuration Record Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes num_logical_cpus The number of logical CPUs on the host machine Integer Yes os_locale The current user's OS locale setting String Yes os_version Windows version numnber in major.minor.build.UBR format (UBR is optional, only available on Win10) String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes security Information about the security applications registered with Windows on the host computer Record Yes server_os True if this build was running atop a Windows Server OS Boolean Yes signatures String No submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes update_channel Channel that this build was built for String Yes version Float Yes xpcom_abi This build's XPCOM_ABI string String Yes is_admin_without_uac True if the process was launched with Administrator privileges but without User Account Control (= UAC) Boolean Yes modules List of leaf names of all modules found in the launcher process at the time of failure Record No process_type The type of the process which failed to start as a sandboxed process String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_launcher_process_stable launcher_process_failure_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/","title":"Firefox Reality","text":"Views on data from firefox_reality
Source Directory
"},{"location":"mozdata/firefox_reality/#addresses_sync","title":"addresses_sync","text":"App-specific view for Glean ping \"addresses-sync\"
firefox_reality.addresses_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.addresses_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser addresses_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
firefox_reality.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_reality.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_reality.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_reality.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#bookmarks_sync","title":"bookmarks_sync","text":"App-specific view for Glean ping \"bookmarks-sync\"
firefox_reality.bookmarks_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.bookmarks_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser bookmarks_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_reality.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_reality_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#creditcards_sync","title":"creditcards_sync","text":"App-specific view for Glean ping \"creditcards-sync\"
firefox_reality.creditcards_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.creditcards_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser creditcards_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
firefox_reality.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#events","title":"events","text":"App-specific view for Glean ping \"events\"
firefox_reality.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_reality.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#history_sync","title":"history_sync","text":"App-specific view for Glean ping \"history-sync\"
firefox_reality.history_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.history_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser history_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#logins_sync","title":"logins_sync","text":"App-specific view for Glean ping \"logins-sync\"
firefox_reality.logins_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.logins_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser logins_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
firefox_reality.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_reality.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_reality_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_reality.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_reality_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#session_end","title":"session_end","text":"App-specific view for Glean ping \"session-end\"
firefox_reality.session_end
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.session_end).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser session_end Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#sync","title":"sync","text":"App-specific view for Glean ping \"sync\"
firefox_reality.sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality/#tabs_sync","title":"tabs_sync","text":"App-specific view for Glean ping \"tabs-sync\"
firefox_reality.tabs_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality\" (org_mozilla_vrbrowser.tabs_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser tabs_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/","title":"Firefox Reality Pc","text":"Views on data from firefox_reality_pc
Source Directory
"},{"location":"mozdata/firefox_reality_pc/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
firefox_reality_pc.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality for PC-connected VR platforms\" (org_mozilla_firefoxreality.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
firefox_reality_pc.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
firefox_reality_pc.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
firefox_reality_pc.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
firefox_reality_pc.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_reality_pc_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
firefox_reality_pc.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality for PC-connected VR platforms\" (org_mozilla_firefoxreality.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#events","title":"events","text":"App-specific view for Glean ping \"events\"
firefox_reality_pc.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality for PC-connected VR platforms\" (org_mozilla_firefoxreality.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_reality_pc.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#launch","title":"launch","text":"App-specific view for Glean ping \"launch\"
firefox_reality_pc.launch
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality for PC-connected VR platforms\" (org_mozilla_firefoxreality.launch).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality launch Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
firefox_reality_pc.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Reality for PC-connected VR platforms\" (org_mozilla_firefoxreality.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
firefox_reality_pc.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_reality_pc_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_reality_pc/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
firefox_reality_pc.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_reality_pc_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_translations/","title":"firefox-translations","text":"User-facing views related to document namespace firefox-translations; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/firefox-translations
Source Directory
"},{"location":"mozdata/firefox_translations/#custom","title":"custom","text":"Historical Pings for firefox-translations/custom
firefox_translations.custom
A historical view of pings sent for the firefox-translations/custom
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_translations_stable custom_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_translations/#deletion_request","title":"deletion_request","text":"Historical Pings for firefox-translations/deletion-request
firefox_translations.deletion_request
A historical view of pings sent for the firefox-translations/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_translations_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_translations/#events","title":"events","text":"Historical Pings for firefox-translations/events
firefox_translations.events
A historical view of pings sent for the firefox-translations/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_translations_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/firefox_translations/#events_unnested","title":"events_unnested","text":"Events Unnested
firefox_translations.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_translations events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/fivetran_costs/","title":"Fivetran Costs","text":"Analyze the costs for Fivetran connectors.
Source Directory
"},{"location":"mozdata/fivetran_costs/#daily_connector_costs","title":"daily_connector_costs","text":"Daily Connector Costs
fivetran_costs.daily_connector_costs
Please provide a description for the query
Schema Column Description Type Nullable destination Name of the destination warehouse. String Yes measured_date Date of when the active row measurement was made. Date Yes connector The name of the connector being measured. String Yes billing_type Information on how the active rows got billed, paid or free. String Yes active_rows The number of new distinct primary keys on the current day synced for the connector. Integer Yes cost_in_usd Costs in USD for that row. This value is not rounded to the cent but contains fractional cents for later calculations. Bignumeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod fivetran_costs_derived daily_connector_costs_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/","title":"Focus Android","text":"Views on data from focus_android
Source Directory
"},{"location":"mozdata/focus_android/#activation","title":"activation","text":"App-specific view for Glean ping \"activation\"
focus_android.activation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.activation, org_mozilla_focus_beta.activation, org_mozilla_focus_nightly.activation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
focus_android.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_android_derived active_users_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
focus_android.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.baseline, org_mozilla_focus_beta.baseline, org_mozilla_focus_nightly.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
focus_android.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
focus_android.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
focus_android.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
focus_android.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes sample_id Integer Yes submission_date Date Yes normalized_channel String Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_android_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"App-specific view for Glean ping \"cookie-banner-report-site\"
focus_android.cookie_banner_report_site
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.cookie_banner_report_site, org_mozilla_focus_beta.cookie_banner_report_site, org_mozilla_focus_nightly.cookie_banner_report_site).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#crash","title":"crash","text":"App-specific view for Glean ping \"crash\"
focus_android.crash
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.crash, org_mozilla_focus_beta.crash, org_mozilla_focus_nightly.crash).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
focus_android.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.deletion_request, org_mozilla_focus_beta.deletion_request, org_mozilla_focus_nightly.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#events","title":"events","text":"App-specific view for Glean ping \"events\"
focus_android.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.events, org_mozilla_focus_beta.events, org_mozilla_focus_nightly.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#events_unnested","title":"events_unnested","text":"Events Unnested
focus_android.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#fog_validation","title":"fog_validation","text":"App-specific view for Glean ping \"fog-validation\"
focus_android.fog_validation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.fog_validation, org_mozilla_focus_beta.fog_validation, org_mozilla_focus_nightly.fog_validation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
focus_android.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.metrics, org_mozilla_focus_beta.metrics, org_mozilla_focus_nightly.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
focus_android.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_android_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
focus_android.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_android_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_android/#pageload","title":"pageload","text":"App-specific view for Glean ping \"pageload\"
focus_android.pageload
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for Android\" (org_mozilla_focus.pageload, org_mozilla_focus_beta.pageload, org_mozilla_focus_nightly.pageload).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/","title":"Focus Ios","text":"Views on data from focus_ios
Source Directory
"},{"location":"mozdata/focus_ios/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
focus_ios.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_ios_derived active_users_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
focus_ios.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for iOS\" (org_mozilla_ios_focus.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
focus_ios.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
focus_ios.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
focus_ios.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
focus_ios.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_ios_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
focus_ios.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for iOS\" (org_mozilla_ios_focus.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#events","title":"events","text":"App-specific view for Glean ping \"events\"
focus_ios.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for iOS\" (org_mozilla_ios_focus.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#events_unnested","title":"events_unnested","text":"Events Unnested
focus_ios.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
focus_ios.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Focus for iOS\" (org_mozilla_ios_focus.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
focus_ios.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_ios_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/focus_ios/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
focus_ios.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod focus_ios_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/glean_dictionary/","title":"glean-dictionary","text":"User-facing views related to document namespace glean-dictionary; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/glean-dictionary
Source Directory
"},{"location":"mozdata/glean_dictionary/#deletion_request","title":"deletion_request","text":"Historical Pings for glean-dictionary/deletion-request
glean_dictionary.deletion_request
A historical view of pings sent for the glean-dictionary/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod glean_dictionary_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/glean_dictionary/#events","title":"events","text":"Historical Pings for glean-dictionary/events
glean_dictionary.events
A historical view of pings sent for the glean-dictionary/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod glean_dictionary_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/glean_dictionary/#events_unnested","title":"events_unnested","text":"Events Unnested
glean_dictionary.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod glean_dictionary events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/glean_dictionary/#page_view","title":"page_view","text":"Historical Pings for glean-dictionary/page-view
glean_dictionary.page_view
A historical view of pings sent for the glean-dictionary/page-view
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod glean_dictionary_stable page_view_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/google_ads/","title":"Google_ads","text":"User facing views for Google Ads derived tables.
Source Directory
"},{"location":"mozdata/google_ads/#campaign_conversions_by_date","title":"campaign_conversions_by_date","text":"Campaign Conversions By Date
google_ads.campaign_conversions_by_date
Number of conversions and installs by campaign & date.
- Owners:
- frank@mozilla.com
Schema Column Description Type Nullable date Date Yes campaign_name String Yes campaign_id Integer Yes installs Float Yes conversions Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod google_ads_derived campaign_conversions_by_date_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/google_ads/#campaign_names_map","title":"campaign_names_map","text":"Campaign Names Map
google_ads.campaign_names_map
Please provide a description for the query
Schema Column Description Type Nullable campaign_id Integer Yes campaign_name String Yes is_most_recent_record Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod google_ads_derived campaign_names_map_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/google_ads/#daily_ad_group_stats","title":"daily_ad_group_stats","text":"Daily Ad Group Stats
google_ads.daily_ad_group_stats
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes account_name String Yes account_id Integer Yes campaign_name String Yes campaign_id Integer Yes ad_group_name String Yes ad_group_id String Yes ad_group_status String Yes ad_group_type String Yes spend Float Yes clicks Integer Yes impressions Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod google_ads_derived daily_ad_group_stats_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/google_ads/#daily_campaign_stats","title":"daily_campaign_stats","text":"Daily Campaign Stats
google_ads.daily_campaign_stats
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes account_name String Yes account_id Integer Yes campaign_name String Yes campaign_id Integer Yes advertising_channel_type String Yes advertising_channel_subtype String Yes status String Yes spend Float Yes clicks Integer Yes impressions Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod google_ads_derived daily_campaign_stats_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/hubs/","title":"Hubs","text":"Data related to the Hubs service
Source Directory
"},{"location":"mozdata/hubs/#active_subscription_ids","title":"active_subscription_ids","text":"Active Subscription Ids
hubs.active_subscription_ids
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes subscription_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod hubs_derived active_subscription_ids_live moz-fx-data-shared-prod hubs_derived active_subscription_ids_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/hubs/#active_subscriptions","title":"active_subscriptions","text":"Active Subscriptions
hubs.active_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes plan_id String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes promotion_codes String No promotion_discounts_amount Integer Yes count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod hubs_derived active_subscriptions_live moz-fx-data-shared-prod hubs_derived active_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/hubs/#subscription_events","title":"subscription_events","text":"Subscription Events
hubs.subscription_events
Please provide a description for the query
Schema Column Description Type Nullable event_date Date Yes event_type String Yes granular_event_type String Yes plan_id String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes promotion_codes String No count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod hubs_derived subscription_events_live moz-fx-data-shared-prod hubs_derived subscription_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/hubs/#subscriptions","title":"subscriptions","text":"Subscriptions
hubs.subscriptions
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes subscription_id String Yes original_subscription_id String Yes plan_id String Yes status String Yes event_timestamp Timestamp Yes subscription_start_date Timestamp Yes original_subscription_start_date Timestamp Yes subscription_start_reason String Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes ended_at Timestamp Yes ended_reason String Yes fxa_uid String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes product_id String Yes product_name String Yes pricing_plan String Yes billing_grace_period Interval Yes promotion_codes String No promotion_discounts_amount Integer Yes customer_start_date Timestamp Yes end_date Timestamp Yes months_retained Integer Yes original_subscription_months_retained Integer Yes current_months_since_subscription_start Integer Yes current_months_since_original_subscription_start Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod hubs_derived subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/internet_outages/","title":"Internet Outages","text":"Derived data useful for detecting regional internet outages, shared with some trusted external partners.
See https://docs.google.com/document/d/15HvdPS3UwGhAir6HyWHDLDRaxUFycx4jagJ_ZrHr9D8/edit
Source Directory
"},{"location":"mozdata/internet_outages/#global_outages_v1","title":"global_outages_v1","text":"Internet Outages
internet_outages.global_outages_v1
This contains a set aggregated metrics that correlate to internet outages for different countries in the world.
The dataset contains the following fields: - country
: the Country code of the client. - city
: the City name (only for cities with a population >= 15000, 'unknown' otherwise). - datetime
: the date and the time (truncated to hour) the data was submitted by the client. - proportion_undefined
: the proportion of users who failed to send telemetry for a reason that was not listed in the other cases. - proportion_timeout
: the proportion of users that had their connection timeout while uploading telemetry (after 90s, in Firefox Desktop). - proportion_abort
: the proportion of users that had their connection terminated by the client (for example, terminating open connections before shutting down). - proportion_unreachable
: the proportion of users that failed to upload telemetry because the server was not reachable (e.g. because the host was not reachable, proxy problems or OS waking up after a suspension). - proportion_terminated
: the proportion of users that had their connection terminated internally by the networking code. - proportion_channel_open
: the proportion of users for which the upload request was terminated immediately, by the client, because of a Necko internal error. - avg_dns_success_time
: the average time it takes for a successful DNS resolution, in milliseconds. - missing_dns_success
: counts how many sessions did not report the DNS_LOOKUP_TIME
histogram. - avg_dns_failure_time
: the average time it takes for an unsuccessful DNS resolution, in milliseconds. - missing_dns_failure
: counts how many sessions did not report the DNS_FAILED_LOOKUP_TIME
histogram. - count_dns_failure
: the average count of unsuccessful DNS resolutions reported. - ssl_error_prop
: the proportion of users that reported an error through the SSL_CERT_VERIFICATION_ERRORS
histogram. - avg_tls_handshake_time
: the average time after the TCP SYN to ready for HTTP, in milliseconds.
Caveats with the data: As with any observational data, there are many caveats and interpretation must be done carefully. Below is a list of issues we have considered, but it is not exhaustive. - Firefox users are not representative of the general population in their region. - Users can experience multiple types of failures and so the proportions are not summable. For example, if 2.4% of clients had a timeout and 2.6% of clients had eUnreachable that doesn't necessarily mean that 5.0% of clients had a timeout or a eUnreachable - Geographical data is based on IPGeo databases. These databases are imperfect, so some activity may be attributed to the wrong location. Further, proxy and VPN usage can create geo-attribution errors.
Schema Column Description Type Nullable country String Yes city String Yes datetime Timestamp Yes proportion_undefined Float Yes proportion_timeout Float Yes proportion_abort Float Yes proportion_unreachable Float Yes proportion_terminated Float Yes proportion_channel_open Float Yes avg_dns_success_time Float Yes missing_dns_success Float Yes avg_dns_failure_time Float Yes missing_dns_failure Float Yes count_dns_failure Float Yes ssl_error_prop Float Yes avg_tls_handshake_time Float Yes Source Directory | Metadata File
"},{"location":"mozdata/introduction/","title":"Introduction","text":"mozdata
is the main GCP project that includes datasets for user analysis as of February 2021. This project is filled with views that reference underlying tables in moz-fx-data-shared-prod
. Users can use data tools like STMO to issue queries in this project. For more context, see the Projects, Datasets, and Tables in BigQuery article on docs.telemetry.mozilla.org.
"},{"location":"mozdata/klar_android/","title":"Klar Android","text":"Views on data from klar_android
Source Directory
"},{"location":"mozdata/klar_android/#activation","title":"activation","text":"App-specific view for Glean ping \"activation\"
klar_android.activation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.activation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar activation Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
klar_android.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
klar_android.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
klar_android.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
klar_android.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
klar_android.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes sample_id Integer Yes submission_date Date Yes normalized_channel String Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_android_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"App-specific view for Glean ping \"cookie-banner-report-site\"
klar_android.cookie_banner_report_site
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.cookie_banner_report_site).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar cookie_banner_report_site Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#crash","title":"crash","text":"App-specific view for Glean ping \"crash\"
klar_android.crash
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.crash).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar crash Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
klar_android.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#events","title":"events","text":"App-specific view for Glean ping \"events\"
klar_android.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#events_unnested","title":"events_unnested","text":"Events Unnested
klar_android.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#fog_validation","title":"fog_validation","text":"App-specific view for Glean ping \"fog-validation\"
klar_android.fog_validation
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.fog_validation).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar fog_validation Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
klar_android.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
klar_android.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_android_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
klar_android.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_android_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_android/#pageload","title":"pageload","text":"App-specific view for Glean ping \"pageload\"
klar_android.pageload
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for Android\" (org_mozilla_klar.pageload).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar pageload Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/","title":"Klar Ios","text":"Views on data from klar_ios
Source Directory
"},{"location":"mozdata/klar_ios/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
klar_ios.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_ios_derived active_users_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
klar_ios.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for iOS\" (org_mozilla_ios_klar.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
klar_ios.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
klar_ios.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
klar_ios.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
klar_ios.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes uri_count Integer Yes is_default_browser Boolean Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_ios_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
klar_ios.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for iOS\" (org_mozilla_ios_klar.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#events","title":"events","text":"App-specific view for Glean ping \"events\"
klar_ios.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for iOS\" (org_mozilla_ios_klar.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#events_unnested","title":"events_unnested","text":"Events Unnested
klar_ios.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
klar_ios.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Firefox Klar for iOS\" (org_mozilla_ios_klar.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
klar_ios.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_ios_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/klar_ios/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
klar_ios.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes uri_count Integer Yes is_default_browser Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod klar_ios_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/","title":"Lockwise Android","text":"Views on data from lockwise_android
Source Directory
"},{"location":"mozdata/lockwise_android/#addresses_sync","title":"addresses_sync","text":"App-specific view for Glean ping \"addresses-sync\"
lockwise_android.addresses_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.addresses_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox addresses_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
lockwise_android.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
lockwise_android.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
lockwise_android.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
lockwise_android.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#bookmarks_sync","title":"bookmarks_sync","text":"App-specific view for Glean ping \"bookmarks-sync\"
lockwise_android.bookmarks_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.bookmarks_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox bookmarks_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
lockwise_android.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod lockwise_android_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#creditcards_sync","title":"creditcards_sync","text":"App-specific view for Glean ping \"creditcards-sync\"
lockwise_android.creditcards_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.creditcards_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox creditcards_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
lockwise_android.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#events","title":"events","text":"App-specific view for Glean ping \"events\"
lockwise_android.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#events_unnested","title":"events_unnested","text":"Events Unnested
lockwise_android.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#history_sync","title":"history_sync","text":"App-specific view for Glean ping \"history-sync\"
lockwise_android.history_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.history_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox history_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#logins_sync","title":"logins_sync","text":"App-specific view for Glean ping \"logins-sync\"
lockwise_android.logins_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.logins_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox logins_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
lockwise_android.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
lockwise_android.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod lockwise_android_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
lockwise_android.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod lockwise_android_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#sync","title":"sync","text":"App-specific view for Glean ping \"sync\"
lockwise_android.sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_android/#tabs_sync","title":"tabs_sync","text":"App-specific view for Glean ping \"tabs-sync\"
lockwise_android.tabs_sync
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for Android\" (mozilla_lockbox.tabs_sync).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox tabs_sync Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/","title":"Lockwise Ios","text":"Views on data from lockwise_ios
Source Directory
"},{"location":"mozdata/lockwise_ios/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
lockwise_ios.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for iOS\" (org_mozilla_ios_lockbox.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
lockwise_ios.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
lockwise_ios.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
lockwise_ios.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
lockwise_ios.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod lockwise_ios_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
lockwise_ios.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for iOS\" (org_mozilla_ios_lockbox.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#events","title":"events","text":"App-specific view for Glean ping \"events\"
lockwise_ios.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for iOS\" (org_mozilla_ios_lockbox.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#events_unnested","title":"events_unnested","text":"Events Unnested
lockwise_ios.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
lockwise_ios.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Lockwise for iOS\" (org_mozilla_ios_lockbox.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
lockwise_ios.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod lockwise_ios_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/lockwise_ios/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
lockwise_ios.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod lockwise_ios_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/","title":"Mach","text":"Views on data from mach
Source Directory
"},{"location":"mozdata/mach/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
mach.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mach\" (mozilla_mach.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mach.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mach.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mach.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
mach.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mach_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
mach.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mach\" (mozilla_mach.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#events","title":"events","text":"App-specific view for Glean ping \"events\"
mach.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mach\" (mozilla_mach.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#events_unnested","title":"events_unnested","text":"Events Unnested
mach.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
mach.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mach\" (mozilla_mach.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
mach.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mach_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
mach.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mach_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mach/#usage","title":"usage","text":"App-specific view for Glean ping \"usage\"
mach.usage
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mach\" (mozilla_mach.usage).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach usage Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mdn_yari/","title":"mdn-yari","text":"User-facing views related to document namespace mdn-yari; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mdn-yari
Source Directory
"},{"location":"mozdata/mdn_yari/#action","title":"action","text":"Historical Pings for mdn-yari/action
mdn_yari.action
A historical view of pings sent for the mdn-yari/action
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mdn_yari_stable action_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mdn_yari/#deletion_request","title":"deletion_request","text":"Historical Pings for mdn-yari/deletion-request
mdn_yari.deletion_request
A historical view of pings sent for the mdn-yari/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mdn_yari_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mdn_yari/#events","title":"events","text":"Historical Pings for mdn-yari/events
mdn_yari.events
A historical view of pings sent for the mdn-yari/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mdn_yari_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mdn_yari/#events_unnested","title":"events_unnested","text":"Events Unnested
mdn_yari.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mdn_yari events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mdn_yari/#page","title":"page","text":"Historical Pings for mdn-yari/page
mdn_yari.page
A historical view of pings sent for the mdn-yari/page
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mdn_yari_stable page_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/","title":"messaging-system","text":"User-facing views related to document namespace messaging-system; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/messaging-system
Source Directory
"},{"location":"mozdata/messaging_system/#cfr","title":"cfr","text":"Historical Pings for messaging-system/cfr
messaging_system.cfr
A historical view of pings sent for the messaging-system/cfr
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes bucket_id String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes impression_id A UUID representing this user. Note that it's not client_id, nor can it be used to link to a client_id String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No source Added to reduce validation exceptions: see #1787882 String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable cfr_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#cfr_exact_mau28_by_dimensions","title":"cfr_exact_mau28_by_dimensions","text":"Cfr Exact Mau28 By Dimensions
messaging_system.cfr_exact_mau28_by_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes release_channel String Yes country String Yes country_name String Yes locale String Yes version String Yes mau Integer Yes wau Integer Yes dau Integer Yes whats_new_mau Integer Yes whats_new_wau Integer Yes whats_new_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived cfr_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#cfr_users_daily","title":"cfr_users_daily","text":"Cfr Users Daily
messaging_system.cfr_users_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes impression_id String Yes client_id String Yes seen_whats_new Boolean Yes release_channel String Yes locale String Yes country String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived cfr_users_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#cfr_users_last_seen","title":"cfr_users_last_seen","text":"Cfr Users Last Seen
messaging_system.cfr_users_last_seen
Please provide a description for the query
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_seen_whats_new Integer Yes days_seen_bits Integer Yes days_seen_whats_new_bits Integer Yes submission_date Date Yes impression_id String Yes client_id String Yes seen_whats_new Boolean Yes release_channel String Yes locale String Yes country String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived cfr_users_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#event_types","title":"event_types","text":"Event Types
messaging_system.event_types
Please provide a description for the query
Schema Column Description Type Nullable category String Yes event String Yes first_timestamp Timestamp Yes numeric_index Integer Yes index String Yes event_properties Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived event_types_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#events_daily","title":"events_daily","text":"Events Daily
messaging_system.events_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes events String Yes app_version String Yes os String Yes addon_version String Yes locale String Yes normalized_channel String Yes city String Yes country String Yes subdivision1 String Yes experiments Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived events_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#infobar","title":"infobar","text":"Historical Pings for messaging-system/infobar
messaging_system.infobar
A historical view of pings sent for the messaging-system/infobar
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes browser_session_id A mirror of the browser sessionId, as defined in https://github.com/mozilla-services/mozilla-pipeline-schemas/blob/main/schemas/telemetry/main/main.4.schema.json String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable infobar_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#moments","title":"moments","text":"Historical Pings for messaging-system/moments
messaging_system.moments
A historical view of pings sent for the messaging-system/moments
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes bucket_id String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No impression_id A UUID representing this user. Note that it's not client_id, nor can it be used to link to a client_id String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable moments_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#onboarding","title":"onboarding","text":"Historical Pings for messaging-system/onboarding
messaging_system.onboarding
A historical view of pings sent for the messaging-system/onboarding
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes browser_session_id A mirror of the browser sessionId, as defined in https://github.com/mozilla-services/mozilla-pipeline-schemas/blob/main/schemas/telemetry/main/main.4.schema.json String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No attribution Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable onboarding_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#onboarding_exact_mau28_by_dimensions","title":"onboarding_exact_mau28_by_dimensions","text":"Onboarding Exact Mau28 By Dimensions
messaging_system.onboarding_exact_mau28_by_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes release_channel String Yes country String Yes country_name String Yes locale String Yes version String Yes mau Integer Yes wau Integer Yes dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived onboarding_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#onboarding_users_daily","title":"onboarding_users_daily","text":"Onboarding Users Daily
messaging_system.onboarding_users_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes release_channel String Yes locale String Yes country String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived onboarding_users_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#onboarding_users_last_seen","title":"onboarding_users_last_seen","text":"Onboarding Users Last Seen
messaging_system.onboarding_users_last_seen
Please provide a description for the query
Schema Column Description Type Nullable days_since_seen Integer Yes days_seen_bits Integer Yes submission_date Date Yes client_id String Yes release_channel String Yes locale String Yes country String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived onboarding_users_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#personalization_experiment","title":"personalization_experiment","text":"Historical Pings for messaging-system/personalization-experiment
messaging_system.personalization_experiment
A historical view of pings sent for the messaging-system/personalization-experiment
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes boolean_client_context_features Record Yes client_context_features Record Yes document_id The document ID specified in the URI when the client sent this message String Yes features_array_used_in_score_computation Float No impression_id String Yes metadata Record Yes model_version Float Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes study_addon_version String Yes study_variation String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable personalization_experiment_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#snippets","title":"snippets","text":"Historical Pings for messaging-system/snippets
messaging_system.snippets
A historical view of pings sent for the messaging-system/snippets
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No source A string describing the source of this event String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable snippets_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#snippets_exact_mau28_by_dimensions","title":"snippets_exact_mau28_by_dimensions","text":"Snippets Exact Mau28 By Dimensions
messaging_system.snippets_exact_mau28_by_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes release_channel String Yes country String Yes country_name String Yes locale String Yes version String Yes mau Integer Yes wau Integer Yes dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived snippets_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#snippets_users_daily","title":"snippets_users_daily","text":"Snippets Users Daily
messaging_system.snippets_users_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes release_channel String Yes locale String Yes country String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived snippets_users_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#snippets_users_last_seen","title":"snippets_users_last_seen","text":"Snippets Users Last Seen
messaging_system.snippets_users_last_seen
Please provide a description for the query
Schema Column Description Type Nullable days_since_seen Integer Yes days_seen_bits Integer Yes submission_date Date Yes client_id String Yes release_channel String Yes locale String Yes country String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_derived snippets_users_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#spotlight","title":"spotlight","text":"Historical Pings for messaging-system/spotlight
messaging_system.spotlight
A historical view of pings sent for the messaging-system/spotlight
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes browser_session_id A mirror of the browser sessionId, as defined in https://github.com/mozilla-services/mozilla-pipeline-schemas/blob/main/schemas/telemetry/main/main.4.schema.json String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable spotlight_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#undesired_events","title":"undesired_events","text":"Historical Pings for messaging-system/undesired-events
messaging_system.undesired_events
A historical view of pings sent for the messaging-system/undesired-events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes impression_id A UUID representing this user. Note that it's not client_id, nor can it be used to link to a client_id String Yes locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes shield_id [DEPRECATED]: use `experiments` instead. A semicolon separated string to store a list of Shield study IDs String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable undesired_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/messaging_system/#whats_new_panel","title":"whats_new_panel","text":"Historical Pings for messaging-system/whats-new-panel
messaging_system.whats_new_panel
A historical view of pings sent for the messaging-system/whats-new-panel
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes addon_version String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes event An event identifier String Yes event_context A string that describes the context about this event String Yes experiments An object to record all active experiments, experiments IDs are stored as keys, and the value object stores the branch information. Example: {\"experiment_1\": {\"branch\": \"control\"}, \"experiment_2\": {\"branch\": \"treatment\"}}. This deprecates the \"shield_id\" used in activity-stream and messaging-system. Record No locale String Yes message_id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes profile_creation_date Integer Yes release_channel String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version String Yes browser_session_id A mirror of the browser sessionId, as defined in https://github.com/mozilla-services/mozilla-pipeline-schemas/blob/main/schemas/telemetry/main/main.4.schema.json String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod messaging_system_stable whats_new_panel_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mlhackweek_search/","title":"mlhackweek-search","text":"User-facing views related to document namespace mlhackweek-search; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mlhackweek-search
Source Directory
"},{"location":"mozdata/mlhackweek_search/#action","title":"action","text":"Historical Pings for mlhackweek-search/action
mlhackweek_search.action
A historical view of pings sent for the mlhackweek-search/action
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mlhackweek_search_stable action_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mlhackweek_search/#baseline","title":"baseline","text":"Historical Pings for mlhackweek-search/baseline
mlhackweek_search.baseline
A historical view of pings sent for the mlhackweek-search/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mlhackweek_search_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mlhackweek_search/#custom","title":"custom","text":"Historical Pings for mlhackweek-search/custom
mlhackweek_search.custom
A historical view of pings sent for the mlhackweek-search/custom
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mlhackweek_search_stable custom_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mlhackweek_search/#deletion_request","title":"deletion_request","text":"Historical Pings for mlhackweek-search/deletion-request
mlhackweek_search.deletion_request
A historical view of pings sent for the mlhackweek-search/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mlhackweek_search_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mlhackweek_search/#events","title":"events","text":"Historical Pings for mlhackweek-search/events
mlhackweek_search.events
A historical view of pings sent for the mlhackweek-search/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mlhackweek_search_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mlhackweek_search/#metrics","title":"metrics","text":"Historical Pings for mlhackweek-search/metrics
mlhackweek_search.metrics
A historical view of pings sent for the mlhackweek-search/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mlhackweek_search_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mobile/","title":"mobile","text":"User-facing views related to document namespace mobile; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mobile
Source Directory
"},{"location":"mozdata/mobile/#activation","title":"activation","text":"Historical Pings for mobile/activation
mobile.activation
A historical view of pings sent for the mobile/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes app_name String Yes channel String Yes client_id telemetry client_id, included only if identifer is empty String Yes created String Yes distribution_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes identifier hashed version of Google ID String Yes locale application locale, such as 'en-US' String Yes manufacturer Build.MANUFACTURER String Yes metadata Record Yes model Build.MODEL String Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes os String Yes osversion String Yes profile_date Integer Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes tz timezone offset in minutes from UTC Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mobile_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/","title":"monitor-cirrus","text":"User-facing views related to document namespace monitor-cirrus; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/monitor-cirrus
Source Directory
"},{"location":"mozdata/monitor_cirrus/#baseline","title":"baseline","text":"Historical Pings for monitor-cirrus/baseline
monitor_cirrus.baseline
A historical view of pings sent for the monitor-cirrus/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
monitor_cirrus.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
monitor_cirrus.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
monitor_cirrus.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#deletion_request","title":"deletion_request","text":"Historical Pings for monitor-cirrus/deletion-request
monitor_cirrus.deletion_request
A historical view of pings sent for the monitor-cirrus/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#enrollment","title":"enrollment","text":"Historical Pings for monitor-cirrus/enrollment
monitor_cirrus.enrollment
A historical view of pings sent for the monitor-cirrus/enrollment
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_stable enrollment_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#enrollment_status","title":"enrollment_status","text":"Historical Pings for monitor-cirrus/enrollment-status
monitor_cirrus.enrollment_status
A historical view of pings sent for the monitor-cirrus/enrollment-status
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_stable enrollment_status_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#events","title":"events","text":"Historical Pings for monitor-cirrus/events
monitor_cirrus.events
A historical view of pings sent for the monitor-cirrus/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#events_unnested","title":"events_unnested","text":"Events Unnested
monitor_cirrus.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#metrics","title":"metrics","text":"Historical Pings for monitor-cirrus/metrics
monitor_cirrus.metrics
A historical view of pings sent for the monitor-cirrus/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_cirrus/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
monitor_cirrus.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_cirrus_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_frontend/","title":"monitor-frontend","text":"User-facing views related to document namespace monitor-frontend; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/monitor-frontend
Source Directory
"},{"location":"mozdata/monitor_frontend/#deletion_request","title":"deletion_request","text":"Historical Pings for monitor-frontend/deletion-request
monitor_frontend.deletion_request
A historical view of pings sent for the monitor-frontend/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_frontend_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_frontend/#events","title":"events","text":"Historical Pings for monitor-frontend/events
monitor_frontend.events
A historical view of pings sent for the monitor-frontend/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_frontend_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitor_frontend/#events_unnested","title":"events_unnested","text":"Events Unnested
monitor_frontend.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitor_frontend events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/","title":"Monitoring","text":"User-facing views for pipeline monitoring, including views on payload_bytes
tables
Source Directory
"},{"location":"mozdata/monitoring/#airflow_dag","title":"airflow_dag","text":"Airflow Dag
monitoring.airflow_dag
Please provide a description for the query
Schema Column Description Type Nullable dag_id Airflow DAG id (.) String Yes root_dag_id Airflow Root DAG id String Yes subdag_id Airflow subdag id String Yes is_subdag Indicates if this DAG is a subdag Boolean Yes description DAG's description String Yes schedule_interval DAG's scheduling settings String Yes owners DAG owners (comma separated) String Yes is_active Indicates if the DAG is active Boolean Yes is_paused Indicates if the DAG is currently paused Boolean Yes has_task_concurrency_limits Indicates if DAG has concurrency limit set Boolean Yes max_active_runs Max number of active DAG runs allowed Integer Yes max_active_tasks Max number of active task instances in the DAG allowed Integer Yes next_dagrun Timestamp Yes next_dagrun_create_after Timestamp Yes next_dagrun_data_interval_start Timestamp Yes next_dagrun_data_interval_end Timestamp Yes last_parsed_time The last time the DAG was parsed Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_dag_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_dag_note","title":"airflow_dag_note","text":"Airflow Dag Note
monitoring.airflow_dag_note
Please provide a description for the query
Schema Column Description Type Nullable dag_run_id Integer Yes content String Yes created_at Timestamp Yes updated_at Timestamp Yes user_id Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_dag_note_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_dag_owner_attributes","title":"airflow_dag_owner_attributes","text":"Airflow Dag Owner Attributes
monitoring.airflow_dag_owner_attributes
Please provide a description for the query
Schema Column Description Type Nullable dag_id String Yes owner String Yes link String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_dag_owner_attributes_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_dag_run","title":"airflow_dag_run","text":"Airflow Dag Run
monitoring.airflow_dag_run
Please provide a description for the query
Schema Column Description Type Nullable dag_id Airflow DAG id String Yes run_type manual, scheduled or backfill String Yes external_trigger Indicates if the DAG was triggered externally Boolean Yes state State of the DAG run instance (e.g. success) String Yes execution_date Execution date of the DAG Run instance Timestamp Yes start_date When the DAG run started Timestamp Yes end_date When the DAG run finished Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_dag_run_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_dag_tag","title":"airflow_dag_tag","text":"Airflow Dag Tag
monitoring.airflow_dag_tag
Please provide a description for the query
Schema Column Description Type Nullable dag_id Airflow DAG id String Yes tags String No Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_dag_tag_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_dag_warning","title":"airflow_dag_warning","text":"Airflow Dag Warning
monitoring.airflow_dag_warning
Please provide a description for the query
Schema Column Description Type Nullable timestamp Timestamp Yes dag_id String Yes warning_type String Yes message String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_dag_warning_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_import_error","title":"airflow_import_error","text":"Airflow Import Error
monitoring.airflow_import_error
Please provide a description for the query
Schema Column Description Type Nullable timestamp Timestamp Yes id Integer Yes filename String Yes stacktrace String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_import_error_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_job","title":"airflow_job","text":"Airflow Job
monitoring.airflow_job
Please provide a description for the query
Schema Column Description Type Nullable id Integer Yes dag_id String Yes end_date Timestamp Yes executor_class String Yes hostname String Yes job_type String Yes latest_heartbeat Timestamp Yes start_date Timestamp Yes state String Yes unixname String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_job_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_slot_pool","title":"airflow_slot_pool","text":"Airflow Slot Pool
monitoring.airflow_slot_pool
Please provide a description for the query
Schema Column Description Type Nullable id Pool id Integer Yes pool Pool name String Yes description Pool description String Yes slots Number of slots available in the pool Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_slot_pool_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_task_fail","title":"airflow_task_fail","text":"Airflow Task Fail
monitoring.airflow_task_fail
Please provide a description for the query
Schema Column Description Type Nullable dag_id Airflow DAG id String Yes task_id Airflow task id String Yes duration Integer Yes start_date Timestamp Yes end_date Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_task_fail_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_task_instance","title":"airflow_task_instance","text":"Airflow Task Instance
monitoring.airflow_task_instance
Please provide a description for the query
Schema Column Description Type Nullable dag_id String Yes run_id String Yes task_id String Yes state String Yes try_number Integer Yes start_date Timestamp Yes end_date Timestamp Yes duration Float Yes job_id Integer Yes executor_config Bytes Yes external_executor_id String Yes hostname String Yes max_tries Integer Yes next_kwargs String Yes next_method String Yes operator String Yes pid Integer Yes pool String Yes pool_slots Integer Yes priority_weight Integer Yes queue String Yes queued_by_job_id Integer Yes queued_dttm Timestamp Yes trigger_id Integer Yes trigger_timeout Datetime Yes unixname String Yes map_index Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_task_instance_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_task_instance_note","title":"airflow_task_instance_note","text":"Airflow Task Instance Note
monitoring.airflow_task_instance_note
Please provide a description for the query
Schema Column Description Type Nullable dag_id String Yes map_index Integer Yes run_id String Yes task_id String Yes content String Yes created_at Timestamp Yes updated_at Timestamp Yes user_id Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_task_instance_note_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_task_reschedule","title":"airflow_task_reschedule","text":"Airflow Task Reschedule
monitoring.airflow_task_reschedule
Please provide a description for the query
Schema Column Description Type Nullable dag_id Airflow DAG id String Yes task_id Airflow task id String Yes run_id Unique identifier of the task run instance String Yes try_number Attempt number to execute the task Integer Yes reschedule_date Datetime when task has been rescheduled Timestamp Yes start_date When the DAG run started Timestamp Yes end_date When the DAG run finished Timestamp Yes duration Time elapsed since start until end of task's exeuction (seconds) Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_task_reschedule_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_trigger","title":"airflow_trigger","text":"Airflow Trigger
monitoring.airflow_trigger
Please provide a description for the query
Schema Column Description Type Nullable id Integer Yes classpath String Yes created_date Timestamp Yes kwargs String Yes triggerer_id Integer Yes trigger_id Integer Yes created_at Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_trigger_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#airflow_user","title":"airflow_user","text":"Airflow User
monitoring.airflow_user
Please provide a description for the query
Schema Column Description Type Nullable user_role String Yes user_id Airflow user id Integer Yes created_on Datetime Yes changed_on Datetime Yes last_login Datetime Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived airflow_user_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#average_ping_sizes","title":"average_ping_sizes","text":"Average Ping Sizes
monitoring.average_ping_sizes
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes dataset_id String Yes table_id String Yes average_byte_size Float Yes total_byte_size Integer Yes row_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived average_ping_sizes_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_etl_scheduled_queries_cost","title":"bigquery_etl_scheduled_queries_cost","text":"Bigquery Etl Scheduled Queries Cost
monitoring.bigquery_etl_scheduled_queries_cost
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes creation_time Timestamp Yes dataset String Yes table String Yes cost_usd Float Yes total_bytes_processed Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_etl_scheduled_queries_cost_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_etl_scheduled_query_usage","title":"bigquery_etl_scheduled_query_usage","text":"Bigquery Etl Scheduled Query Usage
monitoring.bigquery_etl_scheduled_query_usage
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes project_id String Yes table String Yes number_of_accesses Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_etl_scheduled_query_usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_table_storage","title":"bigquery_table_storage","text":"Bigquery Table Storage
monitoring.bigquery_table_storage
Please provide a description for the query
Schema Column Description Type Nullable creation_date The table's creation date Date Yes project_id The ID of the project that contains the dataset String Yes dataset_id The name of the dataset that contains the table String Yes table_id The name of the table String Yes total_rows The total number of rows in the table Integer Yes total_partitions The total number of partitions present in the table Integer Yes total_logical_bytes Total number of uncompressed bytes in the table Integer Yes active_logical_bytes Number of uncompressed bytes less than 90 days old Integer Yes long_term_logical_bytes Number of uncompressed bytes more than 90 days old Integer Yes total_physical_bytes Total number of compressed bytes used for storage Integer Yes active_physical_bytes Number of compressed bytes less than 90 days old Integer Yes long_term_physical_bytes Number of compressed bytes more than 90 days old Integer Yes time_travel_physical_bytes Number of compressed bytes for deleted or changed data Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_table_storage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_table_storage_timeline_daily","title":"bigquery_table_storage_timeline_daily","text":"Bigquery Table Storage Timeline Daily
monitoring.bigquery_table_storage_timeline_daily
Please provide a description for the query
Schema Column Description Type Nullable change_date Date of change to the data in the table. Date Yes project_id The ID of the project that contains the dataset String Yes dataset_id The name of the dataset that contains the table String Yes table_id The name of the table String Yes deleted Indicates whether or not the table is deleted Boolean Yes creation_date The table's creation date Date Yes change_count The total number of changes to a table in one day Integer Yes avg_total_rows Average total number of rows in the table Float Yes avg_total_partitions Average total number of partitions in the table Float Yes avg_total_logical_bytes Average total number of uncompressed bytes in the table Float Yes avg_active_logical_bytes Average number of uncompressed bytes less than 90 days old Float Yes avg_long_term_logical_bytes Average number of uncompressed bytes more than 90 days old Float Yes avg_total_physical_bytes Average total number of compressed bytes used for storage Float Yes avg_active_physical_bytes Average number of compressed bytes less than 90 days old Float Yes avg_long_term_physical_bytes Average number of compressed bytes more than 90 days old Float Yes avg_time_travel_physical_bytes Average number of compressed bytes for deleted or changed data Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_table_storage_timeline_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_tables_inventory","title":"bigquery_tables_inventory","text":"Bigquery Tables Inventory
monitoring.bigquery_tables_inventory
Please provide a description for the query
Schema Column Description Type Nullable submission_date The date when data was captured Date Yes creation_date The table's creation date Date Yes project_id The ID of the project that contains the dataset String Yes dataset_id The name of the dataset that contains the table or view String Yes table_id The name of the table or view String Yes table_type The table type String Yes last_modified_date The table's last modified date Date Yes owners The owner of the table listed in metadata yaml file String No last_used_date The date when the tables was last queried Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_tables_inventory_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_usage","title":"bigquery_usage","text":"Bigquery Usage
monitoring.bigquery_usage
Please provide a description for the query
Schema Column Description Type Nullable source_project Project used for executing job String Yes creation_date Job creation date Date Yes job_id ID of job String Yes job_type The type of the job String Yes state Running state of the job String Yes reference_project_id The ID of the project referenced by the job String Yes reference_dataset_id The ID of the dataset referenced by the job String Yes reference_table_id The ID of the table referenced by the job String Yes destination_project_id The ID of the project containing the destination table String Yes destination_dataset_id The ID of the dataset containing the destination table String Yes destination_table_id The ID of the destination table String Yes user_email Email address or service account of the user who ran the job String Yes username Email address of the user who ran the query String Yes query_id query id of the job String Yes task_duration The time it took to run the job Interval Yes total_terabytes_processed Total terabytes processed by the job Float Yes error_location Specifies where the error occurred, if present String Yes error_reason A short error code that summarizes the error String Yes error_message A human-readable description of the error String Yes reservation_id Name of the primary reservation (slots for distributing resources) assigned to this job. String Yes cache_hit Whether the query results of this job were from a cache Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_usage_costs","title":"bigquery_usage_costs","text":"Bigquery Usage Costs
monitoring.bigquery_usage_costs
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring bigquery_usage Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#bigquery_usage_jobs_by_org","title":"bigquery_usage_jobs_by_org","text":"Bigquery Usage Jobs By Org
monitoring.bigquery_usage_jobs_by_org
Please provide a description for the query
Schema Column Description Type Nullable source_project Project used for executing job String Yes creation_date Job creation date Date Yes job_id ID of job String Yes job_type The type of the job String Yes reservation_id Name of the primary reservation (slots for distributing resources) assigned to this job String Yes cache_hit Whether the query results of this job were from a cache Boolean Yes state Running state of the job String Yes statement_type The type of query statement String Yes query_id The id of the query String Yes reference_project_id The ID of the project referenced by the job String Yes reference_dataset_id The ID of the dataset referenced by the job String Yes reference_table_id The ID of the table referenced by the job String Yes destination_project_id The ID of the project containing the destination table String Yes destination_dataset_id The ID of the dataset containing the destination table String Yes destination_table_id The ID of the destination table String Yes user_email Email address or service account of the user who ran the job String Yes username The name of the user who ran the job String Yes task_duration The time it took to run the job Interval Yes total_terabytes_processed Total terabytes processed by the job Float Yes total_terabytes_billed Total terabytes billed by the job if on-demand pricing is used Float Yes total_slot_ms Slot milliseconds for the job over its entire duration Integer Yes error_location Specifies where the error occurred, if present String Yes error_reason A short error code that summarizes the error String Yes error_message A human-readable description of the error String Yes resource_warning The warning message that appears if the resource usage is above the internal threshold of the system String Yes submission_date Date Airflow DAG is executed, and partition date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived bigquery_usage_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#column_size","title":"column_size","text":"Column Size
monitoring.column_size
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes dataset_id String Yes table_id String Yes column_name String Yes byte_size Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived column_size_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#deletion_request_volume","title":"deletion_request_volume","text":"Deletion Request Volume
monitoring.deletion_request_volume
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes dataset_id String Yes num_rows Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived deletion_request_volume_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#event_monitoring_live","title":"event_monitoring_live","text":"Event Monitoring Live
monitoring.event_monitoring_live
View that combines live and aggregated event monitoring data for
- Owners:
- ascholtz@mozilla.com
- akomar@mozilla.com
Schema Column Description Type Nullable window_start Timestamp Yes window_end Timestamp Yes event_category String Yes event_name String Yes event_extra_key String Yes country String Yes normalized_app_name String Yes channel String Yes version String Yes experiment String Yes experiment_branch String Yes total_events Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod accounts_backend_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_desktop_background_defaultagent_derived event_monitoring_live_v1 moz-fx-data-shared-prod firefox_desktop_background_tasks_derived event_monitoring_live_v1 moz-fx-data-shared-prod firefox_desktop_background_update_derived event_monitoring_live_v1 moz-fx-data-shared-prod firefox_desktop_derived event_monitoring_live_v1 moz-fx-data-shared-prod firefox_translations_derived event_monitoring_live_v1 moz-fx-data-shared-prod glean_dictionary_derived event_monitoring_live_v1 moz-fx-data-shared-prod mdn_yari_derived event_monitoring_live_v1 moz-fx-data-shared-prod monitor_cirrus_derived event_monitoring_live_v1 moz-fx-data-shared-prod monitor_frontend_derived event_monitoring_live_v1 moz-fx-data-shared-prod monitoring_derived event_monitoring_aggregates_v1 moz-fx-data-shared-prod moso_mastodon_backend_derived event_monitoring_live_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_derived event_monitoring_live_v1 moz-fx-data-shared-prod mozphab_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 treeherder_derived event_monitoring_live_v1 moz-fx-data-shared-prod viu_politica_derived event_monitoring_live_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#payload_bytes_decoded_all","title":"payload_bytes_decoded_all","text":"All Decoded Tables
monitoring.payload_bytes_decoded_all
A view on top of the payload_bytes_decoded.*
tables that includes all fields except the payload.
This view is useful for overall pipeline monitoring.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring payload_bytes_decoded_structured moz-fx-data-shared-prod monitoring payload_bytes_decoded_stub_installer moz-fx-data-shared-prod monitoring payload_bytes_decoded_telemetry Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#payload_bytes_decoded_structured","title":"payload_bytes_decoded_structured","text":"Structured Pipeline Family Decoded
monitoring.payload_bytes_decoded_structured
A view on top of the payload_bytes_decoded.structured*
tables that includes all fields except the payload.
This view is useful for overall pipeline monitoring.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod payload_bytes_decoded structured* Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#payload_bytes_decoded_stub_installer","title":"payload_bytes_decoded_stub_installer","text":"Stub Installer Pipeline Family Decoded
monitoring.payload_bytes_decoded_stub_installer
A view on top of the payload_bytes_decoded.stub_installer*
tables that includes all fields except the payload.
This view is useful for overall pipeline monitoring.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod payload_bytes_decoded stub_installer* Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#payload_bytes_decoded_telemetry","title":"payload_bytes_decoded_telemetry","text":"Telemetry Pipeline Family Decoded
monitoring.payload_bytes_decoded_telemetry
A view on top of the payload_bytes_decoded.telemetry*
tables that includes all fields except the payload.
This view is useful for overall pipeline monitoring.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod payload_bytes_decoded telemetry* Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#payload_bytes_error_all","title":"payload_bytes_error_all","text":"All Errors
monitoring.payload_bytes_error_all
A view on top of the payload_bytes_error.*
tables that includes all fields except the payload.
This view is useful for overall monitoring of pipeline errors.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring payload_bytes_error_structured moz-fx-data-shared-prod payload_bytes_error stub_installer moz-fx-data-shared-prod payload_bytes_error telemetry Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#payload_bytes_error_structured","title":"payload_bytes_error_structured","text":"Structured Pipeline Family Errors
monitoring.payload_bytes_error_structured
A view on top of the payload_bytes_error.structured
table that includes all fields except the payload.
This view is useful for overall monitoring of pipeline errors.
Clustering fields: submission_timestamp
Referenced Tables Project Dataset Table moz-fx-data-shared-prod payload_bytes_error structured Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#schema_error_counts","title":"schema_error_counts","text":"Schema Error Counts
monitoring.schema_error_counts
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes document_namespace String Yes document_type String Yes document_version String Yes hour Timestamp Yes job_name String Yes path String Yes error_count Integer Yes sample_error_messages concatenated error messages, limited to 300 characters String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived schema_error_counts_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#shredder_progress","title":"shredder_progress","text":"Shredder Progress
monitoring.shredder_progress
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived shredder_progress_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#shredder_rows_deleted","title":"shredder_rows_deleted","text":"Shredder Rows Deleted
monitoring.shredder_rows_deleted
Please provide a description for the query
Schema Column Description Type Nullable end_time Timestamp Yes job_id String Yes project_id String Yes dataset_id String Yes table_id String Yes partition_id String Yes deleted_row_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived shredder_rows_deleted_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#stable_and_derived_table_sizes","title":"stable_and_derived_table_sizes","text":"Stable And Derived Table Sizes
monitoring.stable_and_derived_table_sizes
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes dataset_id String Yes table_id String Yes byte_size Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived stable_and_derived_table_sizes_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#stable_table_column_counts","title":"stable_table_column_counts","text":"Stable Table Column Counts
monitoring.stable_table_column_counts
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes dataset String Yes table_name String Yes total_columns Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived stable_table_column_counts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#stable_table_sizes","title":"stable_table_sizes","text":"Stable Table Sizes
monitoring.stable_table_sizes
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes dataset_id String Yes table_id String Yes byte_size Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived stable_table_sizes_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#structured_detailed_error_counts","title":"structured_detailed_error_counts","text":"Structured Detailed Error Counts
monitoring.structured_detailed_error_counts
Please provide a description for the query
Schema Column Description Type Nullable hour Timestamp Yes document_namespace String Yes document_type String Yes document_version String Yes error_type String Yes ping_count Integer Yes error_count Integer Yes error_message String Yes sample_payload String Yes error_ratio Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived structured_detailed_error_counts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#structured_distinct_docids","title":"structured_distinct_docids","text":"Structured Distinct Docids
monitoring.structured_distinct_docids
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes namespace String Yes doc_type String Yes decoded Integer Yes live Integer Yes stable Integer Yes decoded_nondistinct Integer Yes live_nondistinct Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived structured_distinct_docids_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#structured_error_counts","title":"structured_error_counts","text":"Structured Error Counts
monitoring.structured_error_counts
Please provide a description for the query
Schema Column Description Type Nullable hour Timestamp Yes document_namespace String Yes document_type String Yes document_version String Yes error_type String Yes ping_count Integer Yes error_count Integer Yes error_ratio Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived structured_error_counts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#structured_missing_columns","title":"structured_missing_columns","text":"Structured Missing Columns
monitoring.structured_missing_columns
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes document_namespace String Yes document_type String Yes document_version String Yes path String Yes path_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived structured_missing_columns_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#suggest_click_rate_live","title":"suggest_click_rate_live","text":"Live quicksuggest-click
Ping Count Per Minute
monitoring.suggest_click_rate_live
A live view of submissions intended for operational monitoring use cases.
Schema Column Description Type Nullable submission_minute Timestamp Yes n Integer Yes n_release Integer Yes n_beta Integer Yes n_nightly Integer Yes n_merino Integer Yes n_merino_release Integer Yes n_merino_beta Integer Yes n_merino_nightly Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived suggest_click_rate_live_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#suggest_impression_rate_live","title":"suggest_impression_rate_live","text":"Live quicksuggest-impression
Ping Count Per Minute
monitoring.suggest_impression_rate_live
A live view of submissions intended for operational monitoring use cases.
Schema Column Description Type Nullable submission_minute Timestamp Yes n Integer Yes n_release Integer Yes n_beta Integer Yes n_nightly Integer Yes n_merino Integer Yes n_merino_release Integer Yes n_merino_beta Integer Yes n_merino_nightly Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived suggest_impression_rate_live_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#telemetry_distinct_docids","title":"telemetry_distinct_docids","text":"Telemetry Distinct Docids
monitoring.telemetry_distinct_docids
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes doc_type String Yes decoded Integer Yes live Integer Yes stable Integer Yes namespace String Yes decoded_nondistinct Integer Yes live_nondistinct Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived telemetry_distinct_docids_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#telemetry_missing_columns","title":"telemetry_missing_columns","text":"Telemetry Missing Columns
monitoring.telemetry_missing_columns
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes document_namespace String Yes document_type String Yes document_version String Yes path String Yes path_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived telemetry_missing_columns_v3 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#topsites_click_rate_live","title":"topsites_click_rate_live","text":"Live topsites-click
Ping Count Per Minute
monitoring.topsites_click_rate_live
A live view of submissions intended for operational monitoring use cases.
Schema Column Description Type Nullable submission_minute Timestamp Yes n Integer Yes n_contile Integer Yes n_remotesettings Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived topsites_click_rate_live_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#topsites_impression_rate_live","title":"topsites_impression_rate_live","text":"Live topsites-impression
Ping Count Per Minute
monitoring.topsites_impression_rate_live
A live view of submissions intended for operational monitoring use cases.
Schema Column Description Type Nullable submission_minute Timestamp Yes n Integer Yes n_contile Integer Yes n_remotesettings Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod monitoring_derived topsites_impression_rate_live_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/monitoring/#topsites_rate_fenix_live","title":"topsites_rate_fenix_live","text":"Live topsites Ping Counts Per Minute for Fenix
monitoring.topsites_rate_fenix_live
A live view of impressions and clicks intended for operational monitoring use cases.
Schema Column Description Type Nullable submission_minute Timestamp Yes n_click Integer Yes n_impression Integer Yes n_click_release Integer Yes n_impression_release Integer Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/","title":"moso-mastodon-backend","text":"User-facing views related to document namespace moso-mastodon-backend; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/moso-mastodon-backend
Source Directory
"},{"location":"mozdata/moso_mastodon_backend/#baseline","title":"baseline","text":"Historical Pings for moso-mastodon-backend/baseline
moso_mastodon_backend.baseline
A historical view of pings sent for the moso-mastodon-backend/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
moso_mastodon_backend.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
moso_mastodon_backend.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
moso_mastodon_backend.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#deletion_request","title":"deletion_request","text":"Historical Pings for moso-mastodon-backend/deletion-request
moso_mastodon_backend.deletion_request
A historical view of pings sent for the moso-mastodon-backend/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#events","title":"events","text":"Historical Pings for moso-mastodon-backend/events
moso_mastodon_backend.events
A historical view of pings sent for the moso-mastodon-backend/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#events_unnested","title":"events_unnested","text":"Events Unnested
moso_mastodon_backend.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#metrics","title":"metrics","text":"Historical Pings for moso-mastodon-backend/metrics
moso_mastodon_backend.metrics
A historical view of pings sent for the moso-mastodon-backend/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/moso_mastodon_backend/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
moso_mastodon_backend.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod moso_mastodon_backend_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozdata/","title":"mozdata","text":"User-facing views related to document namespace mozdata; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mozdata
Source Directory
"},{"location":"mozdata/mozdata/#event","title":"event","text":"Historical Pings for mozdata/event
mozdata.event
A historical view of pings sent for the mozdata/event
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable ad_hoc_tables_dir String Yes additional_properties A JSON string containing any payload properties not present in the schema String Yes api_call String Yes api_version String Yes detected_uri String Yes detected_version String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes name String Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes owner String Yes partition String Yes query String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes sources_json String Yes sql_table_name String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes table_name String Yes uri String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozdata_stable event_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/","title":"mozilla-lockbox","text":"User-facing views related to document namespace mozilla-lockbox; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mozilla-lockbox
Source Directory
"},{"location":"mozdata/mozilla_lockbox/#addresses_sync","title":"addresses_sync","text":"Historical Pings for mozilla-lockbox/addresses-sync
mozilla_lockbox.addresses_sync
A historical view of pings sent for the mozilla-lockbox/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#baseline","title":"baseline","text":"Historical Pings for mozilla-lockbox/baseline
mozilla_lockbox.baseline
A historical view of pings sent for the mozilla-lockbox/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mozilla_lockbox.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mozilla_lockbox.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mozilla_lockbox.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for mozilla-lockbox/bookmarks-sync
mozilla_lockbox.bookmarks_sync
A historical view of pings sent for the mozilla-lockbox/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for mozilla-lockbox/creditcards-sync
mozilla_lockbox.creditcards_sync
A historical view of pings sent for the mozilla-lockbox/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#deletion_request","title":"deletion_request","text":"Historical Pings for mozilla-lockbox/deletion-request
mozilla_lockbox.deletion_request
A historical view of pings sent for the mozilla-lockbox/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#events","title":"events","text":"Historical Pings for mozilla-lockbox/events
mozilla_lockbox.events
A historical view of pings sent for the mozilla-lockbox/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#history_sync","title":"history_sync","text":"Historical Pings for mozilla-lockbox/history-sync
mozilla_lockbox.history_sync
A historical view of pings sent for the mozilla-lockbox/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#logins_sync","title":"logins_sync","text":"Historical Pings for mozilla-lockbox/logins-sync
mozilla_lockbox.logins_sync
A historical view of pings sent for the mozilla-lockbox/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#metrics","title":"metrics","text":"Historical Pings for mozilla-lockbox/metrics
mozilla_lockbox.metrics
A historical view of pings sent for the mozilla-lockbox/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#sync","title":"sync","text":"Historical Pings for mozilla-lockbox/sync
mozilla_lockbox.sync
A historical view of pings sent for the mozilla-lockbox/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_lockbox/#tabs_sync","title":"tabs_sync","text":"Historical Pings for mozilla-lockbox/tabs-sync
mozilla_lockbox.tabs_sync
A historical view of pings sent for the mozilla-lockbox/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_lockbox_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/","title":"mozilla-mach","text":"User-facing views related to document namespace mozilla-mach; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mozilla-mach
Source Directory
"},{"location":"mozdata/mozilla_mach/#baseline","title":"baseline","text":"Historical Pings for mozilla-mach/baseline
mozilla_mach.baseline
A historical view of pings sent for the mozilla-mach/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mozilla_mach.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mozilla_mach.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mozilla_mach.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#deletion_request","title":"deletion_request","text":"Historical Pings for mozilla-mach/deletion-request
mozilla_mach.deletion_request
A historical view of pings sent for the mozilla-mach/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#events","title":"events","text":"Historical Pings for mozilla-mach/events
mozilla_mach.events
A historical view of pings sent for the mozilla-mach/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#metrics","title":"metrics","text":"Historical Pings for mozilla-mach/metrics
mozilla_mach.metrics
A historical view of pings sent for the mozilla-mach/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_mach/#usage","title":"usage","text":"Historical Pings for mozilla-mach/usage
mozilla_mach.usage
A historical view of pings sent for the mozilla-mach/usage
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_mach_stable usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_org/","title":"Mozilla.org","text":"Mozilla.org data, usually derived from Google Analytics (GA).
Source Directory
"},{"location":"mozdata/mozilla_org/#ga_clients","title":"ga_clients","text":"Ga Clients
mozilla_org.ga_clients
Please provide a description for the query
Schema Column Description Type Nullable ga_client_id Uniquely identifiers a GA client, using a cookie on moz.org. String Yes first_seen_date The first date we saw this GA client. Date Yes last_seen_date The last date we saw this GA client. Date Yes had_download_event Whether this GA client has ever had a download event. Boolean Yes first_reported First instances of fields for a GA client. Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_org_derived ga_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_org/#ga_sessions","title":"ga_sessions","text":"Ga Sessions
mozilla_org.ga_sessions
Please provide a description for the query
Schema Column Description Type Nullable ga_client_id Uniquely identifiers a GA client, using a cookie on moz.org. String Yes ga_session_id Uniquely identifiers a GA session. String Yes session_date The date of the session. Some sessions span two days: if it does, we take the earlier date. Date Yes is_first_session Whether this is the first session for the client. Boolean Yes session_number The session number for this client. Starts at 1, consecutively increasing. Integer Yes time_on_site Amount of time the user was on the site for this session. Integer Yes pageviews Total pageviews for this session. Integer Yes country First reported country for a GA user. String Yes region First reported region for a GA user. String Yes city First reported city for a GA user. String Yes campaign_id First reported campaign ID. Usually associated with AdWords. String Yes campaign First reported campaign value. Usually set by the utm_campaign URL parameter. String Yes source First reported source of the traffic. Could be the name of the search engine, the referring hostname, or a value of the utm_source URL parameter. String Yes medium First reported medium of the traffic source. Could be 'organic', 'cpc', 'referral', or the value of the utm_medium URL parameter. String Yes term First reported term, or keyword, value. If this was a search results page, this is the keyword entered. String Yes content First reported ad content of the traffic source. Can be set by the utm_content URL parameter. String Yes gclid A Google Click ID, which uniquely represent an ad click for Google ads. String Yes device_category First reported device category value. The type of device (Mobile, Tablet, Desktop). String Yes mobile_device_model First reported device model value. String Yes mobile_device_string First reported mobile device string. The branding, model, and marketing name used to identify the mobile device. String Yes os First reported operating system of the device (e.g., 'Macintosh' or 'Windows'). String Yes os_version First reported os_version value. String Yes language First reported language the device is set to use. Expressed as the IETF language code. String Yes browser First reported browser used (e.g., 'Chrome' or 'Firefox'). String Yes browser_version First reported browser_version value. String Yes had_download_event Whether this session had a download event for Firefox. Boolean Yes last_reported_install_target The last reported install target for this session (e.g. 'desktop_release' or 'android_beta'). String Yes all_reported_install_targets All install targets reported for this session (e.g. 'desktop_release' or 'android_beta'. String No last_reported_stub_session_id The last reported Stub Session ID for this session. Can be used to join with `dl_ga_triplets` to get dl_tokens. String Yes all_reported_stub_session_ids All reported Stub Session IDs for this session. Can be used to join with `dl_ga_triplets` to get dl_tokens. String No landing_screen The first reported landing screen for this session. Most sessions only have one, so this is a safe value to use. String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_org_derived ga_sessions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_org/#gclid_conversions","title":"gclid_conversions","text":"Gclid Conversions
mozilla_org.gclid_conversions
Please provide a description for the query
Schema Column Description Type Nullable activity_date The date that the conversion action took place. Date Yes gclid A Google Click ID, which uniquely represent an ad impression for Google ads. String Yes did_firefox_first_run Whether the GA session associated with this GCLID resulted in a Firefox install which ran the first time on this day. Boolean Yes did_search Whether the GA session associated with this GCLID resulted in a Firefox install with a search on this day. Boolean Yes did_click_ad Whether the GA session associated with this GCLID resulted in a Firefox install with an ad click on this day. Boolean Yes did_returned_second_day Whether the GA session associated with this GCLID resulted in a Firefox install that returned on this day. Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_org_derived gclid_conversions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/","title":"Mozilla VPN","text":"Data related to the Mozilla VPN service
Source Directory
"},{"location":"mozdata/mozilla_vpn/#active_subscription_ids","title":"active_subscription_ids","text":"Active Subscription Ids
mozilla_vpn.active_subscription_ids
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes subscription_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived active_subscription_ids_live moz-fx-data-shared-prod mozilla_vpn_derived active_subscription_ids_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#active_subscriptions","title":"active_subscriptions","text":"Active Subscriptions
mozilla_vpn.active_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes plan_id String Yes status String Yes country String Yes country_name String Yes entrypoint_experiment String Yes entrypoint_variation String Yes utm_campaign String Yes utm_content String Yes utm_medium String Yes utm_source String Yes utm_term String Yes provider String Yes plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes normalized_acquisition_channel String Yes normalized_campaign String Yes normalized_content String Yes normalized_medium String Yes normalized_source String Yes website_channel_group String Yes promotion_codes String No promotion_discounts_amount Integer Yes count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived active_subscriptions_live moz-fx-data-shared-prod mozilla_vpn_derived active_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#add_device_events","title":"add_device_events","text":"Add Device Events
mozilla_vpn.add_device_events
Please provide a description for the query
Schema Column Description Type Nullable fxa_uid String Yes timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived add_device_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#all_subscriptions","title":"all_subscriptions","text":"All Subscriptions
mozilla_vpn.all_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable user_id Integer Yes customer_id String Yes subscription_id String Yes original_subscription_id String Yes plan_id String Yes status String Yes event_timestamp Timestamp Yes subscription_start_date Timestamp Yes original_subscription_start_date Timestamp Yes subscription_start_reason String Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes ended_at Timestamp Yes ended_reason String Yes fxa_uid String Yes country String Yes country_name String Yes user_registration_date Timestamp Yes entrypoint_experiment String Yes entrypoint_variation String Yes utm_campaign String Yes utm_content String Yes utm_medium String Yes utm_source String Yes utm_term String Yes provider String Yes plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes product_id String Yes product_name String Yes pricing_plan String Yes billing_grace_period Interval Yes promotion_codes String No promotion_discounts_amount Integer Yes customer_start_date Timestamp Yes end_date Timestamp Yes normalized_acquisition_channel String Yes normalized_campaign String Yes normalized_content String Yes normalized_medium String Yes normalized_source String Yes website_channel_group String Yes months_retained Integer Yes original_subscription_months_retained Integer Yes current_months_since_subscription_start Integer Yes current_months_since_original_subscription_start Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived all_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
mozilla_vpn.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.baseline, org_mozilla_firefox_vpn.baseline, org_mozilla_ios_firefoxvpn.baseline, org_mozilla_ios_firefoxvpn_network_extension.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mozilla_vpn.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mozilla_vpn.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mozilla_vpn.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#channel_group_proportions","title":"channel_group_proportions","text":"Channel Group Proportions
mozilla_vpn.channel_group_proportions
Please provide a description for the query
Schema Column Description Type Nullable subscription_start_date Date Yes country String Yes country_name String Yes utm_medium String Yes utm_source String Yes utm_campaign String Yes utm_content String Yes utm_term String Yes entrypoint_experiment String Yes entrypoint_variation String Yes product_name String Yes pricing_plan String Yes plan_interval String Yes plan_interval_count Integer Yes provider String Yes granular_event_type String Yes new_subscriptions Integer Yes promotion_codes String No channel_group String Yes total_new_subscriptions_for_date Integer Yes channel_group_percent_of_total_for_date Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived channel_group_proportions_live moz-fx-data-shared-prod mozilla_vpn_derived channel_group_proportions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#daemonsession","title":"daemonsession","text":"App-specific view for Glean ping \"daemonsession\"
mozilla_vpn.daemonsession
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.daemonsession, org_mozilla_firefox_vpn.daemonsession, org_mozilla_ios_firefoxvpn.daemonsession, org_mozilla_ios_firefoxvpn_network_extension.daemonsession).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
mozilla_vpn.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.deletion_request, org_mozilla_firefox_vpn.deletion_request, org_mozilla_ios_firefoxvpn.deletion_request, org_mozilla_ios_firefoxvpn_network_extension.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#devices","title":"devices","text":"Devices
mozilla_vpn.devices
Please provide a description for the query
Schema Column Description Type Nullable id Integer Yes user_id Integer Yes created_at Timestamp Yes updated_at Timestamp Yes platform String Yes useragent String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived devices_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#event_types","title":"event_types","text":"Event Types
mozilla_vpn.event_types
Please provide a description for the query
Schema Column Description Type Nullable category String Yes event String Yes first_timestamp Timestamp Yes numeric_index Integer Yes index String Yes event_properties Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived event_types_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#events","title":"events","text":"App-specific view for Glean ping \"events\"
mozilla_vpn.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.events, org_mozilla_firefox_vpn.events, org_mozilla_ios_firefoxvpn.events, org_mozilla_ios_firefoxvpn_network_extension.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#events_daily","title":"events_daily","text":"Events Daily
mozilla_vpn.events_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes events String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes first_run_date String Yes telemetry_agent String Yes telemetry_sdk_build String Yes locale String Yes city String Yes country String Yes subdivision1 String Yes channel String Yes os String Yes os_version String Yes experiments Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived events_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#events_unnested","title":"events_unnested","text":"Events unnested view for Mozilla VPN
mozilla_vpn.events_unnested
This is a view that automatically unnests the events data sent by Mozilla VPN's \"main\" ping. Ordinarily this table is automatically generated by glean_usage, but that currently assumes that events are sent in an \"events\" ping.
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn main Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#exchange_rates","title":"exchange_rates","text":"Exchange Rates
mozilla_vpn.exchange_rates
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes base_currency String Yes quote_currency String Yes price_type String Yes price Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived exchange_rates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#funnel_fxa_login_to_protected","title":"funnel_fxa_login_to_protected","text":"Funnel Fxa Login To Protected
mozilla_vpn.funnel_fxa_login_to_protected
Please provide a description for the query
Schema Column Description Type Nullable id String Yes fxa_uid String Yes start_date Date Yes completed_login Boolean Yes registered_user Boolean Yes paid_for_subscription Boolean Yes registered_device Boolean Yes protected Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived funnel_fxa_login_to_protected_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#funnel_ga_to_subscriptions","title":"funnel_ga_to_subscriptions","text":"Funnel Ga To Subscriptions
mozilla_vpn.funnel_ga_to_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes utm_join String Yes site String Yes normalized_acquisition_channel String Yes normalized_medium String Yes normalized_source String Yes normalized_campaign String Yes normalized_content String Yes website_channel_group String Yes sessions Integer Yes sessions_in_available_geos Integer Yes subscribe_intent Integer Yes subscription_intent_in_available_geos Integer Yes total_new_subscriptions Integer Yes returning_subscriptions Integer Yes first_time_subscriptions Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived funnel_ga_to_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#funnel_product_page_to_subscribed","title":"funnel_product_page_to_subscribed","text":"Funnel Product Page To Subscribed
mozilla_vpn.funnel_product_page_to_subscribed
Please provide a description for the query
Schema Column Description Type Nullable partition_date Date Yes country String Yes utm_medium String Yes utm_source String Yes utm_campaign String Yes utm_content String Yes utm_term String Yes entrypoint_experiment String Yes entrypoint_variation String Yes ua_browser String Yes ua_version String Yes os_name String Yes os_version String Yes entrypoint String Yes product_id String Yes product_name String Yes plan_id String Yes pricing_plan String Yes plan_name String Yes promotion_code String Yes vpn_site_hits Integer Yes channel_group String Yes total_acquisition_process_start Integer Yes total_payment_setup_engage Integer Yes total_payment_setup_complete Integer Yes overall_total_vpn_site_hits Integer Yes overall_total_acquisition_process_start Integer Yes overall_total_payment_setup_complete Integer Yes new_fxa_user_input_emails Integer Yes new_fxa_payment_setup_engage Integer Yes new_fxa_payment_setup_complete Integer Yes overall_new_fxa_user_input_emails Integer Yes overall_new_fxa_payment_setup_complete Integer Yes existing_fxa_payment_setup_view Integer Yes existing_fxa_payment_setup_engage Integer Yes existing_fxa_payment_setup_complete Integer Yes existing_fxa_signedin_payment_setup_view Integer Yes existing_fxa_signedin_payment_setup_engage Integer Yes existing_fxa_signedin_payment_setup_complete Integer Yes overall_existing_fxa_signedin_payment_setup_complete Integer Yes overall_existing_fxa_signedin_payment_setup_view Integer Yes existing_fxa_signedoff_signin_cta_click Integer Yes overall_existing_fxa_signedoff_signin_cta_click Integer Yes existing_signedoff_fxa_payment_setup_view Integer Yes existing_fxa_signedoff_payment_setup_engage Integer Yes existing_fxa_signedoff_payment_setup_complete Integer Yes overall_existing_fxa_signedoff_payment_setup_complete Integer Yes overall_existing_signedoff_fxa_payment_setup_view Integer Yes subscribe_coupon_submit Integer Yes subscribe_coupon_fail Integer Yes subscribe_coupon_success Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived funnel_product_page_to_subscribed_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#login_flows","title":"login_flows","text":"Login Flows
mozilla_vpn.login_flows
Please provide a description for the query
Schema Column Description Type Nullable flow_id String Yes flow_started Timestamp Yes flow_completed Timestamp Yes fxa_uids String No viewed_email_first_page Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived login_flows_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#main","title":"main","text":"App-specific view for Glean ping \"main\"
mozilla_vpn.main
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.main, org_mozilla_firefox_vpn.main, org_mozilla_ios_firefoxvpn.main, org_mozilla_ios_firefoxvpn_network_extension.main).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
mozilla_vpn.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.metrics, org_mozilla_firefox_vpn.metrics, org_mozilla_ios_firefoxvpn.metrics, org_mozilla_ios_firefoxvpn_network_extension.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
mozilla_vpn.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#protected","title":"protected","text":"Protected
mozilla_vpn.protected
Please provide a description for the query
Schema Column Description Type Nullable fxa_uid String Yes first_protected Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived protected_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#site_metrics_summary","title":"site_metrics_summary","text":"Site Metrics Summary
mozilla_vpn.site_metrics_summary
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes device_category String Yes operating_system String Yes browser String Yes language String Yes country String Yes source String Yes medium String Yes campaign String Yes content String Yes site String Yes sessions Integer Yes non_fx_sessions Integer Yes subscribe_intent_goal Integer Yes non_fx_subscribe_intent_goal Integer Yes join_waitlist_intent_goal Integer Yes join_waitlist_success_goal Integer Yes sign_in_intent_goal Integer Yes download_intent_goal Integer Yes download_installer_intent_goal Integer Yes standardized_country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived site_metrics_summary_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#subscription_events","title":"subscription_events","text":"Subscription Events
mozilla_vpn.subscription_events
Please provide a description for the query
Schema Column Description Type Nullable event_date Date Yes event_type String Yes granular_event_type String Yes plan_id String Yes status String Yes country String Yes country_name String Yes entrypoint_experiment String Yes entrypoint_variation String Yes utm_campaign String Yes utm_content String Yes utm_medium String Yes utm_source String Yes utm_term String Yes provider String Yes plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes normalized_acquisition_channel String Yes normalized_campaign String Yes normalized_content String Yes normalized_medium String Yes normalized_source String Yes website_channel_group String Yes promotion_codes String No count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived subscription_events_live moz-fx-data-shared-prod mozilla_vpn_derived subscription_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#subscriptions","title":"subscriptions","text":"Subscriptions
mozilla_vpn.subscriptions
Please provide a description for the query
Schema Column Description Type Nullable id Integer Yes user_id Integer Yes is_active Boolean Yes created_at Timestamp Yes ended_at Timestamp Yes updated_at Timestamp Yes type String Yes provider String Yes apple_receipt Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_cancellation_of_service","title":"survey_cancellation_of_service","text":"Survey Cancellation Of Service
mozilla_vpn.survey_cancellation_of_service
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_cancellation_of_service_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_intercept_q3","title":"survey_intercept_q3","text":"Survey Intercept Q3
mozilla_vpn.survey_intercept_q3
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_intercept_q3_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_lifecycle_28d_desktop","title":"survey_lifecycle_28d_desktop","text":"Survey Lifecycle 28d Desktop
mozilla_vpn.survey_lifecycle_28d_desktop
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_lifecycle_28d_desktop_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_lifecycle_28d_mobile","title":"survey_lifecycle_28d_mobile","text":"Survey Lifecycle 28d Mobile
mozilla_vpn.survey_lifecycle_28d_mobile
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_lifecycle_28d_mobile_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_market_fit","title":"survey_market_fit","text":"Survey Market Fit
mozilla_vpn.survey_market_fit
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_market_fit_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_product_quality","title":"survey_product_quality","text":"Survey Product Quality
mozilla_vpn.survey_product_quality
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_product_quality_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#survey_recommend","title":"survey_recommend","text":"Survey Recommend
mozilla_vpn.survey_recommend
Please provide a description for the query
Schema Column Description Type Nullable survey_data Record No response_time Integer Yes session_id String Yes submission_date Date Yes id Integer Yes status String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived survey_recommend_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#users","title":"users","text":"Users
mozilla_vpn.users
Please provide a description for the query
Schema Column Description Type Nullable id Integer Yes fxa_uid String Yes created_at Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived users_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#vat_rates","title":"vat_rates","text":"Vat Rates
mozilla_vpn.vat_rates
Please provide a description for the query
Schema Column Description Type Nullable country_code String Yes country String Yes vat Numeric Yes effective_date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived vat_rates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#vpnsession","title":"vpnsession","text":"App-specific view for Glean ping \"vpnsession\"
mozilla_vpn.vpnsession
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Mozilla VPN\" (mozillavpn.vpnsession, org_mozilla_firefox_vpn.vpnsession, org_mozilla_ios_firefoxvpn.vpnsession, org_mozilla_ios_firefoxvpn_network_extension.vpnsession).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozilla_vpn/#waitlist","title":"waitlist","text":"Waitlist
mozilla_vpn.waitlist
Please provide a description for the query
Schema Column Description Type Nullable platforms String No country String Yes region String Yes region_subdivision String Yes waitlist_date Date Yes joined_date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozilla_vpn_derived waitlist_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/","title":"mozillavpn","text":"User-facing views related to document namespace mozillavpn; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mozillavpn
Source Directory
"},{"location":"mozdata/mozillavpn/#baseline","title":"baseline","text":"Historical Pings for mozillavpn/baseline
mozillavpn.baseline
A historical view of pings sent for the mozillavpn/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mozillavpn.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mozillavpn.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mozillavpn.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#daemonsession","title":"daemonsession","text":"Historical Pings for mozillavpn/daemonsession
mozillavpn.daemonsession
A historical view of pings sent for the mozillavpn/daemonsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable daemonsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#deletion_request","title":"deletion_request","text":"Historical Pings for mozillavpn/deletion-request
mozillavpn.deletion_request
A historical view of pings sent for the mozillavpn/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#events","title":"events","text":"Historical Pings for mozillavpn/events
mozillavpn.events
A historical view of pings sent for the mozillavpn/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#main","title":"main","text":"Historical Pings for mozillavpn/main
mozillavpn.main
A historical view of pings sent for the mozillavpn/main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable main_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#metrics","title":"metrics","text":"Historical Pings for mozillavpn/metrics
mozillavpn.metrics
A historical view of pings sent for the mozillavpn/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozillavpn/#vpnsession","title":"vpnsession","text":"Historical Pings for mozillavpn/vpnsession
mozillavpn.vpnsession
A historical view of pings sent for the mozillavpn/vpnsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozillavpn_stable vpnsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/","title":"mozphab","text":"User-facing views related to document namespace mozphab; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mozphab
Source Directory
"},{"location":"mozdata/mozphab/#baseline","title":"baseline","text":"Historical Pings for mozphab/baseline
mozphab.baseline
A historical view of pings sent for the mozphab/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mozphab.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mozphab.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mozphab.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
mozphab.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#deletion_request","title":"deletion_request","text":"Historical Pings for mozphab/deletion-request
mozphab.deletion_request
A historical view of pings sent for the mozphab/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#events","title":"events","text":"Historical Pings for mozphab/events
mozphab.events
A historical view of pings sent for the mozphab/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#events_unnested","title":"events_unnested","text":"Events Unnested
mozphab.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#metrics","title":"metrics","text":"Historical Pings for mozphab/metrics
mozphab.metrics
A historical view of pings sent for the mozphab/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
mozphab.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
mozphab.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozphab/#usage","title":"usage","text":"Historical Pings for mozphab/usage
mozphab.usage
A historical view of pings sent for the mozphab/usage
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozphab_stable usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/","title":"Mozregression","text":"Views on data from mozregression
Source Directory
"},{"location":"mozdata/mozregression/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
mozregression.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mozregression\" (org_mozilla_mozregression.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
mozregression.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
mozregression.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
mozregression.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
mozregression.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozregression_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
mozregression.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mozregression\" (org_mozilla_mozregression.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#events","title":"events","text":"App-specific view for Glean ping \"events\"
mozregression.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mozregression\" (org_mozilla_mozregression.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#events_unnested","title":"events_unnested","text":"Events Unnested
mozregression.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
mozregression.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mozregression\" (org_mozilla_mozregression.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
mozregression.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozregression_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
mozregression.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozregression_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozregression/#usage","title":"usage","text":"App-specific view for Glean ping \"usage\"
mozregression.usage
This a view that UNIONs the stable ping tables across all channels of the Glean application \"mozregression\" (org_mozilla_mozregression.usage).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression usage Source Directory | View Definition | Metadata File
"},{"location":"mozdata/mozza/","title":"mozza","text":"User-facing views related to document namespace mozza; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/mozza
Source Directory
"},{"location":"mozdata/mozza/#event","title":"event","text":"Historical Pings for mozza/event
mozza.event
A historical view of pings sent for the mozza/event
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes browser String Yes browser_version String Yes document_id The document ID specified in the URI when the client sent this message String Yes domain String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes os String Yes os_version String Yes property String Yes request_uri String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes event Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod mozza_stable event_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/operational_monitoring/","title":"Operational Monitoring","text":"Views on data for operational monitoring projects. The dataset is populated via https://github.com/mozilla/opmon
Source Directory
"},{"location":"mozdata/org_mozilla_bergamot/","title":"org-mozilla-bergamot","text":"User-facing views related to document namespace org-mozilla-bergamot; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-bergamot
Source Directory
"},{"location":"mozdata/org_mozilla_bergamot/#custom","title":"custom","text":"Historical Pings for org-mozilla-bergamot/custom
org_mozilla_bergamot.custom
A historical view of pings sent for the org-mozilla-bergamot/custom
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot_stable custom_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_bergamot/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-bergamot/deletion-request
org_mozilla_bergamot.deletion_request
A historical view of pings sent for the org-mozilla-bergamot/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_bergamot/#events","title":"events","text":"Historical Pings for org-mozilla-bergamot/events
org_mozilla_bergamot.events
A historical view of pings sent for the org-mozilla-bergamot/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_bergamot_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/","title":"org-mozilla-connect-firefox","text":"User-facing views related to document namespace org-mozilla-connect-firefox; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-connect-firefox
Source Directory
"},{"location":"mozdata/org_mozilla_connect_firefox/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-connect-firefox/baseline
org_mozilla_connect_firefox.baseline
A historical view of pings sent for the org-mozilla-connect-firefox/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_connect_firefox.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_connect_firefox.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_connect_firefox.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-connect-firefox/deletion-request
org_mozilla_connect_firefox.deletion_request
A historical view of pings sent for the org-mozilla-connect-firefox/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/#events","title":"events","text":"Historical Pings for org-mozilla-connect-firefox/events
org_mozilla_connect_firefox.events
A historical view of pings sent for the org-mozilla-connect-firefox/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_connect_firefox/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-connect-firefox/metrics
org_mozilla_connect_firefox.metrics
A historical view of pings sent for the org-mozilla-connect-firefox/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_connect_firefox_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/","title":"org-mozilla-fenix","text":"User-facing views related to document namespace org-mozilla-fenix; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-fenix
Source Directory
"},{"location":"mozdata/org_mozilla_fenix/#activation","title":"activation","text":"Historical Pings for org-mozilla-fenix/activation
org_mozilla_fenix.activation
A historical view of pings sent for the org-mozilla-fenix/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-fenix/addresses-sync
org_mozilla_fenix.addresses_sync
A historical view of pings sent for the org-mozilla-fenix/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-fenix/baseline
org_mozilla_fenix.baseline
A historical view of pings sent for the org-mozilla-fenix/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_fenix.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_fenix.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_fenix.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-fenix/bookmarks-sync
org_mozilla_fenix.bookmarks_sync
A historical view of pings sent for the org-mozilla-fenix/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#client_deduplication","title":"client_deduplication","text":"Client Deduplication
org_mozilla_fenix.client_deduplication
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_app_id String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived client_deduplication_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-fenix/cookie-banner-report-site
org_mozilla_fenix.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-fenix/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#crash","title":"crash","text":"Historical Pings for org-mozilla-fenix/crash
org_mozilla_fenix.crash
A historical view of pings sent for the org-mozilla-fenix/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-fenix/creditcards-sync
org_mozilla_fenix.creditcards_sync
A historical view of pings sent for the org-mozilla-fenix/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-fenix/deletion-request
org_mozilla_fenix.deletion_request
A historical view of pings sent for the org-mozilla-fenix/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#events","title":"events","text":"Historical Pings for org-mozilla-fenix/events
org_mozilla_fenix.events
A historical view of pings sent for the org-mozilla-fenix/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-fenix/first-session
org_mozilla_fenix.first_session
A historical view of pings sent for the org-mozilla-fenix/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-fenix/fog-validation
org_mozilla_fenix.fog_validation
A historical view of pings sent for the org-mozilla-fenix/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#font_list","title":"font_list","text":"Historical Pings for org-mozilla-fenix/font-list
org_mozilla_fenix.font_list
A historical view of pings sent for the org-mozilla-fenix/font-list
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable font_list_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#fx_suggest","title":"fx_suggest","text":"Historical Pings for org-mozilla-fenix/fx-suggest
org_mozilla_fenix.fx_suggest
A historical view of pings sent for the org-mozilla-fenix/fx-suggest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable fx_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#geckoview_version","title":"geckoview_version","text":"Geckoview Version
org_mozilla_fenix.geckoview_version
Please provide a description for the query
Schema Column Description Type Nullable build_hour Datetime Yes geckoview_major_version Integer Yes n_pings Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived geckoview_version_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-fenix/history-sync
org_mozilla_fenix.history_sync
A historical view of pings sent for the org-mozilla-fenix/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#installation","title":"installation","text":"Historical Pings for org-mozilla-fenix/installation
org_mozilla_fenix.installation
A historical view of pings sent for the org-mozilla-fenix/installation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable installation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-fenix/logins-sync
org_mozilla_fenix.logins_sync
A historical view of pings sent for the org-mozilla-fenix/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-fenix/metrics
org_mozilla_fenix.metrics
A historical view of pings sent for the org-mozilla-fenix/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#migration","title":"migration","text":"Historical Pings for org-mozilla-fenix/migration
org_mozilla_fenix.migration
A historical view of pings sent for the org-mozilla-fenix/migration
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable migration_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-fenix/pageload
org_mozilla_fenix.pageload
A historical view of pings sent for the org-mozilla-fenix/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#releases","title":"releases","text":"Releases
org_mozilla_fenix.releases
Fenix release information imported from https://product-details.mozilla.org/1.0/mobile_android.json
For more context, see https://wiki.mozilla.org/Release_Management/Product_details
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable build_number Integer Yes category String Yes date Date Yes description String Yes is_security_driven Boolean Yes product String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived releases_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#review_checker_clients","title":"review_checker_clients","text":"Review Checker Clients
org_mozilla_fenix.review_checker_clients
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes normalized_country_code String Yes client_id String Yes sample_id Integer Yes shopping_product_page_visits Integer Yes experiments Record No is_opt_in Integer Yes is_opt_out Integer Yes sap Integer Yes ad_click Integer Yes active_hours_sum Float Yes is_onboarded Integer Yes is_nimbus_disabled Integer Yes is_fx_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived review_checker_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#review_checker_events","title":"review_checker_events","text":"Review Checker Events
org_mozilla_fenix.review_checker_events
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes os String Yes os_version String Yes is_address_bar_feature_callout_displayed Integer Yes is_address_bar_icon_clicked Integer Yes is_address_bar_icon_displayed Integer Yes is_surface_analyze_reviews_none_available_clicked Integer Yes is_surface_closed Integer Yes is_surface_displayed Integer Yes is_surface_expand_settings Integer Yes is_surface_learn_more_clicked Integer Yes is_surface_no_review_reliability_available Integer Yes is_surface_onboarding_displayed Integer Yes surface_opt_in_accepted Integer Yes is_surface_reactivated_button_clicked Integer Yes is_surface_reanalyze_clicked Integer Yes is_surface_show_more_recent_reviews_clicked Integer Yes is_surface_show_privacy_policy_clicked Integer Yes is_surface_show_quality_explainer_url_clicked Integer Yes is_surface_show_terms_clicked Integer Yes is_engaged_with_sidebar Integer Yes experiments Record No normalized_channel String Yes normalized_country_code String Yes sample_id Integer Yes app_version Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_derived review_checker_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#spoc","title":"spoc","text":"Historical Pings for org-mozilla-fenix/spoc
org_mozilla_fenix.spoc
A historical view of pings sent for the org-mozilla-fenix/spoc
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable spoc_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#startup_timeline","title":"startup_timeline","text":"Historical Pings for org-mozilla-fenix/startup-timeline
org_mozilla_fenix.startup_timeline
A historical view of pings sent for the org-mozilla-fenix/startup-timeline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable startup_timeline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#sync","title":"sync","text":"Historical Pings for org-mozilla-fenix/sync
org_mozilla_fenix.sync
A historical view of pings sent for the org-mozilla-fenix/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-fenix/tabs-sync
org_mozilla_fenix.tabs_sync
A historical view of pings sent for the org-mozilla-fenix/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-fenix/topsites-impression
org_mozilla_fenix.topsites_impression
A historical view of pings sent for the org-mozilla-fenix/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/","title":"org-mozilla-fenix-nightly","text":"User-facing views related to document namespace org-mozilla-fenix-nightly; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-fenix-nightly
Source Directory
"},{"location":"mozdata/org_mozilla_fenix_nightly/#activation","title":"activation","text":"Historical Pings for org-mozilla-fenix-nightly/activation
org_mozilla_fenix_nightly.activation
A historical view of pings sent for the org-mozilla-fenix-nightly/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-fenix-nightly/addresses-sync
org_mozilla_fenix_nightly.addresses_sync
A historical view of pings sent for the org-mozilla-fenix-nightly/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-fenix-nightly/baseline
org_mozilla_fenix_nightly.baseline
A historical view of pings sent for the org-mozilla-fenix-nightly/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_fenix_nightly.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_fenix_nightly.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_fenix_nightly.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-fenix-nightly/bookmarks-sync
org_mozilla_fenix_nightly.bookmarks_sync
A historical view of pings sent for the org-mozilla-fenix-nightly/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#client_deduplication","title":"client_deduplication","text":"Historical Pings for org-mozilla-fenix-nightly/client-deduplication
org_mozilla_fenix_nightly.client_deduplication
A historical view of pings sent for the org-mozilla-fenix-nightly/client-deduplication
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable client_deduplication_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-fenix-nightly/cookie-banner-report-site
org_mozilla_fenix_nightly.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-fenix-nightly/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#crash","title":"crash","text":"Historical Pings for org-mozilla-fenix-nightly/crash
org_mozilla_fenix_nightly.crash
A historical view of pings sent for the org-mozilla-fenix-nightly/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-fenix-nightly/creditcards-sync
org_mozilla_fenix_nightly.creditcards_sync
A historical view of pings sent for the org-mozilla-fenix-nightly/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-fenix-nightly/deletion-request
org_mozilla_fenix_nightly.deletion_request
A historical view of pings sent for the org-mozilla-fenix-nightly/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#events","title":"events","text":"Historical Pings for org-mozilla-fenix-nightly/events
org_mozilla_fenix_nightly.events
A historical view of pings sent for the org-mozilla-fenix-nightly/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-fenix-nightly/first-session
org_mozilla_fenix_nightly.first_session
A historical view of pings sent for the org-mozilla-fenix-nightly/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-fenix-nightly/fog-validation
org_mozilla_fenix_nightly.fog_validation
A historical view of pings sent for the org-mozilla-fenix-nightly/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#font_list","title":"font_list","text":"Historical Pings for org-mozilla-fenix-nightly/font-list
org_mozilla_fenix_nightly.font_list
A historical view of pings sent for the org-mozilla-fenix-nightly/font-list
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable font_list_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#fx_suggest","title":"fx_suggest","text":"Historical Pings for org-mozilla-fenix-nightly/fx-suggest
org_mozilla_fenix_nightly.fx_suggest
A historical view of pings sent for the org-mozilla-fenix-nightly/fx-suggest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable fx_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-fenix-nightly/history-sync
org_mozilla_fenix_nightly.history_sync
A historical view of pings sent for the org-mozilla-fenix-nightly/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#installation","title":"installation","text":"Historical Pings for org-mozilla-fenix-nightly/installation
org_mozilla_fenix_nightly.installation
A historical view of pings sent for the org-mozilla-fenix-nightly/installation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable installation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-fenix-nightly/logins-sync
org_mozilla_fenix_nightly.logins_sync
A historical view of pings sent for the org-mozilla-fenix-nightly/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-fenix-nightly/metrics
org_mozilla_fenix_nightly.metrics
A historical view of pings sent for the org-mozilla-fenix-nightly/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#migration","title":"migration","text":"Historical Pings for org-mozilla-fenix-nightly/migration
org_mozilla_fenix_nightly.migration
A historical view of pings sent for the org-mozilla-fenix-nightly/migration
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable migration_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-fenix-nightly/pageload
org_mozilla_fenix_nightly.pageload
A historical view of pings sent for the org-mozilla-fenix-nightly/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#spoc","title":"spoc","text":"Historical Pings for org-mozilla-fenix-nightly/spoc
org_mozilla_fenix_nightly.spoc
A historical view of pings sent for the org-mozilla-fenix-nightly/spoc
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable spoc_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#startup_timeline","title":"startup_timeline","text":"Historical Pings for org-mozilla-fenix-nightly/startup-timeline
org_mozilla_fenix_nightly.startup_timeline
A historical view of pings sent for the org-mozilla-fenix-nightly/startup-timeline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable startup_timeline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#sync","title":"sync","text":"Historical Pings for org-mozilla-fenix-nightly/sync
org_mozilla_fenix_nightly.sync
A historical view of pings sent for the org-mozilla-fenix-nightly/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-fenix-nightly/tabs-sync
org_mozilla_fenix_nightly.tabs_sync
A historical view of pings sent for the org-mozilla-fenix-nightly/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fenix_nightly/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-fenix-nightly/topsites-impression
org_mozilla_fenix_nightly.topsites_impression
A historical view of pings sent for the org-mozilla-fenix-nightly/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_nightly_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/","title":"org-mozilla-fennec-aurora","text":"User-facing views related to document namespace org-mozilla-fennec-aurora; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-fennec-aurora
Source Directory
"},{"location":"mozdata/org_mozilla_fennec_aurora/#activation","title":"activation","text":"Historical Pings for org-mozilla-fennec-aurora/activation
org_mozilla_fennec_aurora.activation
A historical view of pings sent for the org-mozilla-fennec-aurora/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-fennec-aurora/addresses-sync
org_mozilla_fennec_aurora.addresses_sync
A historical view of pings sent for the org-mozilla-fennec-aurora/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-fennec-aurora/baseline
org_mozilla_fennec_aurora.baseline
A historical view of pings sent for the org-mozilla-fennec-aurora/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_fennec_aurora.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_fennec_aurora.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_fennec_aurora.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-fennec-aurora/bookmarks-sync
org_mozilla_fennec_aurora.bookmarks_sync
A historical view of pings sent for the org-mozilla-fennec-aurora/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#client_deduplication","title":"client_deduplication","text":"Historical Pings for org-mozilla-fennec-aurora/client-deduplication
org_mozilla_fennec_aurora.client_deduplication
A historical view of pings sent for the org-mozilla-fennec-aurora/client-deduplication
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable client_deduplication_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-fennec-aurora/cookie-banner-report-site
org_mozilla_fennec_aurora.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-fennec-aurora/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#crash","title":"crash","text":"Historical Pings for org-mozilla-fennec-aurora/crash
org_mozilla_fennec_aurora.crash
A historical view of pings sent for the org-mozilla-fennec-aurora/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-fennec-aurora/creditcards-sync
org_mozilla_fennec_aurora.creditcards_sync
A historical view of pings sent for the org-mozilla-fennec-aurora/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-fennec-aurora/deletion-request
org_mozilla_fennec_aurora.deletion_request
A historical view of pings sent for the org-mozilla-fennec-aurora/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#events","title":"events","text":"Historical Pings for org-mozilla-fennec-aurora/events
org_mozilla_fennec_aurora.events
A historical view of pings sent for the org-mozilla-fennec-aurora/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-fennec-aurora/first-session
org_mozilla_fennec_aurora.first_session
A historical view of pings sent for the org-mozilla-fennec-aurora/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-fennec-aurora/fog-validation
org_mozilla_fennec_aurora.fog_validation
A historical view of pings sent for the org-mozilla-fennec-aurora/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#font_list","title":"font_list","text":"Historical Pings for org-mozilla-fennec-aurora/font-list
org_mozilla_fennec_aurora.font_list
A historical view of pings sent for the org-mozilla-fennec-aurora/font-list
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable font_list_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#fx_suggest","title":"fx_suggest","text":"Historical Pings for org-mozilla-fennec-aurora/fx-suggest
org_mozilla_fennec_aurora.fx_suggest
A historical view of pings sent for the org-mozilla-fennec-aurora/fx-suggest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable fx_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-fennec-aurora/history-sync
org_mozilla_fennec_aurora.history_sync
A historical view of pings sent for the org-mozilla-fennec-aurora/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#installation","title":"installation","text":"Historical Pings for org-mozilla-fennec-aurora/installation
org_mozilla_fennec_aurora.installation
A historical view of pings sent for the org-mozilla-fennec-aurora/installation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable installation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-fennec-aurora/logins-sync
org_mozilla_fennec_aurora.logins_sync
A historical view of pings sent for the org-mozilla-fennec-aurora/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-fennec-aurora/metrics
org_mozilla_fennec_aurora.metrics
A historical view of pings sent for the org-mozilla-fennec-aurora/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#migration","title":"migration","text":"Historical Pings for org-mozilla-fennec-aurora/migration
org_mozilla_fennec_aurora.migration
A historical view of pings sent for the org-mozilla-fennec-aurora/migration
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable migration_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-fennec-aurora/pageload
org_mozilla_fennec_aurora.pageload
A historical view of pings sent for the org-mozilla-fennec-aurora/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#spoc","title":"spoc","text":"Historical Pings for org-mozilla-fennec-aurora/spoc
org_mozilla_fennec_aurora.spoc
A historical view of pings sent for the org-mozilla-fennec-aurora/spoc
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable spoc_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#startup_timeline","title":"startup_timeline","text":"Historical Pings for org-mozilla-fennec-aurora/startup-timeline
org_mozilla_fennec_aurora.startup_timeline
A historical view of pings sent for the org-mozilla-fennec-aurora/startup-timeline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable startup_timeline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#sync","title":"sync","text":"Historical Pings for org-mozilla-fennec-aurora/sync
org_mozilla_fennec_aurora.sync
A historical view of pings sent for the org-mozilla-fennec-aurora/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-fennec-aurora/tabs-sync
org_mozilla_fennec_aurora.tabs_sync
A historical view of pings sent for the org-mozilla-fennec-aurora/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_fennec_aurora/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-fennec-aurora/topsites-impression
org_mozilla_fennec_aurora.topsites_impression
A historical view of pings sent for the org-mozilla-fennec-aurora/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fennec_aurora_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/","title":"org-mozilla-firefox","text":"User-facing views related to document namespace org-mozilla-firefox; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-firefox
Source Directory
"},{"location":"mozdata/org_mozilla_firefox/#activation","title":"activation","text":"Historical Pings for org-mozilla-firefox/activation
org_mozilla_firefox.activation
A historical view of pings sent for the org-mozilla-firefox/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-firefox/addresses-sync
org_mozilla_firefox.addresses_sync
A historical view of pings sent for the org-mozilla-firefox/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-firefox/baseline
org_mozilla_firefox.baseline
A historical view of pings sent for the org-mozilla-firefox/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_firefox.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_firefox.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_firefox.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-firefox/bookmarks-sync
org_mozilla_firefox.bookmarks_sync
A historical view of pings sent for the org-mozilla-firefox/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#client_deduplication","title":"client_deduplication","text":"Client Deduplication
org_mozilla_firefox.client_deduplication
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_app_id String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_derived client_deduplication_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-firefox/cookie-banner-report-site
org_mozilla_firefox.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-firefox/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#crash","title":"crash","text":"Historical Pings for org-mozilla-firefox/crash
org_mozilla_firefox.crash
A historical view of pings sent for the org-mozilla-firefox/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-firefox/creditcards-sync
org_mozilla_firefox.creditcards_sync
A historical view of pings sent for the org-mozilla-firefox/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-firefox/deletion-request
org_mozilla_firefox.deletion_request
A historical view of pings sent for the org-mozilla-firefox/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#events","title":"events","text":"Historical Pings for org-mozilla-firefox/events
org_mozilla_firefox.events
A historical view of pings sent for the org-mozilla-firefox/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-firefox/first-session
org_mozilla_firefox.first_session
A historical view of pings sent for the org-mozilla-firefox/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-firefox/fog-validation
org_mozilla_firefox.fog_validation
A historical view of pings sent for the org-mozilla-firefox/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#font_list","title":"font_list","text":"Historical Pings for org-mozilla-firefox/font-list
org_mozilla_firefox.font_list
A historical view of pings sent for the org-mozilla-firefox/font-list
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable font_list_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#fx_suggest","title":"fx_suggest","text":"Historical Pings for org-mozilla-firefox/fx-suggest
org_mozilla_firefox.fx_suggest
A historical view of pings sent for the org-mozilla-firefox/fx-suggest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable fx_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-firefox/history-sync
org_mozilla_firefox.history_sync
A historical view of pings sent for the org-mozilla-firefox/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#installation","title":"installation","text":"Historical Pings for org-mozilla-firefox/installation
org_mozilla_firefox.installation
A historical view of pings sent for the org-mozilla-firefox/installation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable installation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-firefox/logins-sync
org_mozilla_firefox.logins_sync
A historical view of pings sent for the org-mozilla-firefox/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-firefox/metrics
org_mozilla_firefox.metrics
A historical view of pings sent for the org-mozilla-firefox/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#migrated_clients","title":"migrated_clients","text":"Migrated Clients
org_mozilla_firefox.migrated_clients
Please provide a description for the query
Schema Column Description Type Nullable fenix_client_id String Yes submission_date Date Yes normalized_channel String Yes manufacturer String Yes country String Yes fennec_client_id String Yes migration_ping_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_derived migrated_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#migration","title":"migration","text":"Migration
org_mozilla_firefox.migration
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-firefox/pageload
org_mozilla_firefox.pageload
A historical view of pings sent for the org-mozilla-firefox/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#spoc","title":"spoc","text":"Historical Pings for org-mozilla-firefox/spoc
org_mozilla_firefox.spoc
A historical view of pings sent for the org-mozilla-firefox/spoc
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable spoc_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#startup_timeline","title":"startup_timeline","text":"Historical Pings for org-mozilla-firefox/startup-timeline
org_mozilla_firefox.startup_timeline
A historical view of pings sent for the org-mozilla-firefox/startup-timeline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable startup_timeline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#sync","title":"sync","text":"Historical Pings for org-mozilla-firefox/sync
org_mozilla_firefox.sync
A historical view of pings sent for the org-mozilla-firefox/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-firefox/tabs-sync
org_mozilla_firefox.tabs_sync
A historical view of pings sent for the org-mozilla-firefox/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-firefox/topsites-impression
org_mozilla_firefox.topsites_impression
A historical view of pings sent for the org-mozilla-firefox/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/","title":"Org Mozilla Firefox Beta","text":"User-facing views related to document namespace org-mozilla-firefox-beta see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-firefox-beta
Source Directory
"},{"location":"mozdata/org_mozilla_firefox_beta/#activation","title":"activation","text":"Historical Pings for org-mozilla-firefox-beta/activation
org_mozilla_firefox_beta.activation
A historical view of pings sent for the org-mozilla-firefox-beta/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-firefox-beta/addresses-sync
org_mozilla_firefox_beta.addresses_sync
A historical view of pings sent for the org-mozilla-firefox-beta/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-firefox-beta/baseline
org_mozilla_firefox_beta.baseline
A historical view of pings sent for the org-mozilla-firefox-beta/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_firefox_beta.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_firefox_beta.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_firefox_beta.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-firefox-beta/bookmarks-sync
org_mozilla_firefox_beta.bookmarks_sync
A historical view of pings sent for the org-mozilla-firefox-beta/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#client_deduplication","title":"client_deduplication","text":"Client Deduplication
org_mozilla_firefox_beta.client_deduplication
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_app_id String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_derived client_deduplication_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-firefox-beta/cookie-banner-report-site
org_mozilla_firefox_beta.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-firefox-beta/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#crash","title":"crash","text":"Historical Pings for org-mozilla-firefox-beta/crash
org_mozilla_firefox_beta.crash
A historical view of pings sent for the org-mozilla-firefox-beta/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-firefox-beta/creditcards-sync
org_mozilla_firefox_beta.creditcards_sync
A historical view of pings sent for the org-mozilla-firefox-beta/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-firefox-beta/deletion-request
org_mozilla_firefox_beta.deletion_request
A historical view of pings sent for the org-mozilla-firefox-beta/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#events","title":"events","text":"Historical Pings for org-mozilla-firefox-beta/events
org_mozilla_firefox_beta.events
A historical view of pings sent for the org-mozilla-firefox-beta/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-firefox-beta/first-session
org_mozilla_firefox_beta.first_session
A historical view of pings sent for the org-mozilla-firefox-beta/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-firefox-beta/fog-validation
org_mozilla_firefox_beta.fog_validation
A historical view of pings sent for the org-mozilla-firefox-beta/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#font_list","title":"font_list","text":"Historical Pings for org-mozilla-firefox-beta/font-list
org_mozilla_firefox_beta.font_list
A historical view of pings sent for the org-mozilla-firefox-beta/font-list
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable font_list_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#fx_suggest","title":"fx_suggest","text":"Historical Pings for org-mozilla-firefox-beta/fx-suggest
org_mozilla_firefox_beta.fx_suggest
A historical view of pings sent for the org-mozilla-firefox-beta/fx-suggest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable fx_suggest_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-firefox-beta/history-sync
org_mozilla_firefox_beta.history_sync
A historical view of pings sent for the org-mozilla-firefox-beta/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#installation","title":"installation","text":"Historical Pings for org-mozilla-firefox-beta/installation
org_mozilla_firefox_beta.installation
A historical view of pings sent for the org-mozilla-firefox-beta/installation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable installation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-firefox-beta/logins-sync
org_mozilla_firefox_beta.logins_sync
A historical view of pings sent for the org-mozilla-firefox-beta/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-firefox-beta/metrics
org_mozilla_firefox_beta.metrics
A historical view of pings sent for the org-mozilla-firefox-beta/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#migration","title":"migration","text":"Historical Pings for org-mozilla-firefox-beta/migration
org_mozilla_firefox_beta.migration
A historical view of pings sent for the org-mozilla-firefox-beta/migration
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable migration_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-firefox-beta/pageload
org_mozilla_firefox_beta.pageload
A historical view of pings sent for the org-mozilla-firefox-beta/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#spoc","title":"spoc","text":"Historical Pings for org-mozilla-firefox-beta/spoc
org_mozilla_firefox_beta.spoc
A historical view of pings sent for the org-mozilla-firefox-beta/spoc
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable spoc_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#startup_timeline","title":"startup_timeline","text":"Historical Pings for org-mozilla-firefox-beta/startup-timeline
org_mozilla_firefox_beta.startup_timeline
A historical view of pings sent for the org-mozilla-firefox-beta/startup-timeline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable startup_timeline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#sync","title":"sync","text":"Historical Pings for org-mozilla-firefox-beta/sync
org_mozilla_firefox_beta.sync
A historical view of pings sent for the org-mozilla-firefox-beta/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-firefox-beta/tabs-sync
org_mozilla_firefox_beta.tabs_sync
A historical view of pings sent for the org-mozilla-firefox-beta/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_beta/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-firefox-beta/topsites-impression
org_mozilla_firefox_beta.topsites_impression
A historical view of pings sent for the org-mozilla-firefox-beta/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_beta_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/","title":"org-mozilla-firefox-vpn","text":"User-facing views related to document namespace org-mozilla-firefox-vpn; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-firefox-vpn
Source Directory
"},{"location":"mozdata/org_mozilla_firefox_vpn/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-firefox-vpn/baseline
org_mozilla_firefox_vpn.baseline
A historical view of pings sent for the org-mozilla-firefox-vpn/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_firefox_vpn.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_firefox_vpn.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_firefox_vpn.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#daemonsession","title":"daemonsession","text":"Historical Pings for org-mozilla-firefox-vpn/daemonsession
org_mozilla_firefox_vpn.daemonsession
A historical view of pings sent for the org-mozilla-firefox-vpn/daemonsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable daemonsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-firefox-vpn/deletion-request
org_mozilla_firefox_vpn.deletion_request
A historical view of pings sent for the org-mozilla-firefox-vpn/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#events","title":"events","text":"Historical Pings for org-mozilla-firefox-vpn/events
org_mozilla_firefox_vpn.events
A historical view of pings sent for the org-mozilla-firefox-vpn/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#main","title":"main","text":"Historical Pings for org-mozilla-firefox-vpn/main
org_mozilla_firefox_vpn.main
A historical view of pings sent for the org-mozilla-firefox-vpn/main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable main_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-firefox-vpn/metrics
org_mozilla_firefox_vpn.metrics
A historical view of pings sent for the org-mozilla-firefox-vpn/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefox_vpn/#vpnsession","title":"vpnsession","text":"Historical Pings for org-mozilla-firefox-vpn/vpnsession
org_mozilla_firefox_vpn.vpnsession
A historical view of pings sent for the org-mozilla-firefox-vpn/vpnsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefox_vpn_stable vpnsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/","title":"org-mozilla-firefoxreality","text":"User-facing views related to document namespace org-mozilla-firefoxreality; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-firefoxreality
Source Directory
"},{"location":"mozdata/org_mozilla_firefoxreality/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-firefoxreality/baseline
org_mozilla_firefoxreality.baseline
A historical view of pings sent for the org-mozilla-firefoxreality/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_firefoxreality.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_firefoxreality.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_firefoxreality.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-firefoxreality/deletion-request
org_mozilla_firefoxreality.deletion_request
A historical view of pings sent for the org-mozilla-firefoxreality/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#events","title":"events","text":"Historical Pings for org-mozilla-firefoxreality/events
org_mozilla_firefoxreality.events
A historical view of pings sent for the org-mozilla-firefoxreality/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#launch","title":"launch","text":"Historical Pings for org-mozilla-firefoxreality/launch
org_mozilla_firefoxreality.launch
A historical view of pings sent for the org-mozilla-firefoxreality/launch
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_stable launch_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_firefoxreality/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-firefoxreality/metrics
org_mozilla_firefoxreality.metrics
A historical view of pings sent for the org-mozilla-firefoxreality/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_firefoxreality_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/","title":"org-mozilla-focus","text":"User-facing views related to document namespace org-mozilla-focus; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-focus
Source Directory
"},{"location":"mozdata/org_mozilla_focus/#activation","title":"activation","text":"Historical Pings for org-mozilla-focus/activation
org_mozilla_focus.activation
A historical view of pings sent for the org-mozilla-focus/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-focus/baseline
org_mozilla_focus.baseline
A historical view of pings sent for the org-mozilla-focus/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_focus.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_focus.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_focus.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-focus/cookie-banner-report-site
org_mozilla_focus.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-focus/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#crash","title":"crash","text":"Historical Pings for org-mozilla-focus/crash
org_mozilla_focus.crash
A historical view of pings sent for the org-mozilla-focus/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-focus/deletion-request
org_mozilla_focus.deletion_request
A historical view of pings sent for the org-mozilla-focus/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#events","title":"events","text":"Historical Pings for org-mozilla-focus/events
org_mozilla_focus.events
A historical view of pings sent for the org-mozilla-focus/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-focus/fog-validation
org_mozilla_focus.fog_validation
A historical view of pings sent for the org-mozilla-focus/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-focus/metrics
org_mozilla_focus.metrics
A historical view of pings sent for the org-mozilla-focus/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-focus/pageload
org_mozilla_focus.pageload
A historical view of pings sent for the org-mozilla-focus/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/","title":"org-mozilla-focus-beta","text":"User-facing views related to document namespace org-mozilla-focus-beta; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-focus-beta
Source Directory
"},{"location":"mozdata/org_mozilla_focus_beta/#activation","title":"activation","text":"Historical Pings for org-mozilla-focus-beta/activation
org_mozilla_focus_beta.activation
A historical view of pings sent for the org-mozilla-focus-beta/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-focus-beta/baseline
org_mozilla_focus_beta.baseline
A historical view of pings sent for the org-mozilla-focus-beta/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_focus_beta.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_focus_beta.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_focus_beta.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-focus-beta/cookie-banner-report-site
org_mozilla_focus_beta.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-focus-beta/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#crash","title":"crash","text":"Historical Pings for org-mozilla-focus-beta/crash
org_mozilla_focus_beta.crash
A historical view of pings sent for the org-mozilla-focus-beta/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-focus-beta/deletion-request
org_mozilla_focus_beta.deletion_request
A historical view of pings sent for the org-mozilla-focus-beta/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#events","title":"events","text":"Historical Pings for org-mozilla-focus-beta/events
org_mozilla_focus_beta.events
A historical view of pings sent for the org-mozilla-focus-beta/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-focus-beta/fog-validation
org_mozilla_focus_beta.fog_validation
A historical view of pings sent for the org-mozilla-focus-beta/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-focus-beta/metrics
org_mozilla_focus_beta.metrics
A historical view of pings sent for the org-mozilla-focus-beta/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_beta/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-focus-beta/pageload
org_mozilla_focus_beta.pageload
A historical view of pings sent for the org-mozilla-focus-beta/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_beta_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/","title":"org-mozilla-focus-nightly","text":"User-facing views related to document namespace org-mozilla-focus-nightly; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-focus-nightly
Source Directory
"},{"location":"mozdata/org_mozilla_focus_nightly/#activation","title":"activation","text":"Historical Pings for org-mozilla-focus-nightly/activation
org_mozilla_focus_nightly.activation
A historical view of pings sent for the org-mozilla-focus-nightly/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-focus-nightly/baseline
org_mozilla_focus_nightly.baseline
A historical view of pings sent for the org-mozilla-focus-nightly/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_focus_nightly.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_focus_nightly.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_focus_nightly.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-focus-nightly/cookie-banner-report-site
org_mozilla_focus_nightly.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-focus-nightly/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#crash","title":"crash","text":"Historical Pings for org-mozilla-focus-nightly/crash
org_mozilla_focus_nightly.crash
A historical view of pings sent for the org-mozilla-focus-nightly/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-focus-nightly/deletion-request
org_mozilla_focus_nightly.deletion_request
A historical view of pings sent for the org-mozilla-focus-nightly/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#events","title":"events","text":"Historical Pings for org-mozilla-focus-nightly/events
org_mozilla_focus_nightly.events
A historical view of pings sent for the org-mozilla-focus-nightly/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-focus-nightly/fog-validation
org_mozilla_focus_nightly.fog_validation
A historical view of pings sent for the org-mozilla-focus-nightly/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-focus-nightly/metrics
org_mozilla_focus_nightly.metrics
A historical view of pings sent for the org-mozilla-focus-nightly/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_focus_nightly/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-focus-nightly/pageload
org_mozilla_focus_nightly.pageload
A historical view of pings sent for the org-mozilla-focus-nightly/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_focus_nightly_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/","title":"org-mozilla-ios-fennec","text":"User-facing views related to document namespace org-mozilla-ios-fennec; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-fennec
Source Directory
"},{"location":"mozdata/org_mozilla_ios_fennec/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-ios-fennec/addresses-sync
org_mozilla_ios_fennec.addresses_sync
A historical view of pings sent for the org-mozilla-ios-fennec/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-fennec/baseline
org_mozilla_ios_fennec.baseline
A historical view of pings sent for the org-mozilla-ios-fennec/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_fennec.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_fennec.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_fennec.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-ios-fennec/bookmarks-sync
org_mozilla_ios_fennec.bookmarks_sync
A historical view of pings sent for the org-mozilla-ios-fennec/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-ios-fennec/creditcards-sync
org_mozilla_ios_fennec.creditcards_sync
A historical view of pings sent for the org-mozilla-ios-fennec/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-fennec/deletion-request
org_mozilla_ios_fennec.deletion_request
A historical view of pings sent for the org-mozilla-ios-fennec/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#events","title":"events","text":"Historical Pings for org-mozilla-ios-fennec/events
org_mozilla_ios_fennec.events
A historical view of pings sent for the org-mozilla-ios-fennec/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-ios-fennec/first-session
org_mozilla_ios_fennec.first_session
A historical view of pings sent for the org-mozilla-ios-fennec/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-ios-fennec/history-sync
org_mozilla_ios_fennec.history_sync
A historical view of pings sent for the org-mozilla-ios-fennec/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-ios-fennec/logins-sync
org_mozilla_ios_fennec.logins_sync
A historical view of pings sent for the org-mozilla-ios-fennec/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-fennec/metrics
org_mozilla_ios_fennec.metrics
A historical view of pings sent for the org-mozilla-ios-fennec/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#sync","title":"sync","text":"Historical Pings for org-mozilla-ios-fennec/sync
org_mozilla_ios_fennec.sync
A historical view of pings sent for the org-mozilla-ios-fennec/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-ios-fennec/tabs-sync
org_mozilla_ios_fennec.tabs_sync
A historical view of pings sent for the org-mozilla-ios-fennec/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_baseline","title":"temp_baseline","text":"Historical Pings for org-mozilla-ios-fennec/temp-baseline
org_mozilla_ios_fennec.temp_baseline
A historical view of pings sent for the org-mozilla-ios-fennec/temp-baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_bookmarks_sync","title":"temp_bookmarks_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-bookmarks-sync
org_mozilla_ios_fennec.temp_bookmarks_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_clients_sync","title":"temp_clients_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-clients-sync
org_mozilla_ios_fennec.temp_clients_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-clients-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_clients_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_credit_cards_sync","title":"temp_credit_cards_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-credit-cards-sync
org_mozilla_ios_fennec.temp_credit_cards_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-credit-cards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_credit_cards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_history_sync","title":"temp_history_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-history-sync
org_mozilla_ios_fennec.temp_history_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_logins_sync","title":"temp_logins_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-logins-sync
org_mozilla_ios_fennec.temp_logins_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_rust_tabs_sync","title":"temp_rust_tabs_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-rust-tabs-sync
org_mozilla_ios_fennec.temp_rust_tabs_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-rust-tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_rust_tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_sync","title":"temp_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-sync
org_mozilla_ios_fennec.temp_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#temp_tabs_sync","title":"temp_tabs_sync","text":"Historical Pings for org-mozilla-ios-fennec/temp-tabs-sync
org_mozilla_ios_fennec.temp_tabs_sync
A historical view of pings sent for the org-mozilla-ios-fennec/temp-tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable temp_tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_fennec/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-ios-fennec/topsites-impression
org_mozilla_ios_fennec.topsites_impression
A historical view of pings sent for the org-mozilla-ios-fennec/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_fennec_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/","title":"org-mozilla-ios-firefox","text":"User-facing views related to document namespace org-mozilla-ios-firefox; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-firefox
Source Directory
"},{"location":"mozdata/org_mozilla_ios_firefox/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-ios-firefox/addresses-sync
org_mozilla_ios_firefox.addresses_sync
A historical view of pings sent for the org-mozilla-ios-firefox/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-firefox/baseline
org_mozilla_ios_firefox.baseline
A historical view of pings sent for the org-mozilla-ios-firefox/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_firefox.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_firefox.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_firefox.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-ios-firefox/bookmarks-sync
org_mozilla_ios_firefox.bookmarks_sync
A historical view of pings sent for the org-mozilla-ios-firefox/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-ios-firefox/creditcards-sync
org_mozilla_ios_firefox.creditcards_sync
A historical view of pings sent for the org-mozilla-ios-firefox/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-firefox/deletion-request
org_mozilla_ios_firefox.deletion_request
A historical view of pings sent for the org-mozilla-ios-firefox/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#events","title":"events","text":"Historical Pings for org-mozilla-ios-firefox/events
org_mozilla_ios_firefox.events
A historical view of pings sent for the org-mozilla-ios-firefox/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-ios-firefox/first-session
org_mozilla_ios_firefox.first_session
A historical view of pings sent for the org-mozilla-ios-firefox/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-ios-firefox/history-sync
org_mozilla_ios_firefox.history_sync
A historical view of pings sent for the org-mozilla-ios-firefox/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-ios-firefox/logins-sync
org_mozilla_ios_firefox.logins_sync
A historical view of pings sent for the org-mozilla-ios-firefox/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-firefox/metrics
org_mozilla_ios_firefox.metrics
A historical view of pings sent for the org-mozilla-ios-firefox/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#review_checker_clients","title":"review_checker_clients","text":"Review Checker Clients
org_mozilla_ios_firefox.review_checker_clients
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes normalized_country_code String Yes client_id String Yes sample_id Integer Yes shopping_product_page_visits Integer Yes experiments Record No is_opt_in Integer Yes is_opt_out Integer Yes sap Integer Yes ad_click Integer Yes active_hours_sum Float Yes is_onboarded Integer Yes is_nimbus_disabled Integer Yes is_fx_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_derived review_checker_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#review_checker_events","title":"review_checker_events","text":"Review Checker Events
org_mozilla_ios_firefox.review_checker_events
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes os String Yes os_version String Yes is_address_bar_feature_callout_displayed Integer Yes is_address_bar_icon_clicked Integer Yes is_address_bar_icon_displayed Integer Yes is_surface_analyze_reviews_none_available_clicked Integer Yes is_surface_closed Integer Yes is_surface_displayed Integer Yes is_surface_settings_expand_clicked Integer Yes is_surface_learn_more_clicked Integer Yes is_surface_no_review_reliability_available Integer Yes is_surface_onboarding_displayed Integer Yes is_surface_opt_in_accepted Integer Yes is_surface_reactivated_button_clicked Integer Yes is_surface_reanalyze_clicked Integer Yes is_surface_powered_by_fakespot_link_clicked Integer Yes is_surface_show_more_reviews_button_clicked Integer Yes is_surface_show_privacy_policy_clicked Integer Yes is_surface_show_quality_explainer_url_clicked Integer Yes is_surface_show_terms_clicked Integer Yes is_surface_stale_analysis_shown Integer Yes is_engaged_with_sidebar Integer Yes experiments Record No normalized_channel String Yes normalized_country_code String Yes sample_id Integer Yes app_version Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_derived review_checker_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#sync","title":"sync","text":"Historical Pings for org-mozilla-ios-firefox/sync
org_mozilla_ios_firefox.sync
A historical view of pings sent for the org-mozilla-ios-firefox/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-ios-firefox/tabs-sync
org_mozilla_ios_firefox.tabs_sync
A historical view of pings sent for the org-mozilla-ios-firefox/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_baseline","title":"temp_baseline","text":"Historical Pings for org-mozilla-ios-firefox/temp-baseline
org_mozilla_ios_firefox.temp_baseline
A historical view of pings sent for the org-mozilla-ios-firefox/temp-baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_bookmarks_sync","title":"temp_bookmarks_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-bookmarks-sync
org_mozilla_ios_firefox.temp_bookmarks_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_clients_sync","title":"temp_clients_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-clients-sync
org_mozilla_ios_firefox.temp_clients_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-clients-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_clients_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_credit_cards_sync","title":"temp_credit_cards_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-credit-cards-sync
org_mozilla_ios_firefox.temp_credit_cards_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-credit-cards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_credit_cards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_history_sync","title":"temp_history_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-history-sync
org_mozilla_ios_firefox.temp_history_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_logins_sync","title":"temp_logins_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-logins-sync
org_mozilla_ios_firefox.temp_logins_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_rust_tabs_sync","title":"temp_rust_tabs_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-rust-tabs-sync
org_mozilla_ios_firefox.temp_rust_tabs_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-rust-tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_rust_tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_sync","title":"temp_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-sync
org_mozilla_ios_firefox.temp_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#temp_tabs_sync","title":"temp_tabs_sync","text":"Historical Pings for org-mozilla-ios-firefox/temp-tabs-sync
org_mozilla_ios_firefox.temp_tabs_sync
A historical view of pings sent for the org-mozilla-ios-firefox/temp-tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable temp_tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-ios-firefox/topsites-impression
org_mozilla_ios_firefox.topsites_impression
A historical view of pings sent for the org-mozilla-ios-firefox/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefox_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefox/#unified_metrics_v1","title":"unified_metrics_v1","text":"unified metrics
org_mozilla_ios_firefox.unified_metrics_v1
Union of legacy metrics and glean metrics
Source Directory | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/","title":"org-mozilla-ios-firefoxbeta","text":"User-facing views related to document namespace org-mozilla-ios-firefoxbeta; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-firefoxbeta
Source Directory
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/addresses-sync
org_mozilla_ios_firefoxbeta.addresses_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-firefoxbeta/baseline
org_mozilla_ios_firefoxbeta.baseline
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_firefoxbeta.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_firefoxbeta.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_firefoxbeta.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/bookmarks-sync
org_mozilla_ios_firefoxbeta.bookmarks_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/creditcards-sync
org_mozilla_ios_firefoxbeta.creditcards_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-firefoxbeta/deletion-request
org_mozilla_ios_firefoxbeta.deletion_request
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#events","title":"events","text":"Historical Pings for org-mozilla-ios-firefoxbeta/events
org_mozilla_ios_firefoxbeta.events
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#first_session","title":"first_session","text":"Historical Pings for org-mozilla-ios-firefoxbeta/first-session
org_mozilla_ios_firefoxbeta.first_session
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/first-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable first_session_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/history-sync
org_mozilla_ios_firefoxbeta.history_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/logins-sync
org_mozilla_ios_firefoxbeta.logins_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-firefoxbeta/metrics
org_mozilla_ios_firefoxbeta.metrics
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#sync","title":"sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/sync
org_mozilla_ios_firefoxbeta.sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/tabs-sync
org_mozilla_ios_firefoxbeta.tabs_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_baseline","title":"temp_baseline","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-baseline
org_mozilla_ios_firefoxbeta.temp_baseline
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_bookmarks_sync","title":"temp_bookmarks_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-bookmarks-sync
org_mozilla_ios_firefoxbeta.temp_bookmarks_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_clients_sync","title":"temp_clients_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-clients-sync
org_mozilla_ios_firefoxbeta.temp_clients_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-clients-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_clients_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_credit_cards_sync","title":"temp_credit_cards_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-credit-cards-sync
org_mozilla_ios_firefoxbeta.temp_credit_cards_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-credit-cards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_credit_cards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_history_sync","title":"temp_history_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-history-sync
org_mozilla_ios_firefoxbeta.temp_history_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_logins_sync","title":"temp_logins_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-logins-sync
org_mozilla_ios_firefoxbeta.temp_logins_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_rust_tabs_sync","title":"temp_rust_tabs_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-rust-tabs-sync
org_mozilla_ios_firefoxbeta.temp_rust_tabs_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-rust-tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_rust_tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_sync","title":"temp_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-sync
org_mozilla_ios_firefoxbeta.temp_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#temp_tabs_sync","title":"temp_tabs_sync","text":"Historical Pings for org-mozilla-ios-firefoxbeta/temp-tabs-sync
org_mozilla_ios_firefoxbeta.temp_tabs_sync
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/temp-tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable temp_tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxbeta/#topsites_impression","title":"topsites_impression","text":"Historical Pings for org-mozilla-ios-firefoxbeta/topsites-impression
org_mozilla_ios_firefoxbeta.topsites_impression
A historical view of pings sent for the org-mozilla-ios-firefoxbeta/topsites-impression
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxbeta_stable topsites_impression_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/","title":"org-mozilla-ios-firefoxvpn","text":"User-facing views related to document namespace org-mozilla-ios-firefoxvpn; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-firefoxvpn
Source Directory
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-firefoxvpn/baseline
org_mozilla_ios_firefoxvpn.baseline
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_firefoxvpn.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_firefoxvpn.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_firefoxvpn.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#daemonsession","title":"daemonsession","text":"Historical Pings for org-mozilla-ios-firefoxvpn/daemonsession
org_mozilla_ios_firefoxvpn.daemonsession
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/daemonsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable daemonsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-firefoxvpn/deletion-request
org_mozilla_ios_firefoxvpn.deletion_request
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#events","title":"events","text":"Historical Pings for org-mozilla-ios-firefoxvpn/events
org_mozilla_ios_firefoxvpn.events
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#main","title":"main","text":"Historical Pings for org-mozilla-ios-firefoxvpn/main
org_mozilla_ios_firefoxvpn.main
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable main_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-firefoxvpn/metrics
org_mozilla_ios_firefoxvpn.metrics
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn/#vpnsession","title":"vpnsession","text":"Historical Pings for org-mozilla-ios-firefoxvpn/vpnsession
org_mozilla_ios_firefoxvpn.vpnsession
A historical view of pings sent for the org-mozilla-ios-firefoxvpn/vpnsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_stable vpnsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/","title":"org-mozilla-ios-firefoxvpn-network-extension","text":"User-facing views related to document namespace org-mozilla-ios-firefoxvpn-network-extension; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-firefoxvpn-network-extension
Source Directory
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/baseline
org_mozilla_ios_firefoxvpn_network_extension.baseline
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_firefoxvpn_network_extension.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_firefoxvpn_network_extension.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_firefoxvpn_network_extension.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#daemonsession","title":"daemonsession","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/daemonsession
org_mozilla_ios_firefoxvpn_network_extension.daemonsession
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/daemonsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable daemonsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/deletion-request
org_mozilla_ios_firefoxvpn_network_extension.deletion_request
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#events","title":"events","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/events
org_mozilla_ios_firefoxvpn_network_extension.events
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#main","title":"main","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/main
org_mozilla_ios_firefoxvpn_network_extension.main
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable main_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/metrics
org_mozilla_ios_firefoxvpn_network_extension.metrics
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_firefoxvpn_network_extension/#vpnsession","title":"vpnsession","text":"Historical Pings for org-mozilla-ios-firefoxvpn-network-extension/vpnsession
org_mozilla_ios_firefoxvpn_network_extension.vpnsession
A historical view of pings sent for the org-mozilla-ios-firefoxvpn-network-extension/vpnsession
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_firefoxvpn_network_extension_stable vpnsession_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/","title":"org-mozilla-ios-focus","text":"User-facing views related to document namespace org-mozilla-ios-focus; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-focus
Source Directory
"},{"location":"mozdata/org_mozilla_ios_focus/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-focus/baseline
org_mozilla_ios_focus.baseline
A historical view of pings sent for the org-mozilla-ios-focus/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_focus.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_focus.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_focus.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-focus/deletion-request
org_mozilla_ios_focus.deletion_request
A historical view of pings sent for the org-mozilla-ios-focus/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/#events","title":"events","text":"Historical Pings for org-mozilla-ios-focus/events
org_mozilla_ios_focus.events
A historical view of pings sent for the org-mozilla-ios-focus/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_focus/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-focus/metrics
org_mozilla_ios_focus.metrics
A historical view of pings sent for the org-mozilla-ios-focus/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_focus_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/","title":"org-mozilla-ios-klar","text":"User-facing views related to document namespace org-mozilla-ios-klar; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-klar
Source Directory
"},{"location":"mozdata/org_mozilla_ios_klar/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-klar/baseline
org_mozilla_ios_klar.baseline
A historical view of pings sent for the org-mozilla-ios-klar/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_klar.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_klar.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_klar.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-klar/deletion-request
org_mozilla_ios_klar.deletion_request
A historical view of pings sent for the org-mozilla-ios-klar/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/#events","title":"events","text":"Historical Pings for org-mozilla-ios-klar/events
org_mozilla_ios_klar.events
A historical view of pings sent for the org-mozilla-ios-klar/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_klar/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-klar/metrics
org_mozilla_ios_klar.metrics
A historical view of pings sent for the org-mozilla-ios-klar/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_klar_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/","title":"org-mozilla-ios-lockbox","text":"User-facing views related to document namespace org-mozilla-ios-lockbox; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-ios-lockbox
Source Directory
"},{"location":"mozdata/org_mozilla_ios_lockbox/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-ios-lockbox/baseline
org_mozilla_ios_lockbox.baseline
A historical view of pings sent for the org-mozilla-ios-lockbox/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_ios_lockbox.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_ios_lockbox.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_ios_lockbox.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-ios-lockbox/deletion-request
org_mozilla_ios_lockbox.deletion_request
A historical view of pings sent for the org-mozilla-ios-lockbox/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/#events","title":"events","text":"Historical Pings for org-mozilla-ios-lockbox/events
org_mozilla_ios_lockbox.events
A historical view of pings sent for the org-mozilla-ios-lockbox/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_ios_lockbox/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-ios-lockbox/metrics
org_mozilla_ios_lockbox.metrics
A historical view of pings sent for the org-mozilla-ios-lockbox/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_ios_lockbox_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/","title":"org-mozilla-klar","text":"User-facing views related to document namespace org-mozilla-klar; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-klar
Source Directory
"},{"location":"mozdata/org_mozilla_klar/#activation","title":"activation","text":"Historical Pings for org-mozilla-klar/activation
org_mozilla_klar.activation
A historical view of pings sent for the org-mozilla-klar/activation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-klar/baseline
org_mozilla_klar.baseline
A historical view of pings sent for the org-mozilla-klar/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_klar.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_klar.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_klar.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#cookie_banner_report_site","title":"cookie_banner_report_site","text":"Historical Pings for org-mozilla-klar/cookie-banner-report-site
org_mozilla_klar.cookie_banner_report_site
A historical view of pings sent for the org-mozilla-klar/cookie-banner-report-site
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable cookie_banner_report_site_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#crash","title":"crash","text":"Historical Pings for org-mozilla-klar/crash
org_mozilla_klar.crash
A historical view of pings sent for the org-mozilla-klar/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-klar/deletion-request
org_mozilla_klar.deletion_request
A historical view of pings sent for the org-mozilla-klar/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#events","title":"events","text":"Historical Pings for org-mozilla-klar/events
org_mozilla_klar.events
A historical view of pings sent for the org-mozilla-klar/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#fog_validation","title":"fog_validation","text":"Historical Pings for org-mozilla-klar/fog-validation
org_mozilla_klar.fog_validation
A historical view of pings sent for the org-mozilla-klar/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-klar/metrics
org_mozilla_klar.metrics
A historical view of pings sent for the org-mozilla-klar/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_klar/#pageload","title":"pageload","text":"Historical Pings for org-mozilla-klar/pageload
org_mozilla_klar.pageload
A historical view of pings sent for the org-mozilla-klar/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_klar_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/","title":"org-mozilla-mozregression","text":"User-facing views related to document namespace org-mozilla-mozregression; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-mozregression
Source Directory
"},{"location":"mozdata/org_mozilla_mozregression/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-mozregression/baseline
org_mozilla_mozregression.baseline
A historical view of pings sent for the org-mozilla-mozregression/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_mozregression.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_mozregression.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_mozregression.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-mozregression/deletion-request
org_mozilla_mozregression.deletion_request
A historical view of pings sent for the org-mozilla-mozregression/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#events","title":"events","text":"Historical Pings for org-mozilla-mozregression/events
org_mozilla_mozregression.events
A historical view of pings sent for the org-mozilla-mozregression/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-mozregression/metrics
org_mozilla_mozregression.metrics
A historical view of pings sent for the org-mozilla-mozregression/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#mozregression_aggregates","title":"mozregression_aggregates","text":"Mozregression Aggregates
org_mozilla_mozregression.mozregression_aggregates
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes mozregression_version String Yes mozregression_variant String Yes app_used String Yes os String Yes os_version Numeric Yes distinct_clients Integer Yes total_uses Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_derived mozregression_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_mozregression/#usage","title":"usage","text":"Historical Pings for org-mozilla-mozregression/usage
org_mozilla_mozregression.usage
A historical view of pings sent for the org-mozilla-mozregression/usage
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_mozregression_stable usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/","title":"org-mozilla-reference-browser","text":"User-facing views related to document namespace org-mozilla-reference-browser; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-reference-browser
Source Directory
"},{"location":"mozdata/org_mozilla_reference_browser/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-reference-browser/baseline
org_mozilla_reference_browser.baseline
A historical view of pings sent for the org-mozilla-reference-browser/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_reference_browser.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_reference_browser.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_reference_browser.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#crash","title":"crash","text":"Historical Pings for org-mozilla-reference-browser/crash
org_mozilla_reference_browser.crash
A historical view of pings sent for the org-mozilla-reference-browser/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_stable crash_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-reference-browser/deletion-request
org_mozilla_reference_browser.deletion_request
A historical view of pings sent for the org-mozilla-reference-browser/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#events","title":"events","text":"Historical Pings for org-mozilla-reference-browser/events
org_mozilla_reference_browser.events
A historical view of pings sent for the org-mozilla-reference-browser/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_reference_browser/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-reference-browser/metrics
org_mozilla_reference_browser.metrics
A historical view of pings sent for the org-mozilla-reference-browser/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/","title":"org-mozilla-tv-firefox","text":"User-facing views related to document namespace org-mozilla-tv-firefox; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-tv-firefox
Source Directory
"},{"location":"mozdata/org_mozilla_tv_firefox/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-tv-firefox/baseline
org_mozilla_tv_firefox.baseline
A historical view of pings sent for the org-mozilla-tv-firefox/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_tv_firefox.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_tv_firefox.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_tv_firefox.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-tv-firefox/deletion-request
org_mozilla_tv_firefox.deletion_request
A historical view of pings sent for the org-mozilla-tv-firefox/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/#events","title":"events","text":"Historical Pings for org-mozilla-tv-firefox/events
org_mozilla_tv_firefox.events
A historical view of pings sent for the org-mozilla-tv-firefox/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_tv_firefox/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-tv-firefox/metrics
org_mozilla_tv_firefox.metrics
A historical view of pings sent for the org-mozilla-tv-firefox/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_tv_firefox_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/","title":"org-mozilla-vrbrowser","text":"User-facing views related to document namespace org-mozilla-vrbrowser; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/org-mozilla-vrbrowser
Source Directory
"},{"location":"mozdata/org_mozilla_vrbrowser/#addresses_sync","title":"addresses_sync","text":"Historical Pings for org-mozilla-vrbrowser/addresses-sync
org_mozilla_vrbrowser.addresses_sync
A historical view of pings sent for the org-mozilla-vrbrowser/addresses-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable addresses_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#baseline","title":"baseline","text":"Historical Pings for org-mozilla-vrbrowser/baseline
org_mozilla_vrbrowser.baseline
A historical view of pings sent for the org-mozilla-vrbrowser/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
org_mozilla_vrbrowser.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
org_mozilla_vrbrowser.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
org_mozilla_vrbrowser.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes isp String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#bookmarks_sync","title":"bookmarks_sync","text":"Historical Pings for org-mozilla-vrbrowser/bookmarks-sync
org_mozilla_vrbrowser.bookmarks_sync
A historical view of pings sent for the org-mozilla-vrbrowser/bookmarks-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable bookmarks_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#creditcards_sync","title":"creditcards_sync","text":"Historical Pings for org-mozilla-vrbrowser/creditcards-sync
org_mozilla_vrbrowser.creditcards_sync
A historical view of pings sent for the org-mozilla-vrbrowser/creditcards-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable creditcards_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#deletion_request","title":"deletion_request","text":"Historical Pings for org-mozilla-vrbrowser/deletion-request
org_mozilla_vrbrowser.deletion_request
A historical view of pings sent for the org-mozilla-vrbrowser/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#events","title":"events","text":"Historical Pings for org-mozilla-vrbrowser/events
org_mozilla_vrbrowser.events
A historical view of pings sent for the org-mozilla-vrbrowser/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#history_sync","title":"history_sync","text":"Historical Pings for org-mozilla-vrbrowser/history-sync
org_mozilla_vrbrowser.history_sync
A historical view of pings sent for the org-mozilla-vrbrowser/history-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable history_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#logins_sync","title":"logins_sync","text":"Historical Pings for org-mozilla-vrbrowser/logins-sync
org_mozilla_vrbrowser.logins_sync
A historical view of pings sent for the org-mozilla-vrbrowser/logins-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable logins_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#metrics","title":"metrics","text":"Historical Pings for org-mozilla-vrbrowser/metrics
org_mozilla_vrbrowser.metrics
A historical view of pings sent for the org-mozilla-vrbrowser/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#session_end","title":"session_end","text":"Historical Pings for org-mozilla-vrbrowser/session-end
org_mozilla_vrbrowser.session_end
A historical view of pings sent for the org-mozilla-vrbrowser/session-end
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable session_end_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#sync","title":"sync","text":"Historical Pings for org-mozilla-vrbrowser/sync
org_mozilla_vrbrowser.sync
A historical view of pings sent for the org-mozilla-vrbrowser/sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/org_mozilla_vrbrowser/#tabs_sync","title":"tabs_sync","text":"Historical Pings for org-mozilla-vrbrowser/tabs-sync
org_mozilla_vrbrowser.tabs_sync
A historical view of pings sent for the org-mozilla-vrbrowser/tabs-sync
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_vrbrowser_stable tabs_sync_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/","title":"pine","text":"User-facing views related to document namespace pine; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/pine
Source Directory
"},{"location":"mozdata/pine/#baseline","title":"baseline","text":"Historical Pings for pine/baseline
pine.baseline
A historical view of pings sent for the pine/baseline
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable baseline_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
pine.baseline_clients_daily
A daily aggregate of baseline pings per client_id
.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
pine.baseline_clients_first_seen
Captures the earliest server date that we observe a particular client in the baseline table. A client may have a first_seen_date
that is earlier than the epoch of the baseline table; this is the result of a migration from a legacy data collection system. These clients are therefore not captured in this table.
Clustering fields: sample_id
See also: baseline_clients_daily
and baseline_clients_last_seen
.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_derived baseline_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
pine.baseline_clients_last_seen
Captures activity history of each client in 28-day windows for each submission date based on baseline pings.
Clustering fields: normalized_channel
, sample_id
See also: baseline_clients_daily
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes isp String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_derived baseline_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#deletion_request","title":"deletion_request","text":"Historical Pings for pine/deletion-request
pine.deletion_request
A historical view of pings sent for the pine/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#events","title":"events","text":"Historical Pings for pine/events
pine.events
A historical view of pings sent for the pine/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#events_unnested","title":"events_unnested","text":"Events Unnested
pine.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#fog_validation","title":"fog_validation","text":"Historical Pings for pine/fog-validation
pine.fog_validation
A historical view of pings sent for the pine/fog-validation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable fog_validation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#messaging_system","title":"messaging_system","text":"Historical Pings for pine/messaging-system
pine.messaging_system
A historical view of pings sent for the pine/messaging-system
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable messaging_system_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#metrics","title":"metrics","text":"Historical Pings for pine/metrics
pine.metrics
A historical view of pings sent for the pine/metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
pine.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#new_metric_capture_emulation","title":"new_metric_capture_emulation","text":"Historical Pings for pine/new-metric-capture-emulation
pine.new_metric_capture_emulation
A historical view of pings sent for the pine/new-metric-capture-emulation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable new_metric_capture_emulation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#newtab","title":"newtab","text":"Historical Pings for pine/newtab
pine.newtab
A historical view of pings sent for the pine/newtab
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable newtab_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#pageload","title":"pageload","text":"Historical Pings for pine/pageload
pine.pageload
A historical view of pings sent for the pine/pageload
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable pageload_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#pseudo_main","title":"pseudo_main","text":"Historical Pings for pine/pseudo-main
pine.pseudo_main
A historical view of pings sent for the pine/pseudo-main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable pseudo_main_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pine/#top_sites","title":"top_sites","text":"Historical Pings for pine/top-sites
pine.top_sites
A historical view of pings sent for the pine/top-sites
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pine_stable top_sites_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pocket/","title":"pocket","text":"User-facing views related to document namespace pocket; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/pocket
Source Directory
"},{"location":"mozdata/pocket/#events","title":"events","text":"Events
pocket.events
Please provide a description for the query
Schema Column Description Type Nullable submission_timestamp Timestamp Yes normalized_app_id String Yes metadata Record Yes client_info Record Yes event String Yes event_timestamp Timestamp Yes event_extra Json Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pocket_derived events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pocket/#fire_tv_events","title":"fire_tv_events","text":"Historical Pings for pocket/fire-tv-events
pocket.fire_tv_events
A historical view of pings sent for the pocket/fire-tv-events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes created Integer Yes device String Yes document_id The document ID specified in the URI when the client sent this message String Yes locale String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes os String Yes osversion String Yes pocket_id String Yes process_start_timestamp Integer Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes seq Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes v Integer Yes events Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod pocket_stable fire_tv_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pocket/#pocket_reach_mau","title":"pocket_reach_mau","text":"Pocket Reach Mau
pocket.pocket_reach_mau
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes mau Numeric Yes Referenced Tables Project Dataset Table pocket-airflow-prod data_from_pocket pocket_reach_mau Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pocket/#rolling_monthly_active_user_counts","title":"rolling_monthly_active_user_counts","text":"Rolling Monthly Active User Counts
pocket.rolling_monthly_active_user_counts
Rolling count of monthly active users (MAU) for Pocket.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable measured_at Activity date represented by this row Date Yes user_count Number of Pocket monthly active users on this measured_at date Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pocket_derived rolling_monthly_active_user_counts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pocket/#spoc_tile_ids","title":"spoc_tile_ids","text":"Sponsored Content (Spoc) Tile IDs
pocket.spoc_tile_ids
Lookup table of the currently registered tile IDs for Pocket sponsored content
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable tile_id Numeric ID for the tile Integer Yes type Type of content (should always be 'spoc') String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pocket_derived spoc_tile_ids_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/pocket/#twice_weekly_active_user_counts","title":"twice_weekly_active_user_counts","text":"Twice Weekly Active User Counts
pocket.twice_weekly_active_user_counts
Count of twice weekly active users (T-WAU) for Pocket, measured each calendar week.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable active_at Calendar week represented by this row Date Yes user_count Number of Pocket twice weekly active users on this date Integer Yes yearly_cumulative_user_count Cumulative TWAU for the year up to this active_at date Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod pocket_derived twice_weekly_active_user_counts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference/","title":"Reference","text":"Reference data
Source Directory
"},{"location":"mozdata/reference/#macroeconomic_indices","title":"macroeconomic_indices","text":"Macroeconomic Indices
reference.macroeconomic_indices
Historical stock index and foreign exchange data pulled daily from https://site.financialmodelingprep.com/ Specifically, we pull - ^DJI (Dow Jones Industrial Average) - ^GSPC (SNP - SNP Real Time Price. Currency in USD) - ^IXIC (Nasdaq GIDS - Nasdaq GIDS Real Time Price. Currency in USD) - EURUSD=X (Euro to USD exchange rate) - GBPUSD=X (GB pound to USD exchange rate) We have a FinancialModelingPrep account that allows us to use this data for internal use. Contact the Search and Revenue team and/or the owners of this table for more information
- Schedule: daily
- Owners:
- cmorales@mozilla.com
- xluo@mozilla.com
Schema Column Description Type Nullable symbol String Yes market_date Date Yes open Numeric Yes close Numeric Yes adj_close Numeric Yes high Numeric Yes low Numeric Yes volume Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod reference_derived macroeconomic_indices_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/","title":"Reference Browser","text":"Views on data from reference_browser
Source Directory
"},{"location":"mozdata/reference_browser/#baseline","title":"baseline","text":"App-specific view for Glean ping \"baseline\"
reference_browser.baseline
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Reference Browser\" (org_mozilla_reference_browser.baseline).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser baseline Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#baseline_clients_daily","title":"baseline_clients_daily","text":"Baseline Clients Daily
reference_browser.baseline_clients_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser baseline_clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#baseline_clients_first_seen","title":"baseline_clients_first_seen","text":"Baseline Clients First Seen
reference_browser.baseline_clients_first_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser baseline_clients_first_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#baseline_clients_last_seen","title":"baseline_clients_last_seen","text":"Baseline Clients Last Seen
reference_browser.baseline_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser baseline_clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#clients_last_seen_joined","title":"clients_last_seen_joined","text":"Clients Last Seen Joined
reference_browser.clients_last_seen_joined
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes client_id String Yes sample_id Integer Yes days_since_seen Integer Yes days_since_created_profile Integer Yes days_since_seen_session_start Integer Yes days_since_seen_session_end Integer Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes first_run_date Date Yes durations Integer Yes days_seen_session_start_bits Integer Yes days_seen_session_end_bits Integer Yes normalized_os String Yes normalized_os_version String Yes android_sdk_version String Yes locale String Yes city String Yes country String Yes app_build String Yes app_channel String Yes app_display_version String Yes architecture String Yes device_manufacturer String Yes device_model String Yes telemetry_sdk_build String Yes first_seen_date Date Yes is_new_profile Boolean Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes isp String Yes normalized_app_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod reference_browser_derived clients_last_seen_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#crash","title":"crash","text":"App-specific view for Glean ping \"crash\"
reference_browser.crash
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Reference Browser\" (org_mozilla_reference_browser.crash).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser crash Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#deletion_request","title":"deletion_request","text":"App-specific view for Glean ping \"deletion-request\"
reference_browser.deletion_request
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Reference Browser\" (org_mozilla_reference_browser.deletion_request).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser deletion_request Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#events","title":"events","text":"App-specific view for Glean ping \"events\"
reference_browser.events
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Reference Browser\" (org_mozilla_reference_browser.events).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#events_unnested","title":"events_unnested","text":"Events Unnested
reference_browser.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#metrics","title":"metrics","text":"App-specific view for Glean ping \"metrics\"
reference_browser.metrics
This a view that UNIONs the stable ping tables across all channels of the Glean application \"Reference Browser\" (org_mozilla_reference_browser.metrics).
It is used by Looker.
Schema Column Description Type Nullable normalized_app_id App ID of the channel data was received from String Yes normalized_channel Normalized channel name String Yes additional_properties String Yes client_info Record Yes document_id String Yes events Record No metadata Record Yes normalized_app_name String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes ping_info Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes metrics Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_reference_browser metrics Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#metrics_clients_daily","title":"metrics_clients_daily","text":"Metrics Clients Daily
reference_browser.metrics_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod reference_browser_derived metrics_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/reference_browser/#metrics_clients_last_seen","title":"metrics_clients_last_seen","text":"Metrics Clients Last Seen
reference_browser.metrics_clients_last_seen
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes normalized_channel String Yes n_metrics_ping Integer Yes days_sent_metrics_ping_bits Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod reference_browser_derived metrics_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter/","title":"regrets-reporter","text":"User-facing views related to document namespace regrets-reporter; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/regrets-reporter
Source Directory
"},{"location":"mozdata/regrets_reporter/#regrets_reporter_summary","title":"regrets_reporter_summary","text":"Regrets Reporter Summary - view
regrets_reporter.regrets_reporter_summary
Measure usage of the regrets reporter addon See https://github.com/mozilla/bigquery-etl/issues/2572
Schema Column Description Type Nullable dau Integer Yes wau Integer Yes new_users Integer Yes date Date Yes experiment_arm String Yes ui_arm String Yes country String Yes browser String Yes activities Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_derived regrets_reporter_summary_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter/#regrets_reporter_update","title":"regrets_reporter_update","text":"Regrets Reporter Update
regrets_reporter.regrets_reporter_update
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_stable regrets_reporter_update_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter_ucs/","title":"regrets-reporter-ucs","text":"User-facing views related to document namespace regrets-reporter-ucs; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/regrets-reporter-ucs
Source Directory
"},{"location":"mozdata/regrets_reporter_ucs/#deletion_request","title":"deletion_request","text":"Historical Pings for regrets-reporter-ucs/deletion-request
regrets_reporter_ucs.deletion_request
A historical view of pings sent for the regrets-reporter-ucs/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_ucs_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter_ucs/#events","title":"events","text":"Historical Pings for regrets-reporter-ucs/events
regrets_reporter_ucs.events
A historical view of pings sent for the regrets-reporter-ucs/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_ucs_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter_ucs/#main_events","title":"main_events","text":"Historical Pings for regrets-reporter-ucs/main-events
regrets_reporter_ucs.main_events
A historical view of pings sent for the regrets-reporter-ucs/main-events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_ucs_stable main_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter_ucs/#regret_details","title":"regret_details","text":"Historical Pings for regrets-reporter-ucs/regret-details
regrets_reporter_ucs.regret_details
A historical view of pings sent for the regrets-reporter-ucs/regret-details
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_ucs_stable regret_details_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter_ucs/#video_data","title":"video_data","text":"Historical Pings for regrets-reporter-ucs/video-data
regrets_reporter_ucs.video_data
A historical view of pings sent for the regrets-reporter-ucs/video-data
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_ucs_stable video_data_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/regrets_reporter_ucs/#video_index","title":"video_index","text":"Historical Pings for regrets-reporter-ucs/video-index
regrets_reporter_ucs.video_index
A historical view of pings sent for the regrets-reporter-ucs/video-index
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod regrets_reporter_ucs_stable video_index_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/relay/","title":"Firefox Relay","text":"Data related to the Firefox Relay service
Source Directory
"},{"location":"mozdata/relay/#active_subscription_ids","title":"active_subscription_ids","text":"Active Subscription Ids
relay.active_subscription_ids
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes subscription_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod relay_derived active_subscription_ids_live moz-fx-data-shared-prod relay_derived active_subscription_ids_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/relay/#active_subscriptions","title":"active_subscriptions","text":"Active Subscriptions
relay.active_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes plan_id String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes promotion_codes String No promotion_discounts_amount Integer Yes count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod relay_derived active_subscriptions_live moz-fx-data-shared-prod relay_derived active_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/relay/#subscription_events","title":"subscription_events","text":"Subscription Events
relay.subscription_events
Please provide a description for the query
Schema Column Description Type Nullable event_date Date Yes event_type String Yes granular_event_type String Yes plan_id String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes promotion_codes String No count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod relay_derived subscription_events_live moz-fx-data-shared-prod relay_derived subscription_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/relay/#subscriptions","title":"subscriptions","text":"Subscriptions
relay.subscriptions
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes subscription_id String Yes original_subscription_id String Yes plan_id String Yes status String Yes event_timestamp Timestamp Yes subscription_start_date Timestamp Yes original_subscription_start_date Timestamp Yes subscription_start_reason String Yes trial_start Timestamp Yes trial_end Timestamp Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes ended_at Timestamp Yes ended_reason String Yes fxa_uid String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes product_id String Yes product_name String Yes pricing_plan String Yes billing_grace_period Interval Yes promotion_codes String No promotion_discounts_amount Integer Yes customer_start_date Timestamp Yes end_date Timestamp Yes months_retained Integer Yes original_subscription_months_retained Integer Yes current_months_since_subscription_start Integer Yes current_months_since_original_subscription_start Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod relay_derived subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/","title":"Search","text":"Views related to client search counts
Source Directory
"},{"location":"mozdata/search/#acer_cohort","title":"acer_cohort","text":"Acer Cohort
search.acer_cohort
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived acer_cohort_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#desktop_mobile_search_clients_monthly","title":"desktop_mobile_search_clients_monthly","text":"Desktop Mobile Search Clients Monthly
search.desktop_mobile_search_clients_monthly
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes submission_month Date Yes device String Yes normalized_engine String Yes normalized_app_name String Yes os String Yes country String Yes days_of_use Integer Yes searches Integer Yes search_with_ads Integer Yes ad_click Integer Yes tagged_follow_on Integer Yes tagged_sap Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived desktop_mobile_search_clients_monthly_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#desktop_search_aggregates_by_userstate","title":"desktop_search_aggregates_by_userstate","text":"Desktop Search Aggregates By Userstate
search.desktop_search_aggregates_by_userstate
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes geo String Yes user_state String Yes client_count Integer Yes search_client_count Integer Yes sap Integer Yes search_with_ads Integer Yes ad_clicks Integer Yes tagged_follow_on Integer Yes tagged_sap Integer Yes organic Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived desktop_search_aggregates_by_userstate_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#desktop_search_aggregates_for_searchreport","title":"desktop_search_aggregates_for_searchreport","text":"Desktop Search Aggregates For Searchreport
search.desktop_search_aggregates_for_searchreport
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes geo String Yes locale String Yes engine String Yes os String Yes app_version String Yes dcc Integer Yes sap Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes search_with_ads Integer Yes ad_click Integer Yes organic Integer Yes ad_click_organic Integer Yes search_with_ads_organic Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived desktop_search_aggregates_for_searchreport_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#firefox_products_search_clients_engines_sources_daily","title":"firefox_products_search_clients_engines_sources_daily","text":"Firefox Products Search Clients Engines Sources Daily
search.firefox_products_search_clients_engines_sources_daily
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod search mobile_search_clients_engines_sources_daily moz-fx-data-shared-prod search search_clients_engines_sources_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#mobile_search_aggregates","title":"mobile_search_aggregates","text":"Mobile Search Aggregates
search.mobile_search_aggregates
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes engine String Yes source String Yes app_name String Yes normalized_app_name String Yes app_version String Yes channel String Yes country String Yes locale String Yes distribution_id String Yes default_search_engine String Yes os String Yes os_version String Yes client_count Integer Yes search_count Integer Yes organic Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes unknown Integer Yes ad_click_organic Integer Yes normalized_engine String Yes sap Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived mobile_search_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#mobile_search_aggregates_for_searchreport","title":"mobile_search_aggregates_for_searchreport","text":"Mobile Search Aggregates For Searchreport
search.mobile_search_aggregates_for_searchreport
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes country String Yes product String Yes normalized_engine String Yes clients Integer Yes search_clients Integer Yes sap Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes organic Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived mobile_search_aggregates_for_searchreport_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#mobile_search_clients_engines_sources_daily","title":"mobile_search_clients_engines_sources_daily","text":"Mobile Search Clients Engines Sources Daily
search.mobile_search_clients_engines_sources_daily
A daily aggregate of baseline and metrics pings that have searches from each (client_id, engine, source) combination, partitioned by day.
- Owners:
- akomar@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes engine String Yes source String Yes app_name String Yes normalized_app_name String Yes search_count Integer Yes organic Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes unknown Integer Yes country String Yes locale String Yes app_version String Yes channel String Yes os String Yes os_version String Yes default_search_engine String Yes default_search_engine_submission_url String Yes distribution_id String Yes profile_creation_date Integer Yes profile_age_in_days Integer Yes sample_id Integer Yes experiments Record No total_uri_count Integer Yes ad_click_organic Integer Yes normalized_engine String Yes browser_version_info Record Yes sap Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived mobile_search_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#mobile_search_clients_last_seen","title":"mobile_search_clients_last_seen","text":"Mobile Search Clients Last Seen
search.mobile_search_clients_last_seen
Captures search activity of each mobile client in the past 365 days for each submission date.
Used as the basis for LTV calculations.
- Owners:
- akomar@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes app_name String Yes normalized_app_name String Yes country String Yes locale String Yes app_version String Yes channel String Yes os String Yes os_version String Yes default_search_engine String Yes default_search_engine_submission_url String Yes distribution_id String Yes profile_creation_date Integer Yes profile_age_in_days Integer Yes organic Integer Yes sap Integer Yes unknown Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes tagged_searches Integer Yes days_seen_bytes Bytes Yes days_searched_bytes Bytes Yes days_tagged_searched_bytes Bytes Yes days_searched_with_ads_bytes Bytes Yes days_clicked_ads_bytes Bytes Yes days_created_profile_bytes Bytes Yes engine_searches Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived mobile_search_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#search_aggregates","title":"search_aggregates","text":"Search Aggregates
search.search_aggregates
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes addon_version String Yes app_version String Yes country String Yes distribution_id String Yes engine String Yes locale String Yes search_cohort String Yes source String Yes default_search_engine String Yes default_private_search_engine String Yes os String Yes os_version String Yes is_default_browser Boolean Yes channel String Yes client_count Integer Yes organic Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes sap Integer Yes ad_click Integer Yes ad_click_organic Integer Yes search_with_ads Integer Yes search_with_ads_organic Integer Yes unknown Integer Yes normalized_engine String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived search_aggregates_v8 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#search_clients_engines_sources_daily","title":"search_clients_engines_sources_daily","text":"Search Clients Engines Sources Daily
search.search_clients_engines_sources_daily
A daily aggregate of desktop searches per (client_id, engine, source).
- Owners:
- akomar@mozilla.com
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes client_id String Yes engine String Yes source String Yes country String Yes addon_version String Yes app_version String Yes distribution_id String Yes locale String Yes user_pref_browser_search_region String Yes search_cohort String Yes os String Yes os_version String Yes channel String Yes is_default_browser Boolean Yes profile_creation_date Integer Yes default_search_engine String Yes default_search_engine_data_load_path String Yes default_search_engine_data_submission_url String Yes default_private_search_engine String Yes default_private_search_engine_data_load_path String Yes default_private_search_engine_data_submission_url String Yes sample_id Integer Yes subsession_hours_sum Float Yes sessions_started_on_this_day Integer Yes active_addons_count_mean Float Yes max_concurrent_tab_count_max Integer Yes tab_open_event_count_sum Integer Yes active_hours_sum Float Yes total_uri_count Integer Yes experiments Record No scalar_parent_urlbar_searchmode_bookmarkmenu_sum Record No scalar_parent_urlbar_searchmode_handoff_sum Record No scalar_parent_urlbar_searchmode_keywordoffer_sum Record No scalar_parent_urlbar_searchmode_oneoff_sum Record No scalar_parent_urlbar_searchmode_other_sum Record No scalar_parent_urlbar_searchmode_shortcut_sum Record No scalar_parent_urlbar_searchmode_tabmenu_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_onboard_sum Record No scalar_parent_urlbar_searchmode_topsites_newtab_sum Record No scalar_parent_urlbar_searchmode_topsites_urlbar_sum Record No scalar_parent_urlbar_searchmode_touchbar_sum Record No scalar_parent_urlbar_searchmode_typed_sum Record No profile_age_in_days Integer Yes organic Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes sap Integer Yes ad_click Integer Yes ad_click_organic Integer Yes search_with_ads Integer Yes search_with_ads_organic Integer Yes unknown Integer Yes is_sap_monetizable Boolean Yes has_adblocker_addon Boolean Yes normalized_engine String Yes browser_version_info Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived search_clients_daily_v8 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#search_clients_last_seen","title":"search_clients_last_seen","text":"Search Clients Last Seen
search.search_clients_last_seen
Captures search activity of each desktop client in the past 365 days for each submission date.
Used as the basis for LTV calculations.
- Owners:
- frank@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod search search_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#search_clients_last_seen_v1","title":"search_clients_last_seen_v1","text":"Search Clients Last Seen V1
search.search_clients_last_seen_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes country String Yes app_version String Yes distribution_id String Yes locale String Yes search_cohort String Yes addon_version String Yes os String Yes channel String Yes profile_creation_date Integer Yes default_search_engine String Yes default_search_engine_data_load_path String Yes default_search_engine_data_submission_url String Yes profile_age_in_days Integer Yes active_addons_count_mean Float Yes user_pref_browser_search_region String Yes os_version String Yes max_concurrent_tab_count_max Integer Yes tab_open_event_count_sum Integer Yes active_hours_sum Float Yes subsession_hours_sum Float Yes sessions_started_on_this_day Integer Yes organic Integer Yes sap Integer Yes unknown Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes tagged_searches Integer Yes engine_searches Record No days_seen_bytes Bytes Yes days_searched_bytes Bytes Yes days_tagged_searched_bytes Bytes Yes days_searched_with_ads_bytes Bytes Yes days_clicked_ads_bytes Bytes Yes days_created_profile_bytes Bytes Yes days_since_seen Integer Yes days_since_searched Integer Yes days_since_tagged_searched Integer Yes days_since_searched_with_ads Integer Yes days_since_clicked_ad Integer Yes days_since_created_profile Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived search_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#search_revenue_levers_daily","title":"search_revenue_levers_daily","text":"Search Revenue Levers Daily
search.search_revenue_levers_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes partner String Yes device String Yes channel String Yes country String Yes dau Integer Yes dau_engaged_w_sap Integer Yes sap Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes organic Integer Yes ad_click_organic Integer Yes search_with_ads_organic Integer Yes monetizable_sap Integer Yes dau_w_engine_as_default Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived search_revenue_levers_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search/#search_rfm","title":"search_rfm","text":"Search Rfm
search.search_rfm
Please provide a description for the query
Schema Column Description Type Nullable days_seen Record Yes days_searched Record Yes days_tagged_searched Record Yes days_searched_with_ads Record Yes days_clicked_ads Record Yes days_since_created_profile Integer Yes submission_date Date Yes client_id String Yes sample_id Integer Yes country String Yes app_version String Yes distribution_id String Yes locale String Yes search_cohort String Yes addon_version String Yes os String Yes channel String Yes profile_creation_date Integer Yes default_search_engine String Yes default_search_engine_data_load_path String Yes default_search_engine_data_submission_url String Yes profile_age_in_days Integer Yes active_addons_count_mean Float Yes user_pref_browser_search_region String Yes os_version String Yes max_concurrent_tab_count_max Integer Yes tab_open_event_count_sum Integer Yes active_hours_sum Float Yes subsession_hours_sum Float Yes sessions_started_on_this_day Integer Yes organic Integer Yes sap Integer Yes unknown Integer Yes tagged_sap Integer Yes tagged_follow_on Integer Yes ad_click Integer Yes search_with_ads Integer Yes total_searches Integer Yes tagged_searches Integer Yes engine_searches Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_derived search_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search_terms/","title":"Search Terms","text":"Views related to search terms data
Source Directory
"},{"location":"mozdata/search_terms/#aggregated_search_terms_daily","title":"aggregated_search_terms_daily","text":"Aggregated Search Terms Daily
search_terms.aggregated_search_terms_daily
Impression, click and client counts for search queries logged via Contextual Services Suggest Impression Pings
- Owners:
- rburwei@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_terms_derived aggregated_search_terms_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search_terms/#sanitization_job_data_validation_metrics","title":"sanitization_job_data_validation_metrics","text":"Sanitization Job Data Validation Metrics
search_terms.sanitization_job_data_validation_metrics
The proportion of raw customer search volume that possesses characteristics like capital letters, census surnames, or English words.
We use this + other metrics to assess whether the constituency using our search features is changing.
- Owners:
- ctroy@mozilla.com
- dzeber@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_terms sanitization_job_languages moz-fx-data-shared-prod search_terms_derived sanitization_job_metadata_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search_terms/#sanitization_job_languages","title":"sanitization_job_languages","text":"Sanitization Job Languages
search_terms.sanitization_job_languages
How many search terms got each language tag, by job.
We use this + other metrics to assess whether the constituency using our search features is changing.
- Owners:
- ctroy@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_terms_derived sanitization_job_metadata_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/search_terms/#search_terms_daily","title":"search_terms_daily","text":"Search Terms Daily
search_terms.search_terms_daily
Daily count of terminal search terms collected by Merino.
- Owners:
- ctroy@mozilla.com
- rburwei@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod search_terms_derived search_terms_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/static/","title":"Static Data","text":"Static tables, often useful for data-enriching joins This directory contains definitions for derived tables in the static
dataset.
In particular, we have two tables based on a one-time export of Firefox Accounts extracted from Amplitude and imported to BigQuery.
Tables can be defined as a CSV named data.csv
and the table will be created by the ./bqetl static publish
command. An optional schema.json
and description.txt
can be defined in the same directory. If schema.json
is not defined, column names are inferred from the first line of the CSV and are assumed to be strings. description.txt
defines the table description in BigQuery.
These should be published to all active projects used for production ETL and analysis:
# Generate data.csv for country_names\nbqetl generate country_code_lookup\n\n./bqetl static publish --project-id mozdata\n./bqetl static publish --project-id moz-fx-data-shared-prod\n
Source Directory
"},{"location":"mozdata/static/#country_codes_v1","title":"country_codes_v1","text":"static.country_codes_v1
Schema Column Description Type Nullable name String Yes code String Yes region_name String Yes subregion_name String Yes intermediate_region_name String Yes pocket_available_on_newtab Boolean Yes mozilla_vpn_available Boolean Yes Source Directory
"},{"location":"mozdata/static/#country_names_v1","title":"country_names_v1","text":"static.country_names_v1
Schema Column Description Type Nullable name String Yes code String Yes Source Directory
"},{"location":"mozdata/static/#data_incidents_v1","title":"data_incidents_v1","text":"Notes for data incidents
static.data_incidents_v1
This table is connected to a spreadsheet that contains notes about data incidents. The notes are displayed on Looker dashboards.
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable start_date Date Yes end_date Date Yes incident String Yes description String Yes bug String Yes product String Yes version String Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#fxa_amplitude_export_users_daily","title":"fxa_amplitude_export_users_daily","text":"Static - Fxa Amplitude Export Users Daily
static.fxa_amplitude_export_users_daily
[DESCRIPTION_MISSING]
Schema Column Description Type Nullable submission_date Date Yes generated_time Datetime Yes user_id String Yes country String Yes seen_in_tier1_country Boolean Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#fxa_amplitude_export_users_last_seen","title":"fxa_amplitude_export_users_last_seen","text":"Static - Fxa Amplitude Export Users Last Seen
static.fxa_amplitude_export_users_last_seen
[DESCRIPTION_MISSING]
Schema Column Description Type Nullable submission_date Date Yes date_last_seen Date Yes date_last_seen_in_tier1_country Date Yes user_id String Yes country String Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#iana_tls_cipher_suites","title":"iana_tls_cipher_suites","text":"static.iana_tls_cipher_suites
Schema Column Description Type Nullable value String Yes description String Yes dtls_ok Boolean Yes recommended Boolean Yes reference String Yes Source Directory
"},{"location":"mozdata/static/#monitoring_distinct_docids_notes_v1","title":"monitoring_distinct_docids_notes_v1","text":"Notes for monitoring distinct docids
static.monitoring_distinct_docids_notes_v1
This table is connected to a spreadsheet that contains notes about incidents with distinct docids. The notes are displayed on Looker dashboards.
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable start_date Date Yes end_date Date Yes document_namespace String Yes document_type String Yes notes String Yes bug String Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#monitoring_missing_columns_notes_v1","title":"monitoring_missing_columns_notes_v1","text":"Notes for monitoring missing columns
static.monitoring_missing_columns_notes_v1
This table is connected to a spreadsheet that contains notes about missing columns. The notes are displayed on Looker dashboards.
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable start_date Date Yes end_date Date Yes document_namespace String Yes document_type String Yes document_version String Yes path String Yes notes String Yes bug String Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#monitoring_missing_document_namespaces_notes_v1","title":"monitoring_missing_document_namespaces_notes_v1","text":"Notes for monitoring missing document namespaces
static.monitoring_missing_document_namespaces_notes_v1
This table is connected to a spreadsheet that contains notes about missing namespaces. The notes are displayed on Looker dashboards.
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable start_date Date Yes end_date Date Yes document_namespace String Yes document_type String Yes document_version String Yes notes String Yes bug String Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#monitoring_schema_errors_notes_v1","title":"monitoring_schema_errors_notes_v1","text":"Notes for monitoring schema errors
static.monitoring_schema_errors_notes_v1
This table is connected to a spreadsheet that contains notes about schema errors. The notes are displayed on Looker dashboards.
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable start_date Date Yes end_date Date Yes document_namespace String Yes document_type String Yes path String Yes notes String Yes bug String Yes Source Directory | Metadata File
"},{"location":"mozdata/static/#normal_distribution","title":"normal_distribution","text":"static.normal_distribution
Schema Column Description Type Nullable score Numeric Yes value Numeric Yes Source Directory
"},{"location":"mozdata/static/#normalized_os_name","title":"normalized_os_name","text":"static.normalized_os_name
Schema Column Description Type Nullable os_name String Yes normalized_os_name String Yes Source Directory
"},{"location":"mozdata/static/#normalized_os_version","title":"normalized_os_version","text":"static.normalized_os_version
Schema Column Description Type Nullable os_name String Yes os_version_regexp String Yes normalized_os_name String Yes normalized_os_version String Yes release_date String Yes Source Directory
"},{"location":"mozdata/static/#third_party_standardized_country_names","title":"third_party_standardized_country_names","text":"static.third_party_standardized_country_names
Schema Column Description Type Nullable raw_country String Yes standardized_country String Yes Source Directory
"},{"location":"mozdata/stripe/","title":"Stripe","text":"Views related to data extracted from payment provider Stripe
Source Directory
"},{"location":"mozdata/stripe/#itemized_payout_reconciliation","title":"itemized_payout_reconciliation","text":"Itemized Payout Reconciliation
stripe.itemized_payout_reconciliation
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/stripe/#itemized_tax_transactions","title":"itemized_tax_transactions","text":"Itemized Tax Transactions
stripe.itemized_tax_transactions
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod stripe_external itemized_tax_transactions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/stub_attribution_service/","title":"Stub Attribution Service","text":"Stub attribution service data, usually from the logs.
Source Directory
"},{"location":"mozdata/stub_attribution_service/#dl_token_ga_attribution_lookup","title":"dl_token_ga_attribution_lookup","text":"Dl Token Ga Attribution Lookup
stub_attribution_service.dl_token_ga_attribution_lookup
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod stub_attribution_service_derived dl_token_ga_attribution_lookup_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/","title":"Subscription Platform","text":"Combined subscription information from multiple products and payment platforms; see bug 1703340
Source Directory
"},{"location":"mozdata/subscription_platform/#active_subscriptions","title":"active_subscriptions","text":"Active Subscriptions
subscription_platform.active_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable active_date Date Yes plan_id String Yes country String Yes country_name String Yes provider String Yes plan_amount Integer Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes product_id String Yes product_name String Yes pricing_plan String Yes promotion_codes String No promotion_discounts_amount Integer Yes count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived active_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#apple_subscriptions","title":"apple_subscriptions","text":"Apple Subscriptions
subscription_platform.apple_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes subscription_id String Yes original_subscription_id String Yes plan_id String Yes status String Yes event_timestamp Timestamp Yes subscription_start_date Timestamp Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes cancel_at_period_end Boolean Yes ended_at Timestamp Yes ended_reason String Yes fxa_uid String Yes provider String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes product_id String Yes in_billing_grace_period Boolean Yes billing_grace_period Interval Yes promotion_codes String No Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived apple_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#daily_active_logical_subscriptions","title":"daily_active_logical_subscriptions","text":"Daily Active Logical Subscriptions
subscription_platform.daily_active_logical_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable id String Yes date Date Yes logical_subscriptions_history_id String Yes subscription Record Yes was_active_at_day_start Boolean Yes was_active_at_day_end Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived daily_active_logical_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#logical_subscription_events","title":"logical_subscription_events","text":"Logical Subscription Events
subscription_platform.logical_subscription_events
Please provide a description for the query
Schema Column Description Type Nullable id String Yes timestamp Timestamp Yes type String Yes reason String Yes logical_subscriptions_history_id String Yes subscription Record Yes old_subscription Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived logical_subscription_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#logical_subscriptions","title":"logical_subscriptions","text":"Logical Subscriptions
subscription_platform.logical_subscriptions
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived logical_subscriptions_history_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#monthly_active_logical_subscriptions","title":"monthly_active_logical_subscriptions","text":"Monthly Active Logical Subscriptions
subscription_platform.monthly_active_logical_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable id String Yes month_start_date Date Yes month_end_date Date Yes logical_subscriptions_history_id String Yes subscription Record Yes was_active_at_month_start Boolean Yes was_active_at_month_end Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived monthly_active_logical_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#nonprod_apple_subscriptions","title":"nonprod_apple_subscriptions","text":"Nonprod Apple Subscriptions
subscription_platform.nonprod_apple_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes subscription_id String Yes original_subscription_id String Yes plan_id String Yes status String Yes event_timestamp Timestamp Yes subscription_start_date Timestamp Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes cancel_at_period_end Boolean Yes ended_at Timestamp Yes ended_reason String Yes fxa_uid String Yes provider String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes product_id String Yes in_billing_grace_period Boolean Yes billing_grace_period Interval Yes promotion_codes String No Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived nonprod_apple_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#nonprod_stripe_subscriptions","title":"nonprod_stripe_subscriptions","text":"Nonprod Stripe Subscriptions
subscription_platform.nonprod_stripe_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes fxa_uid String Yes subscription_id String Yes subscription_item_id String Yes event_timestamp Timestamp Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes subscription_start_date Timestamp Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes ended_at Timestamp Yes status String Yes product_id String Yes product_name String Yes product_capabilities String No plan_id String Yes plan_started_at Timestamp Yes plan_ended_at Timestamp Yes plan_name String Yes plan_capabilities String No plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes provider String Yes country String Yes promotion_codes String No promotion_discounts_amount Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived nonprod_stripe_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#nonprod_stripe_subscriptions_history","title":"nonprod_stripe_subscriptions_history","text":"Nonprod Stripe Subscriptions History
subscription_platform.nonprod_stripe_subscriptions_history
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes fxa_uid String Yes subscription_id String Yes subscription_item_id String Yes synced_at Timestamp Yes valid_from Timestamp Yes valid_to Timestamp Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes subscription_start_date Timestamp Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes ended_at Timestamp Yes status String Yes product_id String Yes product_name String Yes product_capabilities String No plan_id String Yes plan_started_at Timestamp Yes plan_ended_at Timestamp Yes plan_name String Yes plan_capabilities String No plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes provider String Yes country String Yes promotion_codes String No promotion_discounts_amount Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived nonprod_stripe_subscriptions_history_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#stripe_plans","title":"stripe_plans","text":"Stripe Plans
subscription_platform.stripe_plans
Please provide a description for the query
Schema Column Description Type Nullable id Unique identifier for the plan. String Yes product_id ID of the product whose pricing this plan determines. String Yes created Time at which the plan was created. Timestamp Yes is_deleted Whether the plan is deleted. Boolean Yes active Whether the plan can be used for new purchases. Boolean Yes aggregate_usage Specifies a usage aggregation strategy for plans of `usage_type` = \"metered\". Allowed values are \"sum\" for summing up all usage during a period, \"last_during_period\" for using the last usage record reported within a period, \"last_ever\" for using the last usage record ever (across period bounds) or \"max\" which uses the usage record with the maximum reported usage during a period. String Yes amount The unit amount in cents to be charged, represented as a whole integer if possible. Only set if `billing_scheme` = \"per_unit\". Integer Yes billing_scheme Describes how to compute the price per period. Either \"per_unit\" or \"tiered\". \"per_unit\" indicates that the fixed amount (specified in `amount`) will be charged per unit in `quantity` (for plans with `usage_type` = \"licensed\"), or per unit of total usage (for plans with `usage_type` = \"metered\"). \"tiered\" indicates that the unit pricing will be computed using a tiering strategy as defined using the `tiers` and `tiers_mode` attributes. String Yes currency Three-letter ISO currency code, in lowercase. String Yes interval The frequency at which a subscription is billed. One of \"day\", \"week\", \"month\", or \"year\". String Yes interval_count The number of intervals (specified in the `interval` attribute) between subscription billings. Integer Yes metadata Set of key-value pairs attached to the plan, stored as a JSON object. Json Yes nickname A brief description of the plan, hidden from customers. String Yes tiers_mode Defines if the tiering price should be \"graduated\" or \"volume\". In volume-based tiering, the maximum quantity within a period determines the per unit price. In graduated tiering, pricing can change as the quantity grows. String Yes trial_period_days Default number of trial days when subscribing a customer to this plan using `trial_from_plan=true`. Integer Yes usage_type Configures how the quantity per period should be determined. Can be either \"metered\" or \"licensed\". \"licensed\" automatically bills the `quantity` set when adding it to a subscription. \"metered\" aggregates the total usage based on usage records. Defaults to \"licensed\". String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived stripe_plans_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#stripe_products","title":"stripe_products","text":"Stripe Products
subscription_platform.stripe_products
Please provide a description for the query
Schema Column Description Type Nullable id Unique identifier for the product. String Yes created Time at which the product was created. Timestamp Yes updated Time at which the product was last updated. Timestamp Yes is_deleted Whether the product is deleted. Boolean Yes active Whether the product is currently available for purchase. Boolean Yes description The product's description, meant to be displayable to the customer. String Yes metadata Set of key-value pairs attached to the product, stored as a JSON object. Json Yes name The product's name, meant to be displayable to the customer. String Yes statement_descriptor Extra information about a product which will appear on your customer's credit card statement. String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived stripe_products_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#stripe_subscriptions","title":"stripe_subscriptions","text":"Stripe Subscriptions
subscription_platform.stripe_subscriptions
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes fxa_uid String Yes subscription_id String Yes subscription_item_id String Yes event_timestamp Timestamp Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes subscription_start_date Timestamp Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes ended_at Timestamp Yes status String Yes product_id String Yes product_name String Yes product_capabilities String No plan_id String Yes plan_started_at Timestamp Yes plan_ended_at Timestamp Yes plan_name String Yes plan_capabilities String No plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes provider String Yes country String Yes promotion_codes String No promotion_discounts_amount Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived stripe_subscriptions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/subscription_platform/#stripe_subscriptions_history","title":"stripe_subscriptions_history","text":"Stripe Subscriptions History
subscription_platform.stripe_subscriptions_history
Please provide a description for the query
Schema Column Description Type Nullable customer_id String Yes fxa_uid String Yes subscription_id String Yes subscription_item_id String Yes synced_at Timestamp Yes valid_from Timestamp Yes valid_to Timestamp Yes created Timestamp Yes trial_start Timestamp Yes trial_end Timestamp Yes subscription_start_date Timestamp Yes cancel_at Timestamp Yes cancel_at_period_end Boolean Yes canceled_at Timestamp Yes canceled_for_customer_at String Yes ended_at Timestamp Yes status String Yes product_id String Yes product_name String Yes product_capabilities String No plan_id String Yes plan_started_at Timestamp Yes plan_ended_at Timestamp Yes plan_name String Yes plan_capabilities String No plan_amount Integer Yes billing_scheme String Yes plan_currency String Yes plan_interval String Yes plan_interval_count Integer Yes plan_interval_timezone String Yes provider String Yes country String Yes promotion_codes String No promotion_discounts_amount Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod subscription_platform_derived stripe_subscriptions_history_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/","title":"Telemetry","text":"Views on data from legacy Firefox telemetry, plus many other general-purpose datasets
Source Directory
"},{"location":"mozdata/telemetry/#accessibility_clients","title":"accessibility_clients","text":"Accessibility Clients
telemetry.accessibility_clients
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes normalized_channel String Yes nvda Integer Yes jaws Integer Yes oldjaws Integer Yes we Integer Yes dolphin Integer Yes serotek Integer Yes cobra Integer Yes zoomtext Integer Yes kazaguru Integer Yes youdao Integer Yes unknown Integer Yes uiautomation Integer Yes visperoshared Integer Yes magnifier Integer Yes narrator Integer Yes on_screen_keyboard Integer Yes speech_recognition Integer Yes touch_keyboard_and_handwriting_panel Integer Yes voice_over Integer Yes other Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived accessibility_clients_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#active_profiles","title":"active_profiles","text":"Active Profiles
telemetry.active_profiles
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes recency Integer Yes frequency Integer Yes num_opportunities Integer Yes max_day String Yes min_day String Yes locale String Yes normalized_channel String Yes os String Yes normalized_os_version String Yes country String Yes prob_active Float Yes e_total_days_in_next_7_days Float Yes e_total_days_in_next_14_days Float Yes e_total_days_in_next_21_days Float Yes e_total_days_in_next_28_days Float Yes prob_daily_usage Float Yes prob_daily_leave Float Yes prob_mau Float Yes sample_id Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived active_profiles_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#active_users_aggregates","title":"active_users_aggregates","text":"Active Users Aggregates
telemetry.active_users_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_desktop active_users_aggregates moz-fx-data-shared-prod telemetry active_users_aggregates_mobile Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#active_users_aggregates_attribution","title":"active_users_aggregates_attribution","text":"Active Users Aggregates Attribution
telemetry.active_users_aggregates_attribution
Please provide a description for the query
Schema Column Description Type Nullable attribution_campaign String Yes attribution_content String Yes attribution_experiment String Yes attribution_medium String Yes attribution_source String Yes attribution_variation String Yes city String Yes country String Yes first_seen_year Integer Yes is_default_browser Boolean Yes app_name String Yes submission_date Date Yes dau Integer Yes wau Integer Yes mau Integer Yes new_profiles Integer Yes ad_clicks Integer Yes organic_search_count Integer Yes search_count Integer Yes search_with_ads Integer Yes uri_count Integer Yes active_hours Float Yes attributed Boolean Yes adjust_network The type of source of a client installation String Yes install_source The source of a client installation String Yes qdau_desktop Count of distinct, qualified Desktop clients that we received a main ping from on a given day. In mobile DAU = QDAU. Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived active_users_aggregates_attribution_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#active_users_aggregates_device","title":"active_users_aggregates_device","text":"Active Users Aggregates Device
telemetry.active_users_aggregates_device
Please provide a description for the query
Schema Column Description Type Nullable app_version String Yes attributed Boolean Yes attribution_medium String Yes attribution_source String Yes country String Yes device_model String Yes first_seen_year Integer Yes is_default_browser Boolean Yes app_name String Yes channel String Yes os String Yes os_version String Yes os_version_major Integer Yes os_version_minor Integer Yes submission_date Date Yes dau Integer Yes wau Integer Yes mau Integer Yes new_profiles Integer Yes ad_clicks Integer Yes organic_search_count Integer Yes search_count Integer Yes search_with_ads Integer Yes uri_count Integer Yes active_hours Float Yes qdau_desktop Count of distinct, qualified Desktop clients that we received a main ping from on a given day. In mobile DAU = QDAU. Integer Yes os_grouped String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived active_users_aggregates_device_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#active_users_aggregates_mobile","title":"active_users_aggregates_mobile","text":"Active Users Aggregates Mobile
telemetry.active_users_aggregates_mobile
Please provide a description for the query
Referenced Tables Project Dataset Table 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_ios active_users_aggregates Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addon_aggregates","title":"addon_aggregates","text":"Addon Aggregates
telemetry.addon_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry addon_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addon_aggregates_v2","title":"addon_aggregates_v2","text":"Addon Aggregates V2
telemetry.addon_aggregates_v2
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes sample_id Integer Yes client_id String Yes normalized_channel String Yes app_version String Yes locale String Yes n_self_installed_addons Integer Yes n_shield_addons Integer Yes n_foreign_installed_addons Integer Yes n_system_addons Integer Yes n_web_extensions Integer Yes first_addon_install_date String Yes profile_creation_date String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived addon_aggregates_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addon_install_blocked","title":"addon_install_blocked","text":"Historical Pings for telemetry/addon-install-blocked
telemetry.addon_install_blocked
A historical view of pings sent for the telemetry/addon-install-blocked
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable addon_install_blocked_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addon_names","title":"addon_names","text":"Addon Names
telemetry.addon_names
Please provide a description for the query
Schema Column Description Type Nullable addon_id String Yes addon_name String Yes occurrences Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived addon_names_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addons","title":"addons","text":"Addons
telemetry.addons
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes sample_id Integer Yes document_id String Yes client_id String Yes subsession_start_date String Yes normalized_channel String Yes addon_id String Yes blocklisted Boolean Yes name String Yes user_disabled Boolean Yes app_disabled Boolean Yes version String Yes scope Integer Yes type String Yes foreign_install Boolean Yes has_binary_components Boolean Yes install_day Integer Yes update_day Integer Yes signed_state Integer Yes is_system Boolean Yes is_web_extension Boolean Yes multiprocess_compatible Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived addons_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addons_daily","title":"addons_daily","text":"Addons Daily
telemetry.addons_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes addon_id String Yes name String Yes most_common_default_search_engine String Yes dau Integer Yes wau Integer Yes mau Integer Yes is_system Boolean Yes active_hours_sum Float Yes total_uri_count_sum Integer Yes tab_open_event_count_sum Integer Yes devtools_toolbox_opened_count_sum Integer Yes sap_searches Record Yes tagged_sap_searches Record Yes tagged_follow_on_searches Record Yes organic_searches Record Yes searches_with_ads Record Yes ad_clicks Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived addons_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#addons_v2","title":"addons_v2","text":"Addons V2
telemetry.addons_v2
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes sample_id Integer Yes document_id String Yes client_id String Yes subsession_start_date String Yes normalized_channel String Yes addon_id String Yes blocklisted Boolean Yes name String Yes user_disabled Boolean Yes app_disabled Boolean Yes version String Yes scope Integer Yes type String Yes foreign_install Boolean Yes has_binary_components Boolean Yes install_day Integer Yes update_day Integer Yes signed_state Integer Yes is_system Boolean Yes is_web_extension Boolean Yes multiprocess_compatible Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived addons_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#adm_engagements_daily","title":"adm_engagements_daily","text":"Adm Engagements Daily
telemetry.adm_engagements_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes country String Yes placement String Yes partner String Yes version String Yes normalized_channel String Yes n_engagements Integer Yes interaction String Yes phase String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived adm_engagements_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#advancedtelemetry","title":"advancedtelemetry","text":"Historical Pings for telemetry/advancedtelemetry
telemetry.advancedtelemetry
A historical view of pings sent for the telemetry/advancedtelemetry
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable advancedtelemetry_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#anonymous","title":"anonymous","text":"Historical Pings for telemetry/anonymous
telemetry.anonymous
A historical view of pings sent for the telemetry/anonymous
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable anonymous_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#applications","title":"applications","text":"Applications
telemetry.applications
Please provide a description for the query
Schema Column Description Type Nullable app_channel App Channel String Yes app_description App Description String Yes app_id App ID String Yes app_name App Name String Yes bq_dataset_family Dataset name ping data is stored in String Yes canonical_app_name Human readable app name String Yes document_namespace Document Namespace String Yes notification_emails Set of emails that will receive any app-related notifications String No url Repository URL String Yes v1_name V1 App Name String Yes is_glean Whether the application is using Glean Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived applications_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#bhr","title":"bhr","text":"Historical Pings for telemetry/bhr
telemetry.bhr
A historical view of pings sent for the telemetry/bhr
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes application Record Yes client_id String Yes creation_date String Yes environment Record Yes id String Yes payload Record Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable bhr_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#block_autoplay","title":"block_autoplay","text":"Historical Pings for telemetry/block-autoplay
telemetry.block_autoplay
A historical view of pings sent for the telemetry/block-autoplay
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable block_autoplay_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#buildhub2","title":"buildhub2","text":"Buildhub2
telemetry.buildhub2
Please provide a description for the query
Schema Column Description Type Nullable build_hash String Yes build Record Yes metadata Record Yes created_at Timestamp Yes s3_object_key String Yes s3_object_etag String Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-buildhub2-prod-4784 build_metadata buildhub2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#certificate_checker","title":"certificate_checker","text":"Historical Pings for telemetry/certificate-checker
telemetry.certificate_checker
A historical view of pings sent for the telemetry/certificate-checker
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable certificate_checker_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#client_probe_counts","title":"client_probe_counts","text":"Client Probe Counts
telemetry.client_probe_counts
Please provide a description for the query
Schema Column Description Type Nullable os String Yes app_version Integer Yes app_build_id String Yes channel String Yes metric String Yes metric_type String Yes key String Yes process String Yes first_bucket Integer Yes last_bucket Integer Yes num_buckets Integer Yes client_agg_type String Yes agg_type String Yes total_users Integer Yes aggregates Record No non_norm_aggregates Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_histogram_probe_counts_v1 moz-fx-data-shared-prod telemetry_derived clients_scalar_probe_counts_v1 moz-fx-data-shared-prod telemetry_derived histogram_percentiles_v1 moz-fx-data-shared-prod telemetry_derived scalar_percentiles_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#client_probe_processes","title":"client_probe_processes","text":"Client Probe Processes
telemetry.client_probe_processes
Please provide a description for the query
Schema Column Description Type Nullable metric String Yes processes String No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived client_probe_processes_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_daily","title":"clients_daily","text":"Clients Daily
telemetry.clients_daily
A daily aggregate of main and event pings from each Firefox desktop client.
Clustering fields: normalized_channel
, sample_id
See also: clients_last_seen
, clients_first_seen
- Owners:
- dthorn@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry clients_daily_v6 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_daily_histogram_aggregates","title":"clients_daily_histogram_aggregates","text":"Clients Daily Histogram Aggregates
telemetry.clients_daily_histogram_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_daily_histogram_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_daily_scalar_aggregates","title":"clients_daily_scalar_aggregates","text":"Clients Daily Scalar Aggregates
telemetry.clients_daily_scalar_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_daily_scalar_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_daily_v6","title":"clients_daily_v6","text":"Clients Daily V6
telemetry.clients_daily_v6
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes client_id String Yes aborts_content_sum Integer Yes aborts_gmplugin_sum Integer Yes aborts_plugin_sum Integer Yes active_addons_count_mean Float Yes active_addons Record No active_hours_sum Float Yes addon_compatibility_check_enabled Boolean Yes app_build_id String Yes app_display_version String Yes app_name String Yes app_version String Yes attribution Record Yes blocklist_enabled Boolean Yes channel String Yes client_clock_skew_mean Float Yes client_submission_latency_mean Float Yes cpu_cores Integer Yes cpu_count Integer Yes cpu_family Integer Yes cpu_l2_cache_kb Integer Yes cpu_l3_cache_kb Integer Yes cpu_model Integer Yes cpu_speed_mhz Integer Yes cpu_stepping Integer Yes cpu_vendor String Yes crashes_detected_content_sum Integer Yes crashes_detected_gmplugin_sum Integer Yes crashes_detected_plugin_sum Integer Yes crash_submit_attempt_content_sum Integer Yes crash_submit_attempt_main_sum Integer Yes crash_submit_attempt_plugin_sum Integer Yes crash_submit_success_content_sum Integer Yes crash_submit_success_main_sum Integer Yes crash_submit_success_plugin_sum Integer Yes default_search_engine String Yes default_search_engine_data_load_path String Yes default_search_engine_data_name String Yes default_search_engine_data_origin String Yes default_search_engine_data_submission_url String Yes devtools_toolbox_opened_count_sum Integer Yes distribution_id String Yes e10s_enabled Boolean Yes env_build_arch String Yes env_build_id String Yes env_build_version String Yes environment_settings_intl_accept_languages String No environment_settings_intl_app_locales String No environment_settings_intl_available_locales String No environment_settings_intl_requested_locales String No environment_settings_intl_system_locales String No environment_settings_intl_regional_prefs_locales String No experiments Record No first_paint_mean Float Yes flash_version String Yes country String Yes city String Yes geo_subdivision1 String Yes geo_subdivision2 String Yes isp_name String Yes isp_organization String Yes gfx_features_advanced_layers_status String Yes gfx_features_d2d_status String Yes gfx_features_d3d11_status String Yes gfx_features_gpu_process_status String Yes histogram_parent_devtools_aboutdebugging_opened_count_sum Integer Yes histogram_parent_devtools_animationinspector_opened_count_sum Integer Yes histogram_parent_devtools_browserconsole_opened_count_sum Integer Yes histogram_parent_devtools_canvasdebugger_opened_count_sum Integer Yes histogram_parent_devtools_computedview_opened_count_sum Integer Yes histogram_parent_devtools_custom_opened_count_sum Integer Yes histogram_parent_devtools_dom_opened_count_sum Integer Yes histogram_parent_devtools_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_fontinspector_opened_count_sum Integer Yes histogram_parent_devtools_inspector_opened_count_sum Integer Yes histogram_parent_devtools_jsbrowserdebugger_opened_count_sum Integer Yes histogram_parent_devtools_jsdebugger_opened_count_sum Integer Yes histogram_parent_devtools_jsprofiler_opened_count_sum Integer Yes histogram_parent_devtools_layoutview_opened_count_sum Integer Yes histogram_parent_devtools_memory_opened_count_sum Integer Yes histogram_parent_devtools_menu_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_netmonitor_opened_count_sum Integer Yes histogram_parent_devtools_options_opened_count_sum Integer Yes histogram_parent_devtools_paintflashing_opened_count_sum Integer Yes histogram_parent_devtools_picker_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_responsive_opened_count_sum Integer Yes histogram_parent_devtools_ruleview_opened_count_sum Integer Yes histogram_parent_devtools_scratchpad_opened_count_sum Integer Yes histogram_parent_devtools_scratchpad_window_opened_count_sum Integer Yes histogram_parent_devtools_shadereditor_opened_count_sum Integer Yes histogram_parent_devtools_storage_opened_count_sum Integer Yes histogram_parent_devtools_styleeditor_opened_count_sum Integer Yes histogram_parent_devtools_webaudioeditor_opened_count_sum Integer Yes histogram_parent_devtools_webconsole_opened_count_sum Integer Yes histogram_parent_devtools_webide_opened_count_sum Integer Yes install_year Integer Yes is_default_browser Boolean Yes is_wow64 Boolean Yes locale String Yes memory_mb Integer Yes normalized_channel String Yes normalized_os_version String Yes os String Yes os_service_pack_major Integer Yes os_service_pack_minor Integer Yes os_version String Yes pings_aggregated_by_this_row Integer Yes places_bookmarks_count_mean Float Yes places_pages_count_mean Float Yes plugin_hangs_sum Integer Yes plugins_infobar_allow_sum Integer Yes plugins_infobar_block_sum Integer Yes plugins_infobar_shown_sum Integer Yes plugins_notification_shown_sum Integer Yes previous_build_id String Yes profile_age_in_days Integer Yes profile_creation_date String Yes push_api_notify_sum Integer Yes sample_id Integer Yes sandbox_effective_content_process_level Integer Yes scalar_combined_webrtc_nicer_stun_retransmits_sum Integer Yes scalar_combined_webrtc_nicer_turn_401s_sum Integer Yes scalar_combined_webrtc_nicer_turn_403s_sum Integer Yes scalar_combined_webrtc_nicer_turn_438s_sum Integer Yes scalar_content_navigator_storage_estimate_count_sum Integer Yes scalar_content_navigator_storage_persist_count_sum Integer Yes scalar_parent_aushelper_websense_reg_version String Yes scalar_parent_browser_engagement_max_concurrent_tab_count_max Integer Yes scalar_parent_browser_engagement_max_concurrent_window_count_max Integer Yes scalar_parent_browser_engagement_tab_open_event_count_sum Integer Yes scalar_parent_browser_engagement_total_uri_count_sum Integer Yes scalar_parent_browser_engagement_unfiltered_uri_count_sum Integer Yes scalar_parent_browser_engagement_unique_domains_count_max Integer Yes scalar_parent_browser_engagement_unique_domains_count_mean Float Yes scalar_parent_browser_engagement_window_open_event_count_sum Integer Yes scalar_parent_devtools_accessibility_node_inspected_count_sum Integer Yes scalar_parent_devtools_accessibility_opened_count_sum Integer Yes scalar_parent_devtools_accessibility_picker_used_count_sum Integer Yes scalar_parent_devtools_accessibility_select_accessible_for_node_sum Record No scalar_parent_devtools_accessibility_service_enabled_count_sum Integer Yes scalar_parent_devtools_copy_full_css_selector_opened_sum Integer Yes scalar_parent_devtools_copy_unique_css_selector_opened_sum Integer Yes scalar_parent_devtools_toolbar_eyedropper_opened_sum Integer Yes scalar_parent_navigator_storage_estimate_count_sum Integer Yes scalar_parent_navigator_storage_persist_count_sum Integer Yes scalar_parent_storage_sync_api_usage_extensions_using_sum Integer Yes search_cohort String Yes search_count_abouthome Integer Yes search_count_contextmenu Integer Yes search_count_newtab Integer Yes search_count_searchbar Integer Yes search_count_system Integer Yes search_count_urlbar Integer Yes search_count_all Integer Yes search_count_tagged_sap Integer Yes search_count_tagged_follow_on Integer Yes search_count_organic Integer Yes search_count_urlbar_handoff Integer Yes session_restored_mean Float Yes sessions_started_on_this_day Integer Yes shutdown_kill_sum Integer Yes subsession_hours_sum Numeric Yes ssl_handshake_result_failure_sum Integer Yes ssl_handshake_result_success_sum Integer Yes sync_configured Boolean Yes sync_count_desktop_mean Float Yes sync_count_mobile_mean Float Yes sync_count_desktop_sum Integer Yes sync_count_mobile_sum Integer Yes telemetry_enabled Boolean Yes timezone_offset Integer Yes update_auto_download Boolean Yes update_channel String Yes update_enabled Boolean Yes vendor String Yes web_notification_shown_sum Integer Yes windows_build_number Integer Yes windows_ubr Integer Yes fxa_configured Boolean Yes trackers_blocked_sum Integer Yes submission_timestamp_min Timestamp Yes ad_clicks_count_all Integer Yes search_with_ads_count_all Integer Yes scalar_parent_urlbar_impression_autofill_about_sum Integer Yes scalar_parent_urlbar_impression_autofill_adaptive_sum Integer Yes scalar_parent_urlbar_impression_autofill_origin_sum Integer Yes scalar_parent_urlbar_impression_autofill_other_sum Integer Yes scalar_parent_urlbar_impression_autofill_preloaded_sum Integer Yes scalar_parent_urlbar_impression_autofill_url_sum Integer Yes scalar_parent_telemetry_event_counts_sum Record No scalar_content_telemetry_event_counts_sum Record No scalar_parent_urlbar_searchmode_bookmarkmenu_sum Record No scalar_parent_urlbar_searchmode_handoff_sum Record No scalar_parent_urlbar_searchmode_keywordoffer_sum Record No scalar_parent_urlbar_searchmode_oneoff_sum Record No scalar_parent_urlbar_searchmode_other_sum Record No scalar_parent_urlbar_searchmode_shortcut_sum Record No scalar_parent_urlbar_searchmode_tabmenu_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_onboard_sum Record No scalar_parent_urlbar_searchmode_topsites_newtab_sum Record No scalar_parent_urlbar_searchmode_topsites_urlbar_sum Record No scalar_parent_urlbar_searchmode_touchbar_sum Record No scalar_parent_urlbar_searchmode_typed_sum Record No scalar_parent_os_environment_is_taskbar_pinned Boolean Yes scalar_parent_os_environment_launched_via_desktop Boolean Yes scalar_parent_os_environment_launched_via_taskbar Boolean Yes scalar_parent_os_environment_launched_via_other Boolean Yes scalar_parent_os_environment_launched_via_start_menu Boolean Yes scalar_parent_os_environment_launched_via_other_shortcut Boolean Yes n_logged_event Integer Yes n_created_pictureinpicture Integer Yes n_viewed_protection_report Integer Yes search_count_webextension Integer Yes search_count_alias Integer Yes search_count_urlbar_searchmode Integer Yes scalar_parent_browser_ui_interaction_preferences_pane_home_sum Record No scalar_parent_urlbar_picked_autofill_sum Integer Yes scalar_parent_urlbar_picked_autofill_about_sum Integer Yes scalar_parent_urlbar_picked_autofill_adaptive_sum Integer Yes scalar_parent_urlbar_picked_autofill_origin_sum Integer Yes scalar_parent_urlbar_picked_autofill_other_sum Integer Yes scalar_parent_urlbar_picked_autofill_preloaded_sum Integer Yes scalar_parent_urlbar_picked_autofill_url_sum Integer Yes scalar_parent_urlbar_picked_bookmark_sum Integer Yes scalar_parent_urlbar_picked_dynamic_sum Integer Yes scalar_parent_urlbar_picked_extension_sum Integer Yes scalar_parent_urlbar_picked_formhistory_sum Integer Yes scalar_parent_urlbar_picked_history_sum Integer Yes scalar_parent_urlbar_picked_keyword_sum Integer Yes scalar_parent_urlbar_picked_remotetab_sum Integer Yes scalar_parent_urlbar_picked_searchengine_sum Integer Yes scalar_parent_urlbar_picked_searchsuggestion_sum Integer Yes scalar_parent_urlbar_picked_switchtab_sum Integer Yes scalar_parent_urlbar_picked_tabtosearch_sum Integer Yes scalar_parent_urlbar_picked_tip_sum Integer Yes scalar_parent_urlbar_picked_topsite_sum Integer Yes scalar_parent_urlbar_picked_unknown_sum Integer Yes scalar_parent_urlbar_picked_visiturl_sum Integer Yes default_private_search_engine String Yes default_private_search_engine_data_load_path String Yes default_private_search_engine_data_name String Yes default_private_search_engine_data_origin String Yes default_private_search_engine_data_submission_url String Yes search_counts Record No user_pref_browser_search_region String Yes search_with_ads Record No ad_clicks Record No search_content_urlbar_sum Record No search_content_urlbar_handoff_sum Record No search_content_urlbar_searchmode_sum Record No search_content_contextmenu_sum Record No search_content_about_home_sum Record No search_content_about_newtab_sum Record No search_content_searchbar_sum Record No search_content_system_sum Record No search_content_webextension_sum Record No search_content_tabhistory_sum Record No search_content_reload_sum Record No search_content_unknown_sum Record No search_withads_urlbar_sum Record No search_withads_urlbar_handoff_sum Record No search_withads_urlbar_searchmode_sum Record No search_withads_contextmenu_sum Record No search_withads_about_home_sum Record No search_withads_about_newtab_sum Record No search_withads_searchbar_sum Record No search_withads_system_sum Record No search_withads_webextension_sum Record No search_withads_tabhistory_sum Record No search_withads_reload_sum Record No search_withads_unknown_sum Record No search_adclicks_urlbar_sum Record No search_adclicks_urlbar_handoff_sum Record No search_adclicks_urlbar_searchmode_sum Record No search_adclicks_contextmenu_sum Record No search_adclicks_about_home_sum Record No search_adclicks_about_newtab_sum Record No search_adclicks_searchbar_sum Record No search_adclicks_system_sum Record No search_adclicks_webextension_sum Record No search_adclicks_tabhistory_sum Record No search_adclicks_reload_sum Record No search_adclicks_unknown_sum Record No update_background Boolean Yes user_pref_browser_search_suggest_enabled String Yes user_pref_browser_widget_in_navbar String Yes user_pref_browser_urlbar_suggest_searches String Yes user_pref_browser_urlbar_show_search_suggestions_first String Yes user_pref_browser_urlbar_suggest_quicksuggest String Yes user_pref_browser_urlbar_suggest_quicksuggest_sponsored String Yes first_seen_date Date Yes second_seen_date Date Yes user_pref_browser_urlbar_quicksuggest_onboarding_dialog_choice String Yes scalar_parent_browser_engagement_total_uri_count_normal_and_private_mode_sum Integer Yes user_pref_browser_newtabpage_enabled String Yes user_pref_app_shield_optoutstudies_enabled String Yes contextual_services_quicksuggest_click_sum Record No contextual_services_quicksuggest_impression_sum Record No contextual_services_quicksuggest_help_sum Record No contextual_services_topsites_click_sum Integer Yes contextual_services_topsites_impression_sum Integer Yes user_pref_browser_urlbar_suggest_quicksuggest_nonsponsored String Yes user_pref_browser_urlbar_quicksuggest_data_collection_enabled String Yes scalar_a11y_hcm_foreground Integer Yes scalar_a11y_hcm_background Integer Yes a11y_theme Record No contextual_services_quicksuggest_help_nonsponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_help_sponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_block_nonsponsored_sum Integer Yes contextual_services_quicksuggest_block_sponsored_sum Integer Yes contextual_services_quicksuggest_block_sponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_block_nonsponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_click_sponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_click_nonsponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_impression_sponsored_bestmatch_sum Integer Yes contextual_services_quicksuggest_impression_nonsponsored_bestmatch_sum Integer Yes user_pref_browser_urlbar_suggest_bestmatch String Yes scalar_parent_browser_ui_interaction_textrecognition_error_sum Integer Yes text_recognition_interaction_timing_sum Integer Yes text_recognition_interaction_timing_count_sum Integer Yes scalar_parent_browser_ui_interaction_content_context_sum Record No text_recognition_api_performance_sum Integer Yes text_recognition_api_performance_count_sum Integer Yes text_recognition_text_length_sum Integer Yes text_recognition_text_length_count_sum Integer Yes scalar_parent_os_environment_launched_via_taskbar_private Boolean Yes dom_parentprocess_private_window_used Boolean Yes os_environment_is_taskbar_pinned_any Boolean Yes os_environment_is_taskbar_pinned_private_any Boolean Yes os_environment_is_taskbar_pinned_private Boolean Yes bookmark_migrations_quantity_chrome Integer Yes bookmark_migrations_quantity_edge Integer Yes bookmark_migrations_quantity_safari Integer Yes bookmark_migrations_quantity_all Integer Yes history_migrations_quantity_chrome Integer Yes history_migrations_quantity_edge Integer Yes history_migrations_quantity_safari Integer Yes history_migrations_quantity_all Integer Yes logins_migrations_quantity_chrome Integer Yes logins_migrations_quantity_edge Integer Yes logins_migrations_quantity_safari Integer Yes logins_migrations_quantity_all Integer Yes main_crash_count Integer Yes content_crash_count Integer Yes gpu_crash_count Integer Yes rdd_crash_count Integer Yes socket_crash_count Integer Yes utility_crash_count Integer Yes vr_crash_count Integer Yes search_count_urlbar_persisted Integer Yes search_content_urlbar_persisted_sum Record No search_withads_urlbar_persisted_sum Record No search_adclicks_urlbar_persisted_sum Record No media_play_time_ms_audio_sum Integer Yes media_play_time_ms_video_sum Integer Yes contextual_services_quicksuggest_block_dynamic_wikipedia_sum Integer Yes contextual_services_quicksuggest_block_weather_sum Integer Yes contextual_services_quicksuggest_click_dynamic_wikipedia_sum Integer Yes contextual_services_quicksuggest_click_nonsponsored_sum Integer Yes contextual_services_quicksuggest_click_sponsored_sum Integer Yes contextual_services_quicksuggest_click_weather_sum Integer Yes contextual_services_quicksuggest_help_dynamic_wikipedia_sum Integer Yes contextual_services_quicksuggest_help_nonsponsored_sum Integer Yes contextual_services_quicksuggest_help_sponsored_sum Integer Yes contextual_services_quicksuggest_help_weather_sum Integer Yes contextual_services_quicksuggest_impression_dynamic_wikipedia_sum Integer Yes contextual_services_quicksuggest_impression_nonsponsored_sum Integer Yes contextual_services_quicksuggest_impression_sponsored_sum Integer Yes contextual_services_quicksuggest_impression_weather_sum Integer Yes scalar_parent_sidebar_opened_sum Record No scalar_parent_sidebar_search_sum Record No scalar_parent_sidebar_link_sum Record No places_searchbar_cumulative_searches_sum Integer Yes places_searchbar_cumulative_filter_count_sum Integer Yes places_previousday_visits_mean Float Yes places_library_cumulative_bookmark_searches_sum Integer Yes places_library_cumulative_history_searches_sum Integer Yes places_bookmarks_searchbar_cumulative_searches_sum Integer Yes scalar_parent_library_link_sum Record No scalar_parent_library_opened_sum Record No scalar_parent_library_search_sum Record No startup_profile_selection_reason_first String Yes first_document_id String Yes partner_id String Yes distribution_version String Yes distributor String Yes distributor_channel String Yes env_build_platform_version String Yes env_build_xpcom_abi String Yes geo_db_version String Yes apple_model_id String Yes max_subsession_counter Integer Yes min_subsession_counter Integer Yes startup_profile_selection_first_ping_only String Yes browser_version_info Record Yes total_uri_count Integer Yes total_uri_count_normal_mode Integer Yes total_uri_count_private_mode Integer Yes has_adblocker_enabled Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_daily_joined_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_first_seen","title":"clients_first_seen","text":"Clients First Seen
telemetry.clients_first_seen
Identical in schema to clients_daily
except that each client appears only once over all time; includes fields first_seen_date
and second_seen_date
for determining user \"activation\".
Note that first_seen_date
and second_seen_date
are also pulled into clients_last_seen
to avoid needing to join with this view. Use this view directly only when you're investigating client activation questions.
Clustering fields: normalized_channel
, sample_id
See also: clients_daily
, clients_last_seen
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable first_seen_date Date Yes second_seen_date Date Yes client_id String Yes aborts_content_sum Integer Yes aborts_gmplugin_sum Integer Yes aborts_plugin_sum Integer Yes active_addons_count_mean Float Yes active_addons Record No active_experiment_branch String Yes active_experiment_id String Yes active_hours_sum Float Yes addon_compatibility_check_enabled Boolean Yes app_build_id String Yes app_display_version String Yes app_name String Yes app_version String Yes attribution Record Yes blocklist_enabled Boolean Yes channel String Yes client_clock_skew_mean Float Yes client_submission_latency_mean Float Yes cpu_cores Integer Yes cpu_count Integer Yes cpu_family Integer Yes cpu_l2_cache_kb Integer Yes cpu_l3_cache_kb Integer Yes cpu_model Integer Yes cpu_speed_mhz Integer Yes cpu_stepping Integer Yes cpu_vendor String Yes crashes_detected_content_sum Integer Yes crashes_detected_gmplugin_sum Integer Yes crashes_detected_plugin_sum Integer Yes crash_submit_attempt_content_sum Integer Yes crash_submit_attempt_main_sum Integer Yes crash_submit_attempt_plugin_sum Integer Yes crash_submit_success_content_sum Integer Yes crash_submit_success_main_sum Integer Yes crash_submit_success_plugin_sum Integer Yes default_search_engine String Yes default_search_engine_data_load_path String Yes default_search_engine_data_name String Yes default_search_engine_data_origin String Yes default_search_engine_data_submission_url String Yes devtools_toolbox_opened_count_sum Integer Yes distribution_id String Yes e10s_enabled Boolean Yes env_build_arch String Yes env_build_id String Yes env_build_version String Yes environment_settings_intl_accept_languages String No environment_settings_intl_app_locales String No environment_settings_intl_available_locales String No environment_settings_intl_requested_locales String No environment_settings_intl_system_locales String No environment_settings_intl_regional_prefs_locales String No experiments Record No first_paint_mean Float Yes flash_version String Yes country String Yes city String Yes geo_subdivision1 String Yes geo_subdivision2 String Yes isp_name String Yes isp_organization String Yes gfx_features_advanced_layers_status String Yes gfx_features_d2d_status String Yes gfx_features_d3d11_status String Yes gfx_features_gpu_process_status String Yes histogram_parent_devtools_aboutdebugging_opened_count_sum Integer Yes histogram_parent_devtools_animationinspector_opened_count_sum Integer Yes histogram_parent_devtools_browserconsole_opened_count_sum Integer Yes histogram_parent_devtools_canvasdebugger_opened_count_sum Integer Yes histogram_parent_devtools_computedview_opened_count_sum Integer Yes histogram_parent_devtools_custom_opened_count_sum Integer Yes histogram_parent_devtools_developertoolbar_opened_count_sum Integer Yes histogram_parent_devtools_dom_opened_count_sum Integer Yes histogram_parent_devtools_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_fontinspector_opened_count_sum Integer Yes histogram_parent_devtools_inspector_opened_count_sum Integer Yes histogram_parent_devtools_jsbrowserdebugger_opened_count_sum Integer Yes histogram_parent_devtools_jsdebugger_opened_count_sum Integer Yes histogram_parent_devtools_jsprofiler_opened_count_sum Integer Yes histogram_parent_devtools_layoutview_opened_count_sum Integer Yes histogram_parent_devtools_memory_opened_count_sum Integer Yes histogram_parent_devtools_menu_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_netmonitor_opened_count_sum Integer Yes histogram_parent_devtools_options_opened_count_sum Integer Yes histogram_parent_devtools_paintflashing_opened_count_sum Integer Yes histogram_parent_devtools_picker_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_responsive_opened_count_sum Integer Yes histogram_parent_devtools_ruleview_opened_count_sum Integer Yes histogram_parent_devtools_scratchpad_opened_count_sum Integer Yes histogram_parent_devtools_scratchpad_window_opened_count_sum Integer Yes histogram_parent_devtools_shadereditor_opened_count_sum Integer Yes histogram_parent_devtools_storage_opened_count_sum Integer Yes histogram_parent_devtools_styleeditor_opened_count_sum Integer Yes histogram_parent_devtools_webaudioeditor_opened_count_sum Integer Yes histogram_parent_devtools_webconsole_opened_count_sum Integer Yes histogram_parent_devtools_webide_opened_count_sum Integer Yes install_year Integer Yes is_default_browser Boolean Yes is_wow64 Boolean Yes locale String Yes memory_mb Integer Yes normalized_channel String Yes normalized_os_version String Yes os String Yes os_service_pack_major Integer Yes os_service_pack_minor Integer Yes os_version String Yes pings_aggregated_by_this_row Integer Yes places_bookmarks_count_mean Float Yes places_pages_count_mean Float Yes plugin_hangs_sum Integer Yes plugins_infobar_allow_sum Integer Yes plugins_infobar_block_sum Integer Yes plugins_infobar_shown_sum Integer Yes plugins_notification_shown_sum Integer Yes previous_build_id String Yes profile_age_in_days Integer Yes profile_creation_date String Yes push_api_notify_sum Integer Yes sample_id Integer Yes sandbox_effective_content_process_level Integer Yes scalar_combined_webrtc_nicer_stun_retransmits_sum Integer Yes scalar_combined_webrtc_nicer_turn_401s_sum Integer Yes scalar_combined_webrtc_nicer_turn_403s_sum Integer Yes scalar_combined_webrtc_nicer_turn_438s_sum Integer Yes scalar_content_navigator_storage_estimate_count_sum Integer Yes scalar_content_navigator_storage_persist_count_sum Integer Yes scalar_parent_aushelper_websense_reg_version String Yes scalar_parent_browser_engagement_max_concurrent_tab_count_max Integer Yes scalar_parent_browser_engagement_max_concurrent_window_count_max Integer Yes scalar_parent_browser_engagement_tab_open_event_count_sum Integer Yes scalar_parent_browser_engagement_total_uri_count_sum Integer Yes scalar_parent_browser_engagement_unfiltered_uri_count_sum Integer Yes scalar_parent_browser_engagement_unique_domains_count_max Integer Yes scalar_parent_browser_engagement_unique_domains_count_mean Float Yes scalar_parent_browser_engagement_window_open_event_count_sum Integer Yes scalar_parent_devtools_accessibility_node_inspected_count_sum Integer Yes scalar_parent_devtools_accessibility_opened_count_sum Integer Yes scalar_parent_devtools_accessibility_picker_used_count_sum Integer Yes scalar_parent_devtools_accessibility_select_accessible_for_node_sum Record No scalar_parent_devtools_accessibility_service_enabled_count_sum Integer Yes scalar_parent_devtools_copy_full_css_selector_opened_sum Integer Yes scalar_parent_devtools_copy_unique_css_selector_opened_sum Integer Yes scalar_parent_devtools_toolbar_eyedropper_opened_sum Integer Yes scalar_parent_dom_contentprocess_troubled_due_to_memory_sum Integer Yes scalar_parent_navigator_storage_estimate_count_sum Integer Yes scalar_parent_navigator_storage_persist_count_sum Integer Yes scalar_parent_storage_sync_api_usage_extensions_using_sum Integer Yes search_cohort String Yes search_count_abouthome Integer Yes search_count_contextmenu Integer Yes search_count_newtab Integer Yes search_count_searchbar Integer Yes search_count_system Integer Yes search_count_urlbar Integer Yes search_count_all Integer Yes search_count_tagged_sap Integer Yes search_count_tagged_follow_on Integer Yes search_count_organic Integer Yes search_count_urlbar_handoff Integer Yes session_restored_mean Float Yes sessions_started_on_this_day Integer Yes shutdown_kill_sum Integer Yes subsession_hours_sum Numeric Yes ssl_handshake_result_failure_sum Integer Yes ssl_handshake_result_success_sum Integer Yes sync_configured Boolean Yes sync_count_desktop_mean Float Yes sync_count_mobile_mean Float Yes sync_count_desktop_sum Integer Yes sync_count_mobile_sum Integer Yes telemetry_enabled Boolean Yes timezone_offset Integer Yes total_hours_sum Numeric Yes update_auto_download Boolean Yes update_channel String Yes update_enabled Boolean Yes vendor String Yes web_notification_shown_sum Integer Yes windows_build_number Integer Yes windows_ubr Integer Yes fxa_configured Boolean Yes trackers_blocked_sum Integer Yes submission_timestamp_min Timestamp Yes ad_clicks_count_all Integer Yes search_with_ads_count_all Integer Yes scalar_parent_urlbar_impression_autofill_about_sum Integer Yes scalar_parent_urlbar_impression_autofill_adaptive_sum Integer Yes scalar_parent_urlbar_impression_autofill_origin_sum Integer Yes scalar_parent_urlbar_impression_autofill_other_sum Integer Yes scalar_parent_urlbar_impression_autofill_preloaded_sum Integer Yes scalar_parent_urlbar_impression_autofill_url_sum Integer Yes scalar_parent_telemetry_event_counts_sum Record No scalar_content_telemetry_event_counts_sum Record No scalar_parent_urlbar_searchmode_bookmarkmenu_sum Record No scalar_parent_urlbar_searchmode_handoff_sum Record No scalar_parent_urlbar_searchmode_keywordoffer_sum Record No scalar_parent_urlbar_searchmode_oneoff_sum Record No scalar_parent_urlbar_searchmode_other_sum Record No scalar_parent_urlbar_searchmode_shortcut_sum Record No scalar_parent_urlbar_searchmode_tabmenu_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_onboard_sum Record No scalar_parent_urlbar_searchmode_topsites_newtab_sum Record No scalar_parent_urlbar_searchmode_topsites_urlbar_sum Record No scalar_parent_urlbar_searchmode_touchbar_sum Record No scalar_parent_urlbar_searchmode_typed_sum Record No scalar_parent_os_environment_is_taskbar_pinned Boolean Yes scalar_parent_os_environment_launched_via_desktop Boolean Yes scalar_parent_os_environment_launched_via_taskbar Boolean Yes scalar_parent_os_environment_launched_via_other Boolean Yes scalar_parent_os_environment_launched_via_start_menu Boolean Yes scalar_parent_os_environment_launched_via_other_shortcut Boolean Yes search_count_webextension Integer Yes search_count_alias Integer Yes search_count_urlbar_searchmode Integer Yes scalar_parent_browser_ui_interaction_preferences_pane_home_sum Record No scalar_parent_urlbar_picked_autofill_sum Record No scalar_parent_urlbar_picked_autofill_about_sum Record No scalar_parent_urlbar_picked_autofill_adaptive_sum Record No scalar_parent_urlbar_picked_autofill_origin_sum Record No scalar_parent_urlbar_picked_autofill_other_sum Record No scalar_parent_urlbar_picked_autofill_preloaded_sum Record No scalar_parent_urlbar_picked_autofill_url_sum Record No scalar_parent_urlbar_picked_bookmark_sum Record No scalar_parent_urlbar_picked_dynamic_sum Record No scalar_parent_urlbar_picked_extension_sum Record No scalar_parent_urlbar_picked_formhistory_sum Record No scalar_parent_urlbar_picked_history_sum Record No scalar_parent_urlbar_picked_keyword_sum Record No scalar_parent_urlbar_picked_remotetab_sum Record No scalar_parent_urlbar_picked_searchengine_sum Record No scalar_parent_urlbar_picked_searchsuggestion_sum Record No scalar_parent_urlbar_picked_switchtab_sum Record No scalar_parent_urlbar_picked_tabtosearch_sum Record No scalar_parent_urlbar_picked_tip_sum Record No scalar_parent_urlbar_picked_topsite_sum Record No scalar_parent_urlbar_picked_unknown_sum Record No scalar_parent_urlbar_picked_visiturl_sum Record No default_private_search_engine String Yes default_private_search_engine_data_load_path String Yes default_private_search_engine_data_name String Yes default_private_search_engine_data_origin String Yes default_private_search_engine_data_submission_url String Yes search_counts Record No user_pref_browser_search_region String Yes search_with_ads Record No ad_clicks Record No search_content_urlbar_sum Record No search_content_urlbar_handoff_sum Record No search_content_urlbar_searchmode_sum Record No search_content_contextmenu_sum Record No search_content_about_home_sum Record No search_content_about_newtab_sum Record No search_content_searchbar_sum Record No search_content_system_sum Record No search_content_webextension_sum Record No search_content_tabhistory_sum Record No search_content_reload_sum Record No search_content_unknown_sum Record No search_withads_urlbar_sum Record No search_withads_urlbar_handoff_sum Record No search_withads_urlbar_searchmode_sum Record No search_withads_contextmenu_sum Record No search_withads_about_home_sum Record No search_withads_about_newtab_sum Record No search_withads_searchbar_sum Record No search_withads_system_sum Record No search_withads_webextension_sum Record No search_withads_tabhistory_sum Record No search_withads_reload_sum Record No search_withads_unknown_sum Record No search_adclicks_urlbar_sum Record No search_adclicks_urlbar_handoff_sum Record No search_adclicks_urlbar_searchmode_sum Record No search_adclicks_contextmenu_sum Record No search_adclicks_about_home_sum Record No search_adclicks_about_newtab_sum Record No search_adclicks_searchbar_sum Record No search_adclicks_system_sum Record No search_adclicks_webextension_sum Record No search_adclicks_tabhistory_sum Record No search_adclicks_reload_sum Record No search_adclicks_unknown_sum Record No update_background Boolean Yes user_pref_browser_search_suggest_enabled String Yes user_pref_browser_widget_in_navbar String Yes user_pref_browser_urlbar_suggest_searches String Yes user_pref_browser_urlbar_show_search_suggestions_first String Yes user_pref_browser_urlbar_suggest_quicksuggest String Yes user_pref_browser_urlbar_suggest_quicksuggest_sponsored String Yes user_pref_browser_urlbar_quicksuggest_onboarding_dialog_choice String Yes scalar_parent_browser_engagement_total_uri_count_normal_and_private_mode_sum Integer Yes user_pref_browser_newtabpage_enabled String Yes user_pref_app_shield_optoutstudies_enabled String Yes contextual_services_quicksuggest_click_sum Record No contextual_services_quicksuggest_impression_sum Record No contextual_services_quicksuggest_help_sum Record No contextual_services_topsites_click_sum Record No contextual_services_topsites_impression_sum Record No user_pref_browser_urlbar_suggest_quicksuggest_nonsponsored String Yes user_pref_browser_urlbar_quicksuggest_data_collection_enabled String Yes scalar_a11y_hcm_foreground Integer Yes scalar_a11y_hcm_background Integer Yes a11y_theme Record No contextual_services_quicksuggest_help_nonsponsored_bestmatch_sum Record No contextual_services_quicksuggest_help_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_block_nonsponsored_sum Record No contextual_services_quicksuggest_block_sponsored_sum Record No contextual_services_quicksuggest_block_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_block_nonsponsored_bestmatch_sum Record No contextual_services_quicksuggest_click_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_click_nonsponsored_bestmatch_sum Record No contextual_services_quicksuggest_impression_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_impression_nonsponsored_bestmatch_sum Record No user_pref_browser_urlbar_suggest_bestmatch String Yes scalar_parent_browser_ui_interaction_textrecognition_error_sum Integer Yes text_recognition_interaction_timing_sum Integer Yes text_recognition_interaction_timing_count_sum Integer Yes scalar_parent_browser_ui_interaction_content_context_sum Record No text_recognition_api_performance_sum Integer Yes text_recognition_api_performance_count_sum Integer Yes text_recognition_text_length_sum Integer Yes text_recognition_text_length_count_sum Integer Yes scalar_parent_os_environment_launched_via_taskbar_private Boolean Yes dom_parentprocess_private_window_used Boolean Yes os_environment_is_taskbar_pinned_any Boolean Yes os_environment_is_taskbar_pinned_private_any Boolean Yes os_environment_is_taskbar_pinned_private Boolean Yes bookmark_migrations_quantity_chrome Integer Yes bookmark_migrations_quantity_edge Integer Yes bookmark_migrations_quantity_safari Integer Yes bookmark_migrations_quantity_all Integer Yes history_migrations_quantity_chrome Integer Yes history_migrations_quantity_edge Integer Yes history_migrations_quantity_safari Integer Yes history_migrations_quantity_all Integer Yes logins_migrations_quantity_chrome Integer Yes logins_migrations_quantity_edge Integer Yes logins_migrations_quantity_safari Integer Yes logins_migrations_quantity_all Integer Yes search_count_urlbar_persisted Integer Yes search_content_urlbar_persisted_sum Record No search_withads_urlbar_persisted_sum Record No search_adclicks_urlbar_persisted_sum Record No media_play_time_ms_audio_sum Integer Yes media_play_time_ms_video_sum Integer Yes contextual_services_quicksuggest_block_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_block_weather_sum Record No contextual_services_quicksuggest_click_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_click_nonsponsored_sum Record No contextual_services_quicksuggest_click_sponsored_sum Record No contextual_services_quicksuggest_click_weather_sum Record No contextual_services_quicksuggest_help_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_help_nonsponsored_sum Record No contextual_services_quicksuggest_help_sponsored_sum Record No contextual_services_quicksuggest_help_weather_sum Record No contextual_services_quicksuggest_impression_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_impression_nonsponsored_sum Record No contextual_services_quicksuggest_impression_sponsored_sum Record No contextual_services_quicksuggest_impression_weather_sum Record No places_searchbar_cumulative_searches_sum Integer Yes places_searchbar_cumulative_filter_count_sum Integer Yes scalar_parent_sidebar_opened_sum Record No scalar_parent_sidebar_search_sum Record No scalar_parent_sidebar_link_sum Record No places_previousday_visits_mean Float Yes places_library_cumulative_bookmark_searches_sum Integer Yes places_library_cumulative_history_searches_sum Integer Yes places_bookmarks_searchbar_cumulative_searches_sum Integer Yes scalar_parent_library_link_sum Record No scalar_parent_library_opened_sum Record No scalar_parent_library_search_sum Record No startup_profile_selection_reason_first String Yes first_document_id String Yes partner_id String Yes distribution_version String Yes distributor String Yes distributor_channel String Yes env_build_platform_version String Yes env_build_xpcom_abi String Yes geo_db_version String Yes apple_model_id String Yes max_subsession_counter Integer Yes min_subsession_counter Integer Yes startup_profile_selection_first_ping_only String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_first_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_first_seen_28_days_later","title":"clients_first_seen_28_days_later","text":"Clients First Seen 28 Days Later
telemetry.clients_first_seen_28_days_later
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes sample_id Integer Yes first_seen_date Date Yes submission_date Date Yes country_code String Yes channel String Yes build_id String Yes os String Yes os_version Numeric Yes distribution_id String Yes attribution_source String Yes attribution_ua String Yes attribution_medium String Yes attribution_campaign String Yes attribution_content String Yes attribution_experiment String Yes attribution_dltoken String Yes attribution_dlsource String Yes activated Whether the profile sent a main ping in at least 5 of their first 7 days. Boolean Yes returned_second_day Whether the profile sent a main ping on any day after their first day during their first 28 days. Boolean Yes qualified_second_day Whether the profile qualified as DAU on any day after their first day during their first 28 days. Boolean Yes retained_week4 Whether the profile sent a main ping on any day in their 4th week. Boolean Yes qualified_week4 Whether the profile qualified as DAU on any day in their 4th week. Boolean Yes days_seen_bits Integer Yes days_visited_1_uri_bits Integer Yes days_interacted_bits Integer Yes startup_profile_selection_reason How the profile was selected during startup, as reported by the first ping received. String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_first_seen_28_days_later_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_histogram_aggregates","title":"clients_histogram_aggregates","text":"Clients Histogram Aggregates
telemetry.clients_histogram_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_histogram_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_last_seen","title":"clients_last_seen","text":"Clients Last Seen
telemetry.clients_last_seen
Captures history of activity of each client in 28 day windows for each submission date.
There will be one row per client per submission_date
. A given client will stop appearing for new dates if they do not send a main
ping for 28 days.
Generally, this is a direct product of clients_daily
and serves to make certain query patterns more efficient by eliminating the need for self-joins that would otherwise be needed to consider windows of activity. As an exception, it pulls in first_seen_date
and second_seen_date
over all time from clients_first_seen
since first_seen_date
is highly valuable for providing a stable definition of when a profile was created.
See the Working with Bit Patterns in Clients Last Seen article on docs.telemetry.mozilla.org for more detailed notes on usage.
Clustering fields: normalized_channel
, sample_id
See also: clients_daily
, clients_first_seen
- Owners:
- dthorn@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_last_seen_v1","title":"clients_last_seen_v1","text":"Clients Last Seen V1
telemetry.clients_last_seen_v1
Please provide a description for the query
Schema Column Description Type Nullable is_regular_user_v3 Boolean Yes is_new_or_resurrected_v3 Boolean Yes is_weekday_regular_v1 Boolean Yes is_allweek_regular_v1 Boolean Yes is_core_active_v1 Boolean Yes activity_segments_v1 String Yes new_profile_7_day_activated_v1 Boolean Yes new_profile_14_day_activated_v1 Boolean Yes new_profile_21_day_activated_v1 Boolean Yes first_run_date Date Yes days_since_first_seen Integer Yes days_since_second_seen Integer Yes days_since_seen Integer Yes days_since_visited_1_uri Integer Yes days_since_visited_5_uri Integer Yes days_since_visited_10_uri Integer Yes days_since_had_8_active_ticks Integer Yes days_since_opened_dev_tools Integer Yes days_since_created_profile Integer Yes days_since_interacted Integer Yes days_since_qualified_use_v1 Integer Yes days_since_visited_1_uri_normal_mode Integer Yes days_since_visited_1_uri_private_mode Integer Yes submission_date Date Yes first_seen_date Date Yes second_seen_date Date Yes days_seen_bits Integer Yes days_visited_1_uri_bits Integer Yes days_visited_5_uri_bits Integer Yes days_visited_10_uri_bits Integer Yes days_had_8_active_ticks_bits Integer Yes days_opened_dev_tools_bits Integer Yes days_interacted_bits Integer Yes days_visited_1_uri_normal_mode_bits Integer Yes days_visited_1_uri_private_mode_bits Integer Yes days_created_profile_bits Integer Yes days_seen_in_experiment Record No client_id String Yes aborts_content_sum Integer Yes aborts_gmplugin_sum Integer Yes aborts_plugin_sum Integer Yes active_addons_count_mean Float Yes active_addons Record No active_hours_sum Float Yes addon_compatibility_check_enabled Boolean Yes app_build_id String Yes app_display_version String Yes app_name String Yes app_version String Yes attribution Record Yes blocklist_enabled Boolean Yes channel String Yes client_clock_skew_mean Float Yes client_submission_latency_mean Float Yes cpu_cores Integer Yes cpu_count Integer Yes cpu_family Integer Yes cpu_l2_cache_kb Integer Yes cpu_l3_cache_kb Integer Yes cpu_model Integer Yes cpu_speed_mhz Integer Yes cpu_stepping Integer Yes cpu_vendor String Yes crashes_detected_content_sum Integer Yes crashes_detected_gmplugin_sum Integer Yes crashes_detected_plugin_sum Integer Yes crash_submit_attempt_content_sum Integer Yes crash_submit_attempt_main_sum Integer Yes crash_submit_attempt_plugin_sum Integer Yes crash_submit_success_content_sum Integer Yes crash_submit_success_main_sum Integer Yes crash_submit_success_plugin_sum Integer Yes default_search_engine String Yes default_search_engine_data_load_path String Yes default_search_engine_data_name String Yes default_search_engine_data_origin String Yes default_search_engine_data_submission_url String Yes devtools_toolbox_opened_count_sum Integer Yes distribution_id String Yes e10s_enabled Boolean Yes env_build_arch String Yes env_build_id String Yes env_build_version String Yes environment_settings_intl_accept_languages String No environment_settings_intl_app_locales String No environment_settings_intl_available_locales String No environment_settings_intl_requested_locales String No environment_settings_intl_system_locales String No environment_settings_intl_regional_prefs_locales String No experiments Record No first_paint_mean Float Yes flash_version String Yes country String Yes city String Yes geo_subdivision1 String Yes geo_subdivision2 String Yes isp_name String Yes isp_organization String Yes gfx_features_advanced_layers_status String Yes gfx_features_d2d_status String Yes gfx_features_d3d11_status String Yes gfx_features_gpu_process_status String Yes histogram_parent_devtools_aboutdebugging_opened_count_sum Integer Yes histogram_parent_devtools_animationinspector_opened_count_sum Integer Yes histogram_parent_devtools_browserconsole_opened_count_sum Integer Yes histogram_parent_devtools_canvasdebugger_opened_count_sum Integer Yes histogram_parent_devtools_computedview_opened_count_sum Integer Yes histogram_parent_devtools_custom_opened_count_sum Integer Yes histogram_parent_devtools_dom_opened_count_sum Integer Yes histogram_parent_devtools_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_fontinspector_opened_count_sum Integer Yes histogram_parent_devtools_inspector_opened_count_sum Integer Yes histogram_parent_devtools_jsbrowserdebugger_opened_count_sum Integer Yes histogram_parent_devtools_jsdebugger_opened_count_sum Integer Yes histogram_parent_devtools_jsprofiler_opened_count_sum Integer Yes histogram_parent_devtools_layoutview_opened_count_sum Integer Yes histogram_parent_devtools_memory_opened_count_sum Integer Yes histogram_parent_devtools_menu_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_netmonitor_opened_count_sum Integer Yes histogram_parent_devtools_options_opened_count_sum Integer Yes histogram_parent_devtools_paintflashing_opened_count_sum Integer Yes histogram_parent_devtools_picker_eyedropper_opened_count_sum Integer Yes histogram_parent_devtools_responsive_opened_count_sum Integer Yes histogram_parent_devtools_ruleview_opened_count_sum Integer Yes histogram_parent_devtools_scratchpad_opened_count_sum Integer Yes histogram_parent_devtools_scratchpad_window_opened_count_sum Integer Yes histogram_parent_devtools_shadereditor_opened_count_sum Integer Yes histogram_parent_devtools_storage_opened_count_sum Integer Yes histogram_parent_devtools_styleeditor_opened_count_sum Integer Yes histogram_parent_devtools_webaudioeditor_opened_count_sum Integer Yes histogram_parent_devtools_webconsole_opened_count_sum Integer Yes histogram_parent_devtools_webide_opened_count_sum Integer Yes install_year Integer Yes is_default_browser Boolean Yes is_wow64 Boolean Yes locale String Yes memory_mb Integer Yes normalized_channel String Yes normalized_os_version String Yes os String Yes os_service_pack_major Integer Yes os_service_pack_minor Integer Yes os_version String Yes pings_aggregated_by_this_row Integer Yes places_bookmarks_count_mean Float Yes places_pages_count_mean Float Yes plugin_hangs_sum Integer Yes plugins_infobar_allow_sum Integer Yes plugins_infobar_block_sum Integer Yes plugins_infobar_shown_sum Integer Yes plugins_notification_shown_sum Integer Yes previous_build_id String Yes profile_age_in_days Integer Yes profile_creation_date String Yes push_api_notify_sum Integer Yes sample_id Integer Yes sandbox_effective_content_process_level Integer Yes scalar_combined_webrtc_nicer_stun_retransmits_sum Integer Yes scalar_combined_webrtc_nicer_turn_401s_sum Integer Yes scalar_combined_webrtc_nicer_turn_403s_sum Integer Yes scalar_combined_webrtc_nicer_turn_438s_sum Integer Yes scalar_content_navigator_storage_estimate_count_sum Integer Yes scalar_content_navigator_storage_persist_count_sum Integer Yes scalar_parent_aushelper_websense_reg_version String Yes scalar_parent_browser_engagement_max_concurrent_tab_count_max Integer Yes scalar_parent_browser_engagement_max_concurrent_window_count_max Integer Yes scalar_parent_browser_engagement_tab_open_event_count_sum Integer Yes scalar_parent_browser_engagement_total_uri_count_sum Integer Yes scalar_parent_browser_engagement_unfiltered_uri_count_sum Integer Yes scalar_parent_browser_engagement_unique_domains_count_max Integer Yes scalar_parent_browser_engagement_unique_domains_count_mean Float Yes scalar_parent_browser_engagement_window_open_event_count_sum Integer Yes scalar_parent_devtools_accessibility_node_inspected_count_sum Integer Yes scalar_parent_devtools_accessibility_opened_count_sum Integer Yes scalar_parent_devtools_accessibility_picker_used_count_sum Integer Yes scalar_parent_devtools_accessibility_select_accessible_for_node_sum Record No scalar_parent_devtools_accessibility_service_enabled_count_sum Integer Yes scalar_parent_devtools_copy_full_css_selector_opened_sum Integer Yes scalar_parent_devtools_copy_unique_css_selector_opened_sum Integer Yes scalar_parent_devtools_toolbar_eyedropper_opened_sum Integer Yes scalar_parent_navigator_storage_estimate_count_sum Integer Yes scalar_parent_navigator_storage_persist_count_sum Integer Yes scalar_parent_storage_sync_api_usage_extensions_using_sum Integer Yes search_cohort String Yes search_count_abouthome Integer Yes search_count_contextmenu Integer Yes search_count_newtab Integer Yes search_count_searchbar Integer Yes search_count_system Integer Yes search_count_urlbar Integer Yes search_count_all Integer Yes search_count_tagged_sap Integer Yes search_count_tagged_follow_on Integer Yes search_count_organic Integer Yes search_count_urlbar_handoff Integer Yes session_restored_mean Float Yes sessions_started_on_this_day Integer Yes shutdown_kill_sum Integer Yes subsession_hours_sum Numeric Yes ssl_handshake_result_failure_sum Integer Yes ssl_handshake_result_success_sum Integer Yes sync_configured Boolean Yes sync_count_desktop_mean Float Yes sync_count_mobile_mean Float Yes sync_count_desktop_sum Integer Yes sync_count_mobile_sum Integer Yes telemetry_enabled Boolean Yes timezone_offset Integer Yes update_auto_download Boolean Yes update_channel String Yes update_enabled Boolean Yes vendor String Yes web_notification_shown_sum Integer Yes windows_build_number Integer Yes windows_ubr Integer Yes fxa_configured Boolean Yes trackers_blocked_sum Integer Yes submission_timestamp_min Timestamp Yes ad_clicks_count_all Integer Yes search_with_ads_count_all Integer Yes scalar_parent_urlbar_impression_autofill_about_sum Integer Yes scalar_parent_urlbar_impression_autofill_adaptive_sum Integer Yes scalar_parent_urlbar_impression_autofill_origin_sum Integer Yes scalar_parent_urlbar_impression_autofill_other_sum Integer Yes scalar_parent_urlbar_impression_autofill_preloaded_sum Integer Yes scalar_parent_urlbar_impression_autofill_url_sum Integer Yes scalar_parent_telemetry_event_counts_sum Record No scalar_content_telemetry_event_counts_sum Record No scalar_parent_urlbar_searchmode_bookmarkmenu_sum Record No scalar_parent_urlbar_searchmode_handoff_sum Record No scalar_parent_urlbar_searchmode_keywordoffer_sum Record No scalar_parent_urlbar_searchmode_oneoff_sum Record No scalar_parent_urlbar_searchmode_other_sum Record No scalar_parent_urlbar_searchmode_shortcut_sum Record No scalar_parent_urlbar_searchmode_tabmenu_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_sum Record No scalar_parent_urlbar_searchmode_tabtosearch_onboard_sum Record No scalar_parent_urlbar_searchmode_topsites_newtab_sum Record No scalar_parent_urlbar_searchmode_topsites_urlbar_sum Record No scalar_parent_urlbar_searchmode_touchbar_sum Record No scalar_parent_urlbar_searchmode_typed_sum Record No scalar_parent_os_environment_is_taskbar_pinned Boolean Yes scalar_parent_os_environment_launched_via_desktop Boolean Yes scalar_parent_os_environment_launched_via_start_menu Boolean Yes scalar_parent_os_environment_launched_via_taskbar Boolean Yes scalar_parent_os_environment_launched_via_other_shortcut Boolean Yes scalar_parent_os_environment_launched_via_other Boolean Yes search_count_webextension Integer Yes search_count_alias Integer Yes search_count_urlbar_searchmode Integer Yes scalar_parent_browser_ui_interaction_preferences_pane_home_sum Record No scalar_parent_urlbar_picked_autofill_sum Record No scalar_parent_urlbar_picked_autofill_about_sum Record No scalar_parent_urlbar_picked_autofill_adaptive_sum Record No scalar_parent_urlbar_picked_autofill_origin_sum Record No scalar_parent_urlbar_picked_autofill_other_sum Record No scalar_parent_urlbar_picked_autofill_preloaded_sum Record No scalar_parent_urlbar_picked_autofill_url_sum Record No scalar_parent_urlbar_picked_bookmark_sum Record No scalar_parent_urlbar_picked_dynamic_sum Record No scalar_parent_urlbar_picked_extension_sum Record No scalar_parent_urlbar_picked_formhistory_sum Record No scalar_parent_urlbar_picked_history_sum Record No scalar_parent_urlbar_picked_keyword_sum Record No scalar_parent_urlbar_picked_remotetab_sum Record No scalar_parent_urlbar_picked_searchengine_sum Record No scalar_parent_urlbar_picked_searchsuggestion_sum Record No scalar_parent_urlbar_picked_switchtab_sum Record No scalar_parent_urlbar_picked_tabtosearch_sum Record No scalar_parent_urlbar_picked_tip_sum Record No scalar_parent_urlbar_picked_topsite_sum Record No scalar_parent_urlbar_picked_unknown_sum Record No scalar_parent_urlbar_picked_visiturl_sum Record No default_private_search_engine String Yes default_private_search_engine_data_load_path String Yes default_private_search_engine_data_name String Yes default_private_search_engine_data_origin String Yes default_private_search_engine_data_submission_url String Yes search_counts Record No user_pref_browser_search_region String Yes search_with_ads Record No ad_clicks Record No search_content_urlbar_sum Record No search_content_urlbar_handoff_sum Record No search_content_urlbar_searchmode_sum Record No search_content_contextmenu_sum Record No search_content_about_home_sum Record No search_content_about_newtab_sum Record No search_content_searchbar_sum Record No search_content_system_sum Record No search_content_webextension_sum Record No search_content_tabhistory_sum Record No search_content_reload_sum Record No search_content_unknown_sum Record No search_withads_urlbar_sum Record No search_withads_urlbar_handoff_sum Record No search_withads_urlbar_searchmode_sum Record No search_withads_contextmenu_sum Record No search_withads_about_home_sum Record No search_withads_about_newtab_sum Record No search_withads_searchbar_sum Record No search_withads_system_sum Record No search_withads_webextension_sum Record No search_withads_tabhistory_sum Record No search_withads_reload_sum Record No search_withads_unknown_sum Record No search_adclicks_urlbar_sum Record No search_adclicks_urlbar_handoff_sum Record No search_adclicks_urlbar_searchmode_sum Record No search_adclicks_contextmenu_sum Record No search_adclicks_about_home_sum Record No search_adclicks_about_newtab_sum Record No search_adclicks_searchbar_sum Record No search_adclicks_system_sum Record No search_adclicks_webextension_sum Record No search_adclicks_tabhistory_sum Record No search_adclicks_reload_sum Record No search_adclicks_unknown_sum Record No update_background Boolean Yes user_pref_browser_search_suggest_enabled String Yes user_pref_browser_widget_in_navbar String Yes user_pref_browser_urlbar_suggest_searches String Yes user_pref_browser_urlbar_show_search_suggestions_first String Yes user_pref_browser_urlbar_suggest_quicksuggest String Yes user_pref_browser_urlbar_suggest_quicksuggest_sponsored String Yes user_pref_browser_urlbar_quicksuggest_onboarding_dialog_choice String Yes scalar_parent_browser_engagement_total_uri_count_normal_and_private_mode_sum Integer Yes user_pref_browser_newtabpage_enabled String Yes user_pref_app_shield_optoutstudies_enabled String Yes contextual_services_quicksuggest_click_sum Record No contextual_services_quicksuggest_impression_sum Record No contextual_services_quicksuggest_help_sum Record No contextual_services_topsites_click_sum Record No contextual_services_topsites_impression_sum Record No user_pref_browser_urlbar_suggest_quicksuggest_nonsponsored String Yes user_pref_browser_urlbar_quicksuggest_data_collection_enabled String Yes scalar_a11y_hcm_foreground Integer Yes scalar_a11y_hcm_background Integer Yes a11y_theme Record No contextual_services_quicksuggest_help_nonsponsored_bestmatch_sum Record No contextual_services_quicksuggest_help_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_block_nonsponsored_sum Record No contextual_services_quicksuggest_block_sponsored_sum Record No contextual_services_quicksuggest_block_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_block_nonsponsored_bestmatch_sum Record No contextual_services_quicksuggest_click_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_click_nonsponsored_bestmatch_sum Record No contextual_services_quicksuggest_impression_sponsored_bestmatch_sum Record No contextual_services_quicksuggest_impression_nonsponsored_bestmatch_sum Record No user_pref_browser_urlbar_suggest_bestmatch String Yes scalar_parent_browser_ui_interaction_textrecognition_error_sum Integer Yes text_recognition_interaction_timing_sum Integer Yes text_recognition_interaction_timing_count_sum Integer Yes scalar_parent_browser_ui_interaction_content_context_sum Record No text_recognition_api_performance_sum Integer Yes text_recognition_api_performance_count_sum Integer Yes text_recognition_text_length_sum Integer Yes text_recognition_text_length_count_sum Integer Yes scalar_parent_os_environment_launched_via_taskbar_private Boolean Yes dom_parentprocess_private_window_used Boolean Yes os_environment_is_taskbar_pinned_any Boolean Yes os_environment_is_taskbar_pinned_private_any Boolean Yes os_environment_is_taskbar_pinned_private Boolean Yes bookmark_migrations_quantity_chrome Integer Yes bookmark_migrations_quantity_edge Integer Yes bookmark_migrations_quantity_safari Integer Yes bookmark_migrations_quantity_all Integer Yes history_migrations_quantity_chrome Integer Yes history_migrations_quantity_edge Integer Yes history_migrations_quantity_safari Integer Yes history_migrations_quantity_all Integer Yes logins_migrations_quantity_chrome Integer Yes logins_migrations_quantity_edge Integer Yes logins_migrations_quantity_safari Integer Yes logins_migrations_quantity_all Integer Yes search_count_urlbar_persisted Integer Yes search_content_urlbar_persisted_sum Record No search_withads_urlbar_persisted_sum Record No search_adclicks_urlbar_persisted_sum Record No media_play_time_ms_audio_sum Integer Yes media_play_time_ms_video_sum Integer Yes contextual_services_quicksuggest_block_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_block_weather_sum Record No contextual_services_quicksuggest_click_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_click_nonsponsored_sum Record No contextual_services_quicksuggest_click_sponsored_sum Record No contextual_services_quicksuggest_click_weather_sum Record No contextual_services_quicksuggest_help_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_help_nonsponsored_sum Record No contextual_services_quicksuggest_help_sponsored_sum Record No contextual_services_quicksuggest_help_weather_sum Record No contextual_services_quicksuggest_impression_dynamic_wikipedia_sum Record No contextual_services_quicksuggest_impression_nonsponsored_sum Record No contextual_services_quicksuggest_impression_sponsored_sum Record No contextual_services_quicksuggest_impression_weather_sum Record No places_searchbar_cumulative_searches_sum Integer Yes places_searchbar_cumulative_filter_count_sum Integer Yes scalar_parent_sidebar_opened_sum Record No scalar_parent_sidebar_search_sum Record No scalar_parent_sidebar_link_sum Record No places_previousday_visits_mean Float Yes places_library_cumulative_bookmark_searches_sum Integer Yes places_library_cumulative_history_searches_sum Integer Yes places_bookmarks_searchbar_cumulative_searches_sum Integer Yes scalar_parent_library_link_sum Record No scalar_parent_library_opened_sum Record No scalar_parent_library_search_sum Record No startup_profile_selection_reason_first String Yes first_document_id String Yes partner_id String Yes distribution_version String Yes distributor String Yes distributor_channel String Yes env_build_platform_version String Yes env_build_xpcom_abi String Yes geo_db_version String Yes apple_model_id String Yes max_subsession_counter Integer Yes min_subsession_counter Integer Yes startup_profile_selection_first_ping_only String Yes _sample_id_string String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_probe_processes","title":"clients_probe_processes","text":"Clients Probe Processes
telemetry.clients_probe_processes
Please provide a description for the query
Schema Column Description Type Nullable metric String Yes os String Yes channel String Yes processes String No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived client_probe_counts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#clients_scalar_aggregates","title":"clients_scalar_aggregates","text":"Clients Scalar Aggregates
telemetry.clients_scalar_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived clients_scalar_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#cohort_daily_statistics","title":"cohort_daily_statistics","text":"Cohort Daily Statistics
telemetry.cohort_daily_statistics
Please provide a description for the query
Schema Column Description Type Nullable cohort_date Date Yes activity_date Date Yes activity_segment String Yes app_version String Yes attribution_campaign String Yes attribution_content String Yes attribution_experiment String Yes attribution_medium String Yes attribution_source String Yes attribution_variation String Yes city String Yes country String Yes device_model String Yes distribution_id String Yes is_default_browser Boolean Yes locale String Yes normalized_app_name String Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes os_version_major Integer Yes os_version_minor Integer Yes num_clients_in_cohort Integer Yes num_clients_active_on_day Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived cohort_daily_statistics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#core","title":"core","text":"Core
telemetry.core
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#core_clients_daily","title":"core_clients_daily","text":"Core Clients Daily
telemetry.core_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes profile_date Date Yes sessions Integer Yes durations Integer Yes flash_usage Integer Yes app_name String Yes os String Yes country String Yes city String Yes app_build_id String Yes normalized_channel String Yes locale String Yes osversion String Yes device String Yes arch String Yes default_search String Yes distribution_id String Yes campaign String Yes campaign_id String Yes default_browser Boolean Yes show_tracker_stats_share Boolean Yes metadata_app_version String Yes bug_1501329_affected Boolean Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry core_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#core_clients_daily_v1","title":"core_clients_daily_v1","text":"Core Clients Daily V1
telemetry.core_clients_daily_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes profile_date Date Yes sessions Integer Yes durations Integer Yes flash_usage Integer Yes app_name String Yes os String Yes country String Yes city String Yes app_build_id String Yes normalized_channel String Yes locale String Yes osversion String Yes device String Yes arch String Yes default_search String Yes distribution_id String Yes campaign String Yes campaign_id String Yes default_browser Boolean Yes show_tracker_stats_share Boolean Yes metadata_app_version String Yes bug_1501329_affected Boolean Yes first_seen_date Date Yes is_new_profile Boolean Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived core_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#core_clients_last_seen","title":"core_clients_last_seen","text":"Core Clients Last Seen
telemetry.core_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry core_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#core_clients_last_seen_v1","title":"core_clients_last_seen_v1","text":"Core Clients Last Seen V1
telemetry.core_clients_last_seen_v1
Please provide a description for the query
Schema Column Description Type Nullable date_last_seen Date Yes days_since_seen Integer Yes days_since_created_profile Integer Yes submission_date Date Yes days_seen_bits Integer Yes days_created_profile_bits Integer Yes client_id String Yes profile_date Date Yes sessions Integer Yes durations Integer Yes flash_usage Integer Yes app_name String Yes os String Yes country String Yes city String Yes app_build_id String Yes normalized_channel String Yes locale String Yes osversion String Yes device String Yes arch String Yes default_search String Yes distribution_id String Yes campaign String Yes campaign_id String Yes default_browser Boolean Yes show_tracker_stats_share Boolean Yes metadata_app_version String Yes bug_1501329_affected Boolean Yes first_seen_date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived core_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crash","title":"crash","text":"Historical Pings for telemetry/crash
telemetry.crash
A historical view of pings sent for the telemetry/crash
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes client_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable crash_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crash_aggregates","title":"crash_aggregates","text":"Crash Aggregates
telemetry.crash_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry crash_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crash_aggregates_v1","title":"crash_aggregates_v1","text":"Crash Aggregates V1
telemetry.crash_aggregates_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived crash_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crash_summary","title":"crash_summary","text":"Crash Summary
telemetry.crash_summary
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes normalized_channel String Yes build_version String Yes build_id String Yes channel String Yes crash_time String Yes application String Yes os_name String Yes os_version String Yes architecture String Yes country String Yes experiment_id String Yes experiment_branch String Yes experiments Record No e10s_enabled Boolean Yes gfx_compositor String Yes profile_created Integer Yes payload Record Yes submission_date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry crash_summary_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crash_summary_v1","title":"crash_summary_v1","text":"Crash Summary V1
telemetry.crash_summary_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived crash_summary_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crash_summary_v2","title":"crash_summary_v2","text":"Crash Summary V2
telemetry.crash_summary_v2
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes normalized_channel String Yes build_version String Yes build_id String Yes channel String Yes crash_time String Yes application String Yes os_name String Yes os_version String Yes architecture String Yes country String Yes experiment_id String Yes experiment_branch String Yes experiments Record No e10s_enabled Boolean Yes gfx_compositor String Yes profile_created Integer Yes payload Record Yes submission_date Date Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived crash_summary_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#crashes_daily","title":"crashes_daily","text":"Crashes Daily
telemetry.crashes_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes application_name String Yes build_id String Yes channel String Yes os String Yes os_version String Yes country_code String Yes main_crash_count Integer Yes content_crash_count Integer Yes gpu_crash_count Integer Yes rdd_crash_count Integer Yes socket_crash_count Integer Yes utility_crash_count Integer Yes vr_crash_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived crashes_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#deletion","title":"deletion","text":"Historical Pings for telemetry/deletion
telemetry.deletion
A historical view of pings sent for the telemetry/deletion
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable deletion_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#deletion_request","title":"deletion_request","text":"Historical Pings for telemetry/deletion-request
telemetry.deletion_request
A historical view of pings sent for the telemetry/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes payload Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable deletion_request_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#deployment_checker","title":"deployment_checker","text":"Historical Pings for telemetry/deployment-checker
telemetry.deployment_checker
A historical view of pings sent for the telemetry/deployment-checker
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable deployment_checker_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#desktop_retention_1_week","title":"desktop_retention_1_week","text":"Desktop 1-Week Retention
telemetry.desktop_retention_1_week
Among profiles that were active at least once in the week starting on the specified day (days 0 through 6), whether each profile is active during the following week (days 7 through 13). This based on https://docs.telemetry.mozilla.org/cookbooks/retention.html#1-week-retention for the usage criterion \"Any Firefox Activity\" on Firefox (Desktop)
- Owners:
- dthorn@mozilla.com
- jklukas@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry clients_last_seen Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#devtools_panel_usage","title":"devtools_panel_usage","text":"Devtools Panel Usage
telemetry.devtools_panel_usage
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes tool String Yes dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived devtools_panel_usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#disable_sha1rollout","title":"disable_sha1rollout","text":"Historical Pings for telemetry/disable-sha1rollout
telemetry.disable_sha1rollout
A historical view of pings sent for the telemetry/disable-sha1rollout
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable disable_sha1rollout_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#dnssec_study_v1","title":"dnssec_study_v1","text":"Historical Pings for telemetry/dnssec-study-v1
telemetry.dnssec_study_v1
A historical view of pings sent for the telemetry/dnssec-study-v1
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable dnssec_study_v1_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#downgrade","title":"downgrade","text":"Historical Pings for telemetry/downgrade
telemetry.downgrade
A historical view of pings sent for the telemetry/downgrade
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable downgrade_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#eng_workflow_build_parquet","title":"eng_workflow_build_parquet","text":"Eng Workflow Build Parquet
telemetry.eng_workflow_build_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry eng_workflow_build_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#eng_workflow_build_parquet_v1","title":"eng_workflow_build_parquet_v1","text":"Eng Workflow Build Parquet V1
telemetry.eng_workflow_build_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod eng_workflow build Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#eng_workflow_hgpush_parquet","title":"eng_workflow_hgpush_parquet","text":"Eng Workflow Hgpush Parquet
telemetry.eng_workflow_hgpush_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived eng_workflow_hgpush_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#eng_workflow_hgpush_parquet_v1","title":"eng_workflow_hgpush_parquet_v1","text":"Eng Workflow Hgpush Parquet V1
telemetry.eng_workflow_hgpush_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived eng_workflow_hgpush_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#event","title":"event","text":"Historical Pings for telemetry/event
telemetry.event
A historical view of pings sent for the telemetry/event
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable event_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#event_types","title":"event_types","text":"Event Types
telemetry.event_types
Please provide a description for the query
Schema Column Description Type Nullable category String Yes event String Yes first_timestamp Timestamp Yes numeric_index Integer Yes index String Yes event_properties Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived event_types_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#events","title":"events","text":"Events
telemetry.events
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes doc_type String Yes document_id String Yes client_id String Yes normalized_channel String Yes country String Yes locale String Yes app_name String Yes app_version String Yes os String Yes os_version String Yes timestamp Timestamp Yes sample_id Integer Yes event_timestamp Integer Yes event_category String Yes event_method String Yes event_object String Yes event_string_value String Yes event_map_values Record No experiments Record No event_process String Yes subsession_id String Yes session_start_time Timestamp Yes session_id String Yes build_id String Yes browser_version_info Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#events_1pct","title":"events_1pct","text":"Events 1pct
telemetry.events_1pct
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes doc_type String Yes document_id String Yes client_id String Yes normalized_channel String Yes country String Yes locale String Yes app_name String Yes app_version String Yes os String Yes os_version String Yes timestamp Timestamp Yes sample_id Integer Yes event_timestamp Integer Yes event_category String Yes event_method String Yes event_object String Yes event_string_value String Yes event_map_values Record No experiments Record No event_process String Yes subsession_id String Yes session_start_time Timestamp Yes session_id String Yes build_id String Yes browser_version_info Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived events_1pct_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#events_daily","title":"events_daily","text":"Events Daily
telemetry.events_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes sample_id Integer Yes events String Yes build_id String Yes build_architecture String Yes profile_creation_date Float Yes is_default_browser Boolean Yes attribution_source String Yes app_version String Yes locale String Yes distribution_id String Yes attribution_ua String Yes display_version String Yes city String Yes country String Yes subdivision1 String Yes channel String Yes os String Yes os_version String Yes experiments Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived events_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#events_v1","title":"events_v1","text":"Events V1
telemetry.events_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes doc_type String Yes document_id String Yes client_id String Yes normalized_channel String Yes country String Yes locale String Yes app_name String Yes app_version String Yes os String Yes os_version String Yes timestamp Timestamp Yes sample_id Integer Yes event_timestamp Integer Yes event_category String Yes event_method String Yes event_object String Yes event_string_value String Yes event_map_values Record No experiments Record No event_process String Yes subsession_id String Yes session_start_time Timestamp Yes session_id String Yes build_id String Yes browser_version_info Record Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_cumulative_ad_clicks","title":"experiment_cumulative_ad_clicks","text":"Experiment Cumulative Ad Clicks
telemetry.experiment_cumulative_ad_clicks
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_cumulative_ad_clicks_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_cumulative_search_count","title":"experiment_cumulative_search_count","text":"Experiment Cumulative Search Count
telemetry.experiment_cumulative_search_count
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_cumulative_search_count_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_cumulative_search_with_ads_count","title":"experiment_cumulative_search_with_ads_count","text":"Experiment Cumulative Search With Ads Count
telemetry.experiment_cumulative_search_with_ads_count
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_cumulative_search_with_ads_count_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_enrollment_cumulative_population_estimate","title":"experiment_enrollment_cumulative_population_estimate","text":"Experiment Enrollment Cumulative Population Estimate
telemetry.experiment_enrollment_cumulative_population_estimate
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_enrollment_cumulative_population_estimate_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_enrollment_daily_active_population","title":"experiment_enrollment_daily_active_population","text":"Experiment Enrollment Daily Active Population
telemetry.experiment_enrollment_daily_active_population
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_enrollment_daily_active_population_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_enrollment_other_events_overall","title":"experiment_enrollment_other_events_overall","text":"Experiment Enrollment Other Events Overall
telemetry.experiment_enrollment_other_events_overall
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes event String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_enrollment_other_events_overall_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_enrollment_overall","title":"experiment_enrollment_overall","text":"Experiment Enrollment Overall
telemetry.experiment_enrollment_overall
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_enrollment_overall_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_error_aggregates","title":"experiment_error_aggregates","text":"Experiment Error Aggregates
telemetry.experiment_error_aggregates
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_error_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_error_aggregates_v1","title":"experiment_error_aggregates_v1","text":"Experiment Error Aggregates V1
telemetry.experiment_error_aggregates_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_error_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiment_unenrollment_overall","title":"experiment_unenrollment_overall","text":"Experiment Unenrollment Overall
telemetry.experiment_unenrollment_overall
Please provide a description for the query
Schema Column Description Type Nullable time Timestamp Yes experiment String Yes branch String Yes value Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiment_unenrollment_overall_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiments","title":"experiments","text":"Experiments
telemetry.experiments
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes document_id String Yes client_id String Yes channel String Yes normalized_channel String Yes normalized_os_version String Yes country String Yes city String Yes geo_subdivision1 String Yes geo_subdivision2 String Yes os String Yes os_version String Yes os_service_pack_major Integer Yes os_service_pack_minor Integer Yes windows_build_number Integer Yes windows_ubr Integer Yes install_year Integer Yes is_wow64 Boolean Yes memory_mb Integer Yes cpu_count Integer Yes cpu_cores Integer Yes cpu_vendor String Yes cpu_family Integer Yes cpu_model Integer Yes cpu_stepping Integer Yes cpu_l2_cache_kb Integer Yes cpu_l3_cache_kb Integer Yes cpu_speed_mhz Integer Yes gfx_features_d3d11_status String Yes gfx_features_d2d_status String Yes gfx_features_gpu_process_status String Yes gfx_features_advanced_layers_status String Yes apple_model_id String Yes antivirus String No antispyware String No firewall String No profile_creation_date Integer Yes profile_reset_date Integer Yes previous_build_id String Yes session_id String Yes subsession_id String Yes previous_session_id String Yes previous_subsession_id String Yes session_start_date String Yes subsession_start_date String Yes session_length Integer Yes subsession_length Integer Yes subsession_counter Integer Yes profile_subsession_counter Integer Yes creation_date String Yes distribution_id String Yes sync_configured Boolean Yes sync_count_desktop Integer Yes sync_count_mobile Integer Yes app_build_id String Yes app_display_version String Yes app_name String Yes app_version String Yes timestamp Integer Yes env_build_id String Yes env_build_version String Yes env_build_arch String Yes e10s_enabled Boolean Yes e10s_multi_processes Integer Yes locale String Yes update_channel String Yes update_enabled Boolean Yes update_auto_download Boolean Yes attribution Record Yes sandbox_effective_content_process_level Integer Yes reason String Yes timezone_offset Integer Yes plugin_hangs Integer Yes aborts_plugin Integer Yes aborts_content Integer Yes aborts_gmplugin Integer Yes crashes_detected_plugin Integer Yes crashes_detected_gmplugin Integer Yes crash_submit_attempt_main Integer Yes crash_submit_attempt_content Integer Yes crash_submit_attempt_plugin Integer Yes crash_submit_success_main Integer Yes crash_submit_success_content Integer Yes crash_submit_success_plugin Integer Yes shutdown_kill Integer Yes active_addons_count Integer Yes flash_version String Yes vendor String Yes is_default_browser Boolean Yes default_search_engine_data_name String Yes default_search_engine_data_load_path String Yes default_search_engine_data_origin String Yes default_search_engine_data_submission_url String Yes default_search_engine String Yes devtools_toolbox_opened_count Integer Yes client_submission_date String Yes client_clock_skew Integer Yes client_submission_latency Integer Yes places_bookmarks_count Integer Yes places_pages_count Integer Yes push_api_notify Integer Yes popup_notification_stats Record No search_counts Record No active_addons Record No disabled_addons_ids String No active_theme Record Yes blocklist_enabled Boolean Yes addon_compatibility_check_enabled Boolean Yes telemetry_enabled Boolean Yes events Record No ssl_handshake_result_success Integer Yes ssl_handshake_result_failure Integer Yes ssl_handshake_result Record No active_ticks Integer Yes main Integer Yes first_paint Integer Yes session_restored Integer Yes total_time Integer Yes plugins_notification_shown Integer Yes experiments Record No search_cohort String Yes gfx_compositor String Yes quantum_ready Boolean Yes gc_max_pause_ms_main_above_150 Integer Yes gc_max_pause_ms_main_above_250 Integer Yes gc_max_pause_ms_main_above_2500 Integer Yes gc_max_pause_ms_content_above_150 Integer Yes gc_max_pause_ms_content_above_250 Integer Yes gc_max_pause_ms_content_above_2500 Integer Yes cycle_collector_max_pause_main_above_150 Integer Yes cycle_collector_max_pause_main_above_250 Integer Yes cycle_collector_max_pause_main_above_2500 Integer Yes cycle_collector_max_pause_content_above_150 Integer Yes cycle_collector_max_pause_content_above_250 Integer Yes cycle_collector_max_pause_content_above_2500 Integer Yes input_event_response_coalesced_ms_main_above_150 Integer Yes input_event_response_coalesced_ms_main_above_250 Integer Yes input_event_response_coalesced_ms_main_above_2500 Integer Yes input_event_response_coalesced_ms_content_above_150 Integer Yes input_event_response_coalesced_ms_content_above_250 Integer Yes input_event_response_coalesced_ms_content_above_2500 Integer Yes ghost_windows_main_above_1 Integer Yes ghost_windows_content_above_1 Integer Yes user_pref_dom_ipc_plugins_sandbox_level_flash Integer Yes user_pref_dom_ipc_processcount Integer Yes user_pref_extensions_legacy_enabled Boolean Yes user_pref_browser_search_widget_innavbar Boolean Yes user_pref_general_config_filename String Yes scalar_content_browser_usage_plugin_instantiated Integer Yes scalar_content_gfx_omtp_paint_wait_ratio Integer Yes scalar_content_gfx_small_paint_phase_weight Record No scalar_content_images_webp_content_frequency Record No scalar_content_images_webp_content_observed Boolean Yes scalar_content_images_webp_probe_observed Boolean Yes scalar_content_mathml_doc_count Integer Yes scalar_content_media_autoplay_would_be_allowed_count Integer Yes scalar_content_media_autoplay_would_not_be_allowed_count Integer Yes scalar_content_media_page_count Integer Yes scalar_content_media_page_had_media_count Integer Yes scalar_content_media_page_had_play_revoked_count Integer Yes scalar_content_sw_alternative_body_used_count Integer Yes scalar_content_sw_synthesized_res_count Integer Yes scalar_content_telemetry_accumulate_unknown_histogram_keys Record No scalar_content_telemetry_discarded_accumulations Integer Yes scalar_content_telemetry_discarded_child_events Integer Yes scalar_content_telemetry_discarded_keyed_accumulations Integer Yes scalar_content_telemetry_discarded_keyed_scalar_actions Integer Yes scalar_content_telemetry_discarded_scalar_actions Integer Yes scalar_content_telemetry_event_counts Record No scalar_content_webrtc_nicer_turn_401s Integer Yes scalar_content_webrtc_nicer_turn_403s Integer Yes scalar_content_webrtc_nicer_turn_438s Integer Yes scalar_content_webrtc_sdp_parser_diff Record No scalar_gpu_telemetry_accumulate_unknown_histogram_keys Record No scalar_gpu_telemetry_discarded_accumulations Integer Yes scalar_gpu_telemetry_discarded_child_events Integer Yes scalar_gpu_telemetry_discarded_keyed_accumulations Integer Yes scalar_gpu_telemetry_discarded_keyed_scalar_actions Integer Yes scalar_gpu_telemetry_discarded_scalar_actions Integer Yes scalar_gpu_telemetry_event_counts Record No scalar_parent_a11y_indicator_acted_on Boolean Yes scalar_parent_a11y_instantiators String Yes scalar_parent_browser_engagement_active_ticks Integer Yes scalar_parent_browser_engagement_max_concurrent_tab_count Integer Yes scalar_parent_browser_engagement_max_concurrent_window_count Integer Yes scalar_parent_browser_engagement_navigation_about_home Record No scalar_parent_browser_engagement_navigation_about_newtab Record No scalar_parent_browser_engagement_navigation_contextmenu Record No scalar_parent_browser_engagement_navigation_searchbar Record No scalar_parent_browser_engagement_navigation_urlbar Record No scalar_parent_browser_engagement_restored_pinned_tabs_count Integer Yes scalar_parent_browser_engagement_tab_open_event_count Integer Yes scalar_parent_browser_engagement_total_uri_count Integer Yes scalar_parent_browser_engagement_unfiltered_uri_count Integer Yes scalar_parent_browser_engagement_unique_domains_count Integer Yes scalar_parent_browser_engagement_window_open_event_count Integer Yes scalar_parent_browser_errors_collected_count_by_filename Record No scalar_parent_browser_timings_last_shutdown Integer Yes scalar_parent_devtools_accessibility_node_inspected_count Integer Yes scalar_parent_devtools_accessibility_opened_count Integer Yes scalar_parent_devtools_accessibility_picker_used_count Integer Yes scalar_parent_devtools_accessibility_select_accessible_for_node Record No scalar_parent_devtools_accessibility_service_enabled_count Integer Yes scalar_parent_devtools_copy_full_css_selector_opened Integer Yes scalar_parent_devtools_copy_unique_css_selector_opened Integer Yes scalar_parent_devtools_copy_xpath_opened Integer Yes scalar_parent_devtools_current_theme Record No scalar_parent_devtools_grid_gridinspector_opened Integer Yes scalar_parent_devtools_grid_showgridareasoverlay_checked Integer Yes scalar_parent_devtools_grid_showgridlinenumbers_checked Integer Yes scalar_parent_devtools_grid_showinfinitelines_checked Integer Yes scalar_parent_devtools_inspector_three_pane_enabled Record No scalar_parent_devtools_responsive_open_trigger Record No scalar_parent_devtools_responsive_toolbox_opened_first Integer Yes scalar_parent_devtools_rules_gridinspector_opened Integer Yes scalar_parent_devtools_shadowdom_reveal_link_clicked Boolean Yes scalar_parent_devtools_shadowdom_shadow_root_displayed Boolean Yes scalar_parent_devtools_shadowdom_shadow_root_expanded Boolean Yes scalar_parent_devtools_tool_registered Record No scalar_parent_devtools_toolbar_eyedropper_opened Integer Yes scalar_parent_devtools_toolbox_tabs_reordered Record No scalar_parent_dom_contentprocess_buildid_mismatch Integer Yes scalar_parent_extensions_updates_rdf Record No scalar_parent_formautofill_addresses_fill_type_autofill Integer Yes scalar_parent_formautofill_addresses_fill_type_autofill_update Integer Yes scalar_parent_formautofill_addresses_fill_type_manual Integer Yes scalar_parent_formautofill_availability Boolean Yes scalar_parent_formautofill_creditcards_fill_type_autofill Integer Yes scalar_parent_formautofill_creditcards_fill_type_manual Integer Yes scalar_parent_gfx_advanced_layers_failure_id Record No scalar_parent_images_webp_content_frequency Record No scalar_parent_images_webp_content_observed Boolean Yes scalar_parent_images_webp_probe_observed Boolean Yes scalar_parent_media_page_count Integer Yes scalar_parent_preferences_browser_home_page_change Record No scalar_parent_preferences_browser_home_page_count Record No scalar_parent_preferences_search_query Record No scalar_parent_preferences_use_bookmark Record No scalar_parent_preferences_use_current_page Record No scalar_parent_sandbox_no_job Record No scalar_parent_screenshots_copy Integer Yes scalar_parent_screenshots_download Integer Yes scalar_parent_security_client_cert Record No scalar_parent_security_pkcs11_modules_loaded Record No scalar_parent_security_webauthn_used Record No scalar_parent_services_sync_sync_login_state_transitions Record No scalar_parent_storage_sync_api_usage_items_stored Record No scalar_parent_storage_sync_api_usage_storage_consumed Record No scalar_parent_sw_alternative_body_used_count Integer Yes scalar_parent_sw_synthesized_res_count Integer Yes scalar_parent_telemetry_accumulate_clamped_values Record No scalar_parent_telemetry_accumulate_unknown_histogram_keys Record No scalar_parent_telemetry_data_upload_optin Boolean Yes scalar_parent_telemetry_event_counts Record No scalar_parent_timestamps_first_paint Integer Yes scalar_parent_webrtc_nicer_turn_401s Integer Yes scalar_parent_webrtc_nicer_turn_403s Integer Yes scalar_parent_webrtc_nicer_turn_438s Integer Yes scalar_parent_widget_ime_name_on_linux Record No scalar_parent_widget_ime_name_on_mac Record No scalar_parent_widget_ime_name_on_windows Record No histogram_content_cert_validation_success_by_ca Record No histogram_content_cycle_collector_max_pause Record No histogram_content_devtools_toolbox_time_active_seconds Record No histogram_content_fx_new_window_ms Record No histogram_content_fx_searchbar_selected_result_method Record No histogram_content_fx_session_restore_restore_window_ms Record No histogram_content_fx_session_restore_startup_init_session_ms Record No histogram_content_fx_session_restore_startup_onload_initial_window_ms Record No histogram_content_fx_tab_close_time_anim_ms Record No histogram_content_fx_tab_switch_update_ms Record No histogram_content_fx_urlbar_selected_result_index Record No histogram_content_fx_urlbar_selected_result_index_by_type Record No histogram_content_fx_urlbar_selected_result_method Record No histogram_content_fx_urlbar_selected_result_type Record No histogram_content_gc_animation_ms Record No histogram_content_gc_max_pause_ms_2 Record No histogram_content_ghost_windows Record No histogram_content_gpu_process_initialization_time_ms Record No histogram_content_gpu_process_launch_time_ms_2 Record No histogram_content_http_channel_disposition Record No histogram_content_http_pageload_is_ssl Record No histogram_content_http_transaction_is_ssl Record No histogram_content_input_event_response_coalesced_ms Record No histogram_content_ipc_read_main_thread_latency_ms Record No histogram_content_memory_heap_allocated Record No histogram_content_memory_resident_fast Record No histogram_content_memory_unique Record No histogram_content_memory_vsize Record No histogram_content_memory_vsize_max_contiguous Record No histogram_content_network_cache_metadata_first_read_time_ms Record No histogram_content_network_cache_v2_hit_time_ms Record No histogram_content_network_cache_v2_miss_time_ms Record No histogram_content_places_autocomplete_6_first_results_time_ms Record No histogram_content_plugin_shutdown_ms Record No histogram_content_search_reset_result Record No histogram_content_search_service_init_ms Record No histogram_content_ssl_handshake_result Record No histogram_content_ssl_handshake_version Record No histogram_content_ssl_tls12_intolerance_reason_pre Record No histogram_content_ssl_tls13_intolerance_reason_pre Record No histogram_content_time_to_dom_complete_ms Record No histogram_content_time_to_dom_content_loaded_end_ms Record No histogram_content_time_to_dom_content_loaded_start_ms Record No histogram_content_time_to_dom_interactive_ms Record No histogram_content_time_to_dom_loading_ms Record No histogram_content_time_to_first_click_ms Record No histogram_content_time_to_first_interaction_ms Record No histogram_content_time_to_first_key_input_ms Record No histogram_content_time_to_first_mouse_move_ms Record No histogram_content_time_to_first_scroll_ms Record No histogram_content_time_to_load_event_end_ms Record No histogram_content_time_to_load_event_start_ms Record No histogram_content_time_to_non_blank_paint_ms Record No histogram_content_time_to_response_start_ms Record No histogram_content_tracking_protection_enabled Record No histogram_content_uptake_remote_content_result_1 Record No histogram_content_webext_content_script_injection_ms Record No histogram_content_webext_storage_local_get_ms Record No histogram_content_webext_storage_local_set_ms Record No histogram_content_webvr_time_spent_viewing_in_2d Record No histogram_content_webvr_users_view_in Record No histogram_gpu_gpu_process_initialization_time_ms Record No histogram_gpu_ipc_read_main_thread_latency_ms Record No histogram_gpu_uptake_remote_content_result_1 Record No histogram_gpu_webvr_time_spent_viewing_in_oculus Record No histogram_gpu_webvr_time_spent_viewing_in_openvr Record No histogram_gpu_webvr_users_view_in Record No histogram_parent_a11y_consumers Record No histogram_parent_a11y_instantiated_flag Record No histogram_parent_cert_validation_success_by_ca Record No histogram_parent_cycle_collector_max_pause Record No histogram_parent_devtools_entry_point Record No histogram_parent_devtools_toolbox_time_active_seconds Record No histogram_parent_fx_new_window_ms Record No histogram_parent_fx_searchbar_selected_result_method Record No histogram_parent_fx_session_restore_restore_window_ms Record No histogram_parent_fx_session_restore_startup_init_session_ms Record No histogram_parent_fx_session_restore_startup_onload_initial_window_ms Record No histogram_parent_fx_tab_close_time_anim_ms Record No histogram_parent_fx_tab_switch_total_e10s_ms Record No histogram_parent_fx_tab_switch_update_ms Record No histogram_parent_fx_urlbar_selected_result_index Record No histogram_parent_fx_urlbar_selected_result_index_by_type Record No histogram_parent_fx_urlbar_selected_result_method Record No histogram_parent_fx_urlbar_selected_result_type Record No histogram_parent_gc_animation_ms Record No histogram_parent_gc_max_pause_ms_2 Record No histogram_parent_ghost_windows Record No histogram_parent_gpu_process_initialization_time_ms Record No histogram_parent_gpu_process_launch_time_ms_2 Record No histogram_parent_http_channel_disposition Record No histogram_parent_http_pageload_is_ssl Record No histogram_parent_http_transaction_is_ssl Record No histogram_parent_input_event_response_coalesced_ms Record No histogram_parent_ipc_read_main_thread_latency_ms Record No histogram_parent_memory_distribution_among_content Record No histogram_parent_memory_heap_allocated Record No histogram_parent_memory_resident_fast Record No histogram_parent_memory_total Record No histogram_parent_memory_unique Record No histogram_parent_memory_vsize Record No histogram_parent_memory_vsize_max_contiguous Record No histogram_parent_network_cache_metadata_first_read_time_ms Record No histogram_parent_network_cache_v2_hit_time_ms Record No histogram_parent_network_cache_v2_miss_time_ms Record No histogram_parent_places_autocomplete_6_first_results_time_ms Record No histogram_parent_plugin_shutdown_ms Record No histogram_parent_search_reset_result Record No histogram_parent_search_service_init_ms Record No histogram_parent_ssl_handshake_result Record No histogram_parent_ssl_handshake_version Record No histogram_parent_ssl_tls12_intolerance_reason_pre Record No histogram_parent_ssl_tls13_intolerance_reason_pre Record No histogram_parent_time_to_first_click_ms Record No histogram_parent_time_to_first_interaction_ms Record No histogram_parent_time_to_first_key_input_ms Record No histogram_parent_time_to_first_mouse_move_ms Record No histogram_parent_time_to_first_scroll_ms Record No histogram_parent_time_to_non_blank_paint_ms Record No histogram_parent_time_to_response_start_ms Record No histogram_parent_touch_enabled_device Record No histogram_parent_tracking_protection_enabled Record No histogram_parent_uptake_remote_content_result_1 Record No histogram_parent_webext_background_page_load_ms Record No histogram_parent_webext_browseraction_popup_open_ms Record No histogram_parent_webext_browseraction_popup_preload_result_count Record No histogram_parent_webext_content_script_injection_ms Record No histogram_parent_webext_extension_startup_ms Record No histogram_parent_webext_pageaction_popup_open_ms Record No histogram_parent_webext_storage_local_get_ms Record No histogram_parent_webext_storage_local_set_ms Record No histogram_parent_webvr_time_spent_viewing_in_2d Record No histogram_parent_webvr_time_spent_viewing_in_oculus Record No histogram_parent_webvr_time_spent_viewing_in_openvr Record No histogram_parent_webvr_users_view_in Record No boolean_addon_scalars Record No keyed_boolean_addon_scalars Record No string_addon_scalars Record No keyed_string_addon_scalars Record No uint_addon_scalars Record No keyed_uint_addon_scalars Record No sample_id Integer Yes experiment_branch String Yes experiment_id String Yes histogram_parent_devtools_about_devtools_opened_key Record No scalar_content_media_blocked_no_metadata Integer Yes histogram_parent_devtools_menu_eyedropper_opened_count Integer Yes histogram_parent_devtools_fonteditor_n_fonts_rendered Record No histogram_parent_devtools_layoutview_opened_count Integer Yes histogram_parent_devtools_animationinspector_opened_count Integer Yes histogram_parent_devtools_browserconsole_opened_count Integer Yes histogram_parent_devtools_jsprofiler_opened_count Integer Yes histogram_parent_devtools_responsive_opened_count Integer Yes histogram_parent_devtools_dom_opened_count Integer Yes histogram_parent_devtools_computedview_opened_count Integer Yes scalar_content_media_blocked_no_metadata_endup_no_audio_track Integer Yes histogram_parent_devtools_scratchpad_opened_count Integer Yes histogram_parent_devtools_jsdebugger_opened_count Integer Yes histogram_parent_devtools_fonteditor_font_type_displayed Record No histogram_parent_devtools_picker_eyedropper_opened_count Integer Yes histogram_parent_devtools_about_devtools_opened_reason Record No histogram_parent_devtools_eyedropper_opened_count Integer Yes histogram_parent_devtools_storage_opened_count Integer Yes histogram_parent_devtools_webide_opened_count Integer Yes histogram_parent_devtools_custom_opened_count Integer Yes histogram_parent_devtools_ruleview_opened_count Integer Yes histogram_parent_devtools_memory_opened_count Integer Yes histogram_parent_devtools_styleeditor_opened_count Integer Yes histogram_parent_devtools_netmonitor_opened_count Integer Yes scalar_content_media_allowed_autoplay_no_audio_track_count Integer Yes histogram_parent_devtools_webconsole_opened_count Integer Yes histogram_parent_devtools_inspector_opened_count Integer Yes histogram_parent_devtools_scratchpad_window_opened_count Integer Yes histogram_parent_devtools_aboutdebugging_opened_count Integer Yes histogram_parent_devtools_fonteditor_n_font_axes Record No histogram_parent_devtools_paintflashing_opened_count Integer Yes histogram_parent_devtools_options_opened_count Integer Yes histogram_parent_devtools_fontinspector_opened_count Integer Yes histogram_parent_devtools_jsbrowserdebugger_opened_count Integer Yes histogram_parent_devtools_accessibility_picker_time_active_seconds Record No histogram_parent_devtools_accessibility_time_active_seconds Record No histogram_content_devtools_accessibility_service_time_active_seconds Record No histogram_content_devtools_accessibility_time_active_seconds Record No histogram_parent_devtools_accessibility_service_time_active_seconds Record No histogram_content_devtools_accessibility_picker_time_active_seconds Record No blank_window_shown Integer Yes histogram_content_content_paint_time Record No histogram_parent_content_paint_time Record No scalar_parent_browser_engagement_navigation_webextension Record No scalar_parent_dom_parentprocess_private_window_used Boolean Yes histogram_gpu_composite_time Record No histogram_parent_pwmgr_login_page_safety Record No histogram_content_checkerboard_severity Record No histogram_gpu_content_frame_time Record No histogram_parent_pwmgr_manage_visibility_toggled Record No histogram_parent_pwmgr_form_autofill_result Record No histogram_parent_pwmgr_login_last_used_days Record No histogram_gpu_checkerboard_severity Record No histogram_parent_pwmgr_manage_deleted Integer Yes histogram_parent_pwmgr_manage_copied_password Integer Yes histogram_content_pwmgr_login_page_safety Record No histogram_parent_composite_time Record No histogram_parent_pwmgr_num_saved_passwords Record No histogram_parent_content_frame_time Record No histogram_parent_geolocation_request_granted Record No histogram_content_composite_time Record No histogram_parent_pwmgr_blocklist_num_sites Record No histogram_content_geolocation_request_granted Record No histogram_content_pwmgr_form_autofill_result Record No histogram_parent_pwmgr_manage_copied_username Integer Yes histogram_parent_pwmgr_prompt_update_action Record No histogram_parent_pwmgr_num_passwords_per_hostname Record No histogram_parent_pwmgr_saving_enabled Record No histogram_parent_pwmgr_prompt_remember_action Record No histogram_parent_checkerboard_severity Record No histogram_parent_pwmgr_manage_opened Record No scalar_parent_contentblocking_enabled Boolean Yes scalar_parent_contentblocking_exceptions Integer Yes scalar_parent_contentblocking_fastblock_enabled Boolean Yes scalar_parent_resistfingerprinting_content_window_size Record No histogram_parent_number_of_profiles Integer Yes scalar_parent_telemetry_keyed_scalars_exceed_limit Record No histogram_content_memory_unique_content_startup Record No gfx_features_webrender_status String Yes histogram_content_sandbox_rejected_syscalls Record No gfx_features_wrqualified_status String Yes histogram_parent_sandbox_rejected_syscalls Record No user_pref_gfx_webrender_all_qualified Boolean Yes scalar_parent_update_binarytransparencyresult Record No histogram_parent_fx_page_load_ms_2 Record No histogram_content_fx_page_load_ms_2 Record No scalar_parent_devtools_markup_gridinspector_opened Integer Yes scalar_parent_devtools_markup_flexboxhighlighter_opened Integer Yes scalar_parent_devtools_layout_flexboxhighlighter_opened Integer Yes scalar_parent_devtools_rules_flexboxhighlighter_opened Integer Yes scalar_parent_devtools_accessibility_accessible_context_menu_item_activated Record No scalar_parent_devtools_changesview_opened_count Integer Yes scalar_parent_devtools_accessibility_accessible_context_menu_opened Integer Yes scalar_parent_browser_search_ad_clicks Record No scalar_parent_browser_search_with_ads Record No scalar_content_encoding_override_used Boolean Yes scalar_parent_idb_failure_fileinfo_error Integer Yes scalar_parent_media_autoplay_default_blocked Boolean Yes scalar_parent_startup_profile_selection_reason String Yes scalar_parent_timestamps_about_home_topsites_first_paint Integer Yes environment_settings_intl_accept_languages String No environment_settings_intl_app_locales String No environment_settings_intl_regional_prefs_locales String No environment_settings_intl_system_locales String No environment_settings_intl_requested_locales String No environment_settings_intl_available_locales String No scalar_parent_security_intermediate_preloading_num_preloaded Integer Yes scalar_parent_security_intermediate_preloading_num_pending Integer Yes scalar_parent_contentblocking_fingerprinting_blocking_enabled Boolean Yes scalar_parent_contentblocking_cryptomining_blocking_enabled Boolean Yes plugins_notification_shown_false Integer Yes scalar_parent_contentblocking_category Integer Yes scalar_parent_devtools_changesview_copy_rule Integer Yes scalar_content_script_preloader_mainthread_recompile Integer Yes scalar_parent_script_preloader_mainthread_recompile Integer Yes scalar_parent_devtools_changesview_copy_all_changes Integer Yes scalar_parent_normandy_recipe_freshness Record No scalar_parent_devtools_inspector_element_picker_used Integer Yes scalar_content_dom_event_confluence_load_count Record No scalar_parent_browser_engagement_max_concurrent_tab_pinned_count Integer Yes scalar_parent_browser_engagement_tab_pinned_event_count Integer Yes scalar_parent_dom_contentprocess_os_priority_change_considered Integer Yes scalar_parent_dom_contentprocess_os_priority_lowered Integer Yes scalar_parent_dom_contentprocess_os_priority_raised Integer Yes scalar_parent_networking_data_transferred Record No scalar_content_webrtc_peerconnection_datachannel_max_life_used Integer Yes scalar_content_webrtc_peerconnection_datachannel_created Integer Yes scalar_parent_update_bitshresult Record No scalar_parent_a11y_theme Record No histogram_parent_dns_lookup_time Record No histogram_parent_dns_failed_lookup_time Record No scalar_parent_update_startup_downloads_bits_complete_bytes Integer Yes scalar_parent_update_session_from_app_version String Yes scalar_parent_update_session_mar_partial_size_bytes Integer Yes scalar_parent_update_startup_intervals_apply_partial Integer Yes scalar_parent_update_startup_downloads_internal_partial_seconds Integer Yes scalar_parent_update_startup_downloads_internal_partial_bytes Integer Yes scalar_parent_update_startup_mar_partial_size_bytes Integer Yes scalar_parent_update_session_intervals_stage_complete Integer Yes scalar_parent_update_startup_intervals_check Integer Yes scalar_parent_update_session_downloads_internal_complete_seconds Integer Yes scalar_parent_update_startup_downloads_bits_partial_seconds Integer Yes scalar_parent_update_session_intervals_download_internal_partial Integer Yes scalar_parent_update_session_intervals_check Integer Yes scalar_parent_update_startup_intervals_download_bits_complete Integer Yes scalar_parent_update_startup_intervals_download_internal_complete Integer Yes scalar_parent_update_session_downloads_bits_partial_bytes Integer Yes scalar_parent_update_startup_downloads_internal_complete_seconds Integer Yes scalar_parent_update_startup_intervals_download_bits_partial Integer Yes scalar_parent_update_startup_intervals_stage_complete Integer Yes scalar_parent_update_startup_intervals_apply_complete Integer Yes scalar_parent_update_startup_intervals_stage_partial Integer Yes scalar_parent_update_session_intervals_download_internal_complete Integer Yes scalar_parent_update_session_downloads_bits_partial_seconds Integer Yes scalar_parent_update_startup_intervals_download_internal_partial Integer Yes scalar_parent_update_session_downloads_internal_complete_bytes Integer Yes scalar_parent_update_session_intervals_apply_partial Integer Yes scalar_parent_update_session_downloads_internal_partial_seconds Integer Yes scalar_parent_update_session_intervals_download_bits_complete Integer Yes scalar_parent_update_session_downloads_bits_complete_bytes Integer Yes scalar_parent_update_session_intervals_apply_complete Integer Yes scalar_parent_update_session_downloads_internal_partial_bytes Integer Yes scalar_parent_update_startup_downloads_internal_complete_bytes Integer Yes scalar_parent_update_session_downloads_bits_complete_seconds Integer Yes scalar_parent_update_startup_mar_complete_size_bytes Integer Yes scalar_parent_update_startup_downloads_bits_complete_seconds Integer Yes scalar_parent_update_startup_downloads_bits_partial_bytes Integer Yes scalar_parent_update_session_mar_complete_size_bytes Integer Yes scalar_parent_update_session_intervals_stage_partial Integer Yes scalar_parent_update_startup_from_app_version String Yes scalar_parent_update_session_intervals_download_bits_partial Integer Yes scalar_parent_networking_data_transferred_kb Record No scalar_parent_startup_is_cold Boolean Yes user_pref_browser_search_region String Yes environment_system_gfx_headless Boolean Yes fxa_configured Boolean Yes scalar_parent_devtools_accessibility_audit_activated Record No scalar_parent_networking_data_transferred_v3_kb Record No scalar_parent_devtools_inspector_node_selection_count Integer Yes hdd_profile_type String Yes hdd_binary_type String Yes hdd_system_type String Yes histogram_parent_update_status_error_code_partial_stage Record No histogram_parent_update_status_error_code_complete_startup Record No histogram_parent_update_state_code_complete_startup Record No histogram_parent_update_download_code_complete Record No histogram_parent_update_state_code_partial_startup Record No histogram_parent_update_download_code_partial Record No histogram_parent_update_state_code_partial_stage Record No histogram_parent_update_state_code_complete_stage Record No histogram_parent_update_status_error_code_partial_startup Record No histogram_parent_update_status_error_code_complete_stage Record No histogram_parent_update_bits_result_partial Record No histogram_parent_update_bits_result_complete Record No histogram_parent_update_can_use_bits_notify Record No scalar_parent_devtools_tooltip_shown Record No scalar_content_dom_event_office_online_load_count Record No scalar_content_webrtc_video_send_codec_used Record No scalar_content_webrtc_video_recv_codec_used Record No scalar_parent_qm_origin_directory_unexpected_filename Record No histogram_parent_cookie_behavior Record No scalar_content_pictureinpicture_opened_method Record No scalar_parent_pictureinpicture_closed_method Record No user_pref_security_enterprise_roots_enabled Boolean Yes user_pref_security_enterprise_roots_auto_enabled Boolean Yes user_pref_security_pki_mitm_detected Boolean Yes attribution_experiment String Yes attribution_variation String Yes user_pref_network_trr_mode Integer Yes scalar_content_pdf_viewer_fallback_shown Integer Yes scalar_content_pdf_viewer_print Integer Yes scalar_content_pdf_viewer_used Integer Yes scalar_parent_blocklist_lastmodified_rs_addons String Yes scalar_parent_blocklist_usexml Boolean Yes scalar_parent_blocklist_lastmodified_xml String Yes scalar_parent_blocklist_lastmodified_rs_plugins String Yes scalar_parent_os_environment_is_admin_without_uac Boolean Yes scalar_parent_devtools_accessibility_simulation_activated Record No scalar_parent_firststartup_statuscode Integer Yes scalar_parent_pwmgr_potentially_breached_passwords Integer Yes scalar_parent_contentblocking_trackers_blocked_count Integer Yes scalar_parent_browser_searchinit_engines_cache_corrupted Boolean Yes scalar_parent_update_fix_permissions_attempted Boolean Yes scalar_parent_firststartup_elapsed Integer Yes scalar_parent_security_contentblocker_permissions Record No scalar_parent_a11y_backplate Boolean Yes experiments_details Record No scalar_parent_networking_ftp_opened_channels_listings Integer Yes scalar_parent_networking_ftp_opened_channels_files Integer Yes default_private_search_engine_data_load_path String Yes default_private_search_engine_data_submission_url String Yes default_private_search_engine_data_origin String Yes default_private_search_engine_data_name String Yes default_private_search_engine String Yes histogram_content_memory_distribution_among_content Record No e10s_cohort String Yes scalar_parent_browser_session_restore_browser_tabs_restorebutton Integer Yes histogram_parent_gc_max_pause_ms Record No scalar_parent_browser_session_restore_browser_startup_page Integer Yes histogram_content_memory_total Record No histogram_content_gc_max_pause_ms Record No experiment_enrollment_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry experiments_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiments_aggregates","title":"experiments_aggregates","text":"Experiments Aggregates
telemetry.experiments_aggregates
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes experiment_branch String Yes subgroup String Yes n Integer Yes metric_name String Yes metric_type String Yes histogram Record No statistics Record No experiment_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry experiments_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiments_aggregates_v1","title":"experiments_aggregates_v1","text":"Experiments Aggregates V1
telemetry.experiments_aggregates_v1
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes experiment_branch String Yes subgroup String Yes n Integer Yes metric_name String Yes metric_type String Yes histogram Record No statistics Record No experiment_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiments_aggregates_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#experiments_v1","title":"experiments_v1","text":"Experiments V1
telemetry.experiments_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes document_id String Yes client_id String Yes channel String Yes normalized_channel String Yes normalized_os_version String Yes country String Yes city String Yes geo_subdivision1 String Yes geo_subdivision2 String Yes os String Yes os_version String Yes os_service_pack_major Integer Yes os_service_pack_minor Integer Yes windows_build_number Integer Yes windows_ubr Integer Yes install_year Integer Yes is_wow64 Boolean Yes memory_mb Integer Yes cpu_count Integer Yes cpu_cores Integer Yes cpu_vendor String Yes cpu_family Integer Yes cpu_model Integer Yes cpu_stepping Integer Yes cpu_l2_cache_kb Integer Yes cpu_l3_cache_kb Integer Yes cpu_speed_mhz Integer Yes gfx_features_d3d11_status String Yes gfx_features_d2d_status String Yes gfx_features_gpu_process_status String Yes gfx_features_advanced_layers_status String Yes apple_model_id String Yes antivirus String No antispyware String No firewall String No profile_creation_date Integer Yes profile_reset_date Integer Yes previous_build_id String Yes session_id String Yes subsession_id String Yes previous_session_id String Yes previous_subsession_id String Yes session_start_date String Yes subsession_start_date String Yes session_length Integer Yes subsession_length Integer Yes subsession_counter Integer Yes profile_subsession_counter Integer Yes creation_date String Yes distribution_id String Yes sync_configured Boolean Yes sync_count_desktop Integer Yes sync_count_mobile Integer Yes app_build_id String Yes app_display_version String Yes app_name String Yes app_version String Yes timestamp Integer Yes env_build_id String Yes env_build_version String Yes env_build_arch String Yes e10s_enabled Boolean Yes e10s_multi_processes Integer Yes locale String Yes update_channel String Yes update_enabled Boolean Yes update_auto_download Boolean Yes attribution Record Yes sandbox_effective_content_process_level Integer Yes active_experiment_id String Yes active_experiment_branch String Yes reason String Yes timezone_offset Integer Yes plugin_hangs Integer Yes aborts_plugin Integer Yes aborts_content Integer Yes aborts_gmplugin Integer Yes crashes_detected_plugin Integer Yes crashes_detected_content Integer Yes crashes_detected_gmplugin Integer Yes crash_submit_attempt_main Integer Yes crash_submit_attempt_content Integer Yes crash_submit_attempt_plugin Integer Yes crash_submit_success_main Integer Yes crash_submit_success_content Integer Yes crash_submit_success_plugin Integer Yes shutdown_kill Integer Yes active_addons_count Integer Yes flash_version String Yes vendor String Yes is_default_browser Boolean Yes default_search_engine_data_name String Yes default_search_engine_data_load_path String Yes default_search_engine_data_origin String Yes default_search_engine_data_submission_url String Yes default_search_engine String Yes devtools_toolbox_opened_count Integer Yes client_submission_date String Yes client_clock_skew Integer Yes client_submission_latency Integer Yes places_bookmarks_count Integer Yes places_pages_count Integer Yes push_api_notify Integer Yes web_notification_shown Integer Yes popup_notification_stats Record No search_counts Record No active_addons Record No disabled_addons_ids String No active_theme Record Yes blocklist_enabled Boolean Yes addon_compatibility_check_enabled Boolean Yes telemetry_enabled Boolean Yes user_prefs Record Yes events Record No ssl_handshake_result_success Integer Yes ssl_handshake_result_failure Integer Yes ssl_handshake_result Record No active_ticks Integer Yes main Integer Yes first_paint Integer Yes session_restored Integer Yes total_time Integer Yes plugins_notification_shown Integer Yes plugins_notification_user_action Record Yes plugins_infobar_shown Integer Yes plugins_infobar_block Integer Yes plugins_infobar_allow Integer Yes plugins_infobar_dismissed Integer Yes experiments Record No search_cohort String Yes gfx_compositor String Yes quantum_ready Boolean Yes gc_max_pause_ms_main_above_150 Integer Yes gc_max_pause_ms_main_above_250 Integer Yes gc_max_pause_ms_main_above_2500 Integer Yes gc_max_pause_ms_content_above_150 Integer Yes gc_max_pause_ms_content_above_250 Integer Yes gc_max_pause_ms_content_above_2500 Integer Yes cycle_collector_max_pause_main_above_150 Integer Yes cycle_collector_max_pause_main_above_250 Integer Yes cycle_collector_max_pause_main_above_2500 Integer Yes cycle_collector_max_pause_content_above_150 Integer Yes cycle_collector_max_pause_content_above_250 Integer Yes cycle_collector_max_pause_content_above_2500 Integer Yes input_event_response_coalesced_ms_main_above_150 Integer Yes input_event_response_coalesced_ms_main_above_250 Integer Yes input_event_response_coalesced_ms_main_above_2500 Integer Yes input_event_response_coalesced_ms_content_above_150 Integer Yes input_event_response_coalesced_ms_content_above_250 Integer Yes input_event_response_coalesced_ms_content_above_2500 Integer Yes ghost_windows_main_above_1 Integer Yes ghost_windows_content_above_1 Integer Yes user_pref_dom_ipc_plugins_sandbox_level_flash Integer Yes user_pref_dom_ipc_processcount Integer Yes user_pref_extensions_allow_non_mpc_extensions Boolean Yes user_pref_extensions_legacy_enabled Boolean Yes user_pref_browser_search_widget_innavbar Boolean Yes user_pref_general_config_filename String Yes scalar_content_browser_feeds_preview_loaded Integer Yes scalar_content_browser_usage_graphite Integer Yes scalar_content_browser_usage_plugin_instantiated Integer Yes scalar_content_gfx_omtp_paint_wait_ratio Integer Yes scalar_content_gfx_small_paint_phase_weight Record No scalar_content_idb_type_persistent_count Integer Yes scalar_content_idb_type_temporary_count Integer Yes scalar_content_images_webp_content_frequency Record No scalar_content_images_webp_content_observed Boolean Yes scalar_content_images_webp_probe_observed Boolean Yes scalar_content_mathml_doc_count Integer Yes scalar_content_media_autoplay_would_be_allowed_count Integer Yes scalar_content_media_autoplay_would_not_be_allowed_count Integer Yes scalar_content_media_blocked_autoplay_no_audio_track_count Integer Yes scalar_content_media_page_count Integer Yes scalar_content_media_page_had_media_count Integer Yes scalar_content_media_page_had_play_revoked_count Integer Yes scalar_content_mediarecorder_recording_count Integer Yes scalar_content_memoryreporter_max_ghost_windows Integer Yes scalar_content_navigator_storage_estimate_count Integer Yes scalar_content_navigator_storage_persist_count Integer Yes scalar_content_sw_alternative_body_used_count Integer Yes scalar_content_sw_cors_res_for_so_req_count Integer Yes scalar_content_sw_synthesized_res_count Integer Yes scalar_content_telemetry_accumulate_unknown_histogram_keys Record No scalar_content_telemetry_discarded_accumulations Integer Yes scalar_content_telemetry_discarded_child_events Integer Yes scalar_content_telemetry_discarded_keyed_accumulations Integer Yes scalar_content_telemetry_discarded_keyed_scalar_actions Integer Yes scalar_content_telemetry_discarded_scalar_actions Integer Yes scalar_content_telemetry_event_counts Record No scalar_content_telemetry_profile_directory_scans Integer Yes scalar_content_webrtc_nicer_stun_retransmits Integer Yes scalar_content_webrtc_nicer_turn_401s Integer Yes scalar_content_webrtc_nicer_turn_403s Integer Yes scalar_content_webrtc_nicer_turn_438s Integer Yes scalar_content_webrtc_peerconnection_connected Integer Yes scalar_content_webrtc_peerconnection_legacy_callback_stats_used Integer Yes scalar_content_webrtc_peerconnection_promise_and_callback_stats_used Integer Yes scalar_content_webrtc_peerconnection_promise_stats_used Integer Yes scalar_content_webrtc_sdp_parser_diff Record No scalar_gpu_browser_usage_graphite Integer Yes scalar_gpu_telemetry_accumulate_unknown_histogram_keys Record No scalar_gpu_telemetry_discarded_accumulations Integer Yes scalar_gpu_telemetry_discarded_child_events Integer Yes scalar_gpu_telemetry_discarded_keyed_accumulations Integer Yes scalar_gpu_telemetry_discarded_keyed_scalar_actions Integer Yes scalar_gpu_telemetry_discarded_scalar_actions Integer Yes scalar_gpu_telemetry_event_counts Record No scalar_gpu_telemetry_profile_directory_scans Integer Yes scalar_parent_a11y_indicator_acted_on Boolean Yes scalar_parent_a11y_instantiators String Yes scalar_parent_aushelper_websense_reg_version String Yes scalar_parent_browser_engagement_active_ticks Integer Yes scalar_parent_browser_engagement_max_concurrent_tab_count Integer Yes scalar_parent_browser_engagement_max_concurrent_window_count Integer Yes scalar_parent_browser_engagement_navigation_about_home Record No scalar_parent_browser_engagement_navigation_about_newtab Record No scalar_parent_browser_engagement_navigation_contextmenu Record No scalar_parent_browser_engagement_navigation_searchbar Record No scalar_parent_browser_engagement_navigation_urlbar Record No scalar_parent_browser_engagement_restored_pinned_tabs_count Integer Yes scalar_parent_browser_engagement_tab_open_event_count Integer Yes scalar_parent_browser_engagement_total_uri_count Integer Yes scalar_parent_browser_engagement_unfiltered_uri_count Integer Yes scalar_parent_browser_engagement_unique_domains_count Integer Yes scalar_parent_browser_engagement_window_open_event_count Integer Yes scalar_parent_browser_errors_collected_count Integer Yes scalar_parent_browser_errors_collected_count_by_filename Record No scalar_parent_browser_errors_collected_with_stack_count Integer Yes scalar_parent_browser_errors_reported_failure_count Integer Yes scalar_parent_browser_errors_reported_success_count Integer Yes scalar_parent_browser_errors_sample_rate String Yes scalar_parent_browser_feeds_feed_subscribed Integer Yes scalar_parent_browser_feeds_livebookmark_count Integer Yes scalar_parent_browser_feeds_livebookmark_item_opened Integer Yes scalar_parent_browser_feeds_livebookmark_opened Integer Yes scalar_parent_browser_feeds_preview_loaded Integer Yes scalar_parent_browser_session_restore_worker_restart_count Integer Yes scalar_parent_browser_timings_last_shutdown Integer Yes scalar_parent_browser_usage_graphite Integer Yes scalar_parent_browser_usage_plugin_instantiated Integer Yes scalar_parent_devtools_aboutdevtools_installed Integer Yes scalar_parent_devtools_aboutdevtools_noinstall_exits Integer Yes scalar_parent_devtools_aboutdevtools_opened Integer Yes scalar_parent_devtools_accessibility_node_inspected_count Integer Yes scalar_parent_devtools_accessibility_opened_count Integer Yes scalar_parent_devtools_accessibility_picker_used_count Integer Yes scalar_parent_devtools_accessibility_select_accessible_for_node Record No scalar_parent_devtools_accessibility_service_enabled_count Integer Yes scalar_parent_devtools_application_opened_count Integer Yes scalar_parent_devtools_copy_full_css_selector_opened Integer Yes scalar_parent_devtools_copy_unique_css_selector_opened Integer Yes scalar_parent_devtools_copy_xpath_opened Integer Yes scalar_parent_devtools_current_theme Record No scalar_parent_devtools_grid_gridinspector_opened Integer Yes scalar_parent_devtools_grid_showgridareasoverlay_checked Integer Yes scalar_parent_devtools_grid_showgridlinenumbers_checked Integer Yes scalar_parent_devtools_grid_showinfinitelines_checked Integer Yes scalar_parent_devtools_inspector_three_pane_enabled Record No scalar_parent_devtools_onboarding_is_devtools_user Boolean Yes scalar_parent_devtools_responsive_open_trigger Record No scalar_parent_devtools_responsive_toolbox_opened_first Integer Yes scalar_parent_devtools_rules_gridinspector_opened Integer Yes scalar_parent_devtools_shadowdom_reveal_link_clicked Boolean Yes scalar_parent_devtools_shadowdom_shadow_root_displayed Boolean Yes scalar_parent_devtools_shadowdom_shadow_root_expanded Boolean Yes scalar_parent_devtools_tool_registered Record No scalar_parent_devtools_toolbar_eyedropper_opened Integer Yes scalar_parent_devtools_toolbox_tabs_reordered Record No scalar_parent_dom_contentprocess_buildid_mismatch Integer Yes scalar_parent_dom_contentprocess_troubled_due_to_memory Integer Yes scalar_parent_extensions_updates_rdf Record No scalar_parent_formautofill_addresses_fill_type_autofill Integer Yes scalar_parent_formautofill_addresses_fill_type_autofill_update Integer Yes scalar_parent_formautofill_addresses_fill_type_manual Integer Yes scalar_parent_formautofill_availability Boolean Yes scalar_parent_formautofill_creditcards_fill_type_autofill Integer Yes scalar_parent_formautofill_creditcards_fill_type_autofill_modified Integer Yes scalar_parent_formautofill_creditcards_fill_type_manual Integer Yes scalar_parent_gfx_advanced_layers_failure_id Record No scalar_parent_idb_type_persistent_count Integer Yes scalar_parent_idb_type_temporary_count Integer Yes scalar_parent_images_webp_content_frequency Record No scalar_parent_images_webp_content_observed Boolean Yes scalar_parent_images_webp_probe_observed Boolean Yes scalar_parent_media_autoplay_would_be_allowed_count Integer Yes scalar_parent_media_autoplay_would_not_be_allowed_count Integer Yes scalar_parent_media_blocked_autoplay_no_audio_track_count Integer Yes scalar_parent_media_page_count Integer Yes scalar_parent_media_page_had_media_count Integer Yes scalar_parent_media_page_had_play_revoked_count Integer Yes scalar_parent_mediarecorder_recording_count Integer Yes scalar_parent_navigator_storage_estimate_count Integer Yes scalar_parent_navigator_storage_persist_count Integer Yes scalar_parent_preferences_browser_home_page_change Record No scalar_parent_preferences_browser_home_page_count Record No scalar_parent_preferences_created_new_user_prefs_file Boolean Yes scalar_parent_preferences_prefs_file_was_invalid Boolean Yes scalar_parent_preferences_prevent_accessibility_services Boolean Yes scalar_parent_preferences_read_user_js Boolean Yes scalar_parent_preferences_search_query Record No scalar_parent_preferences_use_bookmark Record No scalar_parent_preferences_use_current_page Record No scalar_parent_sandbox_no_job Record No scalar_parent_screenshots_copy Integer Yes scalar_parent_screenshots_download Integer Yes scalar_parent_screenshots_upload Integer Yes scalar_parent_security_client_cert Record No scalar_parent_security_pkcs11_modules_loaded Record No scalar_parent_security_webauthn_used Record No scalar_parent_services_sync_sync_login_state_transitions Record No scalar_parent_storage_sync_api_usage_extensions_using Integer Yes scalar_parent_storage_sync_api_usage_items_stored Record No scalar_parent_storage_sync_api_usage_storage_consumed Record No scalar_parent_sw_alternative_body_used_count Integer Yes scalar_parent_sw_cors_res_for_so_req_count Integer Yes scalar_parent_sw_synthesized_res_count Integer Yes scalar_parent_telemetry_accumulate_clamped_values Record No scalar_parent_telemetry_accumulate_unknown_histogram_keys Record No scalar_parent_telemetry_data_upload_optin Boolean Yes scalar_parent_telemetry_event_counts Record No scalar_parent_telemetry_os_shutting_down Boolean Yes scalar_parent_telemetry_pending_operations_highwatermark_reached Integer Yes scalar_parent_telemetry_persistence_timer_hit_count Integer Yes scalar_parent_telemetry_profile_directory_scan_date Integer Yes scalar_parent_telemetry_profile_directory_scans Integer Yes scalar_parent_timestamps_first_paint Integer Yes scalar_parent_webrtc_nicer_stun_retransmits Integer Yes scalar_parent_webrtc_nicer_turn_401s Integer Yes scalar_parent_webrtc_nicer_turn_403s Integer Yes scalar_parent_webrtc_nicer_turn_438s Integer Yes scalar_parent_webrtc_peerconnection_connected Integer Yes scalar_parent_webrtc_peerconnection_legacy_callback_stats_used Integer Yes scalar_parent_webrtc_peerconnection_promise_and_callback_stats_used Integer Yes scalar_parent_webrtc_peerconnection_promise_stats_used Integer Yes scalar_parent_widget_ime_name_on_linux Record No scalar_parent_widget_ime_name_on_mac Record No scalar_parent_widget_ime_name_on_windows Record No histogram_content_cert_validation_success_by_ca Record No histogram_content_cycle_collector_max_pause Record No histogram_content_devtools_toolbox_time_active_seconds Record No histogram_content_fx_new_window_ms Record No histogram_content_fx_searchbar_selected_result_method Record No histogram_content_fx_session_restore_restore_window_ms Record No histogram_content_fx_session_restore_startup_init_session_ms Record No histogram_content_fx_session_restore_startup_onload_initial_window_ms Record No histogram_content_fx_tab_close_time_anim_ms Record No histogram_content_fx_tab_switch_update_ms Record No histogram_content_fx_urlbar_selected_result_index Record No histogram_content_fx_urlbar_selected_result_index_by_type Record No histogram_content_fx_urlbar_selected_result_method Record No histogram_content_fx_urlbar_selected_result_type Record No histogram_content_gc_animation_ms Record No histogram_content_gc_max_pause_ms_2 Record No histogram_content_ghost_windows Record No histogram_content_gpu_process_initialization_time_ms Record No histogram_content_gpu_process_launch_time_ms_2 Record No histogram_content_http_channel_disposition Record No histogram_content_http_pageload_is_ssl Record No histogram_content_http_transaction_is_ssl Record No histogram_content_input_event_response_coalesced_ms Record No histogram_content_ipc_read_main_thread_latency_ms Record No histogram_content_memory_heap_allocated Record No histogram_content_memory_resident_fast Record No histogram_content_memory_unique Record No histogram_content_memory_vsize Record No histogram_content_memory_vsize_max_contiguous Record No histogram_content_network_cache_metadata_first_read_time_ms Record No histogram_content_network_cache_v2_hit_time_ms Record No histogram_content_network_cache_v2_miss_time_ms Record No histogram_content_places_autocomplete_6_first_results_time_ms Record No histogram_content_plugin_shutdown_ms Record No histogram_content_search_reset_result Record No histogram_content_search_service_init_ms Record No histogram_content_ssl_handshake_result Record No histogram_content_ssl_handshake_version Record No histogram_content_ssl_tls12_intolerance_reason_pre Record No histogram_content_ssl_tls13_intolerance_reason_pre Record No histogram_content_time_to_dom_complete_ms Record No histogram_content_time_to_dom_content_loaded_end_ms Record No histogram_content_time_to_dom_content_loaded_start_ms Record No histogram_content_time_to_dom_interactive_ms Record No histogram_content_time_to_dom_loading_ms Record No histogram_content_time_to_first_click_ms Record No histogram_content_time_to_first_interaction_ms Record No histogram_content_time_to_first_key_input_ms Record No histogram_content_time_to_first_mouse_move_ms Record No histogram_content_time_to_first_scroll_ms Record No histogram_content_time_to_load_event_end_ms Record No histogram_content_time_to_load_event_start_ms Record No histogram_content_time_to_non_blank_paint_ms Record No histogram_content_time_to_response_start_ms Record No histogram_content_tracking_protection_enabled Record No histogram_content_uptake_remote_content_result_1 Record No histogram_content_webext_content_script_injection_ms Record No histogram_content_webext_storage_local_get_ms Record No histogram_content_webext_storage_local_set_ms Record No histogram_content_webvr_time_spent_viewing_in_2d Record No histogram_content_webvr_users_view_in Record No histogram_gpu_gpu_process_initialization_time_ms Record No histogram_gpu_ipc_read_main_thread_latency_ms Record No histogram_gpu_uptake_remote_content_result_1 Record No histogram_gpu_webvr_time_spent_viewing_in_oculus Record No histogram_gpu_webvr_time_spent_viewing_in_openvr Record No histogram_gpu_webvr_users_view_in Record No histogram_parent_a11y_consumers Record No histogram_parent_a11y_instantiated_flag Record No histogram_parent_cert_validation_success_by_ca Record No histogram_parent_cycle_collector_max_pause Record No histogram_parent_devtools_entry_point Record No histogram_parent_devtools_toolbox_time_active_seconds Record No histogram_parent_fx_new_window_ms Record No histogram_parent_fx_searchbar_selected_result_method Record No histogram_parent_fx_session_restore_restore_window_ms Record No histogram_parent_fx_session_restore_startup_init_session_ms Record No histogram_parent_fx_session_restore_startup_onload_initial_window_ms Record No histogram_parent_fx_tab_close_time_anim_ms Record No histogram_parent_fx_tab_switch_total_e10s_ms Record No histogram_parent_fx_tab_switch_update_ms Record No histogram_parent_fx_urlbar_selected_result_index Record No histogram_parent_fx_urlbar_selected_result_index_by_type Record No histogram_parent_fx_urlbar_selected_result_method Record No histogram_parent_fx_urlbar_selected_result_type Record No histogram_parent_gc_animation_ms Record No histogram_parent_gc_max_pause_ms_2 Record No histogram_parent_ghost_windows Record No histogram_parent_gpu_process_initialization_time_ms Record No histogram_parent_gpu_process_launch_time_ms_2 Record No histogram_parent_http_channel_disposition Record No histogram_parent_http_pageload_is_ssl Record No histogram_parent_http_transaction_is_ssl Record No histogram_parent_input_event_response_coalesced_ms Record No histogram_parent_ipc_read_main_thread_latency_ms Record No histogram_parent_memory_distribution_among_content Record No histogram_parent_memory_heap_allocated Record No histogram_parent_memory_resident_fast Record No histogram_parent_memory_total Record No histogram_parent_memory_unique Record No histogram_parent_memory_vsize Record No histogram_parent_memory_vsize_max_contiguous Record No histogram_parent_network_cache_metadata_first_read_time_ms Record No histogram_parent_network_cache_v2_hit_time_ms Record No histogram_parent_network_cache_v2_miss_time_ms Record No histogram_parent_places_autocomplete_6_first_results_time_ms Record No histogram_parent_plugin_shutdown_ms Record No histogram_parent_search_reset_result Record No histogram_parent_search_service_init_ms Record No histogram_parent_ssl_handshake_result Record No histogram_parent_ssl_handshake_version Record No histogram_parent_ssl_tls12_intolerance_reason_pre Record No histogram_parent_ssl_tls13_intolerance_reason_pre Record No histogram_parent_time_to_first_click_ms Record No histogram_parent_time_to_first_interaction_ms Record No histogram_parent_time_to_first_key_input_ms Record No histogram_parent_time_to_first_mouse_move_ms Record No histogram_parent_time_to_first_scroll_ms Record No histogram_parent_time_to_non_blank_paint_ms Record No histogram_parent_time_to_response_start_ms Record No histogram_parent_touch_enabled_device Record No histogram_parent_tracking_protection_enabled Record No histogram_parent_uptake_remote_content_result_1 Record No histogram_parent_webext_background_page_load_ms Record No histogram_parent_webext_browseraction_popup_open_ms Record No histogram_parent_webext_browseraction_popup_preload_result_count Record No histogram_parent_webext_content_script_injection_ms Record No histogram_parent_webext_extension_startup_ms Record No histogram_parent_webext_pageaction_popup_open_ms Record No histogram_parent_webext_storage_local_get_ms Record No histogram_parent_webext_storage_local_set_ms Record No histogram_parent_webvr_time_spent_viewing_in_2d Record No histogram_parent_webvr_time_spent_viewing_in_oculus Record No histogram_parent_webvr_time_spent_viewing_in_openvr Record No histogram_parent_webvr_users_view_in Record No boolean_addon_scalars Record No keyed_boolean_addon_scalars Record No string_addon_scalars Record No keyed_string_addon_scalars Record No uint_addon_scalars Record No keyed_uint_addon_scalars Record No sample_id Integer Yes experiment_branch String Yes experiment_id String Yes histogram_content_devtools_storage_opened_count Integer Yes histogram_parent_devtools_about_devtools_opened_key Record No scalar_content_media_blocked_no_metadata Integer Yes histogram_parent_devtools_menu_eyedropper_opened_count Integer Yes histogram_parent_devtools_fonteditor_n_fonts_rendered Record No histogram_parent_devtools_layoutview_opened_count Integer Yes histogram_content_devtools_webide_opened_count Integer Yes histogram_content_devtools_canvasdebugger_opened_count Integer Yes histogram_parent_devtools_animationinspector_opened_count Integer Yes histogram_content_devtools_custom_opened_count Integer Yes histogram_parent_devtools_browserconsole_opened_count Integer Yes histogram_parent_devtools_jsprofiler_opened_count Integer Yes histogram_content_devtools_webaudioeditor_opened_count Integer Yes histogram_parent_devtools_responsive_opened_count Integer Yes histogram_parent_devtools_dom_opened_count Integer Yes histogram_parent_devtools_computedview_opened_count Integer Yes histogram_content_devtools_layoutview_opened_count Integer Yes scalar_parent_media_blocked_no_metadata_endup_no_audio_track Integer Yes histogram_content_devtools_menu_eyedropper_opened_count Integer Yes histogram_content_devtools_aboutdebugging_opened_count Integer Yes histogram_parent_devtools_developertoolbar_opened_count Integer Yes scalar_content_media_blocked_no_metadata_endup_no_audio_track Integer Yes histogram_parent_devtools_canvasdebugger_opened_count Integer Yes histogram_parent_devtools_scratchpad_opened_count Integer Yes scalar_parent_media_blocked_no_metadata Integer Yes histogram_parent_devtools_jsdebugger_opened_count Integer Yes histogram_parent_devtools_fonteditor_font_type_displayed Record No histogram_parent_devtools_picker_eyedropper_opened_count Integer Yes histogram_content_devtools_scratchpad_window_opened_count Integer Yes histogram_parent_devtools_about_devtools_opened_reason Record No histogram_content_devtools_ruleview_opened_count Integer Yes histogram_content_devtools_jsprofiler_opened_count Integer Yes histogram_parent_devtools_eyedropper_opened_count Integer Yes histogram_content_devtools_styleeditor_opened_count Integer Yes histogram_content_devtools_picker_eyedropper_opened_count Integer Yes histogram_content_devtools_webconsole_opened_count Integer Yes histogram_content_devtools_animationinspector_opened_count Integer Yes histogram_content_devtools_fontinspector_opened_count Integer Yes histogram_content_devtools_shadereditor_opened_count Integer Yes histogram_content_devtools_jsbrowserdebugger_opened_count Integer Yes histogram_content_devtools_netmonitor_opened_count Integer Yes histogram_parent_devtools_storage_opened_count Integer Yes histogram_parent_devtools_webide_opened_count Integer Yes histogram_content_devtools_eyedropper_opened_count Integer Yes histogram_content_devtools_computedview_opened_count Integer Yes histogram_content_devtools_inspector_opened_count Integer Yes histogram_parent_devtools_custom_opened_count Integer Yes histogram_parent_devtools_ruleview_opened_count Integer Yes histogram_content_devtools_responsive_opened_count Integer Yes histogram_parent_devtools_memory_opened_count Integer Yes histogram_parent_devtools_styleeditor_opened_count Integer Yes histogram_content_devtools_memory_opened_count Integer Yes histogram_content_devtools_paintflashing_opened_count Integer Yes histogram_parent_devtools_shadereditor_opened_count Integer Yes histogram_parent_devtools_netmonitor_opened_count Integer Yes histogram_content_devtools_dom_opened_count Integer Yes histogram_content_devtools_browserconsole_opened_count Integer Yes scalar_content_media_allowed_autoplay_no_audio_track_count Integer Yes histogram_parent_devtools_webconsole_opened_count Integer Yes histogram_content_devtools_jsdebugger_opened_count Integer Yes histogram_parent_devtools_inspector_opened_count Integer Yes histogram_parent_devtools_scratchpad_window_opened_count Integer Yes histogram_content_devtools_developertoolbar_opened_count Integer Yes histogram_parent_devtools_aboutdebugging_opened_count Integer Yes scalar_parent_media_allowed_autoplay_no_audio_track_count Integer Yes histogram_content_devtools_scratchpad_opened_count Integer Yes histogram_parent_devtools_fonteditor_n_font_axes Record No histogram_parent_devtools_webaudioeditor_opened_count Integer Yes histogram_parent_devtools_paintflashing_opened_count Integer Yes histogram_parent_devtools_options_opened_count Integer Yes histogram_parent_devtools_fontinspector_opened_count Integer Yes histogram_content_devtools_options_opened_count Integer Yes histogram_parent_devtools_jsbrowserdebugger_opened_count Integer Yes histogram_parent_devtools_accessibility_picker_time_active_seconds Record No histogram_parent_devtools_accessibility_time_active_seconds Record No histogram_content_devtools_accessibility_service_time_active_seconds Record No histogram_content_devtools_accessibility_time_active_seconds Record No histogram_parent_devtools_accessibility_service_time_active_seconds Record No histogram_content_devtools_accessibility_picker_time_active_seconds Record No blank_window_shown Integer Yes histogram_content_content_paint_time Record No histogram_parent_content_paint_time Record No scalar_parent_browser_engagement_navigation_webextension Record No scalar_parent_dom_parentprocess_private_window_used Boolean Yes histogram_gpu_composite_time Record No histogram_parent_pwmgr_login_page_safety Record No histogram_content_checkerboard_severity Record No histogram_gpu_content_frame_time Record No histogram_parent_pwmgr_manage_visibility_toggled Record No histogram_parent_pwmgr_form_autofill_result Record No histogram_parent_pwmgr_login_last_used_days Record No histogram_gpu_checkerboard_severity Record No histogram_parent_pwmgr_manage_deleted Integer Yes histogram_parent_pwmgr_manage_copied_password Integer Yes histogram_content_pwmgr_login_page_safety Record No histogram_content_pwmgr_manage_deleted Integer Yes histogram_parent_composite_time Record No histogram_parent_pwmgr_num_saved_passwords Record No histogram_content_pwmgr_manage_copied_password Integer Yes histogram_parent_content_frame_time Record No histogram_parent_geolocation_request_granted Record No histogram_content_composite_time Record No histogram_parent_pwmgr_blocklist_num_sites Record No histogram_content_geolocation_request_granted Record No histogram_content_pwmgr_manage_copied_username Integer Yes histogram_content_pwmgr_form_autofill_result Record No histogram_parent_pwmgr_manage_copied_username Integer Yes histogram_parent_pwmgr_prompt_update_action Record No histogram_parent_pwmgr_num_passwords_per_hostname Record No histogram_parent_pwmgr_saving_enabled Record No histogram_parent_pwmgr_prompt_remember_action Record No histogram_parent_checkerboard_severity Record No histogram_parent_pwmgr_manage_opened Record No scalar_parent_contentblocking_enabled Boolean Yes scalar_parent_contentblocking_exceptions Integer Yes scalar_parent_contentblocking_fastblock_enabled Boolean Yes scalar_parent_resistfingerprinting_content_window_size Record No user_pref_marionette_enabled Boolean Yes scalar_parent_identity_fxaccounts_missed_commands_fetched Integer Yes scalar_parent_devtools_webreplay_reload_recording Integer Yes scalar_parent_devtools_webreplay_stop_recording Integer Yes scalar_parent_devtools_webreplay_load_recording Integer Yes scalar_parent_devtools_webreplay_new_recording Integer Yes scalar_parent_devtools_webreplay_save_recording Integer Yes histogram_parent_number_of_profiles Integer Yes histogram_content_number_of_profiles Integer Yes scalar_parent_telemetry_keyed_scalars_exceed_limit Record No histogram_content_memory_unique_content_startup Record No gfx_features_webrender_status String Yes histogram_content_sandbox_rejected_syscalls Record No gfx_features_wrqualified_status String Yes histogram_parent_sandbox_rejected_syscalls Record No user_pref_gfx_webrender_all_qualified Boolean Yes user_pref_privacy_fuzzyfox_enabled Boolean Yes scalar_parent_update_binarytransparencyresult Record No histogram_parent_fx_page_load_ms_2 Record No histogram_content_fx_page_load_ms_2 Record No scalar_parent_devtools_markup_gridinspector_opened Integer Yes scalar_parent_devtools_markup_flexboxhighlighter_opened Integer Yes scalar_parent_devtools_layout_flexboxhighlighter_opened Integer Yes scalar_parent_devtools_rules_flexboxhighlighter_opened Integer Yes scalar_parent_devtools_accessibility_accessible_context_menu_item_activated Record No scalar_parent_devtools_changesview_opened_count Integer Yes scalar_parent_devtools_accessibility_accessible_context_menu_opened Integer Yes scalar_parent_browser_search_ad_clicks Record No scalar_parent_browser_search_with_ads Record No scalar_parent_encoding_override_used Boolean Yes scalar_content_encoding_override_used Boolean Yes scalar_parent_telemetry_about_telemetry_pageload Integer Yes scalar_parent_idb_failure_fileinfo_error Integer Yes scalar_content_media_autoplay_default_blocked Boolean Yes scalar_parent_media_autoplay_default_blocked Boolean Yes scalar_parent_devtools_changesview_contextmenu Integer Yes scalar_parent_devtools_changesview_contextmenu_copy Integer Yes scalar_parent_devtools_changesview_copy Integer Yes scalar_parent_gfx_hdr_windows_display_colorspace_bitfield Integer Yes scalar_parent_startup_profile_selection_reason String Yes scalar_parent_timestamps_about_home_topsites_first_paint Integer Yes environment_settings_intl_accept_languages String No environment_settings_intl_app_locales String No environment_settings_intl_regional_prefs_locales String No environment_settings_intl_system_locales String No environment_settings_intl_requested_locales String No environment_settings_intl_available_locales String No scalar_parent_security_intermediate_preloading_num_preloaded Integer Yes scalar_content_telemetry_process_creation_timestamp_inconsistent Integer Yes scalar_parent_security_intermediate_preloading_num_pending Integer Yes scalar_parent_telemetry_process_creation_timestamp_inconsistent Integer Yes scalar_parent_contentblocking_fingerprinting_blocking_enabled Boolean Yes scalar_parent_contentblocking_cryptomining_blocking_enabled Boolean Yes plugins_notification_shown_false Integer Yes scalar_parent_contentblocking_category Integer Yes scalar_parent_devtools_changesview_copy_rule Integer Yes user_pref_browser_launcherprocess_enabled Boolean Yes scalar_parent_devtools_changesview_contextmenu_copy_declaration Integer Yes scalar_content_script_preloader_mainthread_recompile Integer Yes scalar_parent_script_preloader_mainthread_recompile Integer Yes scalar_parent_devtools_changesview_copy_all_changes Integer Yes scalar_parent_devtools_changesview_contextmenu_copy_rule Integer Yes scalar_parent_normandy_recipe_freshness Record No scalar_parent_devtools_inspector_element_picker_used Integer Yes scalar_content_dom_event_confluence_load_count Record No scalar_parent_browser_engagement_max_concurrent_tab_pinned_count Integer Yes scalar_parent_browser_engagement_tab_pinned_event_count Integer Yes scalar_parent_dom_contentprocess_os_priority_change_considered Integer Yes scalar_parent_dom_contentprocess_os_priority_lowered Integer Yes scalar_parent_dom_contentprocess_os_priority_raised Integer Yes scalar_parent_networking_data_transferred Record No scalar_parent_webrtc_peerconnection_datachannel_max_life_used Integer Yes scalar_parent_webrtc_peerconnection_datachannel_max_retx_and_life_used Integer Yes scalar_content_webrtc_peerconnection_datachannel_max_retx_and_life_used Integer Yes scalar_content_webrtc_peerconnection_datachannel_max_retx_used Integer Yes scalar_parent_webrtc_peerconnection_datachannel_created Integer Yes scalar_content_webrtc_peerconnection_datachannel_max_life_used Integer Yes scalar_content_webrtc_peerconnection_datachannel_created Integer Yes scalar_parent_webrtc_peerconnection_datachannel_max_retx_used Integer Yes scalar_parent_update_bitshresult Record No scalar_parent_a11y_theme Record No histogram_parent_dns_lookup_time Record No histogram_parent_dns_failed_lookup_time Record No scalar_parent_update_startup_downloads_bits_complete_bytes Integer Yes scalar_parent_update_session_from_app_version String Yes scalar_parent_update_session_mar_partial_size_bytes Integer Yes scalar_parent_networking_http_connections_captive_portal Integer Yes scalar_parent_update_startup_intervals_apply_partial Integer Yes scalar_parent_networking_http_transactions_captive_portal Integer Yes scalar_parent_update_startup_downloads_internal_partial_seconds Integer Yes scalar_parent_update_startup_downloads_internal_partial_bytes Integer Yes scalar_parent_update_startup_mar_partial_size_bytes Integer Yes scalar_parent_update_session_intervals_stage_complete Integer Yes scalar_parent_update_startup_intervals_check Integer Yes scalar_parent_update_session_downloads_internal_complete_seconds Integer Yes scalar_parent_update_startup_downloads_bits_partial_seconds Integer Yes scalar_parent_update_session_intervals_download_internal_partial Integer Yes scalar_parent_update_session_intervals_check Integer Yes scalar_parent_update_startup_intervals_download_bits_complete Integer Yes scalar_parent_update_startup_intervals_download_internal_complete Integer Yes scalar_parent_update_session_downloads_bits_partial_bytes Integer Yes scalar_parent_update_startup_downloads_internal_complete_seconds Integer Yes scalar_parent_update_startup_intervals_download_bits_partial Integer Yes scalar_parent_update_startup_intervals_stage_complete Integer Yes scalar_parent_update_startup_intervals_apply_complete Integer Yes scalar_parent_update_startup_intervals_stage_partial Integer Yes scalar_parent_update_session_intervals_download_internal_complete Integer Yes scalar_parent_update_session_downloads_bits_partial_seconds Integer Yes scalar_parent_update_startup_intervals_download_internal_partial Integer Yes scalar_parent_update_session_downloads_internal_complete_bytes Integer Yes scalar_parent_update_session_intervals_apply_partial Integer Yes scalar_parent_update_session_downloads_internal_partial_seconds Integer Yes scalar_parent_update_session_intervals_download_bits_complete Integer Yes scalar_parent_update_session_downloads_bits_complete_bytes Integer Yes scalar_parent_networking_data_transferred_captive_portal Integer Yes scalar_parent_update_session_intervals_apply_complete Integer Yes scalar_parent_update_session_downloads_internal_partial_bytes Integer Yes scalar_parent_update_startup_downloads_internal_complete_bytes Integer Yes scalar_parent_update_session_downloads_bits_complete_seconds Integer Yes scalar_parent_update_startup_mar_complete_size_bytes Integer Yes scalar_parent_update_startup_downloads_bits_complete_seconds Integer Yes scalar_parent_update_startup_downloads_bits_partial_bytes Integer Yes scalar_parent_update_session_mar_complete_size_bytes Integer Yes scalar_parent_update_session_intervals_stage_partial Integer Yes scalar_parent_update_startup_from_app_version String Yes scalar_parent_update_session_intervals_download_bits_partial Integer Yes scalar_parent_corroborate_omnijar_corrupted Boolean Yes scalar_parent_corroborate_system_addons_corrupted Boolean Yes scalar_parent_networking_data_transferred_kb Record No scalar_parent_telemetry_ecosystem_old_send_time String Yes scalar_parent_telemetry_ecosystem_new_send_time String Yes scalar_parent_startup_is_cold Boolean Yes user_pref_browser_search_region String Yes environment_system_gfx_headless Boolean Yes fxa_configured Boolean Yes scalar_parent_devtools_accessibility_audit_activated Record No scalar_parent_networking_data_transferred_v3_kb Record No scalar_parent_devtools_inspector_node_selection_count Integer Yes hdd_profile_type String Yes hdd_binary_type String Yes hdd_system_type String Yes histogram_parent_update_status_error_code_partial_stage Record No histogram_parent_update_status_error_code_complete_startup Record No histogram_parent_update_state_code_complete_startup Record No histogram_parent_update_download_code_complete Record No histogram_parent_update_state_code_partial_startup Record No histogram_parent_update_download_code_partial Record No histogram_parent_update_state_code_partial_stage Record No histogram_parent_update_state_code_complete_stage Record No histogram_parent_update_status_error_code_partial_startup Record No histogram_parent_update_status_error_code_complete_stage Record No histogram_parent_update_bits_result_partial Record No histogram_parent_update_bits_result_complete Record No histogram_parent_update_can_use_bits_notify Record No scalar_parent_devtools_tooltip_shown Record No scalar_content_dom_event_office_online_load_count Record No scalar_content_webrtc_video_send_codec_used Record No scalar_content_webrtc_video_recv_codec_used Record No scalar_parent_qm_origin_directory_unexpected_filename Record No histogram_parent_cookie_behavior Record No scalar_content_pictureinpicture_opened_method Record No scalar_parent_pictureinpicture_closed_method Record No user_pref_security_enterprise_roots_enabled Boolean Yes user_pref_security_enterprise_roots_auto_enabled Boolean Yes user_pref_security_pki_mitm_detected Boolean Yes attribution_experiment String Yes attribution_variation String Yes user_pref_network_trr_mode Integer Yes scalar_content_pdf_viewer_fallback_shown Integer Yes scalar_content_pdf_viewer_print Integer Yes scalar_parent_pdf_viewer_fallback_shown Integer Yes scalar_parent_pdf_viewer_used Integer Yes scalar_parent_pdf_viewer_print Integer Yes scalar_content_pdf_viewer_used Integer Yes scalar_parent_blocklist_lastmodified_rs_addons String Yes scalar_parent_blocklist_usexml Boolean Yes scalar_parent_blocklist_lastmodified_xml String Yes scalar_parent_blocklist_lastmodified_rs_plugins String Yes scalar_parent_os_environment_is_admin_without_uac Boolean Yes scalar_parent_devtools_accessibility_simulation_activated Record No scalar_parent_firststartup_statuscode Integer Yes scalar_parent_pwmgr_potentially_breached_passwords Integer Yes scalar_parent_contentblocking_trackers_blocked_count Integer Yes scalar_parent_webrtc_hostnameobfuscation_disabled_succeeded Integer Yes scalar_parent_webrtc_hostnameobfuscation_enabled_succeeded Integer Yes scalar_parent_webrtc_hostnameobfuscation_disabled_failed Integer Yes scalar_content_webrtc_hostnameobfuscation_disabled_failed Integer Yes scalar_content_webrtc_hostnameobfuscation_enabled_failed Integer Yes scalar_content_webrtc_hostnameobfuscation_enabled_succeeded Integer Yes scalar_parent_webrtc_hostnameobfuscation_enabled_failed Integer Yes scalar_content_webrtc_hostnameobfuscation_disabled_succeeded Integer Yes scalar_parent_browser_searchinit_engines_cache_corrupted Boolean Yes scalar_parent_update_fix_permissions_attempted Boolean Yes scalar_parent_firststartup_elapsed Integer Yes scalar_parent_security_contentblocker_permissions Record No scalar_parent_a11y_backplate Boolean Yes scalar_parent_security_tls_delegated_credentials_txn Integer Yes experiments_details Record No scalar_parent_networking_ftp_opened_channels_listings Integer Yes scalar_parent_networking_ftp_opened_channels_files Integer Yes default_private_search_engine_data_load_path String Yes default_private_search_engine_data_submission_url String Yes default_private_search_engine_data_origin String Yes default_private_search_engine_data_name String Yes default_private_search_engine String Yes scalar_parent_datasanitization_privacy_clearonshutdown_history Boolean Yes scalar_parent_datasanitization_privacy_clearonshutdown_cookies Boolean Yes scalar_parent_datasanitization_privacy_sanitize_sanitizeonshutdown Boolean Yes scalar_parent_datasanitization_session_permission_exceptions Integer Yes scalar_parent_datasanitization_privacy_clearonshutdown_openwindows Boolean Yes scalar_parent_datasanitization_privacy_clearonshutdown_formdata Boolean Yes scalar_parent_datasanitization_privacy_clearonshutdown_cache Boolean Yes scalar_parent_datasanitization_privacy_clearonshutdown_sitesettings Boolean Yes scalar_parent_datasanitization_privacy_clearonshutdown_sessions Boolean Yes scalar_parent_datasanitization_privacy_clearonshutdown_downloads Boolean Yes scalar_parent_datasanitization_network_cookie_lifetimepolicy Integer Yes scalar_parent_datasanitization_privacy_clearonshutdown_offlineapps Boolean Yes push_api_notification_received Integer Yes loop_activity_counter Record Yes scalar_parent_browser_session_restore_tabbar_restore_clicked Boolean Yes scalar_parent_services_sync_fxa_verification_method String Yes histogram_content_memory_distribution_among_content Record No scalar_parent_browser_session_restore_number_of_win Integer Yes scalar_parent_browser_session_restore_tabbar_restore_available Boolean Yes e10s_cohort String Yes scalar_parent_browser_session_restore_browser_tabs_restorebutton Integer Yes histogram_parent_gc_max_pause_ms Record No scalar_parent_browser_session_restore_number_of_tabs Integer Yes scalar_parent_browser_session_restore_browser_startup_page Integer Yes histogram_content_memory_total Record No histogram_content_gc_max_pause_ms Record No experiment_enrollment_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived experiments_v0 moz-fx-data-shared-prod telemetry_derived experiments_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#feature_usage","title":"feature_usage","text":"Feature Usage
telemetry.feature_usage
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes submission_date Date Yes activity_segments_v1 String Yes is_allweek_regular_v1 Boolean Yes is_weekday_regular_v1 Boolean Yes is_core_active_v1 Boolean Yes days_since_first_seen Integer Yes days_since_seen Integer Yes new_profile_7_day_activated_v1 Boolean Yes new_profile_14_day_activated_v1 Boolean Yes new_profile_21_day_activated_v1 Boolean Yes first_seen_date Date Yes days_since_created_profile Integer Yes profile_creation_date String Yes country String Yes scalar_parent_os_environment_is_taskbar_pinned Boolean Yes scalar_parent_os_environment_launched_via_desktop Boolean Yes scalar_parent_os_environment_launched_via_other Boolean Yes scalar_parent_os_environment_launched_via_taskbar Boolean Yes scalar_parent_os_environment_launched_via_start_menu Boolean Yes scalar_parent_os_environment_launched_via_other_shortcut Boolean Yes os String Yes normalized_os_version String Yes app_version String Yes attributed Boolean Yes is_default_browser Boolean Yes sync_count_desktop_mean Float Yes sync_count_mobile_mean Float Yes active_hours_sum Float Yes scalar_parent_browser_engagement_total_uri_count_sum Numeric Yes ad_clicks_count_all Integer Yes scalar_parent_browser_engagement_tab_open_event_count_sum Integer Yes scalar_parent_browser_engagement_window_open_event_count_sum Integer Yes scalar_parent_browser_engagement_unique_domains_count_max Integer Yes scalar_parent_browser_engagement_unique_domains_count_mean Float Yes scalar_parent_browser_engagement_max_concurrent_tab_count_max Integer Yes scalar_parent_browser_engagement_max_concurrent_window_count_max Integer Yes search_count_abouthome Integer Yes search_count_all Integer Yes search_count_contextmenu Integer Yes search_count_newtab Integer Yes search_count_organic Integer Yes search_count_searchbar Integer Yes search_count_system Integer Yes search_count_tagged_follow_on Integer Yes search_count_tagged_sap Integer Yes search_count_urlbar Integer Yes search_with_ads_count_all Integer Yes subsample_id Integer Yes is_headless Boolean Yes video_play_time_ms Integer Yes video_encrypted_play_time_ms Integer Yes pdf_viewer_time_to_view_ms_content Integer Yes pip_window_open_duration Integer Yes video_play_time_ms_count Integer Yes video_encrypted_play_time_ms_count Integer Yes pdf_viewer_time_to_view_ms_content_count Integer Yes pip_window_open_duration_count Integer Yes pdf_viewer_doc_size_kb Integer Yes pdf_viewer_doc_size_kb_content Integer Yes pdf_viewer_doc_size_kb_count Integer Yes pdf_viewer_doc_size_kb_content_count Integer Yes sync_signed_in Boolean Yes ccards_saved Boolean Yes pbm_used Boolean Yes unique_sidebars_accessed_count Integer Yes sidebars_accessed_total Integer Yes unique_history_urlbar_indices_picked_count Integer Yes history_urlbar_picked_total Integer Yes unique_remotetab_indices_picked_count Integer Yes remotetab_picked_total Integer Yes uris_from_newtab Integer Yes uris_from_searchbar Integer Yes uris_from_urlbar Integer Yes nav_history_urlbar Integer Yes nav_autocomplete_urlbar Integer Yes nav_visiturl_urlbar Integer Yes nav_searchsuggestion_urlbar Integer Yes nav_topsite_urlbar Integer Yes num_passwords_saved Integer Yes unique_preferences_accessed_count Integer Yes preferences_accessed_total Integer Yes unique_bookmarks_bar_accessed_count Integer Yes bookmarks_bar_accessed_total Integer Yes unique_keyboard_shortcut_count Integer Yes keyboard_shortcut_total Integer Yes pip_count Integer Yes viewed_protection_report_count Integer Yes etp_toggle_off Integer Yes etp_toggle_on Integer Yes protections_popup Integer Yes ccard_filled Integer Yes ccard_saved Integer Yes installed_extension Integer Yes installed_theme Integer Yes installed_l10n Integer Yes used_stored_pw Integer Yes password_filled Integer Yes password_saved Integer Yes pwmgr_opened Integer Yes pwmgr_copy_or_show_info Integer Yes pwmgr_interacted_breach Integer Yes generated_password Integer Yes fxa_connect Integer Yes normandy_enrolled Integer Yes downloads Integer Yes pdf_downloads Integer Yes image_downloads Integer Yes media_downloads Integer Yes msoffice_downloads Integer Yes newtab_click Integer Yes bookmark_added_from_newtab Integer Yes saved_to_pocket_from_newtab Integer Yes newtab_prefs_opened Integer Yes activitystream_reported_3rdparty_abouthome Boolean Yes activitystream_reported_3rdparty_aboutnewtab Boolean Yes activitystream_reported_3rdparty_both Boolean Yes activitystream_topsite_clicks Integer Yes activitystream_highlight_clicks Integer Yes activitystream_pocket_clicks Integer Yes activitystream_reported_newtab_search_off Boolean Yes activitystream_reported_topsites_off Boolean Yes activitystream_reported_pocket_off Boolean Yes activitystream_reported_highlights_off Boolean Yes activitystream_reported_sponsored_topsites_off Boolean Yes activitystream_sessions_abouthome Integer Yes activitystream_sessions_newtab Integer Yes activitystream_sessions_both Integer Yes num_addblockers Integer Yes has_notes_extension Boolean Yes has_facebook_container_extension Boolean Yes has_multiaccount_container_extension Boolean Yes has_private_relay_extension Boolean Yes newtabpage_disabled Boolean Yes num_topsites_new_tab_impressions_sponsored Integer Yes num_new_tab_topsites_clicks_sponsored Integer Yes activitystream_sponsored_pocket_clicks Integer Yes activitystream_sponsored_topsite_clicks Integer Yes activitystream_organic_pocket_clicks Integer Yes activitystream_organic_topsite_clicks Integer Yes activitystream_reported_sponsored_topstories_off Boolean Yes search_count_urlbar_handoff Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived feature_usage_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#fenix_clients_last_seen","title":"fenix_clients_last_seen","text":"Fenix Clients Last Seen
telemetry.fenix_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#fenix_events_v1","title":"fenix_events_v1","text":"Fenix Events V1
telemetry.fenix_events_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod org_mozilla_fenix_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#fennec_ios_events_v1","title":"fennec_ios_events_v1","text":"Fennec Ios Events V1
telemetry.fennec_ios_events_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry mobile_event Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_accounts_exact_mau28_by_dimensions","title":"firefox_accounts_exact_mau28_by_dimensions","text":"Firefox Accounts Exact Mau28 By Dimensions
telemetry.firefox_accounts_exact_mau28_by_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes id_bucket Integer Yes country String Yes seen_in_tier1_country_mau Integer Yes country_code String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_accounts_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_accounts_exact_mau28_by_dimensions_v1","title":"firefox_accounts_exact_mau28_by_dimensions_v1","text":"Firefox Accounts Exact Mau28 By Dimensions V1
telemetry.firefox_accounts_exact_mau28_by_dimensions_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes id_bucket Integer Yes country String Yes seen_in_tier1_country_mau Integer Yes country_code String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_accounts_derived exact_mau28_v1 moz-fx-data-shared-prod static country_names_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_accounts_exact_mau28_v1","title":"firefox_accounts_exact_mau28_v1","text":"Firefox Accounts Exact Mau28 V1
telemetry.firefox_accounts_exact_mau28_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_accounts_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_desktop_exact_mau28","title":"firefox_desktop_exact_mau28","text":"Firefox Desktop Exact Mau28
telemetry.firefox_desktop_exact_mau28
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes tier1_wau Integer Yes tier1_dau Integer Yes visited_5_uri_mau Integer Yes visited_5_uri_wau Integer Yes visited_5_uri_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_desktop_exact_mau28_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_desktop_exact_mau28_by_client_count_dimensions","title":"firefox_desktop_exact_mau28_by_client_count_dimensions","text":"Firefox Desktop Exact Mau28 By Client Count Dimensions
telemetry.firefox_desktop_exact_mau28_by_client_count_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes visited_5_uri_mau Integer Yes visited_5_uri_wau Integer Yes visited_5_uri_dau Integer Yes dev_tools_mau Integer Yes dev_tools_wau Integer Yes dev_tools_dau Integer Yes app_name String Yes app_version String Yes country String Yes locale String Yes normalized_channel String Yes os String Yes os_version String Yes distribution_id String Yes country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived firefox_desktop_exact_mau28_by_client_count_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_desktop_exact_mau28_by_dimensions","title":"firefox_desktop_exact_mau28_by_dimensions","text":"Firefox Desktop Exact Mau28 By Dimensions
telemetry.firefox_desktop_exact_mau28_by_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes visited_5_uri_mau Integer Yes visited_5_uri_wau Integer Yes visited_5_uri_dau Integer Yes id_bucket Integer Yes source String Yes medium String Yes campaign String Yes content String Yes country String Yes country_name String Yes distribution_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_desktop_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_desktop_exact_mau28_by_dimensions_v1","title":"firefox_desktop_exact_mau28_by_dimensions_v1","text":"Firefox Desktop Exact Mau28 By Dimensions V1
telemetry.firefox_desktop_exact_mau28_by_dimensions_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes visited_5_uri_mau Integer Yes visited_5_uri_wau Integer Yes visited_5_uri_dau Integer Yes id_bucket Integer Yes source String Yes medium String Yes campaign String Yes content String Yes country String Yes country_name String Yes distribution_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived firefox_desktop_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_desktop_exact_mau28_v1","title":"firefox_desktop_exact_mau28_v1","text":"Firefox Desktop Exact Mau28 V1
telemetry.firefox_desktop_exact_mau28_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes tier1_wau Integer Yes tier1_dau Integer Yes visited_5_uri_mau Integer Yes visited_5_uri_wau Integer Yes visited_5_uri_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod static firefox_desktop_imputed_mau28_v1 moz-fx-data-shared-prod telemetry_derived firefox_desktop_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_desktop_usage_2021","title":"firefox_desktop_usage_2021","text":"Firefox Desktop Usage 2021
telemetry.firefox_desktop_usage_2021
Stable source for 2021 KPI data on Firefox desktop usage, including cumulative days of use (cdou
) and new profiles, broken out by dimensions. Contains data back to 2017 for year-over-year comparisons.
New profile counts are determined using the first_seen_date
approach where we consider a profile new on the day it first sends a main
ping.
Queries should generally be SUM
of the cdou
, new_profiles
, dau
, wau
, or mau
fields, grouped by any dimensions you want to compare or filtered to only your target population.
Example query to see CDOU and new profiles over time for the Windows population:
SELECT\n submission_date,\n os,\n SUM(cdou) AS cdou,\n SUM(new_profiles) AS new_profiles\nFROM mozdata.telemetry.firefox_desktop_usage_2021\nWHERE os = 'Windows'\nGROUP BY submission_date\nORDER BY submission_date\n
Note that some amount of the upstream data in clients_last_seen
will be deleted over time in response to user-initiated deletion requests, but the aggregates in this view (which are no longer client-level) will remain stable. Expect to see slightly higher results from this table compared to queries on client-level tables. The underlying table was initially created on 2021-02-19.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable cdou Integer Yes cumulative_new_profiles Integer Yes attributed Boolean Yes submission_date Date Yes dau Integer Yes mau Integer Yes wau Integer Yes new_profiles Integer Yes submission_year Integer Yes id_bucket Integer Yes activity_segment String Yes os String Yes channel String Yes source String Yes medium String Yes campaign String Yes content String Yes country String Yes distribution_id String Yes country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived firefox_desktop_usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_day_2_7_activation","title":"firefox_nondesktop_day_2_7_activation","text":"Firefox Nondesktop Day 2 7 Activation
telemetry.firefox_nondesktop_day_2_7_activation
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived firefox_nondesktop_day_2_7_activation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28","title":"firefox_nondesktop_exact_mau28","text":"Firefox Nondesktop Exact Mau28
telemetry.firefox_nondesktop_exact_mau28
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes tier1_wau Integer Yes tier1_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_nondesktop_exact_mau28_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28_by_client_count_dimensions","title":"firefox_nondesktop_exact_mau28_by_client_count_dimensions","text":"Firefox Nondesktop Exact Mau28 By Client Count Dimensions
telemetry.firefox_nondesktop_exact_mau28_by_client_count_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes app_name String Yes app_version String Yes arch String Yes normalized_channel String Yes default_search String Yes distribution_id String Yes country String Yes locale String Yes os String Yes osversion String Yes country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived firefox_nondesktop_exact_mau28_by_client_count_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28_by_dimensions","title":"firefox_nondesktop_exact_mau28_by_dimensions","text":"Firefox Nondesktop Exact Mau28 By Dimensions
telemetry.firefox_nondesktop_exact_mau28_by_dimensions
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes id_bucket Integer Yes product String Yes normalized_channel String Yes campaign String Yes country String Yes distribution_id String Yes new_profiles Integer Yes country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_nondesktop_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28_by_dimensions_v1","title":"firefox_nondesktop_exact_mau28_by_dimensions_v1","text":"Firefox Nondesktop Exact Mau28 By Dimensions V1
telemetry.firefox_nondesktop_exact_mau28_by_dimensions_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes id_bucket Integer Yes product String Yes normalized_channel String Yes campaign String Yes country String Yes distribution_id String Yes new_profiles Integer Yes country_name String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod static country_codes_v1 moz-fx-data-shared-prod telemetry_derived firefox_nondesktop_exact_mau28_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28_by_product","title":"firefox_nondesktop_exact_mau28_by_product","text":"Firefox Nondesktop Exact Mau28 By Product
telemetry.firefox_nondesktop_exact_mau28_by_product
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes product String Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes tier1_wau Integer Yes tier1_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_nondesktop_exact_mau28_by_product_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28_by_product_v1","title":"firefox_nondesktop_exact_mau28_by_product_v1","text":"Firefox Nondesktop Exact Mau28 By Product V1
telemetry.firefox_nondesktop_exact_mau28_by_product_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes product String Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes tier1_wau Integer Yes tier1_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_nondesktop_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#firefox_nondesktop_exact_mau28_v1","title":"firefox_nondesktop_exact_mau28_v1","text":"Firefox Nondesktop Exact Mau28 V1
telemetry.firefox_nondesktop_exact_mau28_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes mau Integer Yes wau Integer Yes dau Integer Yes tier1_mau Integer Yes tier1_wau Integer Yes tier1_dau Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry firefox_nondesktop_exact_mau28_by_dimensions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#first_shutdown","title":"first_shutdown","text":"Historical Pings for telemetry/first-shutdown
telemetry.first_shutdown
A historical view of pings sent for the telemetry/first-shutdown
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable first_shutdown_v5 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#first_shutdown_summary","title":"first_shutdown_summary","text":"First Shutdown Summary
telemetry.first_shutdown_summary
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived first_shutdown_summary_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#first_shutdown_summary_v4","title":"first_shutdown_summary_v4","text":"First Shutdown Summary V4
telemetry.first_shutdown_summary_v4
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived first_shutdown_summary_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#first_shutdown_use_counter","title":"first_shutdown_use_counter","text":"Historical Pings for telemetry/first-shutdown-use-counter
telemetry.first_shutdown_use_counter
A historical view of pings sent for the telemetry/first-shutdown-use-counter
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable first_shutdown_use_counter_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#flash_shield_study","title":"flash_shield_study","text":"Historical Pings for telemetry/flash-shield-study
telemetry.flash_shield_study
A historical view of pings sent for the telemetry/flash-shield-study
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable flash_shield_study_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#focus_event","title":"focus_event","text":"Focus Event
telemetry.focus_event
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable focus_event_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#fog_decision_support_percentiles","title":"fog_decision_support_percentiles","text":"Fog Decision Support Percentiles
telemetry.fog_decision_support_percentiles
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes ping String Yes channel String Yes metric_name String Yes percentiles Integer No mean Float Yes std_dev Float Yes median Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived fog_decision_support_percentiles_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#frecency_update","title":"frecency_update","text":"Historical Pings for telemetry/frecency-update
telemetry.frecency_update
A historical view of pings sent for the telemetry/frecency-update
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable frecency_update_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#ftu","title":"ftu","text":"Historical Pings for telemetry/ftu
telemetry.ftu
A historical view of pings sent for the telemetry/ftu
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable ftu_v3 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#health","title":"health","text":"Health
telemetry.health
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable health_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#heartbeat","title":"heartbeat","text":"Historical Pings for telemetry/heartbeat
telemetry.heartbeat
A historical view of pings sent for the telemetry/heartbeat
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes engagement_type String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes environment Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable heartbeat_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#install","title":"install","text":"Install
telemetry.install
View based on firefox_installer.install table. The attribution column in that table is a URL encoded string. This view extracts the fields in the attribution column into STRUCT< campaign STRING, content STRING, dlsource STRING, dltoken STRING, experiment STRING, medium STRING, source STRING, ua STRING, variation STRING
- Owners:
- gleonard@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod firefox_installer install Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#installation","title":"installation","text":"Historical Pings for telemetry/installation
telemetry.installation
A historical view of pings sent for the telemetry/installation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes adgroup Adjust AdGroup String Yes app_name String Yes arch device architecture String Yes campaign Adjust campaign String Yes channel String Yes client_id telemetry client_id String Yes created String Yes creative Adjust creative String Yes device_id hashed Google Ad ID String Yes document_id The document ID specified in the URI when the client sent this message String Yes locale application locale, such as 'en-US' String Yes manufacturer Build.MANUFACTURER String Yes metadata Record Yes model Build.MODEL String Yes network Adjust network String Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes os String Yes osversion String Yes profile_date Number of days since the epoch that the profile was created Integer Yes reason String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes seq 0-indexed sequence number Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes tz timezone offset in minutes from UTC Integer Yes v Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable installation_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#latest_versions","title":"latest_versions","text":"Latest Versions
telemetry.latest_versions
Please provide a description for the query
Schema Column Description Type Nullable channel String Yes latest_version Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived latest_versions_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#lockwise_mobile_events","title":"lockwise_mobile_events","text":"Lockwise Mobile Events
telemetry.lockwise_mobile_events
Please provide a description for the query
Schema Column Description Type Nullable os String Yes client_id String Yes submission_date_s3 Date Yes submission_timestamp Timestamp Yes device String Yes app_build_id String Yes timestamp Integer Yes category String Yes method String Yes object String Yes value String Yes extra Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry lockwise_mobile_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#lockwise_mobile_events_v1","title":"lockwise_mobile_events_v1","text":"Lockwise Mobile Events V1
telemetry.lockwise_mobile_events_v1
Please provide a description for the query
Schema Column Description Type Nullable os String Yes client_id String Yes submission_date_s3 Date Yes submission_timestamp Timestamp Yes device String Yes app_build_id String Yes timestamp Integer Yes category String Yes method String Yes object String Yes value String Yes extra Record No Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry telemetry_focus_event_parquet_v1 moz-fx-data-shared-prod telemetry telemetry_mobile_event_parquet_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main","title":"main","text":"Historical Pings for telemetry/main
telemetry.main
A historical view of pings sent for the telemetry/main
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable main_v5 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_1pct","title":"main_1pct","text":"Main 1 percent
telemetry.main_1pct
A materialized 1 percent sample of main pings without use counters intended as a performance optimization for exploratory queries. It contains only the most recent six months of data.
Queries on this table are logically equivalent to queries on top of main_v5
with a filter on sample_id = 0
, but this table has a few advantages. First, query estimates will be much more accurate; estimates of bytes scanned can't take into account clustering, so we sometimes see valid queries get rejected by Redash due to appearing expensive when they really aren't. Second, simple queries should complete much more quickly on this table compared to main_v5
; for simple queries on a very wide table like this, the execution time appears to be dominated by BQ simply scanning metadata for all the blocks it might need to touch. Because this table contains only 1% of main ping data, it is likely to have many fewer blocks to scan through.
An extra-experimental feature here is the addition of subsample_id, an additional clustering field that allows for queries to efficiently filter down to a 0.01% sample. Like sample_id, it ranges from 0 to 99.
Clustering fields: normalized_channel
, sample_id
, subsample_id
See also: main_nightly
- Owners:
- ascholtz@mozilla.com
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry main_remainder_1pct Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_nightly","title":"main_nightly","text":"Main Nightly
telemetry.main_nightly
A materialized subset of main pings intended as a performance optimization for exploratory queries. It contains only the most recent six months of data for the nightly channel of Firefox.
Queries on this table are logically equivalent to queries on top of main_v5
with a filter on normalized_channel = 'nightly'
, but this table has a few advantages. First, query estimates will be much more accurate; estimates of bytes scanned can't take into account clustering, so we sometimes see valid queries get rejected by Redash due to appearing expensive when they really aren't. Second, simple queries should complete much more quickly on this table compared to main_v5
; for simple queries on a very wide table like this, the execution time appears to be dominated by BQ simply scanning metadata for all the blocks it might need to touch. Because this table contains only a fraction of main ping data, it is likely to have many fewer blocks to scan through.
Clustering fields: normalized_channel
, sample_id
See also: main_nightly
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable additional_properties String Yes application Record Yes client_id String Yes creation_date String Yes document_id String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes payload Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived main_nightly_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_remainder_1pct","title":"main_remainder_1pct","text":"Main Remainder 1 percent
telemetry.main_remainder_1pct
A materialized 1 percent sample of main pings without use counter data intended as a performance optimization for exploratory queries. It contains only the most recent six months of data.
Queries on this table are logically equivalent to queries on top of main_v5
with a filter on sample_id = 0
, but this table has a few advantages. First, query estimates will be much more accurate; estimates of bytes scanned can't take into account clustering, so we sometimes see valid queries get rejected by Redash due to appearing expensive when they really aren't. Second, simple queries should complete much more quickly on this table compared to main_v5
; for simple queries on a very wide table like this, the execution time appears to be dominated by BQ simply scanning metadata for all the blocks it might need to touch. Because this table contains only 1% of main ping data, it is likely to have many fewer blocks to scan through.
An extra-experimental feature here is the addition of subsample_id, an additional clustering field that allows for queries to efficiently filter down to a 0.01% sample. Like sample_id, it ranges from 0 to 99.
Clustering fields: normalized_channel
, sample_id
, subsample_id
See also: main_nightly
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable subsample_id Integer Yes additional_properties String Yes application Record Yes client_id String Yes creation_date String Yes document_id String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes payload Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived main_remainder_1pct_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_summary","title":"main_summary","text":"Main Summary
telemetry.main_summary
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry main_summary_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_summary_v3","title":"main_summary_v3","text":"Main Summary V3
telemetry.main_summary_v3
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived main_summary_v3 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_summary_v4","title":"main_summary_v4","text":"Main Summary V4
telemetry.main_summary_v4
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived main_summary_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_use_counter","title":"main_use_counter","text":"Historical Pings for telemetry/main-use-counter
telemetry.main_use_counter
A historical view of pings sent for the telemetry/main-use-counter
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable main_use_counter_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#main_use_counter_1pct","title":"main_use_counter_1pct","text":"Main Use Counter 1 percent
telemetry.main_use_counter_1pct
A materialized 1 percent sample of main pings use counter data intended as a performance optimization for exploratory queries. It contains only the most recent six months of data.
Queries on this table are logically equivalent to queries on top of main_use_counter_v4
with a filter on sample_id = 0
, but this table has a few advantages. First, query estimates will be much more accurate; estimates of bytes scanned can't take into account clustering, so we sometimes see valid queries get rejected by Redash due to appearing expensive when they really aren't. Second, simple queries should complete much more quickly on this table compared to main_use_counter_v4
; for simple queries on a very wide table like this, the execution time appears to be dominated by BQ simply scanning metadata for all the blocks it might need to touch. Because this table contains only 1% of main ping data, it is likely to have many fewer blocks to scan through.
An extra-experimental feature here is the addition of subsample_id, an additional clustering field that allows for queries to efficiently filter down to a 0.01% sample. Like sample_id, it ranges from 0 to 99.
Clustering fields: normalized_channel
, sample_id
, subsample_id
See also: main_nightly
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable subsample_id Integer Yes additional_properties String Yes client_id String Yes document_id String Yes metadata Record Yes normalized_app_name String Yes normalized_channel String Yes normalized_country_code String Yes normalized_os String Yes normalized_os_version String Yes payload Record Yes sample_id Integer Yes submission_timestamp Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived main_use_counter_1pct_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#malware_addon_states","title":"malware_addon_states","text":"Historical Pings for telemetry/malware-addon-states
telemetry.malware_addon_states
A historical view of pings sent for the telemetry/malware-addon-states
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable malware_addon_states_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#mobile_event","title":"mobile_event","text":"Mobile Event
telemetry.mobile_event
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable mobile_event_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#mobile_metrics","title":"mobile_metrics","text":"Historical Pings for telemetry/mobile-metrics
telemetry.mobile_metrics
A historical view of pings sent for the telemetry/mobile-metrics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes arch String Yes client_id String Yes created_date String Yes created_timestamp Integer Yes device String Yes document_id The document ID specified in the URI when the client sent this message String Yes experiments Record No locale String Yes metadata Record Yes metrics Record No normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes os String Yes osversion String Yes profile_date Integer Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes seq Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes tz Integer Yes v Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable mobile_metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#mobile_usage_2021","title":"mobile_usage_2021","text":"Mobile Usage 2021
telemetry.mobile_usage_2021
Stable source for 2021 KPI data on mobile usage, including cumulative days of use (cdou
) broken out by dimensions. Contains data back to 2017 for year-over-year comparisons.
Queries should generally be SUM
of the cdou
, dau
, wau
, or mau
fields, grouped by any dimensions you want to compare or filtered to only your target population.
Example query to see CDOU over time for Firefox for iOS:
SELECT\n submission_date,\n SUM(cdou) AS cdou\nFROM mozdata.telemetry.mobile_usage_2021\nWHERE app_name = 'firefox_ios'\nGROUP BY submission_date\nORDER BY submission_date\n
Note that some amount of the upstream data in nondesktop_clients_last_seen
will be deleted over time in response to user-initiated deletion requests, but the aggregates in this view (which are no longer client-level) will remain stable. Expect to see slightly higher results from this table compared to queries on client-level tables.
- Owners:
- jklukas@mozilla.com
Schema Column Description Type Nullable submission_date Date Yes cdou Integer Yes wau Integer Yes mau Integer Yes dau Integer Yes id_bucket Integer Yes app_name String Yes canonical_app_name String Yes channel String Yes os String Yes campaign String Yes country String Yes country_name String Yes distribution_id String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod static country_codes_v1 moz-fx-data-shared-prod telemetry_derived mobile_usage_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#modules","title":"modules","text":"Historical Pings for telemetry/modules
telemetry.modules
A historical view of pings sent for the telemetry/modules
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable modules_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#new_profile","title":"new_profile","text":"Historical Pings for telemetry/new-profile
telemetry.new_profile
A historical view of pings sent for the telemetry/new-profile
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable new_profile_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#newtab_interactions","title":"newtab_interactions","text":"Newtab Interactions
telemetry.newtab_interactions
Please provide a description for the query
Schema Column Description Type Nullable newtab_visit_id String Yes client_id String Yes submission_date Date Yes search_access_point String Yes experiments Record No default_private_search_engine String Yes default_search_engine String Yes os String Yes os_version String Yes country_code String Yes channel String Yes browser_version String Yes browser_name String Yes newtab_open_source String Yes newtab_visit_started_at Integer Yes newtab_visit_ended_at Integer Yes topsite_clicks Integer Yes sponsored_topsite_clicks Integer Yes topsite_impressions Integer Yes sponsored_topsite_impressions Integer Yes searches Integer Yes tagged_search_ad_clicks Integer Yes tagged_search_ad_impressions Integer Yes follow_on_search_ad_clicks Integer Yes follow_on_search_ad_impressions Integer Yes tagged_follow_on_search_ad_clicks Integer Yes tagged_follow_on_search_ad_impressions Integer Yes pocket_story_position Integer Yes pocket_enabled Boolean Yes pocket_impressions Integer Yes sponsored_pocket_impressions Integer Yes organic_pocket_impressions Integer Yes pocket_clicks Integer Yes sponsored_pocket_clicks Integer Yes organic_pocket_clicks Integer Yes pocket_saves Integer Yes sponsored_pocket_saves Integer Yes organic_pocket_saves Integer Yes pocket_is_signed_in Boolean Yes pocket_sponsored_stories_enabled Boolean Yes topsites_enabled Boolean Yes newtab_homepage_category String Yes newtab_newtab_category String Yes newtab_search_enabled Boolean Yes legacy_telemetry_client_id String Yes is_new_profile Boolean Yes activity_segment String Yes topsites_rows Integer Yes organic_topsite_clicks Integer Yes organic_topsite_impressions Integer Yes search_engine String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived newtab_interactions_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#newtab_visits","title":"newtab_visits","text":"Newtab Visits
telemetry.newtab_visits
Visits on the newtab page, one row per visit per-day (identified by the visit id).
- Owners:
- anicholson@mozilla.com
Schema Column Description Type Nullable legacy_telemetry_client_id String Yes newtab_visit_id String Yes submission_date Date Yes client_id String Yes normalized_os String Yes normalized_os_version String Yes country_code String Yes channel String Yes browser_version String Yes browser_name String Yes default_search_engine String Yes default_private_search_engine String Yes pocket_is_signed_in Boolean Yes pocket_enabled Boolean Yes pocket_sponsored_stories_enabled Boolean Yes topsites_enabled Boolean Yes newtab_homepage_category String Yes newtab_newtab_category String Yes newtab_search_enabled Boolean Yes topsites_rows Integer Yes newtab_blocked_sponsors String No experiments Record No newtab_visit_started_at Integer Yes newtab_visit_ended_at Integer Yes newtab_open_source String Yes had_non_impression_engagement Boolean Yes search_interactions Record No topsite_tile_interactions Record No pocket_interactions Record No is_new_profile Boolean Yes activity_segment String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived newtab_visits_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#nondesktop_clients_last_seen","title":"nondesktop_clients_last_seen","text":"Nondesktop Clients Last Seen
telemetry.nondesktop_clients_last_seen
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry nondesktop_clients_last_seen_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#nondesktop_clients_last_seen_v1","title":"nondesktop_clients_last_seen_v1","text":"Nondesktop Clients Last Seen V1
telemetry.nondesktop_clients_last_seen_v1
Please provide a description for the query
Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#normandy_login_study","title":"normandy_login_study","text":"Historical Pings for telemetry/normandy-login-study
telemetry.normandy_login_study
A historical view of pings sent for the telemetry/normandy-login-study
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable normandy_login_study_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#optout","title":"optout","text":"Historical Pings for telemetry/optout
telemetry.optout
A historical view of pings sent for the telemetry/optout
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable optout_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#outofdate_notifications_system_addon","title":"outofdate_notifications_system_addon","text":"Historical Pings for telemetry/outofdate-notifications-system-addon
telemetry.outofdate_notifications_system_addon
A historical view of pings sent for the telemetry/outofdate-notifications-system-addon
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable outofdate_notifications_system_addon_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#pioneer_study","title":"pioneer_study","text":"Historical Pings for telemetry/pioneer-study
telemetry.pioneer_study
A historical view of pings sent for the telemetry/pioneer-study
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload pioneer-study - Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type doc_type, restated String Yes version Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable pioneer_study_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#pre_account","title":"pre_account","text":"Historical Pings for telemetry/pre-account
telemetry.pre_account
A historical view of pings sent for the telemetry/pre-account
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable pre_account_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#prio","title":"prio","text":"Historical Pings for telemetry/prio
telemetry.prio
A historical view of pings sent for the telemetry/prio
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable prio_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#regrets_reporter_update","title":"regrets_reporter_update","text":"Historical Pings for telemetry/regrets-reporter-update
telemetry.regrets_reporter_update
A historical view of pings sent for the telemetry/regrets-reporter-update
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable regrets_reporter_update_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#releases","title":"releases","text":"Releases
telemetry.releases
Firefox release information imported from https://product-details.mozilla.org/1.0/firefox.json
For more context, see https://wiki.mozilla.org/Release_Management/Product_details
- Owners:
- ascholtz@mozilla.com
Schema Column Description Type Nullable build_number Integer Yes category String Yes date Date Yes description String Yes is_security_driven Boolean Yes product String Yes version String Yes major_version Numeric Yes minor_version Numeric Yes patch_version Numeric Yes beta_version Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived releases_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#releases_latest","title":"releases_latest","text":"Releases Latest
telemetry.releases_latest
This is built on top of telemetry.releases and aims to provide an entry on each day for on each day for the major release channels (\"release\", \"beta\", \"esr\") along with the latest Firefox version released on that day or earlier for those channels.
Firefox release information imported from https://product-details.mozilla.org/1.0/firefox.json
For more context, see https://wiki.mozilla.org/Release_Management/Product_details
Schema Column Description Type Nullable date Date Yes product String Yes category String Yes channel String Yes build_number Integer Yes release_date Date Yes version String Yes major_version Numeric Yes minor_version Numeric Yes patch_version Numeric Yes beta_version Numeric Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry releases Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#rocket_android_events_v1","title":"rocket_android_events_v1","text":"Rocket Android Events V1
telemetry.rocket_android_events_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry focus_event Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#rolling_cohorts","title":"rolling_cohorts","text":"Rolling Cohorts
telemetry.rolling_cohorts
Please provide a description for the query
Schema Column Description Type Nullable client_id String Yes cohort_date Date Yes activity_segment String Yes app_version String Yes attribution_campaign String Yes attribution_content String Yes attribution_experiment String Yes attribution_medium String Yes attribution_source String Yes attribution_variation String Yes city String Yes country String Yes device_model String Yes distribution_id String Yes is_default_browser Boolean Yes locale String Yes normalized_app_name String Yes normalized_channel String Yes normalized_os String Yes normalized_os_version String Yes os_version_major Integer Yes os_version_minor Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived rolling_cohorts_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#saved_session","title":"saved_session","text":"Historical Pings for telemetry/saved-session
telemetry.saved_session
A historical view of pings sent for the telemetry/saved-session
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable saved_session_v5 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#saved_session_use_counter","title":"saved_session_use_counter","text":"Historical Pings for telemetry/saved-session-use-counter
telemetry.saved_session_use_counter
A historical view of pings sent for the telemetry/saved-session-use-counter
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_id String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable saved_session_use_counter_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#searchvol","title":"searchvol","text":"Historical Pings for telemetry/searchvol
telemetry.searchvol
A historical view of pings sent for the telemetry/searchvol
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable searchvol_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#searchvolextra","title":"searchvolextra","text":"Historical Pings for telemetry/searchvolextra
telemetry.searchvolextra
A historical view of pings sent for the telemetry/searchvolextra
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable searchvolextra_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#shield_icq_v1","title":"shield_icq_v1","text":"Historical Pings for telemetry/shield-icq-v1
telemetry.shield_icq_v1
A historical view of pings sent for the telemetry/shield-icq-v1
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable shield_icq_v1_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#shield_study","title":"shield_study","text":"Historical Pings for telemetry/shield-study
telemetry.shield_study
A historical view of pings sent for the telemetry/shield-study
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable shield_study_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#shield_study_addon","title":"shield_study_addon","text":"Historical Pings for telemetry/shield-study-addon
telemetry.shield_study_addon
A historical view of pings sent for the telemetry/shield-study-addon
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable shield_study_addon_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#shield_study_error","title":"shield_study_error","text":"Historical Pings for telemetry/shield-study-error
telemetry.shield_study_error
A historical view of pings sent for the telemetry/shield-study-error
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable shield_study_error_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#simpleprophet_forecasts","title":"simpleprophet_forecasts","text":"Simpleprophet Forecasts
telemetry.simpleprophet_forecasts
Please provide a description for the query
Schema Column Description Type Nullable asofdate Date Yes datasource String Yes date Date Yes type String Yes value Float Yes low90 Float Yes high90 Float Yes p10 Float Yes p20 Float Yes p30 Float Yes p40 Float Yes p50 Float Yes p60 Float Yes p70 Float Yes p80 Float Yes p90 Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived simpleprophet_forecasts_desktop_v1 moz-fx-data-shared-prod telemetry_derived simpleprophet_forecasts_fxa_v1 moz-fx-data-shared-prod telemetry_derived simpleprophet_forecasts_mobile_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#smoot_usage_day_0","title":"smoot_usage_day_0","text":"Smoot Usage Day 0
telemetry.smoot_usage_day_0
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes usage String Yes dau Integer Yes wau Integer Yes mau Integer Yes active_days_in_week Integer Yes id_bucket Integer Yes app_name String Yes app_version String Yes country String Yes locale String Yes os String Yes os_version String Yes channel String Yes attributed Boolean Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#smoot_usage_day_13","title":"smoot_usage_day_13","text":"Smoot Usage Day 13
telemetry.smoot_usage_day_13
Please provide a description for the query
Schema Column Description Type Nullable date Date Yes usage String Yes new_profiles Integer Yes active_in_week_0 Integer Yes active_in_week_1 Integer Yes active_in_weeks_0_and_1 Integer Yes new_profile_active_in_week_0 Integer Yes new_profile_active_in_week_1 Integer Yes new_profile_active_in_weeks_0_and_1 Integer Yes id_bucket Integer Yes app_name String Yes app_version String Yes country String Yes locale String Yes os String Yes os_version String Yes channel String Yes attributed Boolean Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#socorro_crash","title":"socorro_crash","text":"Socorro Crash
telemetry.socorro_crash
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry socorro_crash_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#socorro_crash_v2","title":"socorro_crash_v2","text":"Socorro Crash V2
telemetry.socorro_crash_v2
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived socorro_crash_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#sponsored_tiles_ad_request_fill","title":"sponsored_tiles_ad_request_fill","text":"Sponsored Tiles Ad Request Fill
telemetry.sponsored_tiles_ad_request_fill
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes country String Yes device String Yes form_factor String Yes normalized_os String Yes adm_request_sum Integer Yes adm_empty_response_sum Integer Yes adm_response_tiles_min Integer Yes adm_response_rate Float Yes Referenced Tables Project Dataset Table 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 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#sponsored_tiles_clients_daily","title":"sponsored_tiles_clients_daily","text":"Sponsored Tiles Clients Daily
telemetry.sponsored_tiles_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes device String Yes client_id String Yes browser_version_info Record Yes country String Yes locale String Yes normalized_channel String Yes normalized_os String Yes is_new_profile Boolean Yes sample_id Integer Yes experiments Record No sponsored_tiles_click_count Integer Yes sponsored_tiles_impression_count Integer Yes sponsored_tiles_dismissal_count Integer Yes sponsored_tiles_disable_count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived sponsored_tiles_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#ssl_ratios","title":"ssl_ratios","text":"Ssl Ratios
telemetry.ssl_ratios
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes os String Yes country String Yes reporting_ratio Float Yes normalized_pageloads Float Yes ratio Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry ssl_ratios_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#ssl_ratios_v1","title":"ssl_ratios_v1","text":"Ssl Ratios V1
telemetry.ssl_ratios_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes os String Yes country String Yes reporting_ratio Float Yes normalized_pageloads Float Yes ratio Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived ssl_ratios_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#suggest_clients_daily","title":"suggest_clients_daily","text":"Suggest Clients Daily
telemetry.suggest_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes block_nonsponsored_count Integer Yes block_sponsored_count Integer Yes block_nonsponsored_bestmatch_count Integer Yes block_sponsored_bestmatch_count Integer Yes click_nonsponsored_count Integer Yes click_sponsored_count Integer Yes click_nonsponsored_bestmatch_count Integer Yes click_sponsored_bestmatch_count Integer Yes help_nonsponsored_count Integer Yes help_sponsored_count Integer Yes help_nonsponsored_bestmatch_count Integer Yes help_sponsored_bestmatch_count Integer Yes impression_nonsponsored_count Integer Yes impression_sponsored_count Integer Yes impression_nonsponsored_bestmatch_count Integer Yes impression_sponsored_bestmatch_count Integer Yes user_pref_data_collection_enabled Boolean Yes user_pref_sponsored_suggestions_enabled Boolean Yes user_pref_firefox_suggest_enabled Boolean Yes browser_version_info Record Yes experiments Record No locale String Yes normalized_channel String Yes normalized_os_version String Yes sample_id Integer Yes country String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived suggest_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#sync","title":"sync","text":"Sync
telemetry.sync
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable sync_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#system_addon_deployment_diagnostics","title":"system_addon_deployment_diagnostics","text":"Historical Pings for telemetry/system-addon-deployment-diagnostics
telemetry.system_addon_deployment_diagnostics
A historical view of pings sent for the telemetry/system-addon-deployment-diagnostics
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable system_addon_deployment_diagnostics_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_anonymous_parquet","title":"telemetry_anonymous_parquet","text":"Telemetry Anonymous Parquet
telemetry.telemetry_anonymous_parquet
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes metadata Record Yes application Record Yes creation_date String Yes id String Yes payload Record Yes type String Yes version Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_anonymous_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_anonymous_parquet_v1","title":"telemetry_anonymous_parquet_v1","text":"Telemetry Anonymous Parquet V1
telemetry.telemetry_anonymous_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry anonymous Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_core_parquet","title":"telemetry_core_parquet","text":"Telemetry Core Parquet
telemetry.telemetry_core_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry telemetry_core_parquet_v3 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_core_parquet_v3","title":"telemetry_core_parquet_v3","text":"Telemetry Core Parquet V3
telemetry.telemetry_core_parquet_v3
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry core Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_downgrade_parquet","title":"telemetry_downgrade_parquet","text":"Telemetry Downgrade Parquet
telemetry.telemetry_downgrade_parquet
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes id String Yes creation_date String Yes application Record Yes client_id String Yes version Float Yes payload Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_downgrade_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_downgrade_parquet_v1","title":"telemetry_downgrade_parquet_v1","text":"Telemetry Downgrade Parquet V1
telemetry.telemetry_downgrade_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry downgrade Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_focus_event_parquet","title":"telemetry_focus_event_parquet","text":"Telemetry Focus Event Parquet
telemetry.telemetry_focus_event_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry telemetry_focus_event_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_focus_event_parquet_v1","title":"telemetry_focus_event_parquet_v1","text":"Telemetry Focus Event Parquet V1
telemetry.telemetry_focus_event_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry focus_event Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_heartbeat_parquet","title":"telemetry_heartbeat_parquet","text":"Telemetry Heartbeat Parquet
telemetry.telemetry_heartbeat_parquet
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes type String Yes id String Yes creation_date String Yes version Float Yes client_id String Yes application Record Yes payload Record Yes metadata Record Yes engagement_type String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_heartbeat_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_heartbeat_parquet_v1","title":"telemetry_heartbeat_parquet_v1","text":"Telemetry Heartbeat Parquet V1
telemetry.telemetry_heartbeat_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry heartbeat Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_ip_privacy","title":"telemetry_ip_privacy","text":"Telemetry Ip Privacy
telemetry.telemetry_ip_privacy
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_ip_privacy_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_ip_privacy_parquet","title":"telemetry_ip_privacy_parquet","text":"Telemetry Ip Privacy Parquet
telemetry.telemetry_ip_privacy_parquet
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes timestamp Integer Yes fields Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_ip_privacy_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_ip_privacy_parquet_v1","title":"telemetry_ip_privacy_parquet_v1","text":"Telemetry Ip Privacy Parquet V1
telemetry.telemetry_ip_privacy_parquet_v1
Please provide a description for the query
Schema Column Description Type Nullable submission_date_s3 Date Yes submission_date Date Yes timestamp Integer Yes fields Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_ip_privacy_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_mobile_event_parquet","title":"telemetry_mobile_event_parquet","text":"Telemetry Mobile Event Parquet
telemetry.telemetry_mobile_event_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry telemetry_mobile_event_parquet_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_mobile_event_parquet_v2","title":"telemetry_mobile_event_parquet_v2","text":"Telemetry Mobile Event Parquet V2
telemetry.telemetry_mobile_event_parquet_v2
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry mobile_event Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_new_profile_parquet","title":"telemetry_new_profile_parquet","text":"Telemetry New Profile Parquet
telemetry.telemetry_new_profile_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry telemetry_new_profile_parquet_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_new_profile_parquet_v2","title":"telemetry_new_profile_parquet_v2","text":"Telemetry New Profile Parquet V2
telemetry.telemetry_new_profile_parquet_v2
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_new_profile_parquet_v2 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_shield_study_parquet","title":"telemetry_shield_study_parquet","text":"Telemetry Shield Study Parquet
telemetry.telemetry_shield_study_parquet
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry telemetry_shield_study_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#telemetry_shield_study_parquet_v1","title":"telemetry_shield_study_parquet_v1","text":"Telemetry Shield Study Parquet V1
telemetry.telemetry_shield_study_parquet_v1
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived telemetry_shield_study_parquet_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#testpilot","title":"testpilot","text":"Historical Pings for telemetry/testpilot
telemetry.testpilot
A historical view of pings sent for the telemetry/testpilot
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable testpilot_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#testpilottest","title":"testpilottest","text":"Historical Pings for telemetry/testpilottest
telemetry.testpilottest
A historical view of pings sent for the telemetry/testpilottest
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable testpilottest_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#third_party_modules","title":"third_party_modules","text":"Historical Pings for telemetry/third-party-modules
telemetry.third_party_modules
A historical view of pings sent for the telemetry/third-party-modules
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable third_party_modules_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls13_middlebox_alt_server_hello_1","title":"tls13_middlebox_alt_server_hello_1","text":"Historical Pings for telemetry/tls13-middlebox-alt-server-hello-1
telemetry.tls13_middlebox_alt_server_hello_1
A historical view of pings sent for the telemetry/tls13-middlebox-alt-server-hello-1
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls13_middlebox_alt_server_hello_1_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls13_middlebox_beta","title":"tls13_middlebox_beta","text":"Historical Pings for telemetry/tls13-middlebox-beta
telemetry.tls13_middlebox_beta
A historical view of pings sent for the telemetry/tls13-middlebox-beta
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls13_middlebox_beta_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls13_middlebox_draft22","title":"tls13_middlebox_draft22","text":"Historical Pings for telemetry/tls13-middlebox-draft22
telemetry.tls13_middlebox_draft22
A historical view of pings sent for the telemetry/tls13-middlebox-draft22
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls13_middlebox_draft22_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls13_middlebox_ghack","title":"tls13_middlebox_ghack","text":"Historical Pings for telemetry/tls13-middlebox-ghack
telemetry.tls13_middlebox_ghack
A historical view of pings sent for the telemetry/tls13-middlebox-ghack
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls13_middlebox_ghack_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls13_middlebox_repetition","title":"tls13_middlebox_repetition","text":"Historical Pings for telemetry/tls13-middlebox-repetition
telemetry.tls13_middlebox_repetition
A historical view of pings sent for the telemetry/tls13-middlebox-repetition
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls13_middlebox_repetition_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls13_middlebox_testing","title":"tls13_middlebox_testing","text":"Historical Pings for telemetry/tls13-middlebox-testing
telemetry.tls13_middlebox_testing
A historical view of pings sent for the telemetry/tls13-middlebox-testing
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls13_middlebox_testing_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls_13_study","title":"tls_13_study","text":"Historical Pings for telemetry/tls-13-study
telemetry.tls_13_study
A historical view of pings sent for the telemetry/tls-13-study
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls_13_study_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls_13_study_v1","title":"tls_13_study_v1","text":"Historical Pings for telemetry/tls-13-study-v1
telemetry.tls_13_study_v1
A historical view of pings sent for the telemetry/tls-13-study-v1
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls_13_study_v1_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls_13_study_v2","title":"tls_13_study_v2","text":"Historical Pings for telemetry/tls-13-study-v2
telemetry.tls_13_study_v2
A historical view of pings sent for the telemetry/tls-13-study-v2
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls_13_study_v2_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls_13_study_v3","title":"tls_13_study_v3","text":"Historical Pings for telemetry/tls-13-study-v3
telemetry.tls_13_study_v3
A historical view of pings sent for the telemetry/tls-13-study-v3
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls_13_study_v3_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#tls_13_study_v4","title":"tls_13_study_v4","text":"Historical Pings for telemetry/tls-13-study-v4
telemetry.tls_13_study_v4
A historical view of pings sent for the telemetry/tls-13-study-v4
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable tls_13_study_v4_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#uitour_tag","title":"uitour_tag","text":"Historical Pings for telemetry/uitour-tag
telemetry.uitour_tag
A historical view of pings sent for the telemetry/uitour-tag
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable uitour_tag_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#unified_metrics","title":"unified_metrics","text":"Unified Metrics
telemetry.unified_metrics
Unified view on common browser metrics across all products.
Note. From Q4/2022 the app name includes the suffix Glean
to differentiate data collected via Glean from the data collected in Legacy Telemetry, until the migration to use only Glean is complete. For this reason is important to query this table always using the view.
Proposal: https://docs.google.com/document/d/1s_9pmDXKjfFpvW31jqnWyaWOE9tmO9_88Jt7inGVGys
- Owners:
- loines@mozilla.com
Schema Column Description Type Nullable client_id String Yes sample_id Integer Yes activity_segment String Yes normalized_channel String Yes country String Yes days_seen_bits Integer Yes days_since_first_seen Integer Yes device_model String Yes is_new_profile Boolean Yes locale String Yes first_seen_date Date Yes normalized_os String Yes durations Numeric Yes submission_date Date Yes uri_count Integer Yes is_default_browser Boolean Yes ad_click Integer Yes organic_search_count Integer Yes search_count Integer Yes search_with_ads Integer Yes active_hours_sum Float Yes normalized_os_version String Yes app_version String Yes city String Yes os_version_major Integer Yes os_version_minor Integer Yes os_version_patch Integer Yes distribution_id String Yes attribution_content String Yes attribution_source String Yes attribution_medium String Yes attribution_campaign String Yes attribution_experiment String Yes attribution_variation String Yes days_since_seen Integer Yes days_created_profile_bits Integer Yes isp String Yes normalized_app_name String Yes browser_version_info Record Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived unified_metrics_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#uninstall","title":"uninstall","text":"Historical Pings for telemetry/uninstall
telemetry.uninstall
A historical view of pings sent for the telemetry/uninstall
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes version Float Yes type String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable uninstall_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#untrusted_modules","title":"untrusted_modules","text":"Historical Pings for telemetry/untrusted-modules
telemetry.untrusted_modules
A historical view of pings sent for the telemetry/untrusted-modules
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable untrusted_modules_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#update","title":"update","text":"Historical Pings for telemetry/update
telemetry.update
A historical view of pings sent for the telemetry/update
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable update_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#urlbar_clients_daily","title":"urlbar_clients_daily","text":"Urlbar Clients Daily
telemetry.urlbar_clients_daily
Please provide a description for the query
Schema Column Description Type Nullable submission_date Date Yes client_id String Yes default_search_engine String Yes app_version String Yes normalized_channel String Yes locale String Yes search_region String Yes suggest_enabled Boolean Yes in_navbar Boolean Yes suggest_searches Boolean Yes show_search_suggestions_first Boolean Yes suggest_quicksuggest Boolean Yes suggest_quicksuggest_sponsored Boolean Yes quicksuggest_onboarding_dialog_choice String Yes count_picked_total Integer Yes count_picked_by_type Record No count_picked_by_position Record No urlbar_picked_by_type_by_position Record No suggest_quicksuggest_nonsponsored Boolean Yes quicksuggest_data_collection_enabled String Yes experiments Record No country String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_derived urlbar_clients_daily_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#voice","title":"voice","text":"Historical Pings for telemetry/voice
telemetry.voice
A historical view of pings sent for the telemetry/voice
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes application Record Yes client_id String Yes creation_date String Yes document_id The document ID specified in the URI when the client sent this message String Yes environment Record Yes id String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable voice_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#voice_feedback","title":"voice_feedback","text":"Historical Pings for telemetry/voice-feedback
telemetry.voice_feedback
A historical view of pings sent for the telemetry/voice-feedback
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes payload Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes type String Yes version Float Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable voice_feedback_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#windows_10_aggregate","title":"windows_10_aggregate","text":"Windows 10 Aggregate
telemetry.windows_10_aggregate
Please provide a description for the query
Schema Column Description Type Nullable name String Yes version String Yes build_number Integer Yes ubr String Yes build_group String Yes ff_build_version String Yes normalized_channel String Yes count Integer Yes total_obs Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry clients_daily Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#windows_10_build_distribution","title":"windows_10_build_distribution","text":"Windows 10 Build Distribution
telemetry.windows_10_build_distribution
Please provide a description for the query
Schema Column Description Type Nullable normalized_channel String Yes build_group String Yes frequency Float Yes count Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry windows_10_aggregate Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#windows_10_patch_adoption","title":"windows_10_patch_adoption","text":"Windows 10 Patch Adoption
telemetry.windows_10_patch_adoption
Please provide a description for the query
Schema Column Description Type Nullable numeric_windows_ubr Integer Yes build_number Integer Yes label String Yes frequency Integer Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry windows_10_aggregate Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#x_contextual_feature_recommendation","title":"x_contextual_feature_recommendation","text":"Historical Pings for telemetry/x-contextual-feature-recommendation
telemetry.x_contextual_feature_recommendation
A historical view of pings sent for the telemetry/x-contextual-feature-recommendation
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable x_contextual_feature_recommendation_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/telemetry/#xfocsp_error_report","title":"xfocsp_error_report","text":"Historical Pings for telemetry/xfocsp-error-report
telemetry.xfocsp_error_report
A historical view of pings sent for the telemetry/xfocsp-error-report
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Referenced Tables Project Dataset Table moz-fx-data-shared-prod telemetry_stable xfocsp_error_report_v4 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/treeherder/","title":"treeherder","text":"User-facing views related to document namespace treeherder; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/treeherder
Source Directory
"},{"location":"mozdata/treeherder/#classified","title":"classified","text":"Historical Pings for treeherder/classified
treeherder.classified
A historical view of pings sent for the treeherder/classified
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod treeherder_stable classified_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/treeherder/#deletion_request","title":"deletion_request","text":"Historical Pings for treeherder/deletion-request
treeherder.deletion_request
A historical view of pings sent for the treeherder/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod treeherder_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/treeherder/#events","title":"events","text":"Historical Pings for treeherder/events
treeherder.events
A historical view of pings sent for the treeherder/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod treeherder_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/treeherder/#events_unnested","title":"events_unnested","text":"Events Unnested
treeherder.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod treeherder events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/udf/","title":"User-Defined Functions","text":"Persistent user-defined functions
Source Directory
"},{"location":"mozdata/udf/#active_n_weeks_ago","title":"active_n_weeks_ago","text":"Active N Weeks Ago
udf.active_n_weeks_ago
Source Directory | Metadata File
"},{"location":"mozdata/udf/#active_values_from_days_seen_map","title":"active_values_from_days_seen_map","text":"Active Values From Days Seen Map
udf.active_values_from_days_seen_map
Given a map of representing activity for STRING key
s, this function returns an array of which key
s were active for the time period in question. start_offset should be at most 0. n_bits should be at most the remaining bits.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#add_monthly_engine_searches","title":"add_monthly_engine_searches","text":"Add Monthly Engine Searches
udf.add_monthly_engine_searches
This function specifically windows searches into calendar-month windows. This means groups are not necessarily directly comparable, since different months have different numbers of days. On the first of each month, a new month is appended, and the first month is dropped. If the date is not the first of the month, the new entry is added to the last element in the array. For example, if we were adding 12 to [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]: On the first of the month, the result would be [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 12] On any other day of the month, the result would be [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 24] This happens for every aggregate (searches, ad clicks, etc.)
Source Directory | Metadata File
"},{"location":"mozdata/udf/#add_monthly_searches","title":"add_monthly_searches","text":"Add Monthly Searches
udf.add_monthly_searches
Adds together two engine searches structs. Each engine searches struct has a MAP[engine -> search_counts_struct]. We want to add add together the prev and curr's values for a certain engine. This allows us to be flexible with the number of engines we're using.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#add_searches_by_index","title":"add_searches_by_index","text":"Add Searches By Index
udf.add_searches_by_index
Return sums of each search type grouped by the index. Results are ordered by index.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#aggregate_active_addons","title":"aggregate_active_addons","text":"Aggregate Active Addons
udf.aggregate_active_addons
This function selects most frequently occuring value for each addon_id, using the latest value in the input among ties. The type for active_addons is ARRAY>, i.e. the output of SELECT ARRAY_CONCAT_AGG(active_addons) FROM telemetry.main_summary_v4
, and is left unspecified to allow changes to the fields of the STRUCT.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#aggregate_map_first","title":"aggregate_map_first","text":"Aggregate Map First
udf.aggregate_map_first
Returns an aggregated map with all the keys and the first corresponding value from the given maps
Source Directory | Metadata File
"},{"location":"mozdata/udf/#aggregate_search_counts","title":"aggregate_search_counts","text":"Aggregate Search Counts
udf.aggregate_search_counts
Source Directory | Metadata File
"},{"location":"mozdata/udf/#aggregate_search_map","title":"aggregate_search_map","text":"Aggregate Search Map
udf.aggregate_search_map
Aggregates the total counts of the given search counters
Source Directory | Metadata File
"},{"location":"mozdata/udf/#array_11_zeroes_then","title":"array_11_zeroes_then","text":"Array 11 Zeroes Then
udf.array_11_zeroes_then
An array of 11 zeroes, followed by a supplied value
Source Directory | Metadata File
"},{"location":"mozdata/udf/#array_drop_first_and_append","title":"array_drop_first_and_append","text":"Array Drop First And Append
udf.array_drop_first_and_append
Drop the first element of an array, and append the given element. Result is an array with the same length as the input.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#array_of_12_zeroes","title":"array_of_12_zeroes","text":"Array Of 12 Zeroes
udf.array_of_12_zeroes
An array of 12 zeroes
Source Directory | Metadata File
"},{"location":"mozdata/udf/#array_slice","title":"array_slice","text":"Array Slice
udf.array_slice
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bitcount_lowest_7","title":"bitcount_lowest_7","text":"Bitcount Lowest 7
udf.bitcount_lowest_7
This function counts the 1s in lowest 7 bits of an INT64
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bitmask_365","title":"bitmask_365","text":"Bitmask 365
udf.bitmask_365
A bitmask for 365 bits
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bitmask_lowest_28","title":"bitmask_lowest_28","text":"Bitmask Lowest 28
udf.bitmask_lowest_28
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bitmask_lowest_7","title":"bitmask_lowest_7","text":"Bitmask Lowest 7
udf.bitmask_lowest_7
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bitmask_range","title":"bitmask_range","text":"Bitmask Range
udf.bitmask_range
Returns a bitmask that can be used to return a subset of an integer representing a bit array. The start_ordinal argument is an integer specifying the starting position of the slice, with start_ordinal = 1 indicating the first bit. The length argument is the number of bits to include in the mask. The arguments were chosen to match the semantics of the SUBSTR function; see https://cloud.google.com/bigquery/docs/reference/standard-sql/functions-and-operators#substr
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_active_in_range","title":"bits28_active_in_range","text":"Bits28 Active In Range
udf.bits28_active_in_range
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_days_since_seen","title":"bits28_days_since_seen","text":"Bits28 Days Since Seen
udf.bits28_days_since_seen
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_from_string","title":"bits28_from_string","text":"Bits28 From String
udf.bits28_from_string
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_range","title":"bits28_range","text":"Bits28 Range
udf.bits28_range
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_retention","title":"bits28_retention","text":"Bits28 Retention
udf.bits28_retention
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_to_dates","title":"bits28_to_dates","text":"Bits28 To Dates
udf.bits28_to_dates
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits28_to_string","title":"bits28_to_string","text":"Bits28 To String
udf.bits28_to_string
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits_from_offsets","title":"bits_from_offsets","text":"Bits From Offsets
udf.bits_from_offsets
Returns a bit pattern of type BYTES compactly encoding the given array of positive integer offsets. This is primarily useful to generate a compact encoding of dates on which a feature was used, with arbitrarily long history. Example aggregation: sql bits_from_offsets( ARRAY_AGG(IF(foo, DATE_DIFF(anchor_date, submission_date, DAY), NULL) IGNORE NULLS) )
The resulting value can be cast to an INT64 representing the most recent 64 days via: sql CAST(CONCAT('0x', TO_HEX(RIGHT(bits >> i, 4))) AS INT64)
Or representing the most recent 28 days (compatible with bits28 functions) via: sql CAST(CONCAT('0x', TO_HEX(RIGHT(bits >> i, 4))) AS INT64) << 36 >> 36
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits_to_active_n_weeks_ago","title":"bits_to_active_n_weeks_ago","text":"Bits To Active N Weeks Ago
udf.bits_to_active_n_weeks_ago
Given a BYTE and an INT64, return whether the user was active that many weeks ago. NULL input returns NULL output.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits_to_days_seen","title":"bits_to_days_seen","text":"Bits To Days Seen
udf.bits_to_days_seen
Given a BYTE, get the number of days the user was seen. NULL input returns NULL output.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits_to_days_since_first_seen","title":"bits_to_days_since_first_seen","text":"Bits To Days Since First Seen
udf.bits_to_days_since_first_seen
Given a BYTES, return the number of days since the client was first seen. If no bits are set, returns NULL, indicating we don't know. Otherwise the result is 0-indexed, meaning that for \\x01, it will return 0. Results showed this being between 5-10x faster than the simpler alternative: CREATE OR REPLACE FUNCTION udf.bits_to_days_since_first_seen(b BYTES) AS (( SELECT MAX(n) FROM UNNEST(GENERATE_ARRAY( 0, 8 * BYTE_LENGTH(b))) AS n WHERE BIT_COUNT(SUBSTR(b >> n, -1) & b'\\x01') > 0)); See also: bits_to_days_since_seen.sql
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bits_to_days_since_seen","title":"bits_to_days_since_seen","text":"Bits To Days Since Seen
udf.bits_to_days_since_seen
Given a BYTES, return the number of days since the client was last seen. If no bits are set, returns NULL, indicating we don't know. Otherwise the results are 0-indexed, meaning \\x01 will return 0. Tests showed this being 5-10x faster than the simpler alternative: CREATE OR REPLACE FUNCTION udf.bits_to_days_since_seen(b BYTES) AS (( SELECT MIN(n) FROM UNNEST(GENERATE_ARRAY(0, 364)) AS n WHERE BIT_COUNT(SUBSTR(b >> n, -1) & b'\\x01') > 0)); See also: bits_to_days_since_first_seen.sql
Source Directory | Metadata File
"},{"location":"mozdata/udf/#bool_to_365_bits","title":"bool_to_365_bits","text":"Bool To 365 Bits
udf.bool_to_365_bits
Convert a boolean to 365 bit byte array
Source Directory | Metadata File
"},{"location":"mozdata/udf/#boolean_histogram_to_boolean","title":"boolean_histogram_to_boolean","text":"Boolean Histogram To Boolean
udf.boolean_histogram_to_boolean
Given histogram h, return TRUE if it has a value in the \"true\" bucket, or FALSE if it has a value in the \"false\" bucket, or NULL otherwise. https://github.com/mozilla/telemetry-batch-view/blob/ea0733c/src/main/scala/com/mozilla/telemetry/utils/MainPing.scala#L309-L317
Source Directory | Metadata File
"},{"location":"mozdata/udf/#coalesce_adjacent_days_28_bits","title":"coalesce_adjacent_days_28_bits","text":"Coalesce Adjacent Days 28 Bits
udf.coalesce_adjacent_days_28_bits
We generally want to believe only the first reasonable profile creation date that we receive from a client. Given bits representing usage from the previous day and the current day, this function shifts the first argument by one day and returns either that value if non-zero and non-null, the current day value if non-zero and non-null, or else 0.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#coalesce_adjacent_days_365_bits","title":"coalesce_adjacent_days_365_bits","text":"Coalesce Adjacent Days 365 Bits
udf.coalesce_adjacent_days_365_bits
Coalesce previous data's PCD with the new data's PCD. We generally want to believe only the first reasonable profile creation date that we receive from a client. Given bytes representing usage from the previous day and the current day, this function shifts the first argument by one day and returns either that value if non-zero and non-null, the current day value if non-zero and non-null, or else 0.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#combine_adjacent_days_28_bits","title":"combine_adjacent_days_28_bits","text":"Combine Adjacent Days 28 Bits
udf.combine_adjacent_days_28_bits
Combines two bit patterns. The first pattern represents activity over a 28-day period ending \"yesterday\". The second pattern represents activity as observed today (usually just 0 or 1). We shift the bits in the first pattern by one to set the new baseline as \"today\", then perform a bitwise OR of the two patterns.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#combine_adjacent_days_365_bits","title":"combine_adjacent_days_365_bits","text":"Combine Adjacent Days 365 Bits
udf.combine_adjacent_days_365_bits
Source Directory | Metadata File
"},{"location":"mozdata/udf/#combine_days_seen_maps","title":"combine_days_seen_maps","text":"Combine Days Seen Maps
udf.combine_days_seen_maps
The \"clients_last_seen\" class of tables represent various types of client activity within a 28-day window as bit patterns. This function takes in two arrays of structs (aka maps) where each entry gives the bit pattern for days in which we saw a ping for a given user in a given key. We combine the bit patterns for the previous day and the current day, returning a single map. See udf.combine_experiment_days
for a more specific example of this approach.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#combine_experiment_days","title":"combine_experiment_days","text":"Combine Experiment Days
udf.combine_experiment_days
The \"clients_last_seen\" class of tables represent various types of client activity within a 28-day window as bit patterns. This function takes in two arrays of structs where each entry gives the bit pattern for days in which we saw a ping for a given user in a given experiment. We combine the bit patterns for the previous day and the current day, returning a single array of experiment structs.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#country_code_to_flag","title":"country_code_to_flag","text":"Country Code To Flag
udf.country_code_to_flag
For a given two-letter ISO 3166-1 alpha-2 country code, returns a string consisting of two Unicode regional indicator symbols, which is rendered in supporting fonts (such as in the BigQuery console or STMO) as flag emoji. This is just for fun. See: - https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 - https://en.wikipedia.org/wiki/Regional_Indicator_Symbol
Source Directory | Metadata File
"},{"location":"mozdata/udf/#days_seen_bytes_to_rfm","title":"days_seen_bytes_to_rfm","text":"Days Seen Bytes To Rfm
udf.days_seen_bytes_to_rfm
Return the frequency, recency, and T from a BYTE array, as defined in https://lifetimes.readthedocs.io/en/latest/Quickstart.html#the-shape-of-your-data RFM refers to Recency, Frequency, and Monetary value.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#days_since_created_profile_as_28_bits","title":"days_since_created_profile_as_28_bits","text":"Days Since Created Profile As 28 Bits
udf.days_since_created_profile_as_28_bits
Takes in a difference between submission date and profile creation date and returns a bit pattern representing the profile creation date IFF the profile date is the same as the submission date or no more than 6 days earlier. Analysis has shown that client-reported profile creation dates are much less reliable outside of this range and cannot be used as reliable indicators of new profile creation.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#deanonymize_event","title":"deanonymize_event","text":"Deanonymize Event
udf.deanonymize_event
Rename struct fields in anonymous event tuples to meaningful names.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#decode_int64","title":"decode_int64","text":"Decode Int64
udf.decode_int64
Source Directory | Metadata File
"},{"location":"mozdata/udf/#dedupe_array","title":"dedupe_array","text":"Dedupe Array
udf.dedupe_array
Return an array containing only distinct values of the given array
Source Directory | Metadata File
"},{"location":"mozdata/udf/#event_code_points_to_string","title":"event_code_points_to_string","text":"udf.event_code_points_to_string
Source Directory
"},{"location":"mozdata/udf/#experiment_search_metric_to_array","title":"experiment_search_metric_to_array","text":"Experiment search metric to array
udf.experiment_search_metric_to_array
Used for testing only. Reproduces the string transformations done in experiment_search_events_live_v1 materialized views.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#extract_count_histogram_value","title":"extract_count_histogram_value","text":"Extract Count Histogram Value
udf.extract_count_histogram_value
Source Directory | Metadata File
"},{"location":"mozdata/udf/#extract_document_type","title":"extract_document_type","text":"Extract Document Type
udf.extract_document_type
Extract the document type from a table name e.g. _TABLE_SUFFIX.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#extract_document_version","title":"extract_document_version","text":"Extract Document Version
udf.extract_document_version
Extract the document version from a table name e.g. _TABLE_SUFFIX.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#extract_histogram_sum","title":"extract_histogram_sum","text":"Extract Histogram Sum
udf.extract_histogram_sum
This is a performance optimization compared to the more general mozfun.hist.extract for cases where only the histogram sum is needed. It must support all the same format variants as mozfun.hist.extract but this simplification is necessary to keep the main_summary query complexity in check.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#extract_schema_validation_path","title":"extract_schema_validation_path","text":"Extract Schema Validation Path
udf.extract_schema_validation_path
Return a path derived from an error message in payload_bytes_error
Source Directory | Metadata File
"},{"location":"mozdata/udf/#fenix_build_to_datetime","title":"fenix_build_to_datetime","text":"Fenix Build To Datetime
udf.fenix_build_to_datetime
Convert the Fenix client_info.app_build-format string to a DATETIME. May return NULL on failure.
Fenix originally used an 8-digit app_build format
In short it is yDDDHHmm
:
- y is years since 2018
- DDD is day of year, 0-padded, 001-366
- HH is hour of day, 00-23
- mm is minute of hour, 00-59
The last date seen with an 8-digit build ID is 2020-08-10.
Newer builds use a 10-digit format where the integer represents a pattern consisting of 32 bits. The 17 bits starting 13 bits from the left represent a number of hours since UTC midnight beginning 2014-12-28.
This function tolerates both formats.
After using this you may wish to DATETIME_TRUNC(result, DAY)
for grouping by build date.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#ga_is_mozilla_browser","title":"ga_is_mozilla_browser","text":"Is Mozilla Browser
udf.ga_is_mozilla_browser
Determine if a browser in a Google Analytics data is produced by Mozilla
Source Directory | Metadata File
"},{"location":"mozdata/udf/#geo_struct","title":"geo_struct","text":"Geo Struct
udf.geo_struct
Convert geoip lookup fields to a struct, replacing '??' with NULL. Returns NULL if if required field country would be NULL. Replaces '??' with NULL because '??' is a placeholder that may be used if there was an issue during geoip lookup in hindsight.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#get_key","title":"get_key","text":"Get Key
udf.get_key
Source Directory | Metadata File
"},{"location":"mozdata/udf/#get_key_with_null","title":"get_key_with_null","text":"Get Key With Null
udf.get_key_with_null
Source Directory | Metadata File
"},{"location":"mozdata/udf/#glean_timespan_nanos","title":"glean_timespan_nanos","text":"Glean Timespan Nanos
udf.glean_timespan_nanos
Source Directory | Metadata File
"},{"location":"mozdata/udf/#glean_timespan_seconds","title":"glean_timespan_seconds","text":"Glean Timespan Seconds
udf.glean_timespan_seconds
Source Directory | Metadata File
"},{"location":"mozdata/udf/#gzip_length_footer","title":"gzip_length_footer","text":"Gzip Length Footer
udf.gzip_length_footer
Given a gzip compressed byte string, extract the uncompressed size from the footer. WARNING: THIS FUNCTION IS NOT RELIABLE FOR ARBITRARY GZIP STREAMS. It should, however, be safe to use for checking the decompressed size of payload in payload_bytes_decoded (and NOT payload_bytes_raw) because that payload is produced by the decoder and limited to conditions where the footer is accurate. From https://stackoverflow.com/a/9213826 First, the only information about the uncompressed length is four bytes at the end of the gzip file (stored in little-endian order). By necessity, that is the length modulo 232. So if the uncompressed length is 4 GB or more, you won't know what the length is. You can only be certain that the uncompressed length is less than 4 GB if the compressed length is less than something like 232 / 1032 + 18, or around 4 MB. (1032 is the maximum compression factor of deflate.) Second, and this is worse, a gzip file may actually be a concatenation of multiple gzip streams. Other than decoding, there is no way to find where each gzip stream ends in order to look at the four-byte uncompressed length of that piece. (Which may be wrong anyway due to the first reason.) Third, gzip files will sometimes have junk after the end of the gzip stream (usually zeros). Then the last four bytes are not the length.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#histogram_max_key_with_nonzero_value","title":"histogram_max_key_with_nonzero_value","text":"Histogram Max Key With Nonzero Value
udf.histogram_max_key_with_nonzero_value
Find the largest numeric bucket that contains a value greater than zero. https://github.com/mozilla/telemetry-batch-view/blob/ea0733c/src/main/scala/com/mozilla/telemetry/utils/MainPing.scala#L253-L266
Source Directory | Metadata File
"},{"location":"mozdata/udf/#histogram_merge","title":"histogram_merge","text":"Histogram Merge
udf.histogram_merge
Source Directory | Metadata File
"},{"location":"mozdata/udf/#histogram_normalize","title":"histogram_normalize","text":"Histogram Normalize
udf.histogram_normalize
Source Directory | Metadata File
"},{"location":"mozdata/udf/#histogram_percentiles","title":"histogram_percentiles","text":"Histogram Percentiles
udf.histogram_percentiles
Source Directory | Metadata File
"},{"location":"mozdata/udf/#histogram_to_mean","title":"histogram_to_mean","text":"Histogram To Mean
udf.histogram_to_mean
Source Directory | Metadata File
"},{"location":"mozdata/udf/#histogram_to_threshold_count","title":"histogram_to_threshold_count","text":"Histogram To Threshold Count
udf.histogram_to_threshold_count
Source Directory | Metadata File
"},{"location":"mozdata/udf/#hmac_sha256","title":"hmac_sha256","text":"Hmac Sha256
udf.hmac_sha256
Given a key and message, return the HMAC-SHA256 hash. This algorithm can be found in Wikipedia: https://en.wikipedia.org/wiki/HMAC#Implementation This implentation is validated against the NIST test vectors. See test/validation/hmac_sha256.py for more information.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#int_to_365_bits","title":"int_to_365_bits","text":"Int To 365 Bits
udf.int_to_365_bits
Source Directory | Metadata File
"},{"location":"mozdata/udf/#int_to_hex_string","title":"int_to_hex_string","text":"Int To Hex String
udf.int_to_hex_string
Source Directory | Metadata File
"},{"location":"mozdata/udf/#json_extract_histogram","title":"json_extract_histogram","text":"Json Extract Histogram
udf.json_extract_histogram
Source Directory | Metadata File
"},{"location":"mozdata/udf/#json_extract_int_map","title":"json_extract_int_map","text":"Json Extract Int Map
udf.json_extract_int_map
Source Directory | Metadata File
"},{"location":"mozdata/udf/#json_mode_last","title":"json_mode_last","text":"Json Mode Last
udf.json_mode_last
Source Directory | Metadata File
"},{"location":"mozdata/udf/#keyed_histogram_get_sum","title":"keyed_histogram_get_sum","text":"Keyed Histogram Get Sum
udf.keyed_histogram_get_sum
Take a keyed histogram of type STRUCT, extract the histogram of the given key, and return the sum value
Source Directory | Metadata File
"},{"location":"mozdata/udf/#kv_array_append_to_json_string","title":"kv_array_append_to_json_string","text":"Kv Array Append To Json String
udf.kv_array_append_to_json_string
Returns a JSON string which has the pair
appended to the provided input
JSON string. NULL is also valid for input
. Examples: udf.kv_array_append_to_json_string('{\"foo\":\"bar\"}', [STRUCT(\"baz\" AS key, \"boo\" AS value)]) '{\"foo\":\"bar\",\"baz\":\"boo\"}' udf.kv_array_append_to_json_string('{}', [STRUCT(\"baz\" AS key, \"boo\" AS value)]) '{\"baz\": \"boo\"}'
Source Directory | Metadata File
"},{"location":"mozdata/udf/#kv_array_to_json_string","title":"kv_array_to_json_string","text":"Kv Array To Json String
udf.kv_array_to_json_string
Returns a JSON string representing the input key-value array. Value type must be able to be represented as a string - this function will cast to a string. At Mozilla, the schema for a map is STRUCT>>. To use this with that representation, it should be as udf.kv_array_to_json_string(struct.key_value)
.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#main_summary_scalars","title":"main_summary_scalars","text":"Main Summary Scalars
udf.main_summary_scalars
Source Directory | Metadata File
"},{"location":"mozdata/udf/#map_bing_revenue_country_to_country_code","title":"map_bing_revenue_country_to_country_code","text":"Map Bing Revenue Country To Country Code
udf.map_bing_revenue_country_to_country_code
For use by LTV revenue join only. Maps the Bing country to a country code. Only keeps the country codes we want to aggregate on.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#map_mode_last","title":"map_mode_last","text":"Map Mode Last
udf.map_mode_last
Source Directory | Metadata File
"},{"location":"mozdata/udf/#map_revenue_country","title":"map_revenue_country","text":"Map Revenue Country
udf.map_revenue_country
Only for use by the LTV Revenue join. Maps country codes to the codes we have in the revenue dataset. Buckets small Bing countries into \"other\".
Source Directory | Metadata File
"},{"location":"mozdata/udf/#map_sum","title":"map_sum","text":"Map Sum
udf.map_sum
Source Directory | Metadata File
"},{"location":"mozdata/udf/#merge_scalar_user_data","title":"merge_scalar_user_data","text":"Merge Scalar User Data
udf.merge_scalar_user_data
Given an array of scalar metric data that might have duplicate values for a metric, merge them into one value.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#mod_uint128","title":"mod_uint128","text":"Mod Uint128
udf.mod_uint128
This function returns \"dividend mod divisor\" where the dividend and the result is encoded in bytes, and divisor is an integer.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#mode_last","title":"mode_last","text":"Mode Last
udf.mode_last
Source Directory | Metadata File
"},{"location":"mozdata/udf/#mode_last_retain_nulls","title":"mode_last_retain_nulls","text":"Mode Last Retain Nulls
udf.mode_last_retain_nulls
Source Directory | Metadata File
"},{"location":"mozdata/udf/#monetized_search","title":"monetized_search","text":"Monetized Search Stub
udf.monetized_search
Stub monetized_search UDF for tests
Source Directory | Metadata File
"},{"location":"mozdata/udf/#new_monthly_engine_searches_struct","title":"new_monthly_engine_searches_struct","text":"New Monthly Engine Searches Struct
udf.new_monthly_engine_searches_struct
This struct represents the past year's worth of searches. Each month has its own entry, hence 12.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_fenix_metrics","title":"normalize_fenix_metrics","text":"Normalize Fenix Metrics
udf.normalize_fenix_metrics
Accepts a glean metrics struct as input and returns a modified struct that nulls out histograms for older versions of the Glean SDK that reported pathological binning; see https://bugzilla.mozilla.org/show_bug.cgi?id=1592930
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_glean_baseline_client_info","title":"normalize_glean_baseline_client_info","text":"Normalize Glean Baseline Client Info
udf.normalize_glean_baseline_client_info
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_glean_ping_info","title":"normalize_glean_ping_info","text":"Normalize Glean Ping Info
udf.normalize_glean_ping_info
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_main_payload","title":"normalize_main_payload","text":"Normalize Main Payload
udf.normalize_main_payload
Accepts a pipeline metadata struct as input and returns a modified struct that includes a few parsed or normalized variants of the input metadata fields.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_metadata","title":"normalize_metadata","text":"Normalize Metadata
udf.normalize_metadata
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_monthly_searches","title":"normalize_monthly_searches","text":"Normalize Monthly Searches
udf.normalize_monthly_searches
Sum up the monthy search count arrays by normalized engine
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_os","title":"normalize_os","text":"Normalize Os
udf.normalize_os
Source Directory | Metadata File
"},{"location":"mozdata/udf/#normalize_search_engine","title":"normalize_search_engine","text":"Normalize Search Engine
udf.normalize_search_engine
Return normalized engine name for recognized engines This is a stub implementation for use with tests; real implementation is in private-bigquery-etl
Source Directory | Metadata File
"},{"location":"mozdata/udf/#null_if_empty_list","title":"null_if_empty_list","text":"Null If Empty List
udf.null_if_empty_list
Return NULL if list is empty, otherwise return list. This cannot be done with NULLIF because NULLIF does not support arrays.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#one_as_365_bits","title":"one_as_365_bits","text":"One As 365 Bits
udf.one_as_365_bits
One represented as a byte array of 365 bits
Source Directory | Metadata File
"},{"location":"mozdata/udf/#pack_event_properties","title":"pack_event_properties","text":"udf.pack_event_properties
Source Directory
"},{"location":"mozdata/udf/#parquet_array_sum","title":"parquet_array_sum","text":"Parquet Array Sum
udf.parquet_array_sum
Sum an array from a parquet-derived field. These are lists of an element
that contain the field value.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#parse_desktop_telemetry_uri","title":"parse_desktop_telemetry_uri","text":"Parse Desktop Telemetry Uri
udf.parse_desktop_telemetry_uri
Parses and labels the components of a telemetry desktop ping submission uri Per https://docs.telemetry.mozilla.org/concepts/pipeline/http_edge_spec.html#special-handling-for-firefox-desktop-telemetry the format is /submit/telemetry/docId/docType/appName/appVersion/appUpdateChannel/appBuildID e.g. /submit/telemetry/ce39b608-f595-4c69-b6a6-f7a436604648/main/Firefox/61.0a1/nightly/20180328030202
Source Directory | Metadata File
"},{"location":"mozdata/udf/#parse_iso8601_date","title":"parse_iso8601_date","text":"Parse Iso8601 Date
udf.parse_iso8601_date
Take a ISO 8601 date or date and time string and return a DATE. Return null if parse fails. Possible formats: 2019-11-04, 2019-11-04T21:15:00+00:00, 2019-11-04T21:15:00Z, 20191104T211500Z
Source Directory | Metadata File
"},{"location":"mozdata/udf/#pos_of_leading_set_bit","title":"pos_of_leading_set_bit","text":"Pos Of Leading Set Bit
udf.pos_of_leading_set_bit
Returns the 0-based index of the first set bit. No set bits returns NULL.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#pos_of_trailing_set_bit","title":"pos_of_trailing_set_bit","text":"Pos Of Trailing Set Bit
udf.pos_of_trailing_set_bit
Identical to bits28_days_since_seen. Returns a 0-based index of the rightmost set bit in the passed bit pattern or null if no bits are set (bits = 0). To determine this position, we take a bitwise AND of the bit pattern and its complement, then we determine the position of the bit via base-2 logarithm; see https://stackoverflow.com/a/42747608/1260237
Source Directory | Metadata File
"},{"location":"mozdata/udf/#product_info_with_baseline","title":"product_info_with_baseline","text":"Product Info with Baseline
udf.product_info_with_baseline
Similar to mozfun.norm.product_info(), but this UDF also handles \"baseline\" apps that were introduced differentiate for certain apps whether data is sent through Glean or core pings. This UDF has been temporarily introduced as part of https://bugzilla.mozilla.org/show_bug.cgi?id=1775216
Source Directory | Metadata File
"},{"location":"mozdata/udf/#pseudonymize_ad_id","title":"pseudonymize_ad_id","text":"Pseudonymize Ad Ids
udf.pseudonymize_ad_id
Pseudonymize Ad IDs, handling opt-outs.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#quantile_search_metric_contribution","title":"quantile_search_metric_contribution","text":"Quantile Search Metric Contribution
udf.quantile_search_metric_contribution
This function returns how much of one metric is contributed by the quantile of another metric. Quantile variable should add an offset to get the requried percentile value. Example: udf.quantile_search_metric_contribution(sap, search_with_ads, sap_percentiles[OFFSET(9)]) It returns search_with_ads if sap value in top 10% volumn else null.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#round_timestamp_to_minute","title":"round_timestamp_to_minute","text":"Round Timestamp To Minute
udf.round_timestamp_to_minute
Floor a timestamp object to the given minute interval.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#safe_crc32_uuid","title":"safe_crc32_uuid","text":"Safe CRC-32 Uuid
udf.safe_crc32_uuid
Calculate the CRC-32 hash of a 36-byte UUID, or NULL if the value isn't 36 bytes. This implementation is limited to an exact length because recursion does not work. Based on https://stackoverflow.com/a/18639999/1260237 See https://en.wikipedia.org/wiki/Cyclic_redundancy_check
Source Directory | Metadata File
"},{"location":"mozdata/udf/#safe_sample_id","title":"safe_sample_id","text":"Safe Sample Id
udf.safe_sample_id
Stably hash a client_id to an integer between 0 and 99, or NULL if client_id isn't 36 bytes
Source Directory | Metadata File
"},{"location":"mozdata/udf/#search_counts_map_sum","title":"search_counts_map_sum","text":"Search Counts Map Sum
udf.search_counts_map_sum
Calculate the sums of search counts per source and engine
Source Directory | Metadata File
"},{"location":"mozdata/udf/#shift_28_bits_one_day","title":"shift_28_bits_one_day","text":"Shift 28 Bits One Day
udf.shift_28_bits_one_day
Shift input bits one day left and drop any bits beyond 28 days.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#shift_365_bits_one_day","title":"shift_365_bits_one_day","text":"Shift 365 Bits One Day
udf.shift_365_bits_one_day
Shift input bits one day left and drop any bits beyond 365 days.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#shift_one_day","title":"shift_one_day","text":"Shift One Day
udf.shift_one_day
Returns the bitfield shifted by one day, 0 for NULL
Source Directory | Metadata File
"},{"location":"mozdata/udf/#smoot_usage_from_28_bits","title":"smoot_usage_from_28_bits","text":"Smoot Usage From 28 Bits
udf.smoot_usage_from_28_bits
Calculates a variety of metrics based on bit patterns of daily usage for the smoot_usage_* tables.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#vector_add","title":"vector_add","text":"Vector Add
udf.vector_add
This function adds two vectors. The two vectors can have different length. If one vector is null, the other vector will be returned directly.
Source Directory | Metadata File
"},{"location":"mozdata/udf/#zero_as_365_bits","title":"zero_as_365_bits","text":"Zero As 365 Bits
udf.zero_as_365_bits
Zero represented as a 365-bit byte array
Source Directory | Metadata File
"},{"location":"mozdata/udf/#zeroed_array","title":"zeroed_array","text":"Zeroed Array
udf.zeroed_array
Generates an array if all zeroes, of arbitrary length
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/","title":"User-Defined Functions (Javascript)","text":"Persistent user-defined functions written in Javascript
Source Directory
"},{"location":"mozdata/udf_js/#bootstrap_percentile_ci","title":"bootstrap_percentile_ci","text":"Bootstrap Percentile CI
udf_js.bootstrap_percentile_ci
Calculate a confidence interval using an efficient bootstrap sampling technique for a given percentile of a histogram. This implementation relies on the stdlib.js library and the binomial quantile function (https://github.com/stdlib-js/stats-base-dists-binomial-quantile/) for randomly sampling from a binomial distribution.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#crc32","title":"crc32","text":"CRC-32
udf_js.crc32
Calculate the CRC-32 hash of an input string. The implementation here could be optimized. In particular, it calculates a lookup table on every invocation which could be cached and reused. In practice, though, this implementation appears to be fast enough that further optimization is not yet warranted. Based on https://stackoverflow.com/a/18639999/1260237 See https://en.wikipedia.org/wiki/Cyclic_redundancy_check
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#decode_uri_attribution","title":"decode_uri_attribution","text":"Decode Uri Attribution
udf_js.decode_uri_attribution
URL decodes the raw firefox_installer.install.attribution string to a STRUCT. The fields campaign, content, dlsource, dltoken, experiment, medium, source, ua, variation the string are extracted. If any value is (not+set) it is converted to (not set) to match the text from GA when the fields are not set.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#extract_string_from_bytes","title":"extract_string_from_bytes","text":"Extract string from bytes
udf_js.extract_string_from_bytes
Related to https://mozilla-hub.atlassian.net/browse/RS-682. The function extracts string data from payload
which is in bytes.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#gunzip","title":"gunzip","text":"Gunzip
udf_js.gunzip
Unzips a GZIP string. This implementation relies on the zlib.js library (https://github.com/imaya/zlib.js) and the atob function for decoding base64.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#jackknife_mean_ci","title":"jackknife_mean_ci","text":"Jackknife Mean Ci
udf_js.jackknife_mean_ci
Calculates a confidence interval using a jackknife resampling technique for the mean of an array of values for various buckets; see https://en.wikipedia.org/wiki/Jackknife_resampling Users must specify the number of expected buckets as the first parameter to guard against the case where empty buckets lead to an array with missing elements. Usage generally involves first calculating an aggregate per bucket, then aggregating over buckets, passing ARRAY_AGG(metric) to this function.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#jackknife_percentile_ci","title":"jackknife_percentile_ci","text":"Jackknife Percentile CI
udf_js.jackknife_percentile_ci
Calculate a confidence interval using a jackknife resampling technique for a given percentile of a histogram.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#jackknife_ratio_ci","title":"jackknife_ratio_ci","text":"Jackknife Ratio Ci
udf_js.jackknife_ratio_ci
Calculates a confidence interval using a jackknife resampling technique for the weighted mean of an array of ratios for various buckets; see https://en.wikipedia.org/wiki/Jackknife_resampling Users must specify the number of expected buckets as the first parameter to guard against the case where empty buckets lead to an array with missing elements. Usage generally involves first calculating an aggregate per bucket, then aggregating over buckets, passing ARRAY_AGG(metric) to this function. Example: WITH bucketed AS ( SELECT submission_date, SUM(active_days_in_week) AS active_days_in_week, SUM(wau) AS wau FROM mytable GROUP BY submission_date, bucket_id ) SELECT submission_date, udf_js.jackknife_ratio_ci(20, ARRAY_AGG(STRUCT(CAST(active_days_in_week AS float64), CAST(wau as FLOAT64)))) AS intensity FROM bucketed GROUP BY submission_date
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#jackknife_sum_ci","title":"jackknife_sum_ci","text":"Jackknife Sum Ci
udf_js.jackknife_sum_ci
Calculates a confidence interval using a jackknife resampling technique for the sum of an array of counts for various buckets; see https://en.wikipedia.org/wiki/Jackknife_resampling Users must specify the number of expected buckets as the first parameter to guard against the case where empty buckets lead to an array with missing elements. Usage generally involves first calculating an aggregate count per bucket, then aggregating over buckets, passing ARRAY_AGG(metric) to this function. Example: WITH bucketed AS ( SELECT submission_date, SUM(dau) AS dau_sum FROM mytable GROUP BY submission_date, bucket_id ) SELECT submission_date, udf_js.jackknife_sum_ci(ARRAY_AGG(dau_sum)).* FROM bucketed GROUP BY submission_date
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#json_extract_events","title":"json_extract_events","text":"Json Extract Events
udf_js.json_extract_events
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#json_extract_histogram","title":"json_extract_histogram","text":"Json Extract Histogram
udf_js.json_extract_histogram
Returns a parsed struct from a JSON string representing a histogram. This implementation uses JavaScript and is provided for performance comparison; see udf/udf_json_extract_histogram for a pure SQL implementation that will likely be more usable in practice.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#json_extract_keyed_histogram","title":"json_extract_keyed_histogram","text":"Json Extract Keyed Histogram
udf_js.json_extract_keyed_histogram
Returns an array of parsed structs from a JSON string representing a keyed histogram. This is likely only useful for histograms that weren't properly parsed to fields, so ended up embedded in an additional_properties JSON blob. Normally, keyed histograms will be modeled as a key/value struct where the values are JSON representations of single histograms. There is no pure SQL equivalent to this function, since BigQuery does not provide any functions for listing or iterating over keysn in a JSON map.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#json_extract_missing_cols","title":"json_extract_missing_cols","text":"Json Extract Missing Cols
udf_js.json_extract_missing_cols
Extract missing columns from additional properties. More generally, get a list of nodes from a JSON blob. Array elements are indicated as [...]. param input: The JSON blob to explode param indicates_node: An array of strings. If a key's value is an object, and contains one of these values, that key is returned as a node. param known_nodes: An array of strings. If a key is in this array, it is returned as a node. Notes: - Use indicates_node for things like histograms. For example ['histogram_type'] will ensure that each histogram will be returned as a missing node, rather than the subvalues within the histogram (e.g. values, sum, etc.) - Use known_nodes if you're aware of a missing section, like ['simpleMeasurements'] See here for an example usage https://sql.telemetry.mozilla.org/queries/64460/source
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#main_summary_active_addons","title":"main_summary_active_addons","text":"Main Summary Active Addons
udf_js.main_summary_active_addons
Add fields from additional_attributes to active_addons in main pings. Return an array instead of a \"map\" for backwards compatibility. The INT64 columns from BigQuery may be passed as strings, so parseInt before returning them if they will be coerced to BOOL. The fields from additional_attributes due to union types: integer or boolean for foreignInstall and userDisabled; string or number for version. https://github.com/mozilla/telemetry-batch-view/blob/ea0733c00df191501b39d2c4e2ece3fe703a0ef3/src/main/scala/com/mozilla/telemetry/views/MainSummaryView.scala#L422-L449
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#main_summary_addon_scalars","title":"main_summary_addon_scalars","text":"Main Summary Addon Scalars
udf_js.main_summary_addon_scalars
Parse scalars from payload.processes.dynamic into map columns for each value type. https://github.com/mozilla/telemetry-batch-view/blob/ea0733c00df191501b39d2c4e2ece3fe703a0ef3/src/main/scala/com/mozilla/telemetry/utils/MainPing.scala#L385-L399
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#main_summary_disabled_addons","title":"main_summary_disabled_addons","text":"Main Summary Disabled Addons
udf_js.main_summary_disabled_addons
Report the ids of the addons which are in the addonDetails but not in the activeAddons. They are the disabled addons (possibly because they are legacy). We need this as addonDetails may contain both disabled and active addons. https://github.com/mozilla/telemetry-batch-view/blob/ea0733c00df191501b39d2c4e2ece3fe703a0ef3/src/main/scala/com/mozilla/telemetry/views/MainSummaryView.scala#L451-L464
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#parse_sponsored_interaction","title":"parse_sponsored_interaction","text":"Extract string from bytes
udf_js.parse_sponsored_interaction
Related to https://mozilla-hub.atlassian.net/browse/RS-682. The function parses the sponsored interaction column from payload_error_bytes.contextual_services table.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js/#sample_id","title":"sample_id","text":"Sample Id
udf_js.sample_id
Stably hash a client_id to an integer between 0 and 99. This function is technically defined in SQL, but it calls a JS UDF implementation of a CRC-32 hash, so we defined it here to make it clear that its performance may be limited by BigQuery's JavaScript UDF environment.
Source Directory | Metadata File
"},{"location":"mozdata/udf_js_lib/","title":"udf_js_lib","text":"Source Directory
"},{"location":"mozdata/udf_legacy/","title":"User-Defined Functions (Legacy)","text":"Persistent user-defined functions intended for compatibility with queries from legacy AWS infrastructure
"},{"location":"mozdata/udf_legacy/#legacy-udfs","title":"Legacy UDFs","text":"This directory contains compatibility functions for query migrations from Athena/Presto, and is named udf_legacy
to discourage their ongoing use.
Source Directory
"},{"location":"mozdata/viu_politica/","title":"viu-politica","text":"User-facing views related to document namespace viu-politica; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/viu-politica
Source Directory
"},{"location":"mozdata/viu_politica/#deletion_request","title":"deletion_request","text":"Historical Pings for viu-politica/deletion-request
viu_politica.deletion_request
A historical view of pings sent for the viu-politica/deletion-request
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica_stable deletion_request_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/viu_politica/#events","title":"events","text":"Historical Pings for viu-politica/events
viu_politica.events
A historical view of pings sent for the viu-politica/events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica_stable events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/viu_politica/#events_unnested","title":"events_unnested","text":"Events Unnested
viu_politica.events_unnested
Please provide a description for the query
Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica events Source Directory | View Definition | Metadata File
"},{"location":"mozdata/viu_politica/#main_events","title":"main_events","text":"Historical Pings for viu-politica/main-events
viu_politica.main_events
A historical view of pings sent for the viu-politica/main-events
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica_stable main_events_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/viu_politica/#regret_details","title":"regret_details","text":"Historical Pings for viu-politica/regret-details
viu_politica.regret_details
A historical view of pings sent for the viu-politica/regret-details
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica_stable regret_details_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/viu_politica/#video_data","title":"video_data","text":"Historical Pings for viu-politica/video-data
viu_politica.video_data
A historical view of pings sent for the viu-politica/video-data
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica_stable video_data_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/viu_politica/#video_index","title":"video_index","text":"Historical Pings for viu-politica/video-index
viu_politica.video_index
A historical view of pings sent for the viu-politica/video-index
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes client_info Record Yes document_id The document ID specified in the URI when the client sent this message String Yes events Record No metadata Record Yes metrics Record Yes normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes ping_info Record Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod viu_politica_stable video_index_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozdata/webpagetest/","title":"webpagetest","text":"User-facing views related to document namespace webpagetest; see https://github.com/mozilla-services/mozilla-pipeline-schemas/tree/generated-schemas/schemas/webpagetest
Source Directory
"},{"location":"mozdata/webpagetest/#webpagetest_run","title":"webpagetest_run","text":"Historical Pings for webpagetest/webpagetest-run
webpagetest.webpagetest_run
A historical view of pings sent for the webpagetest/webpagetest-run
document type.
This view is guaranteed to contain only complete days (per submission_timestamp
) and to contain only one row per distinct document_id
within a given date.
Clustering fields: normalized_channel
, sample_id
Schema Column Description Type Nullable additional_properties A JSON string containing any payload properties not present in the schema String Yes app_name String Yes channel String Yes connection String Yes document_id The document ID specified in the URI when the client sent this message String Yes metadata Record Yes metrics Record No normalized_app_name Set to \"Other\" if this message contained an unrecognized app name String Yes normalized_channel Set to \"Other\" if this message contained an unrecognized channel name String Yes normalized_country_code An ISO 3166-1 alpha-2 country code String Yes normalized_os Set to \"Other\" if this message contained an unrecognized OS name String Yes normalized_os_version String Yes platform String Yes run_id String Yes runner String Yes sample_id Hashed version of client_id (if present) useful for partitioning; ranges from 0 to 99 Integer Yes session_state String Yes submission_timestamp Time when the ingestion edge server accepted this message Timestamp Yes url String Yes version String Yes Referenced Tables Project Dataset Table moz-fx-data-shared-prod webpagetest_stable webpagetest_run_v1 Source Directory | View Definition | Metadata File
"},{"location":"mozfun/about/","title":"mozfun","text":"mozfun
is a public GCP project provisioning publicly accessible user-defined functions (UDFs) and other function-like resources.
"},{"location":"mozfun/addons/","title":"Addons","text":""},{"location":"mozfun/addons/#is_adblocker-udf","title":"is_adblocker (UDF)","text":"Returns whether a given Addon ID is an adblocker.
Determine if a given Addon ID is for an adblocker.
As an example, this query will give the number of users who have an adblocker installed.
SELECT\n submission_date,\n COUNT(DISTINCT client_id) AS dau,\nFROM\n mozdata.telemetry.addons\nWHERE\n mozfun.addons.is_adblocker(addon_id)\n AND submission_date >= \"2023-01-01\"\nGROUP BY\n submission_date\n
"},{"location":"mozfun/addons/#parameters","title":"Parameters","text":"INPUTS
addon_id STRING\n
OUTPUTS
BOOLEAN\n
Source | Edit
"},{"location":"mozfun/bits28/","title":"bits28","text":"The bits28
functions provide an API for working with \"bit pattern\" INT64 fields, as used in the clients_last_seen
dataset for desktop Firefox and similar datasets for other applications.
A powerful feature of the clients_last_seen
methodology is that it doesn't record specific metrics like MAU and WAU directly, but rather each row stores a history of the discrete days on which a client was active in the past 28 days. We could calculate active users in a 10 day or 25 day window just as efficiently as a 7 day (WAU) or 28 day (MAU) window. But we can also define completely new metrics based on these usage histories, such as various retention definitions.
The usage history is encoded as a \"bit pattern\" where the physical type of the field is a BigQuery INT64, but logically the integer represents an array of bits, with each 1 indicating a day where the given clients was active and each 0 indicating a day where the client was inactive.
"},{"location":"mozfun/bits28/#range-udf","title":"range (UDF)","text":"Return an INT64 representing a range of bits from a source bit pattern.
The start_offset must be zero or a negative number indicating an offset from the rightmost bit in the pattern.
n_bits is the number of bits to consider, counting right from the bit at start_offset.
See detailed docs for the bits28 suite of functions: https://docs.telemetry.mozilla.org/cookbooks/clients_last_seen_bits.html#udf-reference
SELECT\n -- Signature is bits28.range(offset_to_day_0, start_bit, number_of_bits)\n mozfun.bits28.range(days_seen_bits, -13 + 0, 7) AS week_0_bits,\n mozfun.bits28.range(days_seen_bits, -13 + 7, 7) AS week_1_bits\nFROM\n telemetry.clients_last_seen\nWHERE\n submission_date > '2020-01-01'\n
"},{"location":"mozfun/bits28/#parameters","title":"Parameters","text":"INPUTS
bits INT64, start_offset INT64, n_bits INT64\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/bits28/#to_dates-udf","title":"to_dates (UDF)","text":"Convert a bit pattern into an array of the dates is represents.
See detailed docs for the bits28 suite of functions: https://docs.telemetry.mozilla.org/cookbooks/clients_last_seen_bits.html#udf-reference
"},{"location":"mozfun/bits28/#parameters_1","title":"Parameters","text":"INPUTS
bits INT64, submission_date DATE\n
OUTPUTS
ARRAY<DATE>\n
Source | Edit
"},{"location":"mozfun/bits28/#from_string-udf","title":"from_string (UDF)","text":"Convert a string representing individual bits into an INT64.
Implementation based on https://stackoverflow.com/a/51600210/1260237
See detailed docs for the bits28 suite of functions: https://docs.telemetry.mozilla.org/cookbooks/clients_last_seen_bits.html#udf-reference
"},{"location":"mozfun/bits28/#parameters_2","title":"Parameters","text":"INPUTS
s STRING\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/bits28/#days_since_seen-udf","title":"days_since_seen (UDF)","text":"Return the position of the rightmost set bit in an INT64 bit pattern.
To determine this position, we take a bitwise AND of the bit pattern and its complement, then we determine the position of the bit via base-2 logarithm; see https://stackoverflow.com/a/42747608/1260237
See detailed docs for the bits28 suite of functions: https://docs.telemetry.mozilla.org/cookbooks/clients_last_seen_bits.html#udf-reference
SELECT\n mozfun.bits28.days_since_seen(18)\n-- >> 1\n
"},{"location":"mozfun/bits28/#parameters_3","title":"Parameters","text":"INPUTS
bits INT64\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/bits28/#to_string-udf","title":"to_string (UDF)","text":"Convert an INT64 field into a 28-character string representing the individual bits.
Implementation based on https://stackoverflow.com/a/51600210/1260237
See detailed docs for the bits28 suite of functions: https://docs.telemetry.mozilla.org/cookbooks/clients_last_seen_bits.html#udf-reference
SELECT\n [mozfun.bits28.to_string(1), mozfun.bits28.to_string(2), mozfun.bits28.to_string(3)]\n-- >>> ['0000000000000000000000000001',\n-- '0000000000000000000000000010',\n-- '0000000000000000000000000011']\n
"},{"location":"mozfun/bits28/#parameters_4","title":"Parameters","text":"INPUTS
bits INT64\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/bits28/#retention-udf","title":"retention (UDF)","text":"Return a nested struct providing booleans indicating whether a given client was active various time periods based on the passed bit pattern.
"},{"location":"mozfun/bits28/#parameters_5","title":"Parameters","text":"INPUTS
bits INT64, submission_date DATE\n
Source | Edit
"},{"location":"mozfun/bits28/#active_in_range-udf","title":"active_in_range (UDF)","text":"Return a boolean indicating if any bits are set in the specified range of a bit pattern. The start_offset
must be zero or a negative number indicating an offset from the rightmost bit in the pattern. n_bits is the number of bits to consider, counting right from the bit at start_offset
.
See detailed docs for the bits28 suite of functions: https://docs.telemetry.mozilla.org/cookbooks/clients_last_seen_bits.html#udf-reference
"},{"location":"mozfun/bits28/#parameters_6","title":"Parameters","text":"INPUTS
bits INT64, start_offset INT64, n_bits INT64\n
OUTPUTS
BOOLEAN\n
Source | Edit
"},{"location":"mozfun/bytes/","title":"bytes","text":""},{"location":"mozfun/bytes/#bit_pos_to_byte_pos-udf","title":"bit_pos_to_byte_pos (UDF)","text":"Given a bit position, get the byte that bit appears in. 1-indexed (to match substr), and accepts negative values.
"},{"location":"mozfun/bytes/#parameters","title":"Parameters","text":"INPUTS
bit_pos INT64\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/bytes/#extract_bits-udf","title":"extract_bits (UDF)","text":"Extract bits from a byte array. Roughly matches substr with three arguments: b: bytes - The byte string we need to extract from start: int - The position of the first bit we want to extract. Can be negative to start from the end of the byte array. One-indexed, like substring. length: int - The number of bits we want to extract
The return byte array will have CEIL(length/8) bytes. The bits of interest will start at the beginning of the byte string. In other words, the byte array will have trailing 0s for any non-relevant fields.
Examples: bytes.extract_bits(b'\\x0F\\xF0', 5, 8) = b'\\xFF' bytes.extract_bits(b'\\x0C\\xC0', -12, 8) = b'\\xCC'
"},{"location":"mozfun/bytes/#parameters_1","title":"Parameters","text":"INPUTS
b BYTES, `begin` INT64, length INT64\n
OUTPUTS
BYTES\n
Source | Edit
"},{"location":"mozfun/bytes/#zero_right-udf","title":"zero_right (UDF)","text":"Zero bits on the right of byte
"},{"location":"mozfun/bytes/#parameters_2","title":"Parameters","text":"INPUTS
b BYTES, length INT64\n
OUTPUTS
BYTES\n
Source | Edit
"},{"location":"mozfun/datetime_util/","title":"datetime_util.fxa_parse_date","text":""},{"location":"mozfun/datetime_util/#fxa_parse_date-udf","title":"fxa_parse_date (UDF)","text":"Function for converting a datetime or date string in various formats into a date object
"},{"location":"mozfun/datetime_util/#parameters","title":"Parameters","text":"INPUTS
date_string STRING\n
OUTPUTS
DATE\n
Source | Edit
"},{"location":"mozfun/event_analysis/","title":"event_analysis","text":"These functions are specific for use with the events_daily
and event_types
tables. By themselves, these two tables are nearly impossible to use since the event history is compressed; however, these stored procedures should make the data accessible.
The events_daily
table is created as a result of two steps: 1. Map each event to a single UTF8 char which will represent it 2. Group each client-day and store a string that records, using the compressed format, that clients' event history for that day. The characters are ordered by the timestamp which they appeared that day.
The best way to access this data is to create a view to do the heavy lifting. For example, to see which clients completed a certain action, you can create a view using these functions that knows what that action's representation is (using the compressed mapping from 1.) and create a regex string that checks for the presence of that event. The view makes this transparent, and allows users to simply query a boolean field representing the presence of that event on that day.
"},{"location":"mozfun/event_analysis/#extract_event_counts_with_properties-udf","title":"extract_event_counts_with_properties (UDF)","text":"Extract events with event properties and their associated counts. Also extracts raw events and their counts. This allows for querying with and without properties in the same dashboard.
"},{"location":"mozfun/event_analysis/#usage","title":"Usage","text":"extract_event_counts_with_properties(\n events STRING\n)\n
events
- A comma-separated events string, where each event is represented as a string of unicode chars.
"},{"location":"mozfun/event_analysis/#example","title":"Example","text":"See this query for example usage.
"},{"location":"mozfun/event_analysis/#caveats","title":"Caveats","text":"This function extracts both counts for events with each property, and for all events without their properties.
This allows us to include both total counts for an event (with any property value), and events that don't have properties.
"},{"location":"mozfun/event_analysis/#parameters","title":"Parameters","text":"INPUTS
events STRING\n
OUTPUTS
ARRAY<STRUCT<event_index STRING, property_index INT64, property_value_index STRING, count INT64>>\n
Source | Edit
"},{"location":"mozfun/event_analysis/#create_events_view-stored-procedure","title":"create_events_view (Stored Procedure)","text":"Create a view that queries the events_daily
table. This view currently supports both funnels and event counts. Funnels are created as a struct, with each step in the funnel as a boolean column in the struct, indicating whether the user completed that step on that day. Event counts are simply integers.
"},{"location":"mozfun/event_analysis/#usage_1","title":"Usage","text":"create_events_view(\n view_name STRING,\n project STRING,\n dataset STRING,\n funnels ARRAY<STRUCT<\n funnel_name STRING,\n funnel ARRAY<STRUCT<\n step_name STRING,\n events ARRAY<STRUCT<\n category STRING,\n event_name STRING>>>>>>,\n counts ARRAY<STRUCT<\n count_name STRING,\n events ARRAY<STRUCT<\n category STRING,\n event_name STRING>>>>\n )\n
project
: The project where the dataset
is located.
dataset
: The dataset that must contain both the events_daily
and event_types
tables.
"},{"location":"mozfun/event_analysis/#recommended-pattern","title":"Recommended Pattern","text":"Because the view definitions themselves are not informative about the contents of the events fields, it is best to put your query immediately after the procedure invocation, rather than invoking the procedure and running a separate query.
This STMO query is an example of doing so. This allows viewers of the query to easily interpret what the funnel and count columns represent.
"},{"location":"mozfun/event_analysis/#structure-of-the-resulting-view","title":"Structure of the Resulting View","text":"The view will be created at
`moz-fx-data-shared-prod`.analysis.{event_name}.\n
The view will have a schema roughly matching the following:
root\n |-- submission_date: date\n |-- client_id: string\n |-- {funnel_1_name}: record\n | |-- {funnel_step_1_name} boolean\n | |-- {funnel_step_2_name} boolean\n ...\n |-- {funnel_N_name}: record\n | |-- {funnel_step_M_name}: boolean\n |-- {count_1_name}: integer\n ...\n |-- {count_N_name}: integer\n ...dimensions...\n
"},{"location":"mozfun/event_analysis/#funnels","title":"Funnels","text":"Each funnel will be a STRUCT
with nested columns representing completion of each step The types of those columns are boolean, and represent whether the user completed that step on that day.
STRUCT(\n completed_step_1 BOOLEAN,\n completed_step_2 BOOLEAN,\n ...\n) AS funnel_name\n
With one row per-user per-day, you can use COUNTIF(funnel_name.completed_step_N)
to query these fields. See below for an example.
"},{"location":"mozfun/event_analysis/#event-counts","title":"Event Counts","text":"Each event count is simply an INT64
representing the number of times the user completed those events on that day. If there are multiple events represented within one count, the values are summed. For example, if you wanted to know the number of times a user opened or closed the app, you could create a single event count with those two events.
event_count_name INT64\n
"},{"location":"mozfun/event_analysis/#examples","title":"Examples","text":"The following creates a few fields: - collection_flow
is a funnel for those that started creating a collection within Fenix, and then finished, either by adding those tabs to an existing collection or saving it as a new collection. - collection_flow_saved
represents users who started the collection flow then saved it as a new collection. - number_of_collections_created
is the number of collections created - number_of_collections_deleted
is the number of collections deleted
CALL mozfun.event_analysis.create_events_view(\n 'fenix_collection_funnels',\n 'moz-fx-data-shared-prod',\n 'org_mozilla_firefox',\n\n -- Funnels\n [\n STRUCT(\n \"collection_flow\" AS funnel_name,\n [STRUCT(\n \"started_collection_creation\" AS step_name,\n [STRUCT('collections' AS category, 'tab_select_opened' AS event_name)] AS events),\n STRUCT(\n \"completed_collection_creation\" AS step_name,\n [STRUCT('collections' AS category, 'saved' AS event_name),\n STRUCT('collections' AS category, 'tabs_added' AS event_name)] AS events)\n ] AS funnel),\n\n STRUCT(\n \"collection_flow_saved\" AS funnel_name,\n [STRUCT(\n \"started_collection_creation\" AS step_name,\n [STRUCT('collections' AS category, 'tab_select_opened' AS event_name)] AS events),\n STRUCT(\n \"saved_collection\" AS step_name,\n [STRUCT('collections' AS category, 'saved' AS event_name)] AS events)\n ] AS funnel)\n ],\n\n -- Event Counts\n [\n STRUCT(\n \"number_of_collections_created\" AS count_name,\n [STRUCT('collections' AS category, 'saved' AS event_name)] AS events\n ),\n STRUCT(\n \"number_of_collections_deleted\" AS count_name,\n [STRUCT('collections' AS category, 'removed' AS event_name)] AS events\n )\n ]\n);\n
From there, you can query a few things. For example, the fraction of users who completed each step of the collection flow over time:
SELECT\n submission_date,\n COUNTIF(collection_flow.started_collection_creation) / COUNT(*) AS started_collection_creation,\n COUNTIF(collection_flow.completed_collection_creation) / COUNT(*) AS completed_collection_creation,\nFROM\n `moz-fx-data-shared-prod`.analysis.fenix_collection_funnels\nWHERE\n submission_date >= DATE_SUB(current_date, INTERVAL 28 DAY)\nGROUP BY\n submission_date\n
Or you can see the number of collections created and deleted:
SELECT\n submission_date,\n SUM(number_of_collections_created) AS number_of_collections_created,\n SUM(number_of_collections_deleted) AS number_of_collections_deleted,\nFROM\n `moz-fx-data-shared-prod`.analysis.fenix_collection_funnels\nWHERE\n submission_date >= DATE_SUB(current_date, INTERVAL 28 DAY)\nGROUP BY\n submission_date\n
"},{"location":"mozfun/event_analysis/#parameters_1","title":"Parameters","text":"INPUTS
view_name STRING, project STRING, dataset STRING, funnels ARRAY<STRUCT<funnel_name STRING, funnel ARRAY<STRUCT<step_name STRING, events ARRAY<STRUCT<category STRING, event_name STRING>>>>>>, counts ARRAY<STRUCT<count_name STRING, events ARRAY<STRUCT<category STRING, event_name STRING>>>>\n
Source | Edit
"},{"location":"mozfun/event_analysis/#extract_event_counts-udf","title":"extract_event_counts (UDF)","text":"Extract the events and their counts from an events string. This function explicitly ignores event properties, and retrieves just the counts of the top-level events.
"},{"location":"mozfun/event_analysis/#usage_2","title":"Usage","text":"extract_event_counts(\n events STRING\n)\n
events
- A comma-separated events string, where each event is represented as a string of unicode chars.
"},{"location":"mozfun/event_analysis/#example_1","title":"Example","text":"See this dashboard for example usage.
"},{"location":"mozfun/event_analysis/#parameters_2","title":"Parameters","text":"INPUTS
events STRING\n
OUTPUTS
ARRAY<STRUCT<index STRING, count INT64>>\n
Source | Edit
"},{"location":"mozfun/event_analysis/#create_count_steps_query-stored-procedure","title":"create_count_steps_query (Stored Procedure)","text":"Generate the SQL statement that can be used to create an easily queryable view on events data.
"},{"location":"mozfun/event_analysis/#parameters_3","title":"Parameters","text":"INPUTS
project STRING, dataset STRING, events ARRAY<STRUCT<category STRING, event_name STRING>>\n
OUTPUTS
sql STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#event_index_to_match_string-udf","title":"event_index_to_match_string (UDF)","text":"Given an event index string, create a match string that is an exact match in the events_daily table.
"},{"location":"mozfun/event_analysis/#parameters_4","title":"Parameters","text":"INPUTS
index STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#aggregate_match_strings-udf","title":"aggregate_match_strings (UDF)","text":"Given an array of strings that each match a single event, aggregate those into a single regex string that will match any of the events.
"},{"location":"mozfun/event_analysis/#parameters_5","title":"Parameters","text":"INPUTS
match_strings ARRAY<STRING>\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#escape_metachars-udf","title":"escape_metachars (UDF)","text":"Escape all metachars from a regex string. This will make the string an exact match, no matter what it contains.
"},{"location":"mozfun/event_analysis/#parameters_6","title":"Parameters","text":"INPUTS
s STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#get_funnel_steps_sql-stored-procedure","title":"get_funnel_steps_sql (Stored Procedure)","text":"For a given funnel, get a SQL statement that can be used to determine if an events string contains that funnel.
"},{"location":"mozfun/event_analysis/#parameters_7","title":"Parameters","text":"INPUTS
project STRING, dataset STRING, funnel_name STRING, funnel ARRAY<STRUCT<step_name STRING, list ARRAY<STRUCT<category STRING, event_name STRING>>>>\n
OUTPUTS
funnel_sql STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#create_funnel_steps_query-stored-procedure","title":"create_funnel_steps_query (Stored Procedure)","text":"Generate the SQL statement that can be used to create an easily queryable view on events data.
"},{"location":"mozfun/event_analysis/#parameters_8","title":"Parameters","text":"INPUTS
project STRING, dataset STRING, funnel ARRAY<STRUCT<list ARRAY<STRUCT<category STRING, event_name STRING>>>>\n
OUTPUTS
sql STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#get_count_sql-stored-procedure","title":"get_count_sql (Stored Procedure)","text":"For a given funnel, get a SQL statement that can be used to determine if an events string contains that funnel.
"},{"location":"mozfun/event_analysis/#parameters_9","title":"Parameters","text":"INPUTS
project STRING, dataset STRING, count_name STRING, events ARRAY<STRUCT<category STRING, event_name STRING>>\n
OUTPUTS
count_sql STRING\n
Source | Edit
"},{"location":"mozfun/event_analysis/#create_funnel_regex-udf","title":"create_funnel_regex (UDF)","text":"Given an array of match strings, each representing a single funnel step, aggregate them into a regex string that will match only against the entire funnel. If intermediate_steps is TRUE, this allows for there to be events that occur between the funnel steps.
"},{"location":"mozfun/event_analysis/#parameters_10","title":"Parameters","text":"INPUTS
step_regexes ARRAY<STRING>, intermediate_steps BOOLEAN\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/ga/","title":"Ga","text":""},{"location":"mozfun/ga/#nullify_string-udf","title":"nullify_string (UDF)","text":"Nullify a GA string, which sometimes come in \"(not set)\" or simply \"\"
UDF for handling empty Google Analytics data.
"},{"location":"mozfun/ga/#parameters","title":"Parameters","text":"INPUTS
s STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/glam/","title":"Glam","text":""},{"location":"mozfun/glam/#map_from_array_offsets-udf","title":"map_from_array_offsets (UDF)","text":""},{"location":"mozfun/glam/#parameters","title":"Parameters","text":"INPUTS
required ARRAY<FLOAT64>, `values` ARRAY<FLOAT64>\n
OUTPUTS
ARRAY<STRUCT<key STRING, value FLOAT64>>\n
Source | Edit
"},{"location":"mozfun/glam/#map_from_array_offsets_precise-udf","title":"map_from_array_offsets_precise (UDF)","text":""},{"location":"mozfun/glam/#parameters_1","title":"Parameters","text":"INPUTS
required ARRAY<FLOAT64>, `values` ARRAY<FLOAT64>\n
OUTPUTS
ARRAY<STRUCT<key STRING, value FLOAT64>>\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_generate_scalar_buckets-udf","title":"histogram_generate_scalar_buckets (UDF)","text":"Generate scalar buckets for a histogram using a fixed number of buckets.
"},{"location":"mozfun/glam/#parameters_2","title":"Parameters","text":"INPUTS
min_bucket FLOAT64, max_bucket FLOAT64, num_buckets INT64\n
OUTPUTS
ARRAY<FLOAT64>DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_generate_exponential_buckets-udf","title":"histogram_generate_exponential_buckets (UDF)","text":"Generate exponential buckets for a histogram.
"},{"location":"mozfun/glam/#parameters_3","title":"Parameters","text":"INPUTS
min FLOAT64, max FLOAT64, nBuckets FLOAT64\n
OUTPUTS
ARRAY<FLOAT64>DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/glam/#fenix_build_to_build_hour-udf","title":"fenix_build_to_build_hour (UDF)","text":"Returns a custom build id generated from the build hour of a Fenix build.
"},{"location":"mozfun/glam/#parameters_4","title":"Parameters","text":"INPUTS
app_build_id STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_bucket_from_value-udf","title":"histogram_bucket_from_value (UDF)","text":""},{"location":"mozfun/glam/#parameters_5","title":"Parameters","text":"INPUTS
buckets ARRAY<STRING>, val FLOAT64\n
OUTPUTS
FLOAT64\n
Source | Edit
"},{"location":"mozfun/glam/#build_hour_to_datetime-udf","title":"build_hour_to_datetime (UDF)","text":"Parses the custom build id used for Fenix builds in GLAM to a datetime.
"},{"location":"mozfun/glam/#parameters_6","title":"Parameters","text":"INPUTS
build_hour STRING\n
OUTPUTS
DATETIME\n
Source | Edit
"},{"location":"mozfun/glam/#percentile-udf","title":"percentile (UDF)","text":"Get the value of the approximate CDF at the given percentile.
"},{"location":"mozfun/glam/#parameters_7","title":"Parameters","text":"INPUTS
percentile FLOAT64, histogram ARRAY<STRUCT<key STRING, value FLOAT64>>, type STRING\n
OUTPUTS
FLOAT64 DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_normalized_sum-udf","title":"histogram_normalized_sum (UDF)","text":"Compute the normalized sum of an array of histograms.
"},{"location":"mozfun/glam/#parameters_8","title":"Parameters","text":"INPUTS
arrs ARRAY<STRUCT<key STRING, value INT64>>, weight FLOAT64\n
OUTPUTS
ARRAY<STRUCT<key STRING, value FLOAT64>>\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_fill_buckets-udf","title":"histogram_fill_buckets (UDF)","text":"Interpolate missing histogram buckets with empty buckets.
"},{"location":"mozfun/glam/#parameters_9","title":"Parameters","text":"INPUTS
input_map ARRAY<STRUCT<key STRING, value FLOAT64>>, buckets ARRAY<STRING>\n
OUTPUTS
ARRAY<STRUCT<key STRING, value FLOAT64>>\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_fill_buckets_dirichlet-udf","title":"histogram_fill_buckets_dirichlet (UDF)","text":"Interpolate missing histogram buckets with empty buckets so it becomes a valid estimator for the dirichlet distribution.
See: https://docs.google.com/document/d/1ipy1oFIKDvHr3R6Ku0goRjS11R1ZH1z2gygOGkSdqUg
To use this, you must first: Aggregate the histograms to the client level, to get a histogram {k1: p1, k2:p2, ..., kK: pN} where the p's are proportions(and p1, p2, ... sum to 1) and Kis the number of buckets.
This is then the client's estimated density, and every client has been reduced to one row (i.e the client's histograms are reduced to this single one and normalized).
Then add all of these across clients to get {k1: P1, k2:P2, ..., kK: PK} where P1 = sum(p1 across N clients) and P2 = sum(p2 across N clients).
Calculate the total number of buckets K, as well as the total number of profiles N reporting
Then our estimate for final density is: [{k1: ((P1 + 1/K) / (nreporting+1)), k2: ((P2 + 1/K) /(nreporting+1)), ... }
"},{"location":"mozfun/glam/#parameters_10","title":"Parameters","text":"INPUTS
input_map ARRAY<STRUCT<key STRING, value FLOAT64>>, buckets ARRAY<STRING>, total_users INT64\n
OUTPUTS
ARRAY<STRUCT<key STRING, value FLOAT64>>\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_buckets_cast_string_array-udf","title":"histogram_buckets_cast_string_array (UDF)","text":"Cast histogram buckets into a string array.
"},{"location":"mozfun/glam/#parameters_11","title":"Parameters","text":"INPUTS
buckets ARRAY<INT64>\n
OUTPUTS
ARRAY<STRING>\n
Source | Edit
"},{"location":"mozfun/glam/#build_seconds_to_hour-udf","title":"build_seconds_to_hour (UDF)","text":"Returns a custom build id generated from the build seconds of a FOG build.
"},{"location":"mozfun/glam/#parameters_12","title":"Parameters","text":"INPUTS
build_hour STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_generate_functional_buckets-udf","title":"histogram_generate_functional_buckets (UDF)","text":"Generate functional buckets for a histogram. This is specific to Glean.
See: https://github.com/mozilla/glean/blob/main/glean-core/src/histogram/functional.rs
A functional bucketing algorithm. The bucket index of a given sample is determined with the following function:
i = $$ \\lfloor{n log_{\\text{base}}{(x)}}\\rfloor $$
In other words, there are n buckets for each power of base
magnitude.
"},{"location":"mozfun/glam/#parameters_13","title":"Parameters","text":"INPUTS
log_base INT64, buckets_per_magnitude INT64, range_max INT64\n
OUTPUTS
ARRAY<FLOAT64>DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_generate_linear_buckets-udf","title":"histogram_generate_linear_buckets (UDF)","text":"Generate linear buckets for a histogram.
"},{"location":"mozfun/glam/#parameters_14","title":"Parameters","text":"INPUTS
min FLOAT64, max FLOAT64, nBuckets FLOAT64\n
OUTPUTS
ARRAY<FLOAT64>DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_from_buckets_uniform-udf","title":"histogram_from_buckets_uniform (UDF)","text":"Create an empty histogram from an array of buckets.
"},{"location":"mozfun/glam/#parameters_15","title":"Parameters","text":"INPUTS
buckets ARRAY<STRING>\n
OUTPUTS
ARRAY<STRUCT<key STRING, value FLOAT64>>\n
Source | Edit
"},{"location":"mozfun/glam/#histogram_cast_json-udf","title":"histogram_cast_json (UDF)","text":"Cast a histogram into a JSON blob.
"},{"location":"mozfun/glam/#parameters_16","title":"Parameters","text":"INPUTS
histogram ARRAY<STRUCT<key STRING, value FLOAT64>>\n
OUTPUTS
STRING DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/glean/","title":"glean","text":"Functions for working with Glean data.
"},{"location":"mozfun/glean/#legacy_compatible_experiments-udf","title":"legacy_compatible_experiments (UDF)","text":"Formats a Glean experiments field into a Legacy Telemetry experiments field by dropping the extra information that Glean collects
This UDF transforms the ping_info.experiments
field from Glean pings into the format for experiments
used by Legacy Telemetry pings. In particular, it drops the exta information that Glean pings collect.
If you need to combine Glean data with Legacy Telemetry data, then you can use this UDF to transform a Glean experiments field into the structure of a Legacy Telemetry one.
"},{"location":"mozfun/glean/#parameters","title":"Parameters","text":"INPUTS
ping_info__experiments ARRAY<STRUCT<key STRING, value STRUCT<branch STRING, extra STRUCT<type STRING, enrollment_id STRING>>>>\n
OUTPUTS
ARRAY<STRUCT<key STRING, value STRING>>\n
Source | Edit
"},{"location":"mozfun/glean/#parse_datetime-udf","title":"parse_datetime (UDF)","text":"Parses a Glean datetime metric string value as a BigQuery timestamp.
See https://mozilla.github.io/glean/book/reference/metrics/datetime.html
"},{"location":"mozfun/glean/#parameters_1","title":"Parameters","text":"INPUTS
datetime_string STRING\n
OUTPUTS
TIMESTAMP\n
Source | Edit
"},{"location":"mozfun/glean/#timespan_nanos-udf","title":"timespan_nanos (UDF)","text":"Returns the number of nanoseconds represented by a Glean timespan struct.
See https://mozilla.github.io/glean/book/user/metrics/timespan.html
"},{"location":"mozfun/glean/#parameters_2","title":"Parameters","text":"INPUTS
timespan STRUCT<time_unit STRING, value INT64>\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/glean/#timespan_seconds-udf","title":"timespan_seconds (UDF)","text":"Returns the number of seconds represented by a Glean timespan struct, rounded down to full seconds.
See https://mozilla.github.io/glean/book/user/metrics/timespan.html
"},{"location":"mozfun/glean/#parameters_3","title":"Parameters","text":"INPUTS
timespan STRUCT<time_unit STRING, value INT64>\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/hist/","title":"hist","text":"Functions for working with string encodings of histograms from desktop telemetry.
"},{"location":"mozfun/hist/#count-udf","title":"count (UDF)","text":"Given histogram h, return the count of all measurements across all buckets.
Given histogram h, return the count of all measurements across all buckets.
Extracts the values from the histogram and sums them, returning the total_count.
"},{"location":"mozfun/hist/#parameters","title":"Parameters","text":"INPUTS
histogram STRING\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/hist/#mean-udf","title":"mean (UDF)","text":"Given histogram h, return floor(mean) of the measurements in the bucket. That is, the histogram sum divided by the number of measurements taken.
https://github.com/mozilla/telemetry-batch-view/blob/ea0733c/src/main/scala/com/mozilla/telemetry/utils/MainPing.scala#L292-L307
"},{"location":"mozfun/hist/#parameters_1","title":"Parameters","text":"INPUTS
histogram ANY TYPE\n
OUTPUTS
STRUCT<sum INT64, VALUES ARRAY<STRUCT<value INT64>>>\n
Source | Edit
"},{"location":"mozfun/hist/#threshold_count-udf","title":"threshold_count (UDF)","text":"Return the number of recorded observations greater than threshold for the histogram. CAUTION: Does not count any buckets that have any values less than the threshold. For example, a bucket with range (1, 10) will not be counted for a threshold of 2. Use threshold that are not bucket boundaries with caution.
https://github.com/mozilla/telemetry-batch-view/blob/ea0733c/src/main/scala/com/mozilla/telemetry/utils/MainPing.scala#L213-L239
"},{"location":"mozfun/hist/#parameters_2","title":"Parameters","text":"INPUTS
histogram STRING, threshold INT64\n
Source | Edit
"},{"location":"mozfun/hist/#extract_keyed_hist_sum-udf","title":"extract_keyed_hist_sum (UDF)","text":"Sum of a keyed histogram, across all keys it contains.
"},{"location":"mozfun/hist/#extract-keyed-histogram-sum","title":"Extract Keyed Histogram Sum","text":"Takes a keyed histogram and returns a single number: the sum of all keys it contains. The expected input type is ARRAY<STRUCT<key STRING, value STRING>>
The return type is INT64
.
The key
field will be ignored, and the `value is expected to be the compact histogram representation.
"},{"location":"mozfun/hist/#parameters_3","title":"Parameters","text":"INPUTS
keyed_histogram ARRAY<STRUCT<key STRING, value STRING>>\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/hist/#string_to_json-udf","title":"string_to_json (UDF)","text":"Convert a histogram string (in JSON or compact format) to a full histogram JSON blob.
"},{"location":"mozfun/hist/#parameters_4","title":"Parameters","text":"INPUTS
input STRING\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/hist/#extract_histogram_sum-udf","title":"extract_histogram_sum (UDF)","text":"Extract a histogram sum from a JSON str representation
"},{"location":"mozfun/hist/#extract-histogram-sum","title":"Extract Histogram Sum","text":""},{"location":"mozfun/hist/#parameters_5","title":"Parameters","text":"INPUTS
input STRING\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/hist/#percentiles-udf","title":"percentiles (UDF)","text":"Given histogram and list of percentiles,calculate what those percentiles are for the histogram. If the histogram is empty, returns NULL.
"},{"location":"mozfun/hist/#parameters_6","title":"Parameters","text":"INPUTS
histogram ANY TYPE, percentiles ARRAY<FLOAT64>\n
OUTPUTS
ARRAY<STRUCT<percentile FLOAT64, value INT64>>\n
Source | Edit
"},{"location":"mozfun/hist/#extract-udf","title":"extract (UDF)","text":"Return a parsed struct from a string-encoded histogram.
We support a variety of compact encodings as well as the classic JSON representation as sent in main pings.
The built-in BigQuery JSON parsing functions are not powerful enough to handle all the logic here, so we resort to some string processing. This function could behave unexpectedly on poorly-formatted histogram JSON, but we expect that payload validation in the data pipeline should ensure that histograms are well formed, which gives us some flexibility.
For more on desktop telemetry histogram structure, see:
- https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/collection/histograms.html
The compact encodings were originally proposed in:
- https://docs.google.com/document/d/1k_ji_1DB6htgtXnPpMpa7gX0klm-DGV5NMY7KkvVB00/edit#
SELECT\n mozfun.hist.extract(\n '{\"bucket_count\":3,\"histogram_type\":4,\"sum\":1,\"range\":[1,2],\"values\":{\"0\":1,\"1\":0}}'\n ).sum\n-- 1\n
SELECT\n mozfun.hist.extract('5').sum\n-- 5\n
"},{"location":"mozfun/hist/#parameters_7","title":"Parameters","text":"INPUTS
input STRING\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/hist/#normalize-udf","title":"normalize (UDF)","text":"Normalize a histogram. Set sum to 1, and normalize to 1 the histogram bucket counts.
"},{"location":"mozfun/hist/#parameters_8","title":"Parameters","text":"INPUTS
histogram STRUCT<bucket_count INT64, `sum` INT64, histogram_type INT64, `range` ARRAY<INT64>, `values` ARRAY<STRUCT<key INT64, value INT64>>>\n
OUTPUTS
STRUCT<bucket_count INT64, `sum` INT64, histogram_type INT64, `range` ARRAY<INT64>, `values` ARRAY<STRUCT<key INT64, value FLOAT64>>>\n
Source | Edit
"},{"location":"mozfun/hist/#merge-udf","title":"merge (UDF)","text":"Merge an array of histograms into a single histogram.
- The histogram values will be summed per-bucket
- The count will be summed
- Other fields will take the mode_last
"},{"location":"mozfun/hist/#parameters_9","title":"Parameters","text":"INPUTS
histogram_list ANY TYPE\n
Source | Edit
"},{"location":"mozfun/iap/","title":"iap","text":""},{"location":"mozfun/iap/#scrub_apple_receipt-udf","title":"scrub_apple_receipt (UDF)","text":"Take output from mozfun.iap.parse_apple_receipt and remove fields or reduce their granularity so that the returned value can be exposed to all employees via redash.
"},{"location":"mozfun/iap/#parameters","title":"Parameters","text":"INPUTS
apple_receipt ANY TYPE\n
OUTPUTS
STRUCT<environment STRING, active_period STRUCT<start_date DATE, end_date DATE, start_time TIMESTAMP, end_time TIMESTAMP, `interval` STRING, interval_count INT64>, trial_period STRUCT<start_time TIMESTAMP, end_time TIMESTAMP>>\n
Source | Edit
"},{"location":"mozfun/iap/#parse_android_receipt-udf","title":"parse_android_receipt (UDF)","text":"Used to parse data
field from firestore export of fxa dataset iap_google_raw. The content is documented at https://developer.android.com/google/play/billing/subscriptions and https://developers.google.com/android-publisher/api-ref/rest/v3/purchases.subscriptions
"},{"location":"mozfun/iap/#parameters_1","title":"Parameters","text":"INPUTS
input STRING\n
Source | Edit
"},{"location":"mozfun/iap/#parse_apple_receipt-udf","title":"parse_apple_receipt (UDF)","text":"Used to parse provider_receipt_json in mozilla vpn subscriptions where provider is \"APPLE\". The content is documented at https://developer.apple.com/documentation/appstorereceipts/responsebody
"},{"location":"mozfun/iap/#parameters_2","title":"Parameters","text":"INPUTS
provider_receipt_json STRING\n
OUTPUTS
STRUCT<environment STRING, latest_receipt BYTES, latest_receipt_info ARRAY<STRUCT<cancellation_date STRING, cancellation_date_ms INT64, cancellation_date_pst STRING, cancellation_reason STRING, expires_date STRING, expires_date_ms INT64, expires_date_pst STRING, in_app_ownership_type STRING, is_in_intro_offer_period STRING, is_trial_period STRING, original_purchase_date STRING, original_purchase_date_ms INT64, original_purchase_date_pst STRING, original_transaction_id STRING, product_id STRING, promotional_offer_id STRING, purchase_date STRING, purchase_date_ms INT64, purchase_date_pst STRING, quantity INT64, subscription_group_identifier INT64, transaction_id INT64, web_order_line_item_id INT64>>, pending_renewal_info ARRAY<STRUCT<auto_renew_product_id STRING, auto_renew_status INT64, expiration_intent INT64, is_in_billing_retry_period INT64, original_transaction_id STRING, product_id STRING>>, receipt STRUCT<adam_id INT64, app_item_id INT64, application_version STRING, bundle_id STRING, download_id INT64, in_app ARRAY<STRUCT<cancellation_date STRING, cancellation_date_ms INT64, cancellation_date_pst STRING, cancellation_reason STRING, expires_date STRING, expires_date_ms INT64, expires_date_pst STRING, in_app_ownership_type STRING, is_in_intro_offer_period STRING, is_trial_period STRING, original_purchase_date STRING, original_purchase_date_ms INT64, original_purchase_date_pst STRING, original_transaction_id STRING, product_id STRING, promotional_offer_id STRING, purchase_date STRING, purchase_date_ms INT64, purchase_date_pst STRING, quantity INT64, subscription_group_identifier INT64, transaction_id INT64, web_order_line_item_id INT64>>, original_application_version STRING, original_purchase_date STRING, original_purchase_date_ms INT64, original_purchase_date_pst STRING, receipt_creation_date STRING, receipt_creation_date_ms INT64, receipt_creation_date_pst STRING, receipt_type STRING, request_date STRING, request_date_ms INT64, request_date_pst STRING, version_external_identifier INT64>, status INT64>DETERMINISTIC\n
Source | Edit
"},{"location":"mozfun/iap/#parse_apple_event-udf","title":"parse_apple_event (UDF)","text":"Used to parse data
field from firestore export of fxa dataset iap_app_store_purchases_raw. The content is documented at https://developer.apple.com/documentation/appstoreservernotifications/responsebodyv2decodedpayload and https://github.com/mozilla/fxa/blob/700ed771860da450add97d62f7e6faf2ead0c6ba/packages/fxa-shared/payments/iap/apple-app-store/subscription-purchase.ts#L115-L171
"},{"location":"mozfun/iap/#parameters_3","title":"Parameters","text":"INPUTS
input STRING\n
Source | Edit
"},{"location":"mozfun/iap/#derive_apple_subscription_interval-udf","title":"derive_apple_subscription_interval (UDF)","text":"Take output purchase_date and expires_date from mozfun.iap.parse_apple_receipt and return the subscription interval to use for accounting. Values must be DATETIME in America/Los_Angeles to get correct results because of how timezone and daylight savings impact the time of day and the length of a month.
"},{"location":"mozfun/iap/#parameters_4","title":"Parameters","text":"INPUTS
start DATETIME, `end` DATETIME\n
OUTPUTS
STRUCT<`interval` STRING, interval_count INT64>\n
Source | Edit
"},{"location":"mozfun/json/","title":"json","text":"Functions for parsing Mozilla-specific JSON data types.
"},{"location":"mozfun/json/#mode_last-udf","title":"mode_last (UDF)","text":"Returns the most frequently occuring element in an array of json-compatible elements. In the case of multiple values tied for the highest count, it returns the value that appears latest in the array. Nulls are ignored.
"},{"location":"mozfun/json/#parameters","title":"Parameters","text":"INPUTS
list ANY TYPE\n
Source | Edit
"},{"location":"mozfun/json/#extract_int_map-udf","title":"extract_int_map (UDF)","text":"Returns an array of key/value structs from a string representing a JSON map. Both keys and values are cast to integers.
This is the format for the \"values\" field in the desktop telemetry histogram JSON representation.
"},{"location":"mozfun/json/#parameters_1","title":"Parameters","text":"INPUTS
input STRING\n
Source | Edit
"},{"location":"mozfun/json/#from_map-udf","title":"from_map (UDF)","text":"Converts a standard \"map\" like datastructure array<struct<key, value>>
into a JSON value.
Convert the standard Array<Struct<key, value>>
style maps to JSON
values.
"},{"location":"mozfun/json/#parameters_2","title":"Parameters","text":"INPUTS
input JSON\n
OUTPUTS
json\n
Source | Edit
"},{"location":"mozfun/json/#js_extract_string_map-udf","title":"js_extract_string_map (UDF)","text":"Returns an array of key/value structs from a string representing a JSON map.
BigQuery Standard SQL JSON functions are insufficient to implement this function, so JS is being used and it may not perform well with large or numerous inputs.
Non-string non-null values are encoded as json.
"},{"location":"mozfun/json/#parameters_3","title":"Parameters","text":"INPUTS
input STRING\n
OUTPUTS
ARRAY<STRUCT<key STRING, value STRING>>\n
Source | Edit
"},{"location":"mozfun/map/","title":"map","text":"Functions for working with arrays of key/value structs.
"},{"location":"mozfun/map/#mode_last-udf","title":"mode_last (UDF)","text":"Combine entries from multiple maps, determine the value for each key using mozfun.stats.mode_last.
"},{"location":"mozfun/map/#parameters","title":"Parameters","text":"INPUTS
entries ANY TYPE\n
Source | Edit
"},{"location":"mozfun/map/#sum-udf","title":"sum (UDF)","text":"Return the sum of values by key in an array of map entries. The expected schema for entries is ARRAY>, where the type for value must be supported by SUM, which allows numeric data types INT64, NUMERIC, and FLOAT64."},{"location":"mozfun/map/#parameters_1","title":"Parameters","text":"
INPUTS
entries ANY TYPE\n
Source | Edit
"},{"location":"mozfun/map/#extract_keyed_scalar_sum-udf","title":"extract_keyed_scalar_sum (UDF)","text":"Sums all values in a keyed scalar.
"},{"location":"mozfun/map/#extract-keyed-scalar-sum","title":"Extract Keyed Scalar Sum","text":"Takes a keyed scalar and returns a single number: the sum of all values it contains. The expected input type is ARRAY<STRUCT<key STRING, value INT64>>
The return type is INT64
.
The key
field will be ignored.
"},{"location":"mozfun/map/#parameters_2","title":"Parameters","text":"INPUTS
keyed_scalar ARRAY<STRUCT<key STRING, value INT64>>\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/map/#get_key_with_null-udf","title":"get_key_with_null (UDF)","text":"Fetch the value associated with a given key from an array of key/value structs.
Because map types aren't available in BigQuery, we model maps as arrays of structs instead, and this function provides map-like access to such fields. This version matches NULL keys as well.
"},{"location":"mozfun/map/#parameters_3","title":"Parameters","text":"INPUTS
map ANY TYPE, k ANY TYPE\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/map/#set_key-udf","title":"set_key (UDF)","text":"Set a key to a value in a map. If you call map.get_key after setting, the value you set will be returned.
map.set_key
Set a key to a specific value in a map. We represent maps as Arrays of Key/Value structs: ARRAY<STRUCT<key ANY TYPE, value ANY TYPE>>
.
The type of the key and value you are setting must match the types in the map itself.
"},{"location":"mozfun/map/#parameters_4","title":"Parameters","text":"INPUTS
map ANY TYPE, new_key ANY TYPE, new_value ANY TYPE\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/map/#get_key-udf","title":"get_key (UDF)","text":"Fetch the value associated with a given key from an array of key/value structs.
Because map types aren't available in BigQuery, we model maps as arrays of structs instead, and this function provides map-like access to such fields.
"},{"location":"mozfun/map/#parameters_5","title":"Parameters","text":"INPUTS
map ANY TYPE, k ANY TYPE\n
Source | Edit
"},{"location":"mozfun/norm/","title":"norm","text":"Functions for normalizing data.
"},{"location":"mozfun/norm/#get_windows_info-udf","title":"get_windows_info (UDF)","text":"Exract the name, the version name, the version number, and the build number corresponding to a Microsoft Windows operating system version string in the form of .. or ... for most release versions of Windows after 2007."},{"location":"mozfun/norm/#windows-names-versions-and-builds","title":"Windows Names, Versions, and Builds","text":""},{"location":"mozfun/norm/#summary","title":"Summary","text":"
This function is primarily designed to parse the field os_version
in table mozdata.default_browser_agent.default_browser
. Given a Microsoft Windows OS version string, the function returns the name of the operating system, the version name, the version number, and the build number corresponding to the operating system. As of November 2022, the parser can handle 99.89% of the os_version
values collected in table mozdata.default_browser_agent.default_browser
.
"},{"location":"mozfun/norm/#status-as-of-november-2022","title":"Status as of November 2022","text":"As of November 2022, the expected valid values of os_version
are either x.y.z
or w.x.y.z
where w
, x
, y
, and z
are integers.
As of November 2022, the return values for Windows 10 and Windows 11 are based on Windows 10 release information and Windows 11 release information. For 3-number version strings, the parser assumes the valid values of z
in x.y.z
are at most 5 digits in length. For 4-number version strings, the parser assumes the valid values of z
in w.x.y.z
are at most 6 digits in length. The function makes an educated effort to handle Windows Vista, Windows 7, Windows 8, and Windows 8.1 information, but does not guarantee the return values are absolutely accurate. The function assumes the presence of undocumented non-release versions of Windows 10 and Windows 11, and will return an estimated name, version number, build number but not the version name. The function does not handle other versions of Windows.
As of November 2022, the parser currently handles just over 99.89% of data in the field os_version
in table mozdata.default_browser_agent.default_browser
.
"},{"location":"mozfun/norm/#build-number-conventions","title":"Build number conventions","text":"Note: Microsoft convention for build numbers for Windows 10 and 11 include two numbers, such as build number 22621.900
for version 22621
. The first number repeats the version number and the second number uniquely identifies the build within the version. To simplify data processing and data analysis, this function returns the second unique identifier as an integer instead of returning the full build number as a string.
"},{"location":"mozfun/norm/#example-usage","title":"Example usage","text":"SELECT\n `os_version`,\n mozfun.norm.get_windows_info(`os_version`) AS windows_info\nFROM `mozdata.default_browser_agent.default_browser`\nWHERE `submission_timestamp` > (CURRENT_TIMESTAMP() - INTERVAL 7 DAY) AND LEFT(document_id, 2) = '00'\nLIMIT 1000\n
"},{"location":"mozfun/norm/#mapping","title":"Mapping","text":"os_version windows_name windows_version_name windows_version_number windows_build_number 6.0.z Windows Vista 6.0 6.0 z 6.1.z Windows 7 7.0 6.1 z 6.2.z Windows 8 8.0 6.2 z 6.3.z Windows 8.1 8.1 6.3 z 10.0.10240.z Windows 10 1507 10240 z 10.0.10586.z Windows 10 1511 10586 z 10.0.14393.z Windows 10 1607 14393 z 10.0.15063.z Windows 10 1703 15063 z 10.0.16299.z Windows 10 1709 16299 z 10.0.17134.z Windows 10 1803 17134 z 10.0.17763.z Windows 10 1809 17763 z 10.0.18362.z Windows 10 1903 18362 z 10.0.18363.z Windows 10 1909 18363 z 10.0.19041.z Windows 10 2004 19041 z 10.0.19042.z Windows 10 20H2 19042 z 10.0.19043.z Windows 10 21H1 19043 z 10.0.19044.z Windows 10 21H2 19044 z 10.0.19045.z Windows 10 22H2 19045 z 10.0.y.z Windows 10 UNKNOWN y z 10.0.22000.z Windows 11 21H2 22000 z 10.0.22621.z Windows 11 22H2 22621 z 10.0.y.z Windows 11 UNKNOWN y z all other values (null) (null) (null) (null)"},{"location":"mozfun/norm/#parameters","title":"Parameters","text":"INPUTS
os_version STRING\n
OUTPUTS
STRUCT<name STRING, version_name STRING, version_number DECIMAL, build_number INT64>\n
Source | Edit
"},{"location":"mozfun/norm/#fenix_build_to_datetime-udf","title":"fenix_build_to_datetime (UDF)","text":"Convert the Fenix client_info.app_build-format string to a DATETIME. May return NULL on failure.
Fenix originally used an 8-digit app_build format>
In short it is yDDDHHmm
:
- y is years since 2018
- DDD is day of year, 0-padded, 001-366
- HH is hour of day, 00-23
- mm is minute of hour, 00-59
The last date seen with an 8-digit build ID is 2020-08-10.
Newer builds use a 10-digit format> where the integer represents a pattern consisting of 32 bits. The 17 bits starting 13 bits from the left represent a number of hours since UTC midnight beginning 2014-12-28.
This function tolerates both formats.
After using this you may wish to DATETIME_TRUNC(result, DAY)
for grouping by build date.
"},{"location":"mozfun/norm/#parameters_1","title":"Parameters","text":"INPUTS
app_build STRING\n
OUTPUTS
INT64\n
Source | Edit
"},{"location":"mozfun/norm/#extract_version-udf","title":"extract_version (UDF)","text":"Extracts numeric version data from a version string like <major>.<minor>.<patch>
.
Note: Non-zero minor and patch versions will be floating point Numeric
.
Usage:
SELECT\n mozfun.norm.extract_version(version_string, 'major') as major_version,\n mozfun.norm.extract_version(version_string, 'minor') as minor_version,\n mozfun.norm.extract_version(version_string, 'patch') as patch_version\n
Example using \"96.05.01\"
:
SELECT\n mozfun.norm.extract_version('96.05.01', 'major') as major_version, -- 96\n mozfun.norm.extract_version('96.05.01', 'minor') as minor_version, -- 5\n mozfun.norm.extract_version('96.05.01', 'patch') as patch_version -- 1\n
"},{"location":"mozfun/norm/#parameters_2","title":"Parameters","text":"INPUTS
version_string STRING, extraction_level STRING\n
OUTPUTS
NUMERIC\n
Source | Edit
"},{"location":"mozfun/norm/#os-udf","title":"os (UDF)","text":"Normalize an operating system string to one of the three major desktop platforms, one of the two major mobile platforms, or \"Other\".
This is a reimplementation of logic used in the data pipeline> to populate normalized_os
.
"},{"location":"mozfun/norm/#parameters_3","title":"Parameters","text":"INPUTS
os STRING\n
Source | Edit
"},{"location":"mozfun/norm/#glean_baseline_client_info-udf","title":"glean_baseline_client_info (UDF)","text":"Accepts a glean client_info struct as input and returns a modified struct that includes a few parsed or normalized variants of the input fields.
"},{"location":"mozfun/norm/#parameters_4","title":"Parameters","text":"INPUTS
client_info ANY TYPE, metrics ANY TYPE\n
OUTPUTS
string\n
Source | Edit
"},{"location":"mozfun/norm/#get_earliest_value-udf","title":"get_earliest_value (UDF)","text":"This UDF returns the earliest not-null value pair and datetime from a list of values and their corresponding timestamp.
The function will return the first value pair in the input array, that is not null and has the earliest timestamp.
Because there may be more than one value on the same date e.g. more than one value reported by different pings on the same date, the dates must be given as TIMESTAMPS and the values as STRING.
Usage:
SELECT\n mozfun.norm.get_earliest_value(ARRAY<STRUCT<value STRING, value_source STRING, value_date DATETIME>>) AS <alias>\n
"},{"location":"mozfun/norm/#parameters_5","title":"Parameters","text":"INPUTS
value_set ARRAY<STRUCT<value STRING, value_source STRING, value_date DATETIME>>\n
OUTPUTS
STRUCT<earliest_value STRING, earliest_value_source STRING, earliest_date DATETIME>\n
Source | Edit
"},{"location":"mozfun/norm/#browser_version_info-udf","title":"browser_version_info (UDF)","text":"Adds metadata related to the browser version in a struct.
This is a temporary solution that allows browser version analysis. It should eventually be replaced with one or more browser version tables that serves as a source of truth for version releases.
"},{"location":"mozfun/norm/#parameters_6","title":"Parameters","text":"INPUTS
version_string STRING\n
OUTPUTS
STRUCT<version STRING, major_version NUMERIC, minor_version NUMERIC, patch_revision NUMERIC, is_major_release BOOLEAN>\n
Source | Edit
"},{"location":"mozfun/norm/#vpn_attribution-udf","title":"vpn_attribution (UDF)","text":"Accepts vpn attribution fields as input and returns a struct of normalized fields.
"},{"location":"mozfun/norm/#parameters_7","title":"Parameters","text":"INPUTS
utm_campaign STRING, utm_content STRING, utm_medium STRING, utm_source STRING\n
OUTPUTS
STRUCT<normalized_acquisition_channel STRING, normalized_campaign STRING, normalized_content STRING, normalized_medium STRING, normalized_source STRING, website_channel_group STRING>\n
Source | Edit
"},{"location":"mozfun/norm/#product_info-udf","title":"product_info (UDF)","text":"Returns a normalized app_name
and canonical_app_name
for a product based on legacy_app_name
and normalized_os
values. Thus, this function serves as a bridge to get from legacy application identifiers to the consistent identifiers we are using for reporting in 2021.
As of 2021, most Mozilla products are sending telemetry via the Glean SDK, with Glean telemetry in active development for desktop Firefox as well. The probeinfo
API is the single source of truth for metadata about applications sending Glean telemetry; the values for app_name
and canonical_app_name
returned here correspond to the \"end-to-end identifier\" values documented in the v2 Glean app listings endpoint . For non-Glean telemetry, we provide values in the same style to provide continuity as we continue the migration to Glean.
For legacy telemetry pings like main
ping for desktop and core
ping for mobile products, the legacy_app_name
given as input to this function should come from the submission URI (stored as metadata.uri.app_name
in BigQuery ping tables). For Glean pings, we have invented product
values that can be passed in to this function as the legacy_app_name
parameter.
The returned app_name
values are intended to be readable and unambiguous, but short and easy to type. They are suitable for use as a key in derived tables. product
is a deprecated field that was similar in intent.
The returned canonical_app_name
is more verbose and is suited for displaying in visualizations. canonical_name
is a synonym that we provide for historical compatibility with previous versions of this function.
The returned struct also contains boolean contributes_to_2021_kpi
as the canonical reference for whether the given application is included in KPI reporting. Additional fields may be added for future years.
The normalized_os
value that's passed in should be the top-level normalized_os
value present in any ping table or you may want to wrap a raw value in mozfun.norm.os
like mozfun.norm.product_info(app_name, mozfun.norm.os(os))
.
This function also tolerates passing in a product
value as legacy_app_name
so that this function is still useful for derived tables which have thrown away the raw app_name
value from legacy pings.
The mappings are as follows:
legacy_app_name normalized_os app_name product canonical_app_name 2019 2020 2021 Firefox * firefox_desktop Firefox Firefox for Desktop true true true Fenix Android fenix Fenix Firefox for Android (Fenix) true true true Fennec Android fennec Fennec Firefox for Android (Fennec) true true true Firefox Preview Android firefox_preview Firefox Preview Firefox Preview for Android true true true Fennec iOS firefox_ios Firefox iOS Firefox for iOS true true true FirefoxForFireTV Android firefox_fire_tv Firefox Fire TV Firefox for Fire TV false false false FirefoxConnect Android firefox_connect Firefox Echo Firefox for Echo Show true true false Zerda Android firefox_lite Firefox Lite Firefox Lite true true false Zerda_cn Android firefox_lite_cn Firefox Lite CN Firefox Lite (China) false false false Focus Android focus_android Focus Android Firefox Focus for Android true true true Focus iOS focus_ios Focus iOS Firefox Focus for iOS true true true Klar Android klar_android Klar Android Firefox Klar for Android false false false Klar iOS klar_ios Klar iOS Firefox Klar for iOS false false false Lockbox Android lockwise_android Lockwise Android Lockwise for Android true true false Lockbox iOS lockwise_ios Lockwise iOS Lockwise for iOS true true false FirefoxReality* Android firefox_reality Firefox Reality Firefox Reality false false false"},{"location":"mozfun/norm/#parameters_8","title":"Parameters","text":"INPUTS
legacy_app_name STRING, normalized_os STRING\n
OUTPUTS
STRUCT<app_name STRING, product STRING, canonical_app_name STRING, canonical_name STRING, contributes_to_2019_kpi BOOLEAN, contributes_to_2020_kpi BOOLEAN, contributes_to_2021_kpi BOOLEAN>\n
Source | Edit
"},{"location":"mozfun/norm/#glean_ping_info-udf","title":"glean_ping_info (UDF)","text":"Accepts a glean ping_info struct as input and returns a modified struct that includes a few parsed or normalized variants of the input fields.
"},{"location":"mozfun/norm/#parameters_9","title":"Parameters","text":"INPUTS
ping_info ANY TYPE\n
Source | Edit
"},{"location":"mozfun/norm/#metadata-udf","title":"metadata (UDF)","text":"Accepts a pipeline metadata struct as input and returns a modified struct that includes a few parsed or normalized variants of the input metadata fields.
"},{"location":"mozfun/norm/#parameters_10","title":"Parameters","text":"INPUTS
metadata ANY TYPE\n
OUTPUTS
`date`, CAST(NULL\n
Source | Edit
"},{"location":"mozfun/norm/#fenix_app_info-udf","title":"fenix_app_info (UDF)","text":"Returns canonical, human-understandable identification info for Fenix sources.
The Glean telemetry library for Android by design routes pings based on the Play Store appId value of the published application. As of August 2020, there have been 5 separate Play Store appId values associated with different builds of Fenix, each corresponding to different datasets in BigQuery, and the mapping of appId to logical app names (Firefox vs. Firefox Preview) and channel names (nightly, beta, or release) has changed over time; see the spreadsheet of naming history for Mozilla's mobile browsers.>
This function is intended as the source of truth for how to map a specific ping in BigQuery to a logical app names and channel. It should be expected that the output of this function may evolve over time. If we rename a product or channel, we may choose to update the values here so that analyses consistently get the new name.
The first argument (app_id
) can be fairly fuzzy; it is tolerant of actual Google Play Store appId values like 'org.mozilla.firefox_beta' (mix of periods and underscores) as well as BigQuery dataset names with suffixes like 'org_mozilla_firefox_beta_stable'.
The second argument (app_build_id
) should be the value in client_info.app_build.
The function returns a STRUCT
that contains the logical app_name
and channel
as well as the Play Store app_id
in the canonical form which would appear in Play Store URLs.
Note that the naming of Fenix applications changed on 2020-07-03, so to get a continuous view of the pings associated with a logical app channel, you may need to union together tables from multiple BigQuery datasets. To see data for all Fenix channels together, it is necessary to union together tables from all 5 datasets. For basic usage information, consider using telemetry.fenix_clients_last_seen
which already handles the union. Otherwise, see the example below as a template for how construct a custom union.
Mapping of channels to datasets:
- release:
org_mozilla_firefox
- beta:
org_mozilla_firefox_beta
(current) and org_mozilla_fenix
- nightly:
org_mozilla_fenix
(current), org_mozilla_fennec_aurora
, and org_mozilla_fenix_nightly
-- Example of a query over all Fenix builds advertised as \"Firefox Beta\"\nCREATE TEMP FUNCTION extract_fields(app_id STRING, m ANY TYPE) AS (\n (\n SELECT AS STRUCT\n m.submission_timestamp,\n m.metrics.string.geckoview_version,\n mozfun.norm.fenix_app_info(app_id, m.client_info.app_build).*\n )\n);\n\nWITH base AS (\n SELECT\n extract_fields('org_mozilla_firefox_beta', m).*\n FROM\n org_mozilla_firefox_beta.metrics AS m\n UNION ALL\n SELECT\n extract_fields('org_mozilla_fenix', m).*\n FROM\n org_mozilla_fenix.metrics AS m\n)\nSELECT\n DATE(submission_timestamp) AS submission_date,\n geckoview_version,\n COUNT(*)\nFROM\n base\nWHERE\n app_name = 'Fenix' -- excludes 'Firefox Preview'\n AND channel = 'beta'\n AND DATE(submission_timestamp) = '2020-08-01'\nGROUP BY\n submission_date,\n geckoview_version\n
"},{"location":"mozfun/norm/#parameters_11","title":"Parameters","text":"INPUTS
app_id STRING, app_build_id STRING\n
OUTPUTS
STRUCT<app_name STRING, channel STRING, app_id STRING>\n
Source | Edit
"},{"location":"mozfun/norm/#diff_months-udf","title":"diff_months (UDF)","text":"Determine the number of whole months after grace period between start and end. Month is dependent on timezone, so start and end must both be datetimes, or both be dates, in the correct timezone. Grace period can be used to account for billing delay, usually 1 day, and is counted after months. When inclusive is FALSE, start and end are not included in whole months. For example, diff_months(start => '2021-01-01', end => '2021-03-01', grace_period => INTERVAL 0 day, inclusive => FALSE) returns 1, because start plus two months plus grace period is not less than end. Changing inclusive to TRUE returns 2, because start plus two months plus grace period is less than or equal to end. diff_months(start => '2021-01-01', end => '2021-03-02 00:00:00.000001', grace_period => INTERVAL 1 DAY, inclusive => FALSE) returns 2, because start plus two months plus grace period is less than end.
"},{"location":"mozfun/norm/#parameters_12","title":"Parameters","text":"INPUTS
start DATETIME, `end` DATETIME, grace_period INTERVAL, inclusive BOOLEAN\n
Source | Edit
"},{"location":"mozfun/norm/#windows_version_info-udf","title":"windows_version_info (UDF)","text":"Given an unnormalized set off Windows identifiers, return a friendly version of the operating system name.
Requires os, os_version and windows_build_number.
E.G. from windows_build_number >= 22000 return Windows 11
"},{"location":"mozfun/norm/#parameters_13","title":"Parameters","text":"INPUTS
os STRING, os_version STRING, windows_build_number INT64\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/norm/#result_type_to_product_name-udf","title":"result_type_to_product_name (UDF)","text":"Convert urlbar result types into product-friendly names
This UDF converts result types from urlbar events (engagement, impression, abandonment) into product-friendly names.
"},{"location":"mozfun/norm/#parameters_14","title":"Parameters","text":"INPUTS
res STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/norm/#truncate_version-udf","title":"truncate_version (UDF)","text":"Truncates a version string like <major>.<minor>.<patch>
to either the major or minor version. The return value is NUMERIC
, which means that you can sort the results without fear (e.g. 100 will be categorized as greater than 80, which isn't the case when sorting lexigraphically).
For example, \"5.1.0\" would be translated to 5.1
if the parameter is \"minor\" or 5
if the parameter is major.
If the version is only a major and/or minor version, then it will be left unchanged (for example \"10\" would stay as 10
when run through this function, no matter what the arguments).
This is useful for grouping Linux and Mac operating system versions inside aggregate datasets or queries where there may be many different patch releases in the field.
"},{"location":"mozfun/norm/#parameters_15","title":"Parameters","text":"INPUTS
os_version STRING, truncation_level STRING\n
OUTPUTS
NUMERIC\n
Source | Edit
"},{"location":"mozfun/stats/","title":"stats","text":"Statistics functions.
"},{"location":"mozfun/stats/#mode_last-udf","title":"mode_last (UDF)","text":"Returns the most frequently occuring element in an array.
In the case of multiple values tied for the highest count, it returns the value that appears latest in the array. Nulls are ignored. See also: stats.mode_last_retain_nulls
, which retains nulls.
"},{"location":"mozfun/stats/#parameters","title":"Parameters","text":"INPUTS
list ANY TYPE\n
Source | Edit
"},{"location":"mozfun/stats/#mode_last_retain_nulls-udf","title":"mode_last_retain_nulls (UDF)","text":"Returns the most frequently occuring element in an array. In the case of multiple values tied for the highest count, it returns the value that appears latest in the array. Nulls are retained. See also: `stats.mode_last, which ignores nulls.
"},{"location":"mozfun/stats/#parameters_1","title":"Parameters","text":"INPUTS
list ANY TYPE\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/vpn/","title":"vpn","text":"Functions for processing VPN data.
"},{"location":"mozfun/vpn/#pricing_plan-udf","title":"pricing_plan (UDF)","text":"Combine the pricing and interval for a subscription plan into a single field
"},{"location":"mozfun/vpn/#parameters","title":"Parameters","text":"INPUTS
provider STRING, amount INTEGER, currency STRING, `interval` STRING, interval_count INTEGER\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/vpn/#acquisition_channel-udf","title":"acquisition_channel (UDF)","text":"Assign an acquisition channel based on utm parameters
"},{"location":"mozfun/vpn/#parameters_1","title":"Parameters","text":"INPUTS
utm_campaign STRING, utm_content STRING, utm_medium STRING, utm_source STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/vpn/#channel_group-udf","title":"channel_group (UDF)","text":"Assign a channel group based on utm parameters
"},{"location":"mozfun/vpn/#parameters_2","title":"Parameters","text":"INPUTS
utm_campaign STRING, utm_content STRING, utm_medium STRING, utm_source STRING\n
OUTPUTS
STRING\n
Source | Edit
"},{"location":"mozfun/vpn/#normalize_utm_parameters-udf","title":"normalize_utm_parameters (UDF)","text":"Normalize utm parameters to use the same NULL placeholders as Google Analytics
"},{"location":"mozfun/vpn/#parameters_3","title":"Parameters","text":"INPUTS
utm_campaign STRING, utm_content STRING, utm_medium STRING, utm_source STRING\n
OUTPUTS
STRUCT<utm_campaign STRING, utm_content STRING, utm_medium STRING, utm_source STRING>\n
Source | Edit
"},{"location":"reference/airflow_tags/","title":"Airflow Tags","text":""},{"location":"reference/airflow_tags/#why","title":"Why","text":"Airflow tags enable DAGs to be filtered in the web ui view to reduce the number of DAGs shown to just those that you are interested in.
Additionally, their objective is to provide a little bit more information such as their impact to make it easier to understand the DAG and impact of failures when doing Airflow triage.
More information and the discussions can be found the the original Airflow Tags Proposal (can be found within data org proposals/
folder).
"},{"location":"reference/airflow_tags/#valid-tags","title":"Valid tags","text":""},{"location":"reference/airflow_tags/#impacttier-tag","title":"impact/tier tag","text":"We borrow the tiering system used by our integration and testing sheriffs. This is to maintain a level of consistency across different systems to ensure common language and understanding across teams. Valid tier tags include:
- impact/tier_1: Highest priority/impact/critical DAG. A job with this tag implies that many downstream processes are impacted and affects Mozilla\u2019s (many users across different teams and departments) ability to make decisions. A bug ticket must be created and the issue needs to be resolved as soon as possible.
- impact/tier_2: Job of increased importance and impact, however, not critical and only limited impact on other processes. One team or group of people is affected and the pipeline does not generate any business critical metrics. A bug ticket must be created and should be addressed within a few working days.
- impact/tier_3: No impact on other processes and is not used to generate any metrics used by business users or to make any decisions. A bug ticket should be created and it\u2019s up to the job owner to fix this issue in whatever time frame they deem to be reasonable.
"},{"location":"reference/airflow_tags/#triage-tag","title":"triage/ tag","text":"This tag is meant to provide guidance to a triage engineer on how to respond to a specific DAG failure when the job owner does not want the standard process to be followed.
- triage/record_only: Failures should only be recorded and the job owner informed without taking any active steps to fix the failure.
- triage/no_triage: No triage should be performed on this job. Should only be used in a limited number of cases, like this is still WIP, where no production processes are affected.
"},{"location":"reference/configuration/","title":"Configuration","text":"The behaviour of bqetl
can be configured via the bqetl_project.yaml
file. This file, for example, specifies the queries that should be skipped during dryrun, views that should not be published and contains various other configurations.
The general structure of bqetl_project.yaml
is as follows:
dry_run:\n function: https://us-central1-moz-fx-data-shared-prod.cloudfunctions.net/bigquery-etl-dryrun\n test_project: bigquery-etl-integration-test\n skip:\n - sql/moz-fx-data-shared-prod/account_ecosystem_derived/desktop_clients_daily_v1/query.sql\n - sql/**/apple_ads_external*/**/query.sql\n # - ...\n\nviews:\n skip_validation:\n - sql/moz-fx-data-test-project/test/simple_view/view.sql\n - sql/moz-fx-data-shared-prod/mlhackweek_search/events/view.sql\n - sql/moz-fx-data-shared-prod/**/client_deduplication/view.sql\n # - ...\n skip_publishing:\n - activity_stream/tile_id_types/view.sql\n - pocket/pocket_reach_mau/view.sql\n # - ...\n non_user_facing_suffixes:\n - _derived\n - _external\n # - ...\n\nschema:\n skip_update:\n - sql/moz-fx-data-shared-prod/mozilla_vpn_derived/users_v1/schema.yaml\n # - ...\n skip_prefixes:\n - pioneer\n - rally\n\nroutines:\n skip_publishing:\n - sql/moz-fx-data-shared-prod/udf/main_summary_scalars/udf.sql\n\nformatting:\n skip:\n - bigquery_etl/glam/templates/*.sql\n - sql/moz-fx-data-shared-prod/telemetry/fenix_events_v1/view.sql\n - stored_procedures/safe_crc32_uuid.sql\n # - ...\n
"},{"location":"reference/configuration/#accessing-configurations","title":"Accessing configurations","text":"ConfigLoader
can be used in the bigquery_etl tooling codebase to access configuration parameters. bqetl_project.yaml
is automatically loaded in ConfigLoader
and parameters can be accessed via a get()
method:
from bigquery_etl.config import ConfigLoader\n\nskipped_formatting = cfg.get(\"formatting\", \"skip\", fallback=[])\ndry_run_function = cfg.get(\"dry_run\", \"function\", fallback=None)\nschema_config_dict = cfg.get(\"schema\")\n
The ConfigLoader.get()
method allows multiple string parameters to reference a configuration value that is stored in a nested structure. A fallback
value can be optionally provided in case the configuration parameter is not set.
"},{"location":"reference/configuration/#adding-configuration-parameters","title":"Adding configuration parameters","text":"New configuration parameters can simply be added to bqetl_project.yaml
. ConfigLoader.get()
allows for these new parameters simply to be referenced without needing to be changed or updated.
"},{"location":"reference/data_checks/","title":"bqetl Data Checks","text":"Instructions on how to add data checks can be found under the Adding data checks cookbook.
"},{"location":"reference/data_checks/#background","title":"Background","text":"To create more confidence and trust in our data is crucial to provide some form of data checks. These checks should uncover problems as soon as possible, ideally as part of the data process creating the data. This includes checking that the data produced follows certain assumptions determined by the dataset owner. These assumptions need to be easy to define, but at the same time flexible enough to encode more complex business logic. For example, checks for null columns, for range/size properties, duplicates, table grain etc.
"},{"location":"reference/data_checks/#bqetl-data-checks-to-the-rescue","title":"bqetl Data Checks to the Rescue","text":"bqetl data checks aim to provide this ability by providing a simple interface for specifying our \"assumptions\" about the data the query should produce and checking them against the actual result.
This easy interface is achieved by providing a number of jinja templates providing \"out-of-the-box\" logic for performing a number of common checks without having to rewrite the logic. For example, checking if any nulls are present in a specific column. These templates can be found here and are available as jinja macros inside the checks.sql
files. This allows to \"configure\" the logic by passing some details relevant to our specific dataset. Check templates will get rendered as raw SQL expressions. Take a look at the examples below for practical examples.
It is also possible to write checks using raw SQL by using assertions. This is, for example, useful when writing checks for custom business logic.
"},{"location":"reference/data_checks/#two-categories-of-checks","title":"Two categories of checks","text":"Each check needs to be categorised with a marker, currently following markers are available:
#fail
indicates that the ETL pipeline should stop if this check fails (circuit-breaker pattern) and a notification is sent out. This marker should be used for checks that indicate a serious data issue.
#warn
indicates that the ETL pipeline should continue even if this check fails. These type of checks can be used to indicate potential issues that might require more manual investigation.
Checks can be marked by including one of the markers on the line preceeding the check definition, see Example checks.sql section for an example.
"},{"location":"reference/data_checks/#adding-data-checks","title":"Adding Data Checks","text":""},{"location":"reference/data_checks/#create-checkssql","title":"Create checks.sql","text":"Inside the query directory, which usually contains query.sql
or query.py
, metadata.yaml
and schema.yaml
, create a new file called checks.sql
(unless already exists).
Please make sure each check you add contains a marker (see: the Two categories of checks section above).
Once checks have been added, we need to regenerate the DAG
responsible for scheduling the query.
"},{"location":"reference/data_checks/#update-checkssql","title":"Update checks.sql","text":"If checks.sql
already exists for the query, you can always add additional checks to the file by appending it to the list of already defined checks.
When adding additional checks there should be no need to have to regenerate the DAG responsible for scheduling the query as all checks are executed using a single Airflow task.
"},{"location":"reference/data_checks/#removing-checkssql","title":"Removing checks.sql","text":"All checks can be removed by deleting the checks.sql
file and regenerating the DAG responsible for scheduling the query.
Alternatively, specific checks can be removed by deleting them from the checks.sql
file.
"},{"location":"reference/data_checks/#example-checkssql","title":"Example checks.sql","text":"Checks can either be written as raw SQL, or by referencing existing Jinja macros defined in tests/checks
which may take different parameters used to generate the SQL check expression.
Example of what a checks.sql
may look like:
-- raw SQL checks\n#fail\nASSERT (\n SELECT\n COUNTIF(ISNULL(country)) / COUNT(*)\n FROM telemetry.table_v1\n WHERE submission_date = @submission_date\n ) > 0.2\n) AS \"More than 20% of clients have country set to NULL\";\n\n-- macro checks\n#fail\n{{ not_null([\"submission_date\", \"os\"], \"submission_date = @submission_date\") }}\n\n#warn\n{{ min_row_count(1, \"submission_date = @submission_date\") }}\n\n#fail\n{{ is_unique([\"submission_date\", \"os\", \"country\"], \"submission_date = @submission_date\")}}\n\n#warn\n{{ in_range([\"non_ssl_loads\", \"ssl_loads\", \"reporting_ratio\"], 0, none, \"submission_date = @submission_date\") }}\n
"},{"location":"reference/data_checks/#data-checks-available-with-examples","title":"Data Checks Available with Examples","text":""},{"location":"reference/data_checks/#in_range-source","title":"in_range (source)","text":"Usage:
Arguments:\n\ncolumns: List[str] - A list of columns which we want to check the values of.\nmin: Optional[int] - Minimum value we should observe in the specified columns.\nmax: Optional[int] - Maximum value we should observe in the specified columns.\nwhere: Optional[str] - A condition that will be injected into the `WHERE` clause of the check. For example, \"submission_date = @submission_date\" so that the check is only executed against a specific partition.\n
Example:
#warn\n{{ in_range([\"non_ssl_loads\", \"ssl_loads\", \"reporting_ratio\"], 0, none, \"submission_date = @submission_date\") }}\n
"},{"location":"reference/data_checks/#is_unique-source","title":"is_unique (source)","text":"Usage:
Arguments:\n\ncolumns: List[str] - A list of columns which should produce a unique record.\nwhere: Optional[str] - A condition that will be injected into the `WHERE` clause of the check. For example, \"submission_date = @submission_date\" so that the check is only executed against a specific partition.\n
Example:
#warn\n{{ is_unique([\"submission_date\", \"os\", \"country\"], \"submission_date = @submission_date\")}}\n
"},{"location":"reference/data_checks/#min_row_countsource","title":"min_row_count(source)","text":"Usage:
Arguments:\n\nthreshold: Optional[int] - What is the minimum number of rows we expect (default: 1)\nwhere: Optional[str] - A condition that will be injected into the `WHERE` clause of the check. For example, \"submission_date = @submission_date\" so that the check is only executed against a specific partition.\n
Example:
#fail\n{{ min_row_count(1, \"submission_date = @submission_date\") }}\n
"},{"location":"reference/data_checks/#not_null-source","title":"not_null (source)","text":"Usage:
Arguments:\n\ncolumns: List[str] - A list of columns which should not contain a null value.\nwhere: Optional[str] - A condition that will be injected into the `WHERE` clause of the check. For example, \"submission_date = @submission_date\" so that the check is only executed against a specific partition.\n
Example:
#fail\n{{ not_null([\"submission_date\", \"os\"], \"submission_date = @submission_date\") }}\n
Please keep in mind the below checks can be combined and specified in the same checks.sql
file. For example:
#fail\n{{ not_null([\"submission_date\", \"os\"], \"submission_date = @submission_date\") }}\n #fail\n {{ min_row_count(1, \"submission_date = @submission_date\") }}\n #fail\n {{ is_unique([\"submission_date\", \"os\", \"country\"], \"submission_date = @submission_date\")}}\n #warn\n {{ in_range([\"non_ssl_loads\", \"ssl_loads\", \"reporting_ratio\"], 0, none, \"submission_date = @submission_date\") }}\n
"},{"location":"reference/data_checks/#running-checks-locally-commands","title":"Running checks locally / Commands","text":"To list all available commands in the bqetl data checks CLI:
$ ./bqetl check\n\nUsage: bqetl check [OPTIONS] COMMAND [ARGS]...\n\n Commands for managing and running bqetl data checks.\n\n \u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\n\n IN ACTIVE DEVELOPMENT\n\n The current progress can be found under:\n\n https://mozilla-hub.atlassian.net/browse/DENG-919\n\n \u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\u2013\n\nOptions:\n --help Show this message and exit.\n\nCommands:\n render Renders data check query using parameters provided (OPTIONAL).\n run Runs data checks defined for the dataset (checks.sql).\n
To see see how to use a specific command use:
$ ./bqetl check [command] --help\n
render
"},{"location":"reference/data_checks/#usage","title":"Usage","text":"$ ./bqetl check render [OPTIONS] DATASET [ARGS]\n\nRenders data check query using parameters provided (OPTIONAL). The result\nis what would be used to run a check to ensure that the specified dataset\nadheres to the assumptions defined in the corresponding checks.sql file\n\nOptions:\n --project-id, --project_id TEXT\n GCP project ID\n --sql_dir, --sql-dir DIRECTORY Path to directory which contains queries.\n --help Show this message and exit.\n
"},{"location":"reference/data_checks/#example","title":"Example","text":"./bqetl check render --project_id=moz-fx-data-marketing-prod ga_derived.downloads_with_attribution_v2 --parameter=download_date:DATE:2023-05-01\n
run
"},{"location":"reference/data_checks/#usage_1","title":"Usage","text":"$ ./bqetl check run [OPTIONS] DATASET\n\nRuns data checks defined for the dataset (checks.sql).\n\nChecks can be validated using the `--dry_run` flag without executing them:\n\nOptions:\n --project-id, --project_id TEXT\n GCP project ID\n --sql_dir, --sql-dir DIRECTORY Path to directory which contains queries.\n --dry_run, --dry-run To dry run the query to make sure it is\n valid\n --marker TEXT Marker to filter checks.\n --help Show this message and exit.\n
"},{"location":"reference/data_checks/#examples","title":"Examples","text":"# to run checks for a specific dataset\n$ ./bqetl check run ga_derived.downloads_with_attribution_v2 --parameter=download_date:DATE:2023-05-01 --marker=fail --marker=warn\n\n# to only dry_run the checks\n$ ./bqetl check run --dry_run ga_derived.downloads_with_attribution_v2 --parameter=download_date:DATE:2023-05-01 --marker=fail\n
"},{"location":"reference/incremental/","title":"Incremental Queries","text":""},{"location":"reference/incremental/#benefits","title":"Benefits","text":" - BigQuery billing discounts for destination table partitions not modified in the last 90 days
- May use dags.utils.gcp.bigquery_etl_query to simplify airflow configuration e.g. see dags.main_summary.exact_mau28_by_dimensions
- May use script/generate_incremental_table to automate backfilling
- Should use
WRITE_TRUNCATE
mode or bq query --replace
to replace partitions atomically to prevent duplicate data - Will have tooling to generate an optimized mostly materialized view that only calculates the most recent partition
"},{"location":"reference/incremental/#properties","title":"Properties","text":" - Must accept a date via
@submission_date
query parameter - Must output a column named
submission_date
matching the query parameter
- Must produce similar results when run multiple times
- Should produce identical results when run multiple times
- May depend on the previous partition
- If using previous partition, must include an
init.sql
query to initialize the table, e.g. sql/moz-fx-data-shared-prod/telemetry_derived/clients_last_seen_v1/init.sql
- Should be impacted by values from a finite number of preceding partitions
- This allows for backfilling in chunks instead of serially for all time and limiting backfills to a certain number of days following updated data
- For example
sql/moz-fx-data-shared-prod/clients_last_seen_v1.sql
can be run serially on any 28 day period and the last day will be the same whether or not the partition preceding the first day was missing because values are only impacted by 27 preceding days
"},{"location":"reference/public_data/","title":"Public Data","text":"For background, see Accessing Public Data on docs.telemetry.mozilla.org
.
- To make query results publicly available, the
public_bigquery
flag must be set in metadata.yaml
- Tables will get published in the
mozilla-public-data
GCP project which is accessible by everyone, also external users
- To make query results publicly available as JSON,
public_json
flag must be set in metadata.yaml
- Data will be accessible under https://public-data.telemetry.mozilla.org
- A list of all available datasets is published under https://public-data.telemetry.mozilla.org/all-datasets.json
- For example: https://public-data.telemetry.mozilla.org/api/v1/tables/telemetry_derived/ssl_ratios/v1/files/000000000000.json
- Output JSON files have a maximum size of 1GB, data can be split up into multiple files (
000000000000.json
, 000000000001.json
, ...) incremental_export
controls how data should be exported as JSON: false
: all data of the source table gets exported to a single location - https://public-data.telemetry.mozilla.org/api/v1/tables/telemetry_derived/ssl_ratios/v1/files/000000000000.json
true
: only data that matches the submission_date
parameter is exported as JSON to a separate directory for this date - https://public-data.telemetry.mozilla.org/api/v1/tables/telemetry_derived/ssl_ratios/v1/files/2020-03-15/000000000000.json
- For each dataset, a
metadata.json
gets published listing all available files, for example: https://public-data.telemetry.mozilla.org/api/v1/tables/telemetry_derived/ssl_ratios/v1/files/metadata.json - The timestamp when the dataset was last updated is recorded in
last_updated
, e.g.: https://public-data.telemetry.mozilla.org/api/v1/tables/telemetry_derived/ssl_ratios/v1/last_updated
"},{"location":"reference/recommended_practices/","title":"Recommended practices","text":""},{"location":"reference/recommended_practices/#queries","title":"Queries","text":" - Should be defined in files named as
sql/<project>/<dataset>/<table>_<version>/query.sql
e.g. <project>
defines both where the destination table resides and in which project the query job runs sql/moz-fx-data-shared-prod/telemetry_derived/clients_daily_v7/query.sql
- Queries that populate tables should always be named with a version suffix; we assume that future optimizations to the data representation may require schema-incompatible changes such as dropping columns
- May be generated using a python script that prints the query to stdout
- Should not specify a project or dataset in table names to simplify testing
- Should be incremental
- Should filter input tables on partition and clustering columns
- Should use
_
prefix in generated column names not meant for output - Should use
_bits
suffix for any integer column that represents a bit pattern - Should not use
DATETIME
type, due to incompatibility with spark-bigquery-connector - Should read from
*_stable
tables instead of including custom deduplication - Should use the earliest row for each
document_id
by submission_timestamp
where filtering duplicates is necessary
- Should not refer to views in the
mozdata
project which are duplicates of views in another project (commonly moz-fx-data-shared-prod
). Refer to the original view instead. - Should escape identifiers that match keywords, even if they aren't reserved keywords
- Queries are interpreted as Jinja templates, so it is possible to use Jinja statements and expressions
"},{"location":"reference/recommended_practices/#querying-metrics","title":"Querying Metrics","text":" - Queries, views and UDFs can reference metrics and data sources that have been defined in metric-hub
- To reference metrics use
{{ metrics.calculate() }}
: SELECT\n *\nFROM\n {{ metrics.calculate(\n metrics=['days_of_use', 'active_hours'],\n platform='firefox_desktop',\n group_by={'sample_id': 'sample_id', 'channel': 'application.channel'},\n where='submission_date = \"2023-01-01\"'\n ) }}\n\n-- this translates to\nSELECT\n *\nFROM\n (\n WITH clients_daily AS (\n SELECT\n client_id AS client_id,\n submission_date AS submission_date,\n COALESCE(SUM(active_hours_sum), 0) AS active_hours,\n COUNT(submission_date) AS days_of_use,\n FROM\n mozdata.telemetry.clients_daily\n GROUP BY\n client_id,\n submission_date\n )\n SELECT\n clients_daily.client_id,\n clients_daily.submission_date,\n active_hours,\n days_of_use,\n FROM\n clients_daily\n )\n
metrics
: unique reference(s) to metric definition, all metric definitions are aggregations (e.g. SUM, AVG, ...) platform
: platform to compute metrics for (e.g. firefox_desktop
, firefox_ios
, fenix
, ...) group_by
: fields used in the GROUP BY statement; this is a dictionary where the key represents the alias, the value is the field path; GROUP BY
always includes the configured client_id
and submission_date
fields where
: SQL filter clause group_by_client_id
: Whether the field configured as client_id
(defined as part of the data source specification in metric-hub) should be part of the GROUP BY
. True
by default group_by_submission_date
: Whether the field configured as submission_date
(defined as part of the data source specification in metric-hub) should be part of the GROUP BY
. True
by default
- To reference data source definitions use
{{ metrics.data_source() }}
: SELECT\n *\nFROM\n {{ metrics.data_source(\n data_source='main',\n platform='firefox_desktop',\n where='submission_date = \"2023-01-01\"'\n ) }}\n\n-- this translates to\nSELECT\n *\nFROM\n (\n SELECT *\n FROM `mozdata.telemetry.main`\n WHERE submission_date = \"2023-01-01\"\n )\n
- To render queries that use Jinja expressions or statements use
./bqetl query render path/to/query.sql
- The
generated-sql
branch has rendered queries/views/UDFs ./bqetl query run
does support running Jinja queries
"},{"location":"reference/recommended_practices/#query-metadata","title":"Query Metadata","text":" - For each query, a
metadata.yaml
file should be created in the same directory - This file contains a description, owners and labels. As an example:
friendly_name: SSL Ratios\ndescription: >\n Percentages of page loads Firefox users have performed that were\n conducted over SSL broken down by country.\nowners:\n - example@mozilla.com\nlabels:\n application: firefox\n incremental: true # incremental queries add data to existing tables\n schedule: daily # scheduled in Airflow to run daily\n public_json: true\n public_bigquery: true\n review_bugs:\n - 1414839 # Bugzilla bug ID of data review\n incremental_export: false # non-incremental JSON export writes all data to a single location\n
- only labels where value types are eithers integers or strings are published, all other values types are being skipped
"},{"location":"reference/recommended_practices/#views","title":"Views","text":" - Should be defined in files named as
sql/<project>/<dataset>/<table>/view.sql
e.g. sql/moz-fx-data-shared-prod/telemetry/core/view.sql
- Views should generally not be named with a version suffix; a view represents a stable interface for users and whenever possible should maintain compatibility with existing queries; if the view logic cannot be adapted to changes in underlying tables, breaking changes must be communicated to
fx-data-dev@mozilla.org
- Must specify project and dataset in all table names
- Should default to using the
moz-fx-data-shared-prod
project; the scripts/publish_views
tooling can handle parsing the definitions to publish to other projects such as derived-datasets
- Should not refer to views in the
mozdata
project which are duplicates of views in another project (commonly moz-fx-data-shared-prod
). Refer to the original view instead. - Views are interpreted as Jinja templates, so it is possible to use Jinja statements and expressions
"},{"location":"reference/recommended_practices/#udfs","title":"UDFs","text":" - Should limit the number of expression subqueries to avoid:
BigQuery error in query operation: Resources exceeded during query execution: Not enough resources for query planning - too many subqueries or query is too complex.
- Should be used to avoid code duplication
- Must be named in files with lower snake case names ending in
.sql
e.g. mode_last.sql
- Each file must only define effectively private helper functions and one public function which must be defined last
- Helper functions must not conflict with function names in other files
- SQL UDFs must be defined in the
udf/
directory and JS UDFs must be defined in the udf_js
directory - The
udf_legacy/
directory is an exception which must only contain compatibility functions for queries migrated from Athena/Presto.
- Functions must be defined as persistent UDFs using
CREATE OR REPLACE FUNCTION
syntax - Function names must be prefixed with a dataset of
<dir_name>.
so, for example, all functions in udf/*.sql
are part of the udf
dataset - The final syntax for creating a function in a file will look like
CREATE OR REPLACE FUNCTION <dir_name>.<file_name>
- We provide tooling in
scripts/publish_persistent_udfs
for publishing these UDFs to BigQuery - Changes made to UDFs need to be published manually in order for the dry run CI task to pass
- Should use
SQL
over js
for performance - UDFs are interpreted as Jinja templates, so it is possible to use Jinja statements and expressions
"},{"location":"reference/recommended_practices/#backfills","title":"Backfills","text":" - Should be documented and reviewed by a peer using a new bug that describes the context that required the backfill and the command or script used.
- Should be avoided on large tables
- Backfills may double storage cost for a table for 90 days by moving data from long-term storage to short-term storage
- For example regenerating
clients_last_seen_v1
from scratch would cost about $1600 for the query and about $6800 for data moved to short-term storage
- Should combine multiple backfills happening around the same time
- Should delay column deletes until the next other backfill
- Should use
NULL
for new data and EXCEPT
to exclude from views until dropped
- Should use copy operations in append mode to change column order
- Copy operations do not allow changing partitioning, changing clustering, or column deletes
- Should split backfilling into queries that finish in minutes not hours
- May use [script/generate_incremental_table] to automate backfilling incremental queries
- May be performed in a single query for smaller tables that do not depend on history
- A useful pattern is to have the only reference to
@submission_date
be a clause WHERE (@submission_date IS NULL OR @submission_date = submission_date)
which allows recreating all dates by passing --parameter=submission_date:DATE:NULL
- After running the backfill, is important to validate that the job ran without errors and the execution times and bytes processed are as expected. Errors normally appear in the parent job and may or may not include the dataset and table names, therefore it is important to check for errors in the jobs ran on that date. Here is a query you may use for this purpose:
SELECT\n job_id,\n user_email,\n parent_job_id,\n creation_time,\n destination_table.dataset_id,\n destination_table.table_id,\n end_time-start_time as task_duration,\n total_bytes_processed/(1024*1024*1024) as gigabytes_processed,\n state,\n error_result.location AS error_location,\n error_result.reason AS error_reason,\n error_result.message AS error_message,\nFROM `moz-fx-data-shared-prod`.`region-us`.INFORMATION_SCHEMA.JOBS_BY_PROJECT\nWHERE DATE(creation_time) = <'YYYY-MM-DD'>\n AND user_email = <'user@mozilla.com'>\nORDER BY creation_time DESC\n
"},{"location":"reference/scheduling/","title":"Scheduling Queries in Airflow","text":" - bigquery-etl has tooling to automatically generate Airflow DAGs for scheduling queries
- To be scheduled, a query must be assigned to a DAG that is specified in
dags.yaml
- Alternatively, new DAGs can also be created via the
bqetl
CLI by running bqetl dag create bqetl_ssl_ratios --schedule_interval='0 2 * * *' --owner=\"example@mozilla.com\" --start_date=\"2020-04-05\" --description=\"This DAG generates SSL ratios.\"
- To schedule a specific query, add a
metadata.yaml
file that includes a scheduling
section, for example: friendly_name: SSL ratios\n# ... more metadata, see Query Metadata section above\nscheduling:\n dag_name: bqetl_ssl_ratios\n
- Additional scheduling options:
depends_on_past
keeps query from getting executed if the previous schedule for the query hasn't succeeded date_partition_parameter
- by default set to submission_date
; can be set to null
if query doesn't write to a partitioned table parameters
specifies a list of query parameters, e.g. [\"n_clients:INT64:500\"]
arguments
- a list of arguments passed when running the query, for example: [\"--append_table\"]
referenced_tables
- manually curated list of tables the query depends on; used to speed up the DAG generation process or to specify tables that the dry run doesn't have permissions to access, e. g. [['telemetry_stable', 'main_v4']]
multipart
indicates whether a query is split over multiple files part1.sql
, part2.sql
, ... depends_on
defines external dependencies in telemetry-airflow that are not detected automatically: depends_on:\n - task_id: external_task\n dag_name: external_dag\n execution_delta: 1h\n
task_id
: name of task query depends on dag_name
: name of the DAG the external task is part of execution_delta
: time difference between the schedule_intervals
of the external DAG and the DAG the query is part of
trigger_rule
: The rule that determines when the airflow task that runs this query should run. The default is all_success
(\"trigger this task when all directly upstream tasks have succeeded\"); other rules can allow a task to run even if not all preceding tasks have succeeded. See the Airflow docs for the list of trigger rule options. destination_table
: The table to write to. If unspecified, defaults to the query destination; if None, no destination table is used (the query is simply run as-is). Note that if no destination table is specified, you will need to specify the submission_date
parameter manually external_downstream_tasks
defines external downstream dependencies for which ExternalTaskMarker
s will be added to the generated DAG. These task markers ensure that when the task is cleared for triggering a rerun, all downstream tasks are automatically cleared as well. external_downstream_tasks:\n - task_id: external_downstream_task\n dag_name: external_dag\n execution_delta: 1h\n
- Queries can also be scheduled using the
bqetl
CLI: ./bqetl query schedule path/to/query_v1 --dag bqetl_ssl_ratios
- To generate all Airflow DAGs run
./bqetl dag generate
- Generated DAGs are located in the
dags/
directory - Dependencies between queries scheduled in bigquery-etl and dependencies to stable tables are detected automatically
- Specific DAGs can be generated by running
./bqetl dag generate bqetl_ssl_ratios
- Generated DAGs do not need to be checked into
main
. CI automatically generates DAGs and writes them to the telemetry-airflow-dags repo from where Airflow will pick them up - Generated DAGs will be automatically detected and scheduled by Airflow
- It might take up to 10 minutes for new DAGs and updates to show up in the Airflow UI
- To generate tasks for importing data from Fivetran that an ETL task depends on add:
depends_on_fivetran:\n - task_id: fivetran_import_1\n - task_id: another_fivetran_import\n
- The Fivetran connector ID needs to be set as a variable
<task_id>_connector_id
in the Airflow admin interface for each import task
"},{"location":"reference/stage-deploys-continuous-integration/","title":"Stage Deploys","text":""},{"location":"reference/stage-deploys-continuous-integration/#stage-deploys-in-continuous-integration","title":"Stage Deploys in Continuous Integration","text":"Before changes, such as adding new fields to existing datasets or adding new datasets, can be deployed to production, bigquery-etl's CI (continuous integration) deploys these changes to a stage environment and uses these stage artifacts to run its various checks.
Currently, the bigquery-etl-integration-test
project serves as the stage environment. CI does have read and write access, but does at no point publish actual data to this project. Only UDFs, table schemas and views are published. The project itself does not have access to any production project, like mozdata
, so stage artifacts cannot reference any other artifacts that live in production.
Deploying artifacts to stage follows the following steps: 1. Once a new pull-request gets created in bigquery-etl, CI will pull in the generated-sql
branch to determine all files that show any changes compared to what is deployed in production (it is assumed that the generated-sql
branch reflects the artifacts currently deployed in production). All of these changed artifacts (UDFs, tables and views) will be deployed to the stage environment. * This CI step runs after the generate-sql
CI step to ensure that checks will also be executed on generated queries and to ensure schema.yaml
files have been automatically created for queries. 2. The bqetl
CLI has a command to run stage deploys, which is called in the CI: ./bqetl stage deploy --dataset-suffix=$CIRCLE_SHA1 $FILE_PATHS
* --dataset-suffix
will result in the artifacts being deployed to datasets that are suffixed by the current commit hash. This is to prevent any conflicts when deploying changes for the same artifacts in parallel and helps with debugging deployed artifacts. 3. For every artifacts that gets deployed to stage all dependencies need to be determined and deployed to the stage environment as well since the stage environment doesn't have access to production. Before these artifacts get actually deployed, they need to be determined first by traversing artifact definitions. * Determining dependencies is only relevant for UDFs and views. For queries, available schema.yaml
files will simply be deployed. * For UDFs, if a UDF does call another UDF then this UDF needs to be deployed to stage as well. * For views, if a view references another view, table or UDF then each of these referenced artifacts needs to be available on stage as well, otherwise the view cannot even be deployed to stage. * If artifacts are referenced that are not defined as part of the bigquery-etl repo (like stable or live tables) then their schema will get determined and a placeholder query.sql
file will be created * Also dependencies of dependencies need to be deployed, and so on 4. Once all artifacts that need to be deployed have been determined, all references to these artifacts in existing SQL files need to be updated. These references will need to point to the stage project and the temporary datasets that artifacts will be published to. * Artifacts that get deployed are determined from the files that got changed and any artifacts that are referenced in the SQL definitions of these files, as well as their references and so on. 5. To run the deploy, all artifacts will be copied to sql/bigquery-etl-integration-test
into their corresponding temporary datasets. * Also if any existing SQL tests the are related to changed artifacts will have their referenced artifacts updated and will get copied to a bigquery-etl-integration-test
folder * The deploy is executed in the order of: UDFs, tables, views * UDFs and views get deployed in a way that ensures that the right order of deployments (e.g. dependencies need to be deployed before the views referencing them) 6. Once the deploy has been completed, the CI will use these staged artifacts to run its tests 7. After checks have succeeded, the deployed artifacts will be removed from stage * By default the table expiration is set to 1 hour * This step will also automatically remove any tables and datasets that got previously deployed, are older than an hour but haven't been removed (for example due to some CI check failing)
After CI checks have passed and the pull-request has been approved, changes can be merged to main
. Once a new version of bigquery-etl has been published the changes can be deployed to production through the bqetl_artifact_deployment
Airflow DAG. For more information on artifact deployments to production see: https://docs.telemetry.mozilla.org/concepts/pipeline/artifact_deployment.html
"},{"location":"reference/stage-deploys-continuous-integration/#local-deploys-to-stage","title":"Local Deploys to Stage","text":"Local changes can be deployed to stage using the ./bqetl stage deploy
command:
./bqetl stage deploy \\\n --dataset-suffix=test \\\n --copy-sql-to-tmp-dir \\\n sql/moz-fx-data-shared-prod/firefox_ios/new_profile_activation/view.sql \\\n sql/mozfun/map/sum/udf.sql\n
Files (for example ones with changes) that should be deployed to stage need to be specified. The stage deploy
accepts the following parameters: * --dataset-suffix
is an optional suffix that will be added to the datasets deployed to stage * --copy-sql-to-tmp-dir
copies SQL stored in sql/
to a temporary folder. Reference updates and any other modifications required to run the stage deploy will be performed in this temporary directory. This is an optional parameter. If not specified, changes get applied to the files directly and can be reverted, for example, by running git checkout -- sql/
* (optional) --remove-updated-artifacts
removes artifact files that have been deployed from the \"prod\" folders. This ensures that tests don't run on outdated or undeployed artifacts.
Deployed stage artifacts can be deleted from bigquery-etl-integration-test
by running:
./bqetl stage clean --delete-expired --dataset-suffix=test\n
"}]}
\ No newline at end of file
diff --git a/sitemap.xml.gz b/sitemap.xml.gz
index 2552fb6ac84..76434de06f4 100644
Binary files a/sitemap.xml.gz and b/sitemap.xml.gz differ