[fenix] For # 15929: Remove the search widget discoverability experiment. (https...
[gecko.git] / mobile / android / fenix / app / metrics.yaml
blob1a48b2ad26321f72ecc8473ed6dc90e4377a8a8c
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
4 ---
5 $schema: moz://mozilla.org/schemas/glean/metrics/1-0-0
7 no_lint:
8   - CATEGORY_GENERIC
10 events:
11   app_opened_all_startup:
12     type: event
13     description: |
14       A user opened the app to the HomeActivity. The HomeActivity
15       encompasses the home screen, browser screen, settings screen,
16       collections and other screens in the nav_graph.
17       This differs from the app_opened probe because it measures all
18       startups, not just cold startup. Note: There is a short gap
19       between the time application goes into background and the time
20       android reports the application going into the background.
21       Note: This metric does not record souce when app opened from
22       task switcher: open application -> press home button -> open
23       recent tasks -> choose fenix. In this case will report
24       [source = unknown, type = hot, has_saved_instance_state = false].
25     extra_keys:
26       type:
27         description: |
28           the startup type for opening fenix. the application and HomeActivity
29           either needs to be created or started again. possible values are
30           `cold`, `warm`, `hot` or `error`. Error is for impossible cases.
31           Please file a bug if you see the error case.
32           app created AND HomeActivity created = cold
33           app started AND HomeActivity created = warm
34           app started AND HomeActivity started = hot
35           app created AND HomeActivity started = error
36           Some applications such as gmail launches the default browser in the
37           background. So when we eventually click a link, browser is already
38           started in the background. This means that custom_tab will mostly
39           report `warm` startup type.
40       source:
41         description: |
42           The method used to open Fenix. Possible values are `app_icon`,
43           `custom_tab`, `link` or `unknown`. unknown is for startup sources
44           where we can't pinpoint the cause. One UNKNOWN case is the app
45           switcher where we don't know what variables to check to ensure this
46           startup wasn't caused by something else.
47       has_saved_instance_state:
48         description: |
49           boolean value whether or not startup type has a savedInstance.
50           using savedInstance, HomeActivity's previous state can be restored.
51           This is an optional key since it is not applicable to all the cases.
52           for example, when we are doing a hot start up, we cant have a
53           savedInstanceState therefore we report only [APP_ICON, HOT] instead
54           of [APP_ICON, HOT, false].
55       first_frame_pre_draw_nanos:
56         description: |
57           the number of nanoseconds the application took to launch. This is the
58           time difference between application launch(user pressing app_icon,
59           launching a link) and until the first view is about to be drawn
60           on the screen. If the time is not captured, this extra key will
61           not be reported.
62     bugs:
63       - https://github.com/mozilla-mobile/fenix/issues/11830
64       - https://github.com/mozilla-mobile/fenix/issues/12573
65       - https://github.com/mozilla-mobile/fenix/pull/13494
66       - https://github.com/mozilla-mobile/fenix/issues/10069
67     data_reviews:
68       - https://github.com/mozilla-mobile/fenix/pull/12114#pullrequestreview-445245341
69       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
70       - https://github.com/mozilla-mobile/fenix/pull/13494#pullrequestreview-474050499
71       - https://github.com/mozilla-mobile/fenix/pull/15605#issuecomment-702365594
72     data_sensitivity:
73       - interaction
74     notification_emails:
75       - esmyth@mozilla.com
76       - perf-android-fe@mozilla.com
77     expires: "2021-06-01"
78   app_received_intent:
79     type: event
80     description: |
81       The system received an Intent for the HomeActivity. An intent
82       is received an external entity wants to the app to display
83       content. Intents can be received when the app is closed – at
84       which point the app will be opened – or when the app is
85       already opened – at which point the already open app will make
86       changes such as loading a url. This can be used loosely as a
87       heuristic for when the user requested to open the app. The
88       HomeActivity encompasses the home screen and browser screen but
89       may include other screens. This differs from the app_opened
90       probe because it measures all startups, not just cold startup.
91     extra_keys:
92       source:
93         description: |
94           The method used to open Fenix. Possible values are `app_icon`,
95           `custom_tab`, `link` or `unknown`
96     bugs:
97       - https://github.com/mozilla-mobile/fenix/issues/11830
98     data_reviews:
99       - https://github.com/mozilla-mobile/fenix/pull/11940/
100       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
101     notification_emails:
102       - esmyth@mozilla.com
103       - perf-android-fe@mozilla.com
104     expires: "2021-06-01"
105   app_opened:
106     type: event
107     description: |
108       A user opened the app (from cold start, to the homescreen or browser)
109     extra_keys:
110       source:
111         description: |
112           The method used to open Fenix. Possible values are: `app_icon`,
113           `custom_tab` or `link`
114     bugs:
115       - https://github.com/mozilla-mobile/fenix/issues/968
116       - https://github.com/mozilla-mobile/fenix/issues/10616
117     data_reviews:
118       - https://github.com/mozilla-mobile/fenix/pull/1067#issuecomment-474598673
119       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
120     data_sensitivity:
121       - interaction
122     notification_emails:
123       - telemetry-client-dev@mozilla.com
124       - fenix-core@mozilla.com
125     expires: "2021-04-01"
126   search_bar_tapped:
127     type: event
128     description: |
129       A user tapped the search bar
130     extra_keys:
131       source:
132         description: |
133           The view the user was on when they initiated the search (For example:
134           `Home` or `Browser`)
135     bugs:
136       - https://github.com/mozilla-mobile/fenix/issues/959
137     data_reviews:
138       - https://github.com/mozilla-mobile/fenix/pull/1067#issuecomment-474598673
139       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
140     data_sensitivity:
141       - interaction
142     notification_emails:
143       - fenix-core@mozilla.com
144     expires: "2021-04-01"
145   entered_url:
146     type: event
147     description: |
148       A user entered a url
149     extra_keys:
150       autocomplete:
151         description: |
152           A boolean that tells us whether the URL was autofilled by an
153           Autocomplete suggestion
154     bugs:
155       - https://github.com/mozilla-mobile/fenix/issues/959
156     data_reviews:
157       - https://github.com/mozilla-mobile/fenix/pull/1067#issuecomment-474598673
158       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
159     data_sensitivity:
160       - interaction
161     notification_emails:
162       - fenix-core@mozilla.com
163     expires: "2021-04-01"
164   performed_search:
165     type: event
166     description: |
167       A user performed a search
168     extra_keys:
169       source:
170         description: |
171           A string that tells us how the user performed the search. Possible
172           values are:
174           * default.action
175           * default.suggestion
176           * shortcut.action
177           * shortcut.suggestion
178     bugs:
179       - https://github.com/mozilla-mobile/fenix/issues/959
180     data_reviews:
181       - https://github.com/mozilla-mobile/fenix/pull/1067#issuecomment-474598673
182       - https://github.com/mozilla-mobile/fenix/pull/1677
183       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
184     data_sensitivity:
185       - interaction
186     notification_emails:
187       - fenix-core@mozilla.com
188     expires: "2021-04-01"
189   browser_menu_action:
190     type: event
191     description: |
192       A browser menu item was tapped
193     extra_keys:
194       item:
195         description: |
196           A string containing the name of the item the user tapped. These items
197           include:
199             Settings, Help, Desktop Site toggle on/off, Find in Page,
200             New Tab, Private Tab, Share, Report Site Issue, Back/Forward button,
201             Reload Button, Quit, Reader Mode On, Reader Mode Off, Open In app,
202             Add To Top Sites, Add-ons Manager, Bookmarks, History
203     bugs:
204       - https://github.com/mozilla-mobile/fenix/issues/1024
205     data_reviews:
206       - https://github.com/mozilla-mobile/fenix/pull/1214#issue-264756708
207       - https://github.com/mozilla-mobile/fenix/pull/5098#issuecomment-529658996
208       - https://github.com/mozilla-mobile/fenix/pull/6310
209       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
210     data_sensitivity:
211       - interaction
212     notification_emails:
213       - fenix-core@mozilla.com
214     expires: "2021-04-01"
215   total_uri_count:
216     type: counter
217     description: |
218       A counter of URIs visited by the user in the current session, including
219       page reloads. This does not include background page requests and URIs from
220       embedded pages or private browsing but may be incremented without user
221       interaction by website scripts that programmatically redirect to a new
222       location.
223     send_in_pings:
224       - metrics
225     bugs:
226       - https://github.com/mozilla-mobile/fenix/issues/1301
227       - https://github.com/mozilla-mobile/fenix/issues/4456
228     data_reviews:
229       - https://github.com/mozilla-mobile/fenix/pull/1785
230       - https://github.com/mozilla-mobile/fenix/pull/8314
231       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
232     data_sensitivity:
233       - interaction
234     notification_emails:
235       - fenix-core@mozilla.com
236     expires: "2021-08-01"
237   preference_toggled:
238     type: event
239     description: |
240       A user toggled a boolean preference in settings
241     extra_keys:
242       preference_key:
243         description: |
244           The preference key for the boolean (true/false) preference the user
245           toggled.
247           We currently track: show_search_suggestions, remote_debugging,
248           telemetry, tracking_protection, search_bookmarks,
249           search_browsing_history, show_clipboard_suggestions,
250           show_search_shortcuts, open_links_in_a_private_tab (bug in
251           implementation https://github.com/mozilla-mobile/fenix/issues/7384),
252           pref_key_sync_logins, pref_key_sync_bookmarks, pref_key_sync_history,
253           pref_key_show_voice_search,
254           and pref_key_show_search_suggestions_in_private.
255       enabled:
256         description: "Whether or not the preference is *now* enabled"
257     bugs:
258       - https://github.com/mozilla-mobile/fenix/issues/975
259       - https://github.com/mozilla-mobile/fenix/issues/5094
260       - https://github.com/mozilla-mobile/fenix/issues/5737
261       - https://github.com/mozilla-mobile/fenix/issues/5586
262       - https://github.com/mozilla-mobile/fenix/issues/6396
263       - https://github.com/mozilla-mobile/fenix/issues/6070
264     data_reviews:
265       - https://github.com/mozilla-mobile/fenix/pull/1896
266       - https://github.com/mozilla-mobile/fenix/pull/5704
267       - https://github.com/mozilla-mobile/fenix/pull/5886
268       - https://github.com/mozilla-mobile/fenix/pull/5975
269       - https://github.com/mozilla-mobile/fenix/pull/6352
270       - https://github.com/mozilla-mobile/fenix/pull/6601
271       - https://github.com/mozilla-mobile/fenix/pull/6746
272       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
273     data_sensitivity:
274       - technical
275       - interaction
276     notification_emails:
277       - fenix-core@mozilla.com
278     expires: "2021-06-01"
279   whats_new_tapped:
280     type: event
281     description: |
282       A user opened the "what's new" page button
283     bugs:
284       - https://github.com/mozilla-mobile/fenix/issues/5021
285     data_reviews:
286       - https://github.com/mozilla-mobile/fenix/pull/5090
287       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
288     data_sensitivity:
289       - interaction
290     notification_emails:
291       - fenix-core@mozilla.com
292     expires: "2021-04-01"
293   opened_link:
294     type: event
295     description: |
296       A user opened a link with Fenix
297     extra_keys:
298       mode:
299         description: |
300           The mode the link was opened in. Either 'PRIVATE' or 'NORMAL'. N.B.:
301           this probe may be incorrectly implemented: see
302           https://github.com/mozilla-mobile/fenix/issues/14133
303     bugs:
304       - https://github.com/mozilla-mobile/fenix/issues/5737
305     data_reviews:
306       - https://github.com/mozilla-mobile/fenix/pull/5975
307       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
308     data_sensitivity:
309       - interaction
310     notification_emails:
311       - fenix-core@mozilla.com
312     expires: "2021-04-01"
313   tab_counter_menu_action:
314     type: event
315     description:
316       A tab counter menu item was tapped
317     extra_keys:
318       item:
319         description: |
320           A string containing the name of the item the user tapped. These items
321           are:
323             New tab, New private tab, Close tab
324     bugs:
325       - https://github.com/mozilla-mobile/fenix/issues/11442
326     data_reviews:
327       - https://github.com/mozilla-mobile/fenix/pull/11533
328       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
329     data_sensitivity:
330       - interaction
331     notification_emails:
332       - fenix-core@mozilla.com
333     expires: "2021-04-01"
335 onboarding:
336   fxa_auto_signin:
337     type: event
338     description:
339       The onboarding automatic sign in card was tapped.
340     bugs:
341       - https://github.com/mozilla-mobile/fenix/issues/10824
342     data_reviews:
343       - https://github.com/mozilla-mobile/fenix/pull/11867
344       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
345     data_sensitivity:
346       - interaction
347     notification_emails:
348       - fenix-core@mozilla.com
349       - erichards@mozilla.com
350     expires: "2021-08-01"
351   fxa_manual_signin:
352     type: event
353     description:
354       The onboarding manual sign in card was tapped.
355     bugs:
356       - https://github.com/mozilla-mobile/fenix/issues/10824
357     data_reviews:
358       - https://github.com/mozilla-mobile/fenix/pull/11867
359       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
360     data_sensitivity:
361       - interaction
362     notification_emails:
363       - fenix-core@mozilla.com
364       - erichards@mozilla.com
365     expires: "2021-08-01"
366   privacy_notice:
367     type: event
368     description:
369       The onboarding privacy notice card was tapped.
370     bugs:
371       - https://github.com/mozilla-mobile/fenix/issues/10824
372     data_reviews:
373       - https://github.com/mozilla-mobile/fenix/pull/11867
374       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
375     data_sensitivity:
376       - interaction
377     notification_emails:
378       - fenix-core@mozilla.com
379       - erichards@mozilla.com
380     expires: "2021-08-01"
381   pref_toggled_private_browsing:
382     type: event
383     description:
384       The private browsing preference was selected from the onboarding card.
385     bugs:
386       - https://github.com/mozilla-mobile/fenix/issues/10824
387     data_reviews:
388       - https://github.com/mozilla-mobile/fenix/pull/11867
389       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
390     data_sensitivity:
391       - interaction
392     notification_emails:
393       - fenix-core@mozilla.com
394       - erichards@mozilla.com
395     expires: "2021-08-01"
396   pref_toggled_toolbar_position:
397     type: event
398     description:
399       The toolbar position preference was chosen from the onboarding card.
400     extra_keys:
401       position:
402         description: |
403           A string that indicates the position of the toolbar TOP or BOTTOM.
404           Default: BOTTOM
405     bugs:
406       - https://github.com/mozilla-mobile/fenix/issues/10824
407     data_reviews:
408       - https://github.com/mozilla-mobile/fenix/pull/11867
409       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
410     data_sensitivity:
411       - interaction
412     notification_emails:
413       - fenix-core@mozilla.com
414       - erichards@mozilla.com
415     expires: "2021-08-01"
416   pref_toggled_tracking_prot:
417     type: event
418     description:
419       The tracking protection preference was chosen from the onboarding card.
420     extra_keys:
421       setting:
422         description: |
423           A string that indicates the Tracking Protection policy STANDARD
424           or STRICT. Default: Toggle ON, STANDARD
425     bugs:
426       - https://github.com/mozilla-mobile/fenix/issues/10824
427     data_reviews:
428       - https://github.com/mozilla-mobile/fenix/pull/11867
429       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
430     data_sensitivity:
431       - interaction
432     notification_emails:
433       - fenix-core@mozilla.com
434       - erichards@mozilla.com
435     expires: "2021-08-01"
436   whats_new:
437     type: event
438     description:
439       The onboarding What\'s New card was tapped.
440     bugs:
441       - https://github.com/mozilla-mobile/fenix/issues/10824
442     data_reviews:
443       - https://github.com/mozilla-mobile/fenix/pull/11867
444       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
445     data_sensitivity:
446       - interaction
447     notification_emails:
448       - fenix-core@mozilla.com
449       - erichards@mozilla.com
450     expires: "2021-08-01"
451   pref_toggled_theme_picker:
452     type: event
453     description:
454       The device theme was chosen using the theme picker onboarding card.
455     extra_keys:
456       theme:
457         description: |
458           A string that indicates the theme LIGHT, DARK, or FOLLOW DEVICE.
459           Default: FOLLOW DEVICE
460     bugs:
461       - https://github.com/mozilla-mobile/fenix/issues/10824
462     data_reviews:
463       - https://github.com/mozilla-mobile/fenix/pull/11867
464       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
465     data_sensitivity:
466       - interaction
467     notification_emails:
468       - fenix-core@mozilla.com
469       - erichards@mozilla.com
470     expires: "2021-08-01"
471   finish:
472     type: event
473     description:
474       The user taps starts browsing and ends the onboarding experience.
475     bugs:
476       - https://github.com/mozilla-mobile/fenix/issues/10824
477     data_reviews:
478       - https://github.com/mozilla-mobile/fenix/pull/11867
479       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
480     data_sensitivity:
481       - interaction
482     notification_emails:
483       - fenix-core@mozilla.com
484       - erichards@mozilla.com
485     expires: "2021-08-01"
487 search_shortcuts:
488   selected:
489     type: event
490     description: |
491       A user selected a search shortcut engine to use
492     extra_keys:
493       engine:
494         description: |
495           The name of the built-in search engine the user selected as a string
496     bugs:
497       - https://github.com/mozilla-mobile/fenix/issues/793
498     data_reviews:
499       - https://github.com/mozilla-mobile/fenix/pull/1202#issuecomment-476870449
500       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
501     notification_emails:
502       - fenix-core@mozilla.com
503     expires: "2021-08-01"
505 toolbar_settings:
506   changed_position:
507     type: event
508     description: |
509       The user selected a new position for the toolbar
510     extra_keys:
511       position:
512         description: |
513           A string that indicates the new position of the toolbar TOP or BOTTOM
514     bugs:
515       - https://github.com/mozilla-mobile/fenix/issues/6054
516     data_reviews:
517       - https://github.com/mozilla-mobile/fenix/pull/6608
518       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
519     data_sensitivity:
520       - interaction
521     notification_emails:
522       - fenix-core@mozilla.com
523     expires: "2021-08-01"
525 crash_reporter:
526   opened:
527     type: event
528     description: |
529       The crash reporter was displayed
530     bugs:
531       - https://github.com/mozilla-mobile/fenix/issues/1040
532     data_reviews:
533       - https://github.com/mozilla-mobile/fenix/pull/1214#issue-264756708
534       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
535     data_sensitivity:
536       - interaction
537     notification_emails:
538       - fenix-core@mozilla.com
539     expires: "2021-04-01"
540   closed:
541     type: event
542     description: |
543       The crash reporter was closed
544     extra_keys:
545       crash_submitted:
546         description: |
547           A boolean that tells us whether or not the user submitted a crash
548           report
549     bugs:
550       - https://github.com/mozilla-mobile/fenix/issues/1040
551     data_reviews:
552       - https://github.com/mozilla-mobile/fenix/pull/1214#issue-264756708
553       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
554     data_sensitivity:
555       - interaction
556     notification_emails:
557       - fenix-core@mozilla.com
558     expires: "2021-04-01"
560 context_menu:
561   item_tapped:
562     type: event
563     description: |
564       A user tapped an item in the browsers context menu
565     extra_keys:
566       named:
567         description: |
568           The name of the item that was tapped. Available items are:
570           ```
571           open_in_new_tab, open_in_private_tab, open_image_in_new_tab,
572           save_image, share_link, copy_link, copy_image_location
573           ```
574     bugs:
575       - https://github.com/mozilla-mobile/fenix/issues/957
576     data_reviews:
577       - https://github.com/mozilla-mobile/fenix/pull/1344#issuecomment-479285010
578       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
579     data_sensitivity:
580       - interaction
581     notification_emails:
582       - fenix-core@mozilla.com
583     expires: "2021-04-01"
585 login_dialog:
586   displayed:
587     type: event
588     description: |
589       The login dialog prompt was displayed
590     bugs:
591       - https://github.com/mozilla-mobile/fenix/issues/9730
592     data_reviews:
593       - https://github.com/mozilla-mobile/fenix/pull/13050
594     data_sensitivity:
595       - interaction
596     notification_emails:
597       - fenix-core@mozilla.com
598     expires: "2021-02-01"
599   cancelled:
600     type: event
601     description: |
602       The login dialog prompt was cancelled
603     bugs:
604       - https://github.com/mozilla-mobile/fenix/issues/9730
605     data_reviews:
606       - https://github.com/mozilla-mobile/fenix/pull/13050
607     data_sensitivity:
608       - interaction
609     notification_emails:
610       - fenix-core@mozilla.com
611     expires: "2021-02-01"
612   saved:
613     type: event
614     description: |
615       The login dialog prompt "save" button was pressed
616     bugs:
617       - https://github.com/mozilla-mobile/fenix/issues/9730
618     data_reviews:
619       - https://github.com/mozilla-mobile/fenix/pull/13050
620     data_sensitivity:
621       - interaction
622     notification_emails:
623       - fenix-core@mozilla.com
624     expires: "2021-02-01"
625   never_save:
626     type: event
627     description: |
628       The login dialog prompt "never save" button was pressed
629     bugs:
630       - https://github.com/mozilla-mobile/fenix/issues/9730
631     data_reviews:
632       - https://github.com/mozilla-mobile/fenix/pull/13050
633     data_sensitivity:
634       - interaction
635     notification_emails:
636       - fenix-core@mozilla.com
637     expires: "2021-02-01"
639 find_in_page:
640   opened:
641     type: event
642     description: |
643       A user opened the find in page UI
644     bugs:
645       - https://github.com/mozilla-mobile/fenix/issues/1036
646     data_reviews:
647       - https://github.com/mozilla-mobile/fenix/pull/1344#issuecomment-479285010
648       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
649     data_sensitivity:
650       - interaction
651     notification_emails:
652       - fenix-core@mozilla.com
653     expires: "2021-08-01"
654   closed:
655     type: event
656     description: |
657       A user closed the find in page UI
658     bugs:
659       - https://github.com/mozilla-mobile/fenix/issues/1036
660     data_reviews:
661       - https://github.com/mozilla-mobile/fenix/pull/1344#issuecomment-479285010
662       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
663     data_sensitivity:
664       - interaction
665     notification_emails:
666       - fenix-core@mozilla.com
667     expires: "2021-08-01"
668   searched_page:
669     type: event
670     description: |
671       A user searched the page
672     bugs:
673       - https://github.com/mozilla-mobile/fenix/issues/1036
674     data_reviews:
675       - https://github.com/mozilla-mobile/fenix/pull/1344#issuecomment-479285010
676       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
677     data_sensitivity:
678       - interaction
679     notification_emails:
680       - fenix-core@mozilla.com
681     expires: "2021-08-01"
683 metrics:
684   default_browser:
685     type: boolean
686     lifetime: application
687     description: |
688       Is Fenix the default browser?
689     send_in_pings:
690       - metrics
691     bugs:
692       - https://github.com/mozilla-mobile/fenix/issues/960
693     data_reviews:
694       - https://github.com/mozilla-mobile/fenix/pull/1067#issuecomment-474598673
695       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
696     data_sensitivity:
697       - interaction
698     notification_emails:
699       - fenix-core@mozilla.com
700     expires: "2021-08-01"
701   top_sites_count:
702     type: counter
703     lifetime: application
704     description: |
705       A counter that indicates how many top sites a user has. This value will
706       only be set if the user has at least *one* top site. If they have 0,
707       this ping will not get sent, resulting in a null value. To disambiguate
708       between a failed `top_sites_count` ping and 0 top sites, please see
709       `has_top_sites`.
710     send_in_pings:
711       - metrics
712     bugs:
713       - https://github.com/mozilla-mobile/fenix/issues/8125
714     data_reviews:
715       - https://github.com/mozilla-mobile/fenix/pull/9556
716       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
717     data_sensitivity:
718       - interaction
719     notification_emails:
720       - fenix-core@mozilla.com
721     expires: "2021-08-01"
722   has_top_sites:
723     type: boolean
724     lifetime: application
725     description: |
726       A boolean that indicates if the user has top sites
727     send_in_pings:
728       - metrics
729     bugs:
730       - https://github.com/mozilla-mobile/fenix/issues/8125
731     data_reviews:
732       - https://github.com/mozilla-mobile/fenix/pull/9556
733       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
734     data_sensitivity:
735       - interaction
736     notification_emails:
737       - fenix-core@mozilla.com
738     expires: "2021-08-01"
739   recently_used_pwa_count:
740     type: counter
741     lifetime: application
742     description: |
743       A counter that indicates how many PWAs a user has recently used.
744       Threshold for "recency" set in HomeActivity#PWA_RECENTLY_USED_THRESHOLD.
745       Currently we are not told by the OS when a PWA is removed by the user,
746       so we use the "recently used" heuristic to judge how many PWAs are still
747       active, as a proxy for "installed". This value will only be set if the
748       user has at least *one* recently used PWA. If they have 0, this metric
749       will not be sent, resulting in a null value during analysis on the
750       server-side. To disambiguate between a failed `recently_used_pwa_count`
751       metric and 0 recent PWAs, please see `has_recent_pwas`.
752     send_in_pings:
753       - metrics
754     bugs:
755       - https://github.com/mozilla-mobile/fenix/issues/11909
756     data_reviews:
757       - https://github.com/mozilla-mobile/fenix/pull/11982#pullrequestreview-437963817
758       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
759     data_sensitivity:
760       - interaction
761     notification_emails:
762       - fenix-core@mozilla.com
763     expires: "2021-08-01"
764   has_recent_pwas:
765     type: boolean
766     lifetime: application
767     description: |
768       A boolean that indicates if the user has recently used PWAs.
769       See recently_used_pwa_count for the actual count.
770     send_in_pings:
771       - metrics
772     bugs:
773       - https://github.com/mozilla-mobile/fenix/issues/11909
774     data_reviews:
775       - https://github.com/mozilla-mobile/fenix/pull/11982#pullrequestreview-437963817
776       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
777     data_sensitivity:
778       - interaction
779     notification_emails:
780       - fenix-core@mozilla.com
781     expires: "2021-08-01"
782   search_count:
783     type: labeled_counter
784     description: |
785       The labels for this counter are `<search-engine-name>.<source>`.
787       If the search engine is bundled with Fenix `search-engine-name` will be
788       the name of the search engine. If it's a custom search engine (defined:
789       https://github.com/mozilla-mobile/fenix/issues/1607) the value will be
790       `custom`.
792       `source` will be: `action`, `suggestion`, `widget` or `shortcut`
793       (depending on the source from which the search started). Also added the
794       `other` option for the source but it should never enter on this case.
795     send_in_pings:
796       - metrics
797     bugs:
798       - https://github.com/mozilla-mobile/fenix/issues/1158
799       - https://github.com/mozilla-mobile/fenix/issues/6556
800     data_reviews:
801       - https://github.com/mozilla-mobile/fenix/pull/1677
802       - https://github.com/mozilla-mobile/fenix/pull/5216
803       - https://github.com/mozilla-mobile/fenix/pull/7310
804       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
805     data_sensitivity:
806       - technical
807       - interaction
808     notification_emails:
809       - fenix-core@mozilla.com
810     expires: "2021-08-01"
811   mozilla_products:
812     type: string_list
813     lifetime: application
814     description: |
815       A list of all the Mozilla products installed on device. We currently scan
816       for: Firefox, Firefox Beta, Firefox Aurora, Firefox Nightly, Firefox
817       Fdroid, Firefox Lite, Reference Browser, Reference Browser Debug, Fenix,
818       Focus, and Lockwise.
819     send_in_pings:
820       - metrics
821     bugs:
822       - https://github.com/mozilla-mobile/fenix/issues/1192
823     data_reviews:
824       - https://github.com/mozilla-mobile/fenix/pull/1953/
825       - https://github.com/mozilla-mobile/fenix/pull/5216
826       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
827     data_sensitivity:
828       - technical
829       - interaction
830     notification_emails:
831       - fenix-core@mozilla.com
832     expires: "2021-08-01"
833   default_moz_browser:
834     type: string
835     lifetime: application
836     description: |
837       The name of the default browser on device if and only if it's a Mozilla
838       owned product
839     send_in_pings:
840       - metrics
841     bugs:
842       - https://github.com/mozilla-mobile/fenix/issues/1192
843     data_reviews:
844       - https://github.com/mozilla-mobile/fenix/pull/1953/
845       - https://github.com/mozilla-mobile/fenix/pull/5216
846       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
847     data_sensitivity:
848       - technical
849       - interaction
850     notification_emails:
851       - fenix-core@mozilla.com
852     expires: "2021-08-01"
853   adjust_campaign:
854     type: string
855     lifetime: application
856     description: |
857       A string containing the Adjust campaign ID from which the user installed
858       Fenix. This will not send on the first session the user runs. If the
859       install is organic, this will be empty.
860     send_in_pings:
861       - metrics
862     bugs:
863       - https://github.com/mozilla-mobile/fenix/issues/1298
864       - https://github.com/mozilla-mobile/fenix/issues/9136
865     data_reviews:
866       - https://github.com/mozilla-mobile/fenix/pull/5579
867       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
868     data_sensitivity:
869       - technical
870     notification_emails:
871       - fenix-core@mozilla.com
872     expires: "2021-08-01"
873   adjust_ad_group:
874     type: string
875     lifetime: application
876     description: |
877       A string containing the Adjust ad group ID from which the user installed
878       Fenix. This will not send on the first session the user runs. If the
879       install is organic, this will be empty.
880     send_in_pings:
881       - metrics
882     bugs:
883       - https://github.com/mozilla-mobile/fenix/issues/1298
884       - https://github.com/mozilla-mobile/fenix/issues/9136
885     data_reviews:
886       - https://github.com/mozilla-mobile/fenix/pull/9253
887       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
888     data_sensitivity:
889       - interaction
890     notification_emails:
891       - fenix-core@mozilla.com
892     expires: "2021-08-01"
893   adjust_creative:
894     type: string
895     lifetime: application
896     description: |
897       A string containing the Adjust creative ID from which the user installed
898       Fenix. This will not send on the first session the user runs. If the
899       install is organic, this will be empty.
900     send_in_pings:
901       - metrics
902     bugs:
903       - https://github.com/mozilla-mobile/fenix/issues/1298
904       - https://github.com/mozilla-mobile/fenix/issues/9136
905     data_reviews:
906       - https://github.com/mozilla-mobile/fenix/pull/9253
907       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
908     data_sensitivity:
909       - interaction
910     notification_emails:
911       - fenix-core@mozilla.com
912     expires: "2021-08-01"
913   adjust_network:
914     type: string
915     lifetime: application
916     description: |
917       A string containing the Adjust network ID from which the user installed
918       Fenix. This will not send on the first session the user runs. If the
919       install is organic, this will be empty.
920     send_in_pings:
921       - metrics
922     bugs:
923       - https://github.com/mozilla-mobile/fenix/issues/1298
924       - https://github.com/mozilla-mobile/fenix/issues/9136
925     data_reviews:
926       - https://github.com/mozilla-mobile/fenix/pull/9253
927       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
928     data_sensitivity:
929       - interaction
930     notification_emails:
931       - fenix-core@mozilla.com
932     expires: "2021-08-01"
933   toolbar_position:
934     type: string
935     lifetime: application
936     description: |
937       A string that indicates the new position of the toolbar TOP or BOTTOM
938     send_in_pings:
939       - metrics
940     bugs:
941       - https://github.com/mozilla-mobile/fenix/issues/6054
942     data_reviews:
943       - https://github.com/mozilla-mobile/fenix/pull/6608
944       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
945     data_sensitivity:
946       - interaction
947     notification_emails:
948       - fenix-core@mozilla.com
949     expires: "2021-08-01"
950   close_tab_setting:
951     type: string
952     lifetime: application
953     description: |
954       A string that indicates the setting for tab closing:
955       MANUAL, ONE_DAY, ONE_WEEK, ONE_MONTH
956     send_in_pings:
957       - metrics
958     bugs:
959       - https://github.com/mozilla-mobile/fenix/issues/15347#issue-707408975
960     data_reviews:
961       - https://github.com/mozilla-mobile/fenix/pull/15811#issuecomment-706402952
962     data_sensitivity:
963       - interaction
964     notification_emails:
965       - fenix-core@mozilla.com
966     expires: "2021-08-01"
967   tab_view_setting:
968     type: string
969     lifetime: application
970     description: |
971       A string that indicates the setting for tab view:
972       GRID, LIST
973     send_in_pings:
974       - metrics
975     bugs:
976       - https://github.com/mozilla-mobile/fenix/issues/15347#issue-707408975
977     data_reviews:
978       - https://github.com/mozilla-mobile/fenix/pull/15811#issuecomment-706402952
979     data_sensitivity:
980       - interaction
981     notification_emails:
982       - fenix-core@mozilla.com
983     expires: "2021-08-01"
984   search_widget_installed:
985     type: boolean
986     lifetime: application
987     description: |
988       Whether or not the search widget is installed
989     send_in_pings:
990       - metrics
991     bugs:
992       - https://github.com/mozilla-mobile/fenix/issues/9488
993     data_reviews:
994       - https://github.com/mozilla-mobile/fenix/pull/10958
995       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
996     data_sensitivity:
997       - interaction
998     notification_emails:
999       - fenix-core@mozilla.com
1000     expires: "2021-08-01"
1001   tabs_open_count:
1002     type: counter
1003     lifetime: application
1004     description: |
1005       A counter that indicates how many NORMAL tabs a user has open. This
1006       value will only be set if the user has at least *one* open tab. If they
1007       have 0, this ping will not get sent, resulting in a null value. To
1008       disambiguate between a failed `tabs_open_count` ping and 0 open tabs,
1009       please see `has_open_tabs`.
1010     send_in_pings:
1011       - metrics
1012     bugs:
1013       - https://github.com/mozilla-mobile/fenix/issues/11479
1014     data_reviews:
1015       - https://github.com/mozilla-mobile/fenix/pull/12024
1016       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1017     data_sensitivity:
1018       - interaction
1019     notification_emails:
1020       - fenix-core@mozilla.com
1021     expires: "2021-08-01"
1022   has_open_tabs:
1023     type: boolean
1024     lifetime: application
1025     description: |
1026       A boolean that indicates if the user has any open NORMAL tabs.
1027     send_in_pings:
1028       - metrics
1029     bugs:
1030       - https://github.com/mozilla-mobile/fenix/issues/11479
1031     data_reviews:
1032       - https://github.com/mozilla-mobile/fenix/pull/12024
1033       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1034     data_sensitivity:
1035       - interaction
1036     notification_emails:
1037       - fenix-core@mozilla.com
1038     expires: "2021-08-01"
1040 preferences:
1041   show_search_suggestions:
1042     type: string_list
1043     description: >
1044       Whether or not the user has search suggestions enabled
1045       default: true
1046     send_in_pings:
1047       - metrics
1048     bugs:
1049       - https://github.com/mozilla-mobile/fenix/issues/11118
1050     data_reviews:
1051       - https://github.com/mozilla-mobile/fenix/pull/11211
1052       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1053     data_sensitivity:
1054       - interaction
1055     notification_emails:
1056       - fenix-core@mozilla.com
1057     expires: "2021-08-01"
1058   remote_debugging:
1059     type: string_list
1060     description: >
1061       Whether or not the user has remote debugging enabled
1062       default: false
1063     send_in_pings:
1064       - metrics
1065     bugs:
1066       - https://github.com/mozilla-mobile/fenix/issues/11118
1067     data_reviews:
1068       - https://github.com/mozilla-mobile/fenix/pull/11211
1069       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1070     data_sensitivity:
1071       - interaction
1072     notification_emails:
1073       - fenix-core@mozilla.com
1074     expires: "2021-08-01"
1075   telemetry:
1076     type: string_list
1077     description: >
1078       Whether or not the user has telemetry enabled. Note we should
1079       never receive a "false" value for this since telemetry would
1080       not send in that case.
1081       default: true
1082     send_in_pings:
1083       - metrics
1084     bugs:
1085       - https://github.com/mozilla-mobile/fenix/issues/11118
1086     data_reviews:
1087       - https://github.com/mozilla-mobile/fenix/pull/11211
1088       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1089     data_sensitivity:
1090       - interaction
1091     notification_emails:
1092       - fenix-core@mozilla.com
1093     expires: "2021-08-01"
1094   tracking_protection:
1095     type: string_list
1096     description: >
1097       What type of enhanced tracking protection the user has enabled.
1098       "standard," "strict," "custom," or "" (if disabled)
1099       default: "standard"
1100     send_in_pings:
1101       - metrics
1102     bugs:
1103       - https://github.com/mozilla-mobile/fenix/issues/11118
1104     data_reviews:
1105       - https://github.com/mozilla-mobile/fenix/pull/11211
1106       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1107     data_sensitivity:
1108       - interaction
1109     notification_emails:
1110       - fenix-core@mozilla.com
1111     expires: "2021-08-01"
1112   search_bookmarks:
1113     type: string_list
1114     description: >
1115       Whether or not the user has enabled bookmark search suggestions
1116       default: true
1117     send_in_pings:
1118       - metrics
1119     bugs:
1120       - https://github.com/mozilla-mobile/fenix/issues/11118
1121     data_reviews:
1122       - https://github.com/mozilla-mobile/fenix/pull/11211
1123       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1124     data_sensitivity:
1125       - interaction
1126     notification_emails:
1127       - fenix-core@mozilla.com
1128     expires: "2021-08-01"
1129   search_browsing_history:
1130     type: string_list
1131     description: >
1132       Whether or not the user has enabled browsing history suggestions.
1133       default: true
1134     send_in_pings:
1135       - metrics
1136     bugs:
1137       - https://github.com/mozilla-mobile/fenix/issues/11118
1138     data_reviews:
1139       - https://github.com/mozilla-mobile/fenix/pull/11211
1140       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1141     data_sensitivity:
1142       - interaction
1143     notification_emails:
1144       - fenix-core@mozilla.com
1145     expires: "2021-08-01"
1146   show_clipboard_suggestions:
1147     type: string_list
1148     description: >
1149       Whether or not the user has enabled clipboard search suggestions.
1150       default: true
1151     send_in_pings:
1152       - metrics
1153     bugs:
1154       - https://github.com/mozilla-mobile/fenix/issues/11118
1155     data_reviews:
1156       - https://github.com/mozilla-mobile/fenix/pull/11211
1157       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1158     data_sensitivity:
1159       - interaction
1160     notification_emails:
1161       - fenix-core@mozilla.com
1162     expires: "2021-08-01"
1163   show_search_shortcuts:
1164     type: string_list
1165     description: >
1166       Whether or not the user has enabled search shortcuts.
1167       default: true
1168     send_in_pings:
1169       - metrics
1170     bugs:
1171       - https://github.com/mozilla-mobile/fenix/issues/11118
1172     data_reviews:
1173       - https://github.com/mozilla-mobile/fenix/pull/11211
1174       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1175     data_sensitivity:
1176       - interaction
1177     notification_emails:
1178       - fenix-core@mozilla.com
1179     expires: "2021-08-01"
1180   open_links_in_a_private_tab:
1181     type: string_list
1182     description: >
1183       Whether or not the user has enabled open links in a private tab.
1184       default: false
1185     send_in_pings:
1186       - metrics
1187     bugs:
1188       - https://github.com/mozilla-mobile/fenix/issues/11118
1189     data_reviews:
1190       - https://github.com/mozilla-mobile/fenix/pull/11211
1191       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1192     data_sensitivity:
1193       - interaction
1194     notification_emails:
1195       - fenix-core@mozilla.com
1196     expires: "2021-08-01"
1197   sync:
1198     type: string_list
1199     description: >
1200       Whether or not the user is signed into FxA
1201       default: false
1202     send_in_pings:
1203       - metrics
1204     bugs:
1205       - https://github.com/mozilla-mobile/fenix/issues/11118
1206     data_reviews:
1207       - https://github.com/mozilla-mobile/fenix/pull/11211
1208       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1209     data_sensitivity:
1210       - interaction
1211     notification_emails:
1212       - fenix-core@mozilla.com
1213     expires: "2021-08-01"
1214   sync_items:
1215     type: string_list
1216     description: >
1217       The list of items the user has chosen to sync with FxA.
1218       default: "" if the user is signed out. Otherwise defaults to
1219       whatever is set in their FxA account. New accounts set:
1220       [bookmarks, history, passwords, tabs]
1221     send_in_pings:
1222       - metrics
1223     bugs:
1224       - https://github.com/mozilla-mobile/fenix/issues/11118
1225     data_reviews:
1226       - https://github.com/mozilla-mobile/fenix/pull/11211
1227       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1228     data_sensitivity:
1229       - interaction
1230     notification_emails:
1231       - fenix-core@mozilla.com
1232     expires: "2021-08-01"
1233   show_voice_search:
1234     type: string_list
1235     description: >
1236       Whether or not the user has enabled the voice search button.
1237       default: true
1238     send_in_pings:
1239       - metrics
1240     bugs:
1241       - https://github.com/mozilla-mobile/fenix/issues/11118
1242     data_reviews:
1243       - https://github.com/mozilla-mobile/fenix/pull/11211
1244       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1245     data_sensitivity:
1246       - interaction
1247     notification_emails:
1248       - fenix-core@mozilla.com
1249     expires: "2021-08-01"
1250   search_suggestions_private:
1251     type: string_list
1252     description: >
1253       Whether or not the user has enabled showing search suggestions
1254       in private mode.
1255       default: false (we prompt the user, asking them to make a selection)
1256     send_in_pings:
1257       - metrics
1258     bugs:
1259       - https://github.com/mozilla-mobile/fenix/issues/11118
1260     data_reviews:
1261       - https://github.com/mozilla-mobile/fenix/pull/11211
1262       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1263     data_sensitivity:
1264       - interaction
1265     notification_emails:
1266       - fenix-core@mozilla.com
1267     expires: "2021-08-01"
1268   toolbar_position:
1269     type: string_list
1270     description: >
1271       The position of the toolbar
1272       default: bottom (defaults to top if the user has accessibility services)
1273     send_in_pings:
1274       - metrics
1275     bugs:
1276       - https://github.com/mozilla-mobile/fenix/issues/11118
1277     data_reviews:
1278       - https://github.com/mozilla-mobile/fenix/pull/11211
1279       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1280     data_sensitivity:
1281       - interaction
1282     notification_emails:
1283       - fenix-core@mozilla.com
1284     expires: "2021-08-01"
1285   accessibility_services:
1286     type: string_list
1287     description: >
1288       Whether or not the user has touch exploration or switch services enabled.
1289       These are built into the Android OS, not Fenix prefs.
1290       default: ""
1291     send_in_pings:
1292       - metrics
1293     bugs:
1294       - https://github.com/mozilla-mobile/fenix/issues/11118
1295     data_reviews:
1296       - https://github.com/mozilla-mobile/fenix/pull/11211
1297       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1298     data_sensitivity:
1299       - interaction
1300     notification_emails:
1301       - fenix-core@mozilla.com
1302     expires: "2021-08-01"
1303   open_links_in_app:
1304     type: string_list
1305     description: >
1306       Whether or not the user has the open links in apps feature enabled.
1307       default: false
1308     send_in_pings:
1309       - metrics
1310     bugs:
1311       - https://github.com/mozilla-mobile/fenix/issues/11118
1312     data_reviews:
1313       - https://github.com/mozilla-mobile/fenix/pull/11446
1314       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1315     data_sensitivity:
1316       - interaction
1317     notification_emails:
1318       - fenix-core@mozilla.com
1319     expires: "2021-08-01"
1320   theme:
1321     type: string_list
1322     description: >
1323       The theme the user has enabled. "light," "dark," "system," or "battery"
1324       default: "system" for API 28+, else "light"
1325     send_in_pings:
1326       - metrics
1327     bugs:
1328       - https://github.com/mozilla-mobile/fenix/issues/11118
1329     data_reviews:
1330       - https://github.com/mozilla-mobile/fenix/pull/11446
1331       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1332     data_sensitivity:
1333       - interaction
1334     notification_emails:
1335       - fenix-core@mozilla.com
1336     expires: "2021-08-01"
1338 search.default_engine:
1339   code:
1340     type: string
1341     lifetime: application
1342     description: |
1343       If the search engine is pre-loaded with Fenix this value
1344       will be the search engine identifier. If it's a custom search engine
1345       (defined: https://github.com/mozilla-mobile/fenix/issues/1607) the
1346       value will be "custom"
1347     send_in_pings:
1348       - metrics
1349     bugs:
1350       - https://github.com/mozilla-mobile/fenix/issues/800
1351     data_reviews:
1352       - https://github.com/mozilla-mobile/fenix/pull/1606
1353       - https://github.com/mozilla-mobile/fenix/pull/5216
1354       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1355     data_sensitivity:
1356       - technical
1357       - interaction
1358     notification_emails:
1359       - fenix-core@mozilla.com
1360     expires: "2021-08-01"
1361   name:
1362     type: string
1363     lifetime: application
1364     description: |
1365       If the search engine is pre-loaded with Fenix this value
1366       will be the search engine name. If it's a custom search engine
1367       (defined: https://github.com/mozilla-mobile/fenix/issues/1607) the
1368       value will be "custom"
1369     send_in_pings:
1370       - metrics
1371     bugs:
1372       - https://github.com/mozilla-mobile/fenix/issues/800
1373     data_reviews:
1374       - https://github.com/mozilla-mobile/fenix/pull/1606
1375       - https://github.com/mozilla-mobile/fenix/pull/5216
1376       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1377     data_sensitivity:
1378       - technical
1379       - interaction
1380     notification_emails:
1381       - fenix-core@mozilla.com
1382     expires: "2021-08-01"
1383   submission_url:
1384     type: string
1385     lifetime: application
1386     description: |
1387       If the search engine is pre-loaded with Fenix this value will be he base
1388       URL we use to build the search query for the search engine. For example:
1389       https://mysearchengine.com/?query=%s. If it's a custom search engine
1390       (defined: https://github.com/mozilla-mobile/fenix/issues/1607) the value
1391       will be "custom"
1392     send_in_pings:
1393       - metrics
1394     bugs:
1395       - https://github.com/mozilla-mobile/fenix/issues/800
1396     data_reviews:
1397       - https://github.com/mozilla-mobile/fenix/pull/1606
1398       - https://github.com/mozilla-mobile/fenix/pull/5216
1399       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1400     data_sensitivity:
1401       - technical
1402       - interaction
1403     notification_emails:
1404       - fenix-core@mozilla.com
1405     expires: "2021-08-01"
1407 bookmarks_management:
1408   open_in_new_tab:
1409     type: event
1410     description: |
1411       A user opened a bookmark in a new tab.
1412     bugs:
1413       - https://github.com/mozilla-mobile/fenix/issues/974
1414     data_reviews:
1415       - https://github.com/mozilla-mobile/fenix/pull/1708
1416       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1417     data_sensitivity:
1418       - interaction
1419     notification_emails:
1420       - fenix-core@mozilla.com
1421     expires: "2021-04-01"
1422   open_in_new_tabs:
1423     type: event
1424     description: |
1425       A user opened multiple bookmarks at once in new tabs.
1426     bugs:
1427       - https://github.com/mozilla-mobile/fenix/issues/974
1428     data_reviews:
1429       - https://github.com/mozilla-mobile/fenix/pull/1708
1430       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1431     data_sensitivity:
1432       - interaction
1433     notification_emails:
1434       - fenix-core@mozilla.com
1435     expires: "2021-04-01"
1436   open_in_private_tab:
1437     type: event
1438     description: |
1439       A user opened a bookmark in a new private tab.
1440     bugs:
1441       - https://github.com/mozilla-mobile/fenix/issues/974
1442     data_reviews:
1443       - https://github.com/mozilla-mobile/fenix/pull/1708
1444       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1445     data_sensitivity:
1446       - interaction
1447     notification_emails:
1448       - fenix-core@mozilla.com
1449     expires: "2021-04-01"
1450   open_in_private_tabs:
1451     type: event
1452     description: |
1453       A user opened multiple bookmarks at once in new private tabs.
1454     bugs:
1455       - https://github.com/mozilla-mobile/fenix/issues/974
1456     data_reviews:
1457       - https://github.com/mozilla-mobile/fenix/pull/1708
1458       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1459     data_sensitivity:
1460       - interaction
1461     notification_emails:
1462       - fenix-core@mozilla.com
1463     expires: "2021-04-01"
1464   edited:
1465     type: event
1466     description: |
1467       A user edited the title and/or URL of an existing bookmark.
1468     bugs:
1469       - https://github.com/mozilla-mobile/fenix/issues/974
1470     data_reviews:
1471       - https://github.com/mozilla-mobile/fenix/pull/1708
1472       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1473     data_sensitivity:
1474       - interaction
1475     notification_emails:
1476       - fenix-core@mozilla.com
1477     expires: "2021-04-01"
1478   moved:
1479     type: event
1480     description: |
1481       A user moved an existing bookmark or folder to another folder.
1482     bugs:
1483       - https://github.com/mozilla-mobile/fenix/issues/974
1484     data_reviews:
1485       - https://github.com/mozilla-mobile/fenix/pull/1708
1486       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1487     data_sensitivity:
1488       - interaction
1489     notification_emails:
1490       - fenix-core@mozilla.com
1491     expires: "2021-04-01"
1492   removed:
1493     type: event
1494     description: |
1495       A user removed a bookmark item.
1496     bugs:
1497       - https://github.com/mozilla-mobile/fenix/issues/974
1498     data_reviews:
1499       - https://github.com/mozilla-mobile/fenix/pull/1708
1500       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1501     data_sensitivity:
1502       - interaction
1503     notification_emails:
1504       - fenix-core@mozilla.com
1505     expires: "2021-04-01"
1506   multi_removed:
1507     type: event
1508     description: |
1509       A user removed multiple bookmarks at once.
1510     bugs:
1511       - https://github.com/mozilla-mobile/fenix/issues/974
1512     data_reviews:
1513       - https://github.com/mozilla-mobile/fenix/pull/1708
1514       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1515     data_sensitivity:
1516       - interaction
1517     notification_emails:
1518       - fenix-core@mozilla.com
1519     expires: "2021-04-01"
1520   shared:
1521     type: event
1522     description: |
1523       A user shared a bookmark.
1524     bugs:
1525       - https://github.com/mozilla-mobile/fenix/issues/974
1526     data_reviews:
1527       - https://github.com/mozilla-mobile/fenix/pull/1708
1528       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1529     data_sensitivity:
1530       - interaction
1531     notification_emails:
1532       - fenix-core@mozilla.com
1533     expires: "2021-04-01"
1534   copied:
1535     type: event
1536     description: |
1537       A user copied a bookmark.
1538     bugs:
1539       - https://github.com/mozilla-mobile/fenix/issues/974
1540     data_reviews:
1541       - https://github.com/mozilla-mobile/fenix/pull/1708
1542       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1543     data_sensitivity:
1544       - interaction
1545     notification_emails:
1546       - fenix-core@mozilla.com
1547     expires: "2021-04-01"
1548   folder_add:
1549     type: event
1550     description: |
1551       A user added a new bookmark folder.
1552     bugs:
1553       - https://github.com/mozilla-mobile/fenix/issues/974
1554     data_reviews:
1555       - https://github.com/mozilla-mobile/fenix/pull/1708
1556       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1557     data_sensitivity:
1558       - interaction
1559     notification_emails:
1560       - fenix-core@mozilla.com
1561     expires: "2021-04-01"
1562   folder_remove:
1563     type: event
1564     description: |
1565       A user removed a bookmark folder.
1566     bugs:
1567       - https://github.com/mozilla-mobile/fenix/issues/3174
1568     data_reviews:
1569       - https://github.com/mozilla-mobile/fenix/pull/3724
1570       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1571     data_sensitivity:
1572       - interaction
1573     notification_emails:
1574       - fenix-core@mozilla.com
1575     expires: "2021-04-01"
1577 custom_tab:
1578   closed:
1579     type: event
1580     description: |
1581       A user closed the custom tab
1582     bugs:
1583       - https://github.com/mozilla-mobile/fenix/issues/977
1584     data_reviews:
1585       - https://github.com/mozilla-mobile/fenix/pull/1697
1586       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1587     data_sensitivity:
1588       - interaction
1589     notification_emails:
1590       - fenix-core@mozilla.com
1591     expires: "2021-04-01"
1592   action_button:
1593     type: event
1594     description: |
1595       A user pressed the action button provided by the launching app
1596     bugs:
1597       - https://github.com/mozilla-mobile/fenix/issues/977
1598     data_reviews:
1599       - https://github.com/mozilla-mobile/fenix/pull/1697
1600       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1601     data_sensitivity:
1602       - interaction
1603     notification_emails:
1604       - fenix-core@mozilla.com
1605     expires: "2021-04-01"
1606   menu:
1607     type: event
1608     description: |
1609       A user opened the custom tabs menu
1610     bugs:
1611       - https://github.com/mozilla-mobile/fenix/issues/977
1612     data_reviews:
1613       - https://github.com/mozilla-mobile/fenix/pull/1697
1614       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1615     data_sensitivity:
1616       - interaction
1617     notification_emails:
1618       - fenix-core@mozilla.com
1619     expires: "2021-04-01"
1621 activation:
1622   identifier:
1623     type: string
1624     lifetime: ping
1625     description: |
1626       A hashed and salted version of the Google Advertising ID from the device.
1627       This will never be sent in a ping that also contains the client_id.
1628     send_in_pings:
1629       - activation
1630     bugs:
1631       - https://bugzilla.mozilla.org/1538011
1632       - https://bugzilla.mozilla.org/1501822
1633     data_reviews:
1634       - https://github.com/mozilla-mobile/fenix/pull/1707#issuecomment-486972209
1635       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1636     data_sensitivity:
1637       - highly_sensitive
1638     notification_emails:
1639       - fenix-core@mozilla.com
1640     expires: "2021-04-01"
1641   activation_id:
1642     type: uuid
1643     lifetime: user
1644     description: |
1645       An alternate identifier, not correlated with the client_id, generated once
1646       and only sent with the activation ping.
1647     send_in_pings:
1648       - activation
1649     bugs:
1650       - https://bugzilla.mozilla.org/1538011
1651     data_reviews:
1652       - https://github.com/mozilla-mobile/fenix/pull/1707#issuecomment-486972209
1653       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1654     data_sensitivity:
1655       - highly_sensitive
1656     notification_emails:
1657       - fenix-core@mozilla.com
1658     expires: "2021-04-01"
1659     no_lint:
1660       - USER_LIFETIME_EXPIRATION
1662 qr_scanner:
1663   opened:
1664     type: event
1665     description: |
1666       A user opened the QR scanner
1667     bugs:
1668       - https://github.com/mozilla-mobile/fenix/issues/1857
1669     data_reviews:
1670       - https://github.com/mozilla-mobile/fenix/pull/2524#issuecomment-492739967
1671       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1672     data_sensitivity:
1673       - interaction
1674     notification_emails:
1675       - fenix-core@mozilla.com
1676     expires: "2021-08-01"
1677   prompt_displayed:
1678     type: event
1679     description: |
1680       A user scanned a QR code, causing a confirmation prompt to display asking
1681       if they want to navigate to the page
1682     bugs:
1683       - https://github.com/mozilla-mobile/fenix/issues/1857
1684     data_reviews:
1685       - https://github.com/mozilla-mobile/fenix/pull/2524#issuecomment-492739967
1686       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1687     data_sensitivity:
1688       - interaction
1689     notification_emails:
1690       - fenix-core@mozilla.com
1691     expires: "2021-08-01"
1692   navigation_allowed:
1693     type: event
1694     description: |
1695       A user tapped "allow" on the prompt, directing the user to the website
1696       scanned
1697     bugs:
1698       - https://github.com/mozilla-mobile/fenix/issues/1857
1699     data_reviews:
1700       - https://github.com/mozilla-mobile/fenix/pull/2524#issuecomment-492739967
1701       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1702     data_sensitivity:
1703       - interaction
1704     notification_emails:
1705       - fenix-core@mozilla.com
1706     expires: "2021-08-01"
1707   navigation_denied:
1708     type: event
1709     description: |
1710       A user tapped "deny" on the prompt, putting the user back to the scanning
1711       view
1712     bugs:
1713       - https://github.com/mozilla-mobile/fenix/issues/1857
1714     data_reviews:
1715       - https://github.com/mozilla-mobile/fenix/pull/2524#issuecomment-492739967
1716       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1717     data_sensitivity:
1718       - interaction
1719     notification_emails:
1720       - fenix-core@mozilla.com
1721     expires: "2021-08-01"
1723 error_page:
1724   visited_error:
1725     type: event
1726     description: |
1727       A user encountered an error page
1728     extra_keys:
1729       error_type:
1730         description: "The error type of the error page encountered"
1731     bugs:
1732       - https://github.com/mozilla-mobile/fenix/issues/1242
1733     data_reviews:
1734       - https://github.com/mozilla-mobile/fenix/pull/2491#issuecomment-492414486
1735       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
1736     data_sensitivity:
1737       - interaction
1738     notification_emails:
1739       - fenix-core@mozilla.com
1740     expires: "2021-04-01"
1742 sync_auth:
1743   opened:
1744     type: event
1745     description: |
1746       A user opened the sync authentication page
1747     bugs:
1748       - https://github.com/mozilla-mobile/fenix/issues/1190
1749     data_reviews:
1750       - https://github.com/mozilla-mobile/fenix/pull/2745#issuecomment-494918532
1751       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1752     data_sensitivity:
1753       - interaction
1754     notification_emails:
1755       - fenix-core@mozilla.com
1756     expires: "2021-08-01"
1757   closed:
1758     type: event
1759     description: |
1760       A user closed the sync page
1761     bugs:
1762       - https://github.com/mozilla-mobile/fenix/issues/1190
1763     data_reviews:
1764       - https://github.com/mozilla-mobile/fenix/pull/2745#issuecomment-494918532
1765       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1766     data_sensitivity:
1767       - interaction
1768     notification_emails:
1769       - fenix-core@mozilla.com
1770     expires: "2021-08-01"
1771   use_email:
1772     type: event
1773     description: |
1774       A user chose to use their email to sign in instead of scanning a QR code,
1775       counterpart to "scan_pairing"
1776     bugs:
1777       - https://github.com/mozilla-mobile/fenix/issues/9834
1778     data_reviews:
1779       - https://github.com/mozilla-mobile/fenix/pull/9835#pullrequestreview-398641844
1780       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1781     data_sensitivity:
1782       - interaction
1783     notification_emails:
1784       - fenix-core@mozilla.com
1785     expires: "2021-08-01"
1786   use_email_problem:
1787     type: event
1788     description: |
1789       A user chose to use their email to sign in after an account problem
1790     bugs:
1791       - https://github.com/mozilla-mobile/fenix/issues/9834
1792     data_reviews:
1793       - https://github.com/mozilla-mobile/fenix/pull/9835#pullrequestreview-398641844
1794       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1795     data_sensitivity:
1796       - interaction
1797     notification_emails:
1798       - fenix-core@mozilla.com
1799     expires: "2021-08-01"
1800   sign_in:
1801     type: event
1802     description: |
1803       A user pressed the sign in button on the sync authentication page and was
1804       successfully signed in to FxA
1805     bugs:
1806       - https://github.com/mozilla-mobile/fenix/issues/1190
1807     data_reviews:
1808       - https://github.com/mozilla-mobile/fenix/pull/2745#issuecomment-494918532
1809       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1810     data_sensitivity:
1811       - interaction
1812     notification_emails:
1813       - fenix-core@mozilla.com
1814     expires: "2021-08-01"
1815   sign_out:
1816     type: event
1817     description: |
1818       A user pressed the sign out button on the sync account page and was
1819       successfully signed out of FxA
1820     bugs:
1821       - https://github.com/mozilla-mobile/fenix/issues/1190
1822     data_reviews:
1823       - https://github.com/mozilla-mobile/fenix/pull/2745#issuecomment-494918532
1824       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1825     data_sensitivity:
1826       - interaction
1827     notification_emails:
1828       - fenix-core@mozilla.com
1829     expires: "2021-08-01"
1830   sign_up:
1831     type: event
1832     description: |
1833       User registered a new Firefox Account, and was signed into it
1834     bugs:
1835       - https://github.com/mozilla-mobile/fenix/issues/4971
1836     data_reviews:
1837       - https://github.com/mozilla-mobile/fenix/pull/4931#issuecomment-529740300
1838       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1839     data_sensitivity:
1840       - technical
1841       - interaction
1842     notification_emails:
1843       - fenix-core@mozilla.com
1844     expires: "2021-08-01"
1845   paired:
1846     type: event
1847     description: |
1848       User signed into FxA by pairing with a different Firefox browser, using a
1849       QR code
1850     bugs:
1851       - https://github.com/mozilla-mobile/fenix/issues/4971
1852     data_reviews:
1853       - https://github.com/mozilla-mobile/fenix/pull/4931#issuecomment-529740300
1854       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1855     data_sensitivity:
1856       - technical
1857       - interaction
1858     notification_emails:
1859       - fenix-core@mozilla.com
1860     expires: "2021-08-01"
1861   auto_login:
1862     type: event
1863     description: |
1864       User signed into FxA via an account shared from another locally installed
1865       Mozilla application (e.g. Fennec)
1866     bugs:
1867       - https://github.com/mozilla-mobile/fenix/issues/4971
1868     data_reviews:
1869       - https://github.com/mozilla-mobile/fenix/pull/4931#issuecomment-529740300
1870       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1871     data_sensitivity:
1872       - technical
1873       - interaction
1874     notification_emails:
1875       - fenix-core@mozilla.com
1876     expires: "2021-08-01"
1877   recovered:
1878     type: event
1879     description: |
1880       Account manager automatically recovered FxA authentication state without
1881       direct user involvement
1882     bugs:
1883       - https://github.com/mozilla-mobile/fenix/issues/4971
1884     data_reviews:
1885       - https://github.com/mozilla-mobile/fenix/pull/4931#issuecomment-529740300
1886       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1887     data_sensitivity:
1888       - technical
1889       - interaction
1890     notification_emails:
1891       - fenix-core@mozilla.com
1892     expires: "2021-08-01"
1893   other_external:
1894     type: event
1895     description: |
1896       User authenticated via FxA using an unknown mechanism. "Known" mechanisms
1897       are currently sign-in, sign-up and pairing
1898     bugs:
1899       - https://github.com/mozilla-mobile/fenix/issues/4971
1900     data_reviews:
1901       - https://github.com/mozilla-mobile/fenix/pull/4931#issuecomment-529740300
1902       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1903     data_sensitivity:
1904       - technical
1905       - interaction
1906     notification_emails:
1907       - fenix-core@mozilla.com
1908     expires: "2021-08-01"
1909   scan_pairing:
1910     type: event
1911     description: |
1912       A user pressed the scan pairing button on the sync authentication page
1913     bugs:
1914       - https://github.com/mozilla-mobile/fenix/issues/1190
1915     data_reviews:
1916       - https://github.com/mozilla-mobile/fenix/pull/2745#issuecomment-494918532
1917       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1918     data_sensitivity:
1919       - interaction
1920     notification_emails:
1921       - fenix-core@mozilla.com
1922     expires: "2021-08-01"
1924 sync_account:
1925   opened:
1926     type: event
1927     description: |
1928       A user opened the sync account page
1929     bugs:
1930       - https://github.com/mozilla-mobile/fenix/issues/1190
1931     data_reviews:
1932       - https://github.com/mozilla-mobile/fenix/pull/2745#issuecomment-494918532
1933       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1934     data_sensitivity:
1935       - interaction
1936     notification_emails:
1937       - fenix-core@mozilla.com
1938     expires: "2021-08-01"
1939   closed:
1940     type: event
1941     description: |
1942       A user closed the sync account page
1943     bugs:
1944       - https://github.com/mozilla-mobile/fenix/issues/1190
1945     data_reviews:
1946       - https://github.com/mozilla-mobile/fenix/pull/2745#issuecomment-494918532
1947       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1948     data_sensitivity:
1949       - interaction
1950     notification_emails:
1951       - fenix-core@mozilla.com
1952     expires: "2021-08-01"
1953   sync_now:
1954     type: event
1955     description: |
1956       A user pressed the sync now button on the sync account page
1957     bugs:
1958       - https://github.com/mozilla-mobile/fenix/issues/1190
1959     data_reviews:
1960       - https://github.com/mozilla-mobile/fenix/pull/2745#issuecomment-494918532
1961       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1962     data_sensitivity:
1963       - interaction
1964     notification_emails:
1965       - fenix-core@mozilla.com
1966     expires: "2021-08-01"
1967   send_tab:
1968     type: event
1969     description: |
1970       A user sent the current tab to another FxA device
1971     bugs:
1972       - https://github.com/mozilla-mobile/fenix/issues/4908
1973     data_reviews:
1974       - https://github.com/mozilla-mobile/fenix/pull/5106
1975       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1976     data_sensitivity:
1977       - interaction
1978     notification_emails:
1979       - fenix-core@mozilla.com
1980     expires: "2021-08-01"
1981   sign_in_to_send_tab:
1982     type: event
1983     description: |
1984       A user pressed the "sign in to send tab" button inside the share tab menu
1985     bugs:
1986       - https://github.com/mozilla-mobile/fenix/issues/4908
1987     data_reviews:
1988       - https://github.com/mozilla-mobile/fenix/pull/5106
1989       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
1990     data_sensitivity:
1991       - interaction
1992     notification_emails:
1993       - fenix-core@mozilla.com
1994     expires: "2021-08-01"
1996 history:
1997   opened:
1998     type: event
1999     description: |
2000       A user opened the history screen
2001     bugs:
2002       - https://github.com/mozilla-mobile/fenix/issues/2362
2003     data_reviews:
2004       - https://github.com/mozilla-mobile/fenix/pull/3940
2005       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2006     data_sensitivity:
2007       - interaction
2008     notification_emails:
2009       - fenix-core@mozilla.com
2010     expires: "2021-08-01"
2011   removed:
2012     type: event
2013     description: |
2014       A user removed a history item
2015     bugs:
2016       - https://github.com/mozilla-mobile/fenix/issues/2362
2017     data_reviews:
2018       - https://github.com/mozilla-mobile/fenix/pull/3940
2019       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2020     data_sensitivity:
2021       - interaction
2022     notification_emails:
2023       - fenix-core@mozilla.com
2024     expires: "2021-08-01"
2025   removed_all:
2026     type: event
2027     description: |
2028       A user removed all history items
2029     bugs:
2030       - https://github.com/mozilla-mobile/fenix/issues/2362
2031     data_reviews:
2032       - https://github.com/mozilla-mobile/fenix/pull/3940
2033       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2034     data_sensitivity:
2035       - interaction
2036     notification_emails:
2037       - fenix-core@mozilla.com
2038     expires: "2021-08-01"
2039   shared:
2040     type: event
2041     description: |
2042       A user shared a history item
2043     bugs:
2044       - https://github.com/mozilla-mobile/fenix/issues/2362
2045     data_reviews:
2046       - https://github.com/mozilla-mobile/fenix/pull/3940
2047       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2048     data_sensitivity:
2049       - interaction
2050     notification_emails:
2051       - fenix-core@mozilla.com
2052     expires: "2021-08-01"
2053   opened_item:
2054     type: event
2055     description: |
2056       A user opened a history item
2057     bugs:
2058       - https://github.com/mozilla-mobile/fenix/issues/2362
2059     data_reviews:
2060       - https://github.com/mozilla-mobile/fenix/pull/3940
2061       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2062     data_sensitivity:
2063       - interaction
2064     notification_emails:
2065       - fenix-core@mozilla.com
2066     expires: "2021-08-01"
2068 tip:
2069   displayed:
2070     type: event
2071     description: |
2072       The tip was displayed
2073     extra_keys:
2074       identifier:
2075         description: "The identifier of the tip displayed"
2076     bugs:
2077       - https://github.com/mozilla-mobile/fenix/issues/9328
2078     data_reviews:
2079       - https://github.com/mozilla-mobile/fenix/pull/9836
2080       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2081     data_sensitivity:
2082       - interaction
2083     notification_emails:
2084       - fenix-core@mozilla.com
2085     expires: "2021-08-01"
2086   pressed:
2087     type: event
2088     description: |
2089       The tip's button was pressed
2090     extra_keys:
2091       identifier:
2092         description: "The identifier of the tip the action was taken on"
2093     bugs:
2094       - https://github.com/mozilla-mobile/fenix/issues/9328
2095     data_reviews:
2096       - https://github.com/mozilla-mobile/fenix/pull/9836
2097       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2098     data_sensitivity:
2099       - interaction
2100     notification_emails:
2101       - fenix-core@mozilla.com
2102     expires: "2021-08-01"
2103   closed:
2104     type: event
2105     description: |
2106       The tip was closed
2107     extra_keys:
2108       identifier:
2109         description: "The identifier of the tip closed"
2110     bugs:
2111       - https://github.com/mozilla-mobile/fenix/issues/9328
2112     data_reviews:
2113       - https://github.com/mozilla-mobile/fenix/pull/9836
2114       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2115     data_sensitivity:
2116       - interaction
2117     notification_emails:
2118       - fenix-core@mozilla.com
2119     expires: "2021-08-01"
2121 reader_mode:
2122   available:
2123     type: event
2124     description: |
2125       Reader mode is available for the current page
2126     bugs:
2127       - https://github.com/mozilla-mobile/fenix/issues/2267
2128     data_reviews:
2129       - https://github.com/mozilla-mobile/fenix/pull/3941
2130       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2131     data_sensitivity:
2132       - interaction
2133     notification_emails:
2134       - fenix-core@mozilla.com
2135     expires: "2021-08-01"
2136   opened:
2137     type: event
2138     description: |
2139       A user opened reader mode
2140     bugs:
2141       - https://github.com/mozilla-mobile/fenix/issues/2267
2142     data_reviews:
2143       - https://github.com/mozilla-mobile/fenix/pull/3941
2144       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2145     data_sensitivity:
2146       - interaction
2147     notification_emails:
2148       - fenix-core@mozilla.com
2149     expires: "2021-08-01"
2150   closed:
2151     type: event
2152     description: |
2153       A user closed reader mode
2154     bugs:
2155       - https://github.com/mozilla-mobile/fenix/issues/2267
2156     data_reviews:
2157       - https://github.com/mozilla-mobile/fenix/pull/4328
2158       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2159     data_sensitivity:
2160       - interaction
2161     notification_emails:
2162       - fenix-core@mozilla.com
2163     expires: "2021-08-01"
2164   appearance:
2165     type: event
2166     description: |
2167       A user tapped the appearance button
2168     bugs:
2169       - https://github.com/mozilla-mobile/fenix/issues/2267
2170     data_reviews:
2171       - https://github.com/mozilla-mobile/fenix/pull/3941
2172       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2173     data_sensitivity:
2174       - interaction
2175     notification_emails:
2176       - fenix-core@mozilla.com
2177     expires: "2021-08-01"
2179 tabs_tray:
2180   opened:
2181     type: event
2182     description: |
2183       A user opened the tabs tray
2184     bugs:
2185       - https://github.com/mozilla-mobile/fenix/issues/11273
2186     data_reviews:
2187       - https://github.com/mozilla-mobile/fenix/pull/12036
2188       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2189     data_sensitivity:
2190       - interaction
2191     notification_emails:
2192       - fenix-core@mozilla.com
2193     expires: "2021-08-01"
2194   closed:
2195     type: event
2196     description: |
2197       A user closed the tabs tray
2198     bugs:
2199       - https://github.com/mozilla-mobile/fenix/issues/11273
2200     data_reviews:
2201       - https://github.com/mozilla-mobile/fenix/pull/12036
2202       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2203     data_sensitivity:
2204       - interaction
2205     notification_emails:
2206       - fenix-core@mozilla.com
2207     expires: "2021-08-01"
2208   opened_existing_tab:
2209     type: event
2210     description: |
2211       A user opened an existing tab
2212     bugs:
2213       - https://github.com/mozilla-mobile/fenix/issues/11273
2214     data_reviews:
2215       - https://github.com/mozilla-mobile/fenix/pull/12036
2216       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2217     data_sensitivity:
2218       - interaction
2219     notification_emails:
2220       - fenix-core@mozilla.com
2221     expires: "2021-08-01"
2222   closed_existing_tab:
2223     type: event
2224     description: |
2225       A user closed an existing tab
2226     bugs:
2227       - https://github.com/mozilla-mobile/fenix/issues/11273
2228     data_reviews:
2229       - https://github.com/mozilla-mobile/fenix/pull/12036
2230       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2231     data_sensitivity:
2232       - interaction
2233     notification_emails:
2234       - fenix-core@mozilla.com
2235     expires: "2021-08-01"
2236   private_mode_tapped:
2237     type: event
2238     description: |
2239       A user switched to private mode
2240     bugs:
2241       - https://github.com/mozilla-mobile/fenix/issues/11273
2242     data_reviews:
2243       - https://github.com/mozilla-mobile/fenix/pull/12036
2244       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2245     data_sensitivity:
2246       - interaction
2247     notification_emails:
2248       - fenix-core@mozilla.com
2249     expires: "2021-08-01"
2250   normal_mode_tapped:
2251     type: event
2252     description: |
2253       A user switched to normal mode
2254     bugs:
2255       - https://github.com/mozilla-mobile/fenix/issues/11273
2256     data_reviews:
2257       - https://github.com/mozilla-mobile/fenix/pull/12036
2258       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2259     data_sensitivity:
2260       - interaction
2261     notification_emails:
2262       - fenix-core@mozilla.com
2263     expires: "2021-08-01"
2264   new_tab_tapped:
2265     type: event
2266     description: |
2267       A user opened a new tab
2268     bugs:
2269       - https://github.com/mozilla-mobile/fenix/issues/11273
2270     data_reviews:
2271       - https://github.com/mozilla-mobile/fenix/pull/12036
2272       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2273     data_sensitivity:
2274       - interaction
2275     notification_emails:
2276       - fenix-core@mozilla.com
2277     expires: "2021-08-01"
2278   new_private_tab_tapped:
2279     type: event
2280     description: |
2281       A user opened a new private tab
2282     bugs:
2283       - https://github.com/mozilla-mobile/fenix/issues/11273
2284     data_reviews:
2285       - https://github.com/mozilla-mobile/fenix/pull/12036
2286       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2287     data_sensitivity:
2288       - interaction
2289     notification_emails:
2290       - fenix-core@mozilla.com
2291     expires: "2021-08-01"
2292   menu_opened:
2293     type: event
2294     description: |
2295       A user opened three three dot menu in the tabs tray
2296     bugs:
2297       - https://github.com/mozilla-mobile/fenix/issues/11273
2298     data_reviews:
2299       - https://github.com/mozilla-mobile/fenix/pull/12036
2300       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2301     data_sensitivity:
2302       - interaction
2303     notification_emails:
2304       - fenix-core@mozilla.com
2305     expires: "2021-08-01"
2306   save_to_collection:
2307     type: event
2308     description: |
2309       A user tapped the save to collection button in the
2310       three dot menu within the tabs tray
2311     bugs:
2312       - https://github.com/mozilla-mobile/fenix/issues/11273
2313     data_reviews:
2314       - https://github.com/mozilla-mobile/fenix/pull/12036
2315       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2316     data_sensitivity:
2317       - interaction
2318     notification_emails:
2319       - fenix-core@mozilla.com
2320     expires: "2021-08-01"
2321   share_all_tabs:
2322     type: event
2323     description: |
2324       A user tapped the share all tabs button in the
2325       three dot menu within the tabs tray
2326     bugs:
2327       - https://github.com/mozilla-mobile/fenix/issues/11273
2328     data_reviews:
2329       - https://github.com/mozilla-mobile/fenix/pull/12036
2330       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2331     data_sensitivity:
2332       - interaction
2333     notification_emails:
2334       - fenix-core@mozilla.com
2335     expires: "2021-08-01"
2336   close_all_tabs:
2337     type: event
2338     description: |
2339       A user tapped the close all tabs button in the
2340       three dot menu within the tabs tray
2341     bugs:
2342       - https://github.com/mozilla-mobile/fenix/issues/11273
2343     data_reviews:
2344       - https://github.com/mozilla-mobile/fenix/pull/12036
2345       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2346     data_sensitivity:
2347       - interaction
2348     notification_emails:
2349       - fenix-core@mozilla.com
2350     expires: "2021-08-01"
2352 collections:
2353   renamed:
2354     type: event
2355     description: |
2356       A user renamed a collection
2357     bugs:
2358       - https://github.com/mozilla-mobile/fenix/issues/969
2359     data_reviews:
2360       - https://github.com/mozilla-mobile/fenix/pull/3935
2361       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2362     data_sensitivity:
2363       - technical
2364       - interaction
2365     notification_emails:
2366       - fenix-core@mozilla.com
2367     expires: "2021-04-01"
2368   tab_restored:
2369     type: event
2370     description: |
2371       A user restored a tab from collection tab list
2372     bugs:
2373       - https://github.com/mozilla-mobile/fenix/issues/969
2374     data_reviews:
2375       - https://github.com/mozilla-mobile/fenix/pull/3935
2376       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2377     data_sensitivity:
2378       - technical
2379       - interaction
2380     notification_emails:
2381       - fenix-core@mozilla.com
2382     expires: "2021-04-01"
2383   all_tabs_restored:
2384     type: event
2385     description: |
2386       A user tapped "open tabs" from collection menu
2387     bugs:
2388       - https://github.com/mozilla-mobile/fenix/issues/969
2389     data_reviews:
2390       - https://github.com/mozilla-mobile/fenix/pull/3935
2391       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2392     data_sensitivity:
2393       - technical
2394       - interaction
2395     notification_emails:
2396       - fenix-core@mozilla.com
2397     expires: "2021-04-01"
2398   tab_removed:
2399     type: event
2400     description: |
2401       A user tapped remove tab from collection tab list
2402     bugs:
2403       - https://github.com/mozilla-mobile/fenix/issues/969
2404     data_reviews:
2405       - https://github.com/mozilla-mobile/fenix/pull/3935
2406       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2407     data_sensitivity:
2408       - technical
2409       - interaction
2410     notification_emails:
2411       - fenix-core@mozilla.com
2412     expires: "2021-04-01"
2413   shared:
2414     type: event
2415     description: |
2416       A user tapped share collection
2417     bugs:
2418       - https://github.com/mozilla-mobile/fenix/issues/969
2419     data_reviews:
2420       - https://github.com/mozilla-mobile/fenix/pull/3935
2421       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2422     data_sensitivity:
2423       - technical
2424       - interaction
2425     notification_emails:
2426       - fenix-core@mozilla.com
2427     expires: "2021-04-01"
2428   removed:
2429     type: event
2430     description: |
2431       A user tapped delete collection from collection menu
2432     bugs:
2433       - https://github.com/mozilla-mobile/fenix/issues/969
2434     data_reviews:
2435       - https://github.com/mozilla-mobile/fenix/pull/3935
2436       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2437     data_sensitivity:
2438       - technical
2439       - interaction
2440     notification_emails:
2441       - fenix-core@mozilla.com
2442     expires: "2021-04-01"
2443   saved:
2444     type: event
2445     description: |
2446       A user saved a list of tabs to a new collection
2447     extra_keys:
2448       tabs_open:
2449         description: "The number of tabs open in the current session"
2450       tabs_selected:
2451         description: "The number of tabs added to the collection"
2452     bugs:
2453       - https://github.com/mozilla-mobile/fenix/issues/969
2454     data_reviews:
2455       - https://github.com/mozilla-mobile/fenix/pull/3935
2456       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2457     data_sensitivity:
2458       - technical
2459       - interaction
2460     notification_emails:
2461       - fenix-core@mozilla.com
2462     expires: "2021-04-01"
2463   tabs_added:
2464     type: event
2465     description: |
2466       A user saved a list of tabs to an existing collection
2467     extra_keys:
2468       tabs_open:
2469         description: "The number of tabs open in the current session"
2470       tabs_selected:
2471         description: "The number of tabs added to the collection"
2472     bugs:
2473       - https://github.com/mozilla-mobile/fenix/issues/969
2474     data_reviews:
2475       - https://github.com/mozilla-mobile/fenix/pull/3935
2476       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2477     data_sensitivity:
2478       - technical
2479       - interaction
2480     notification_emails:
2481       - fenix-core@mozilla.com
2482     expires: "2021-04-01"
2483   tab_select_opened:
2484     type: event
2485     description: |
2486       A user opened the select tabs screen (the first step of the collection
2487       creation flow)
2488     bugs:
2489       - https://github.com/mozilla-mobile/fenix/issues/969
2490     data_reviews:
2491       - https://github.com/mozilla-mobile/fenix/pull/3935
2492       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2493     data_sensitivity:
2494       - technical
2495       - interaction
2496     notification_emails:
2497       - fenix-core@mozilla.com
2498     expires: "2021-04-01"
2499   add_tab_button:
2500     type: event
2501     description: |
2502       A user tapped the "add tab" button in the three dot menu of collections
2503     bugs:
2504       - https://github.com/mozilla-mobile/fenix/issues/969
2505     data_reviews:
2506       - https://github.com/mozilla-mobile/fenix/pull/4358
2507       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2508     data_sensitivity:
2509       - interaction
2510     notification_emails:
2511       - fenix-core@mozilla.com
2512     expires: "2021-04-01"
2513   long_press:
2514     type: event
2515     description: |
2516       A user long pressed on a tab, triggering the collection creation screen
2517     bugs:
2518       - https://github.com/mozilla-mobile/fenix/issues/969
2519     data_reviews:
2520       - https://github.com/mozilla-mobile/fenix/pull/4358
2521       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2522     data_sensitivity:
2523       - interaction
2524     notification_emails:
2525       - fenix-core@mozilla.com
2526     expires: "2021-04-01"
2527   save_button:
2528     type: event
2529     description: |
2530       A user pressed the "save to collection" button on either the home or
2531       browser screen, triggering the collection creation screen to open
2532       (tab_select_opened)
2533     bugs:
2534       - https://github.com/mozilla-mobile/fenix/issues/969
2535     data_reviews:
2536       - https://github.com/mozilla-mobile/fenix/pull/4358
2537       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2538     data_sensitivity:
2539       - interaction
2540     notification_emails:
2541       - fenix-core@mozilla.com
2542     expires: "2021-04-01"
2543     extra_keys:
2544       from_screen:
2545         description: |
2546           A string representing the screen from which the user pressed the save
2547           button. Currently one of: `browserMenu`, `homeMenu` or `home`
2548   rename_button:
2549     type: event
2550     description: |
2551       A user pressed the "rename collection" button in the three dot menu
2552     bugs:
2553       - https://github.com/mozilla-mobile/fenix/issues/969
2554     data_reviews:
2555       - https://github.com/mozilla-mobile/fenix/pull/4539
2556       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2557     data_sensitivity:
2558       - interaction
2559     notification_emails:
2560       - fenix-core@mozilla.com
2561     expires: "2021-04-01"
2563 search_widget:
2564   new_tab_button:
2565     type: event
2566     description: |
2567       A user pressed anywhere from the Firefox logo until the start of the
2568       microphone icon, opening a new tab search screen.
2569     bugs:
2570       - https://github.com/mozilla-mobile/fenix/issues/4457
2571     data_reviews:
2572       - https://github.com/mozilla-mobile/fenix/pull/4714
2573       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2574     data_sensitivity:
2575       - interaction
2576     notification_emails:
2577       - fenix-core@mozilla.com
2578     expires: "2021-08-01"
2579   voice_button:
2580     type: event
2581     description: |
2582       A user pressed the microphone icon, opening a new voice search screen.
2583     bugs:
2584       - https://github.com/mozilla-mobile/fenix/issues/4457
2585     data_reviews:
2586       - https://github.com/mozilla-mobile/fenix/pull/4714
2587       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2588     data_sensitivity:
2589       - interaction
2590     notification_emails:
2591       - fenix-core@mozilla.com
2592     expires: "2021-08-01"
2594 private_browsing_mode:
2595   garbage_icon:
2596     type: event
2597     description: |
2598       A user pressed the garbage can icon on the private browsing home page,
2599       deleting all private tabs.
2600     bugs:
2601       - https://github.com/mozilla-mobile/fenix/issues/4658
2602     data_reviews:
2603       - https://github.com/mozilla-mobile/fenix/pull/4968
2604       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2605     data_sensitivity:
2606       - interaction
2607     notification_emails:
2608       - fenix-core@mozilla.com
2609     expires: "2021-08-01"
2610   snackbar_undo:
2611     type: event
2612     description: |
2613       A user pressed the "undo" button in the snackbar that is shown when the
2614       garbage icon is tapped.
2615     bugs:
2616       - https://github.com/mozilla-mobile/fenix/issues/4658
2617     data_reviews:
2618       - https://github.com/mozilla-mobile/fenix/pull/4968
2619       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2620     data_sensitivity:
2621       - interaction
2622     notification_emails:
2623       - fenix-core@mozilla.com
2624     expires: "2021-08-01"
2625   notification_tapped:
2626     type: event
2627     description: |
2628       A user pressed the private browsing mode notification itself.
2629     bugs:
2630       - https://github.com/mozilla-mobile/fenix/issues/4658
2631     data_reviews:
2632       - https://github.com/mozilla-mobile/fenix/pull/4968
2633       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2634     data_sensitivity:
2635       - interaction
2636     notification_emails:
2637       - fenix-core@mozilla.com
2638     expires: "2021-08-01"
2639   notification_open:
2640     type: event
2641     description: |
2642       A user pressed the private browsing mode notification's "Open" button.
2643     bugs:
2644       - https://github.com/mozilla-mobile/fenix/issues/4658
2645     data_reviews:
2646       - https://github.com/mozilla-mobile/fenix/pull/4968
2647       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2648     data_sensitivity:
2649       - interaction
2650     notification_emails:
2651       - fenix-core@mozilla.com
2652     expires: "2021-08-01"
2653   notification_delete:
2654     type: event
2655     description: |
2656       A user pressed the private browsing mode notification's "Delete and Open"
2657       button.
2658     bugs:
2659       - https://github.com/mozilla-mobile/fenix/issues/4658
2660     data_reviews:
2661       - https://github.com/mozilla-mobile/fenix/pull/4968
2662       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2663     data_sensitivity:
2664       - interaction
2665     notification_emails:
2666       - fenix-core@mozilla.com
2667     expires: "2021-08-01"
2669 contextual_hint.tracking_protection:
2670   display:
2671     type: event
2672     description: |
2673       The enhanced tracking protection contextual hint was
2674       displayed.
2675     bugs:
2676       - https://github.com/mozilla-mobile/fenix/issues/9625
2677     data_reviews:
2678       - https://github.com/mozilla-mobile/fenix/pull/11923
2679       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2680     data_sensitivity:
2681       - interaction
2682     notification_emails:
2683       - fenix-core@mozilla.com
2684     expires: "2021-04-01"
2685   dismiss:
2686     type: event
2687     description: |
2688       The enhanced tracking protection contextual hint was
2689       dismissed
2690       by pressing the close button
2691     bugs:
2692       - https://github.com/mozilla-mobile/fenix/issues/9625
2693     data_reviews:
2694       - https://github.com/mozilla-mobile/fenix/pull/11923
2695       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2696     data_sensitivity:
2697       - interaction
2698     notification_emails:
2699       - fenix-core@mozilla.com
2700     expires: "2021-04-01"
2701   outside_tap:
2702     type: event
2703     description: |
2704       The user tapped outside of the etp contextual hint
2705       (which has no effect).
2706     bugs:
2707       - https://github.com/mozilla-mobile/fenix/issues/9625
2708     data_reviews:
2709       - https://github.com/mozilla-mobile/fenix/pull/11923
2710       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2711     data_sensitivity:
2712       - interaction
2713     notification_emails:
2714       - fenix-core@mozilla.com
2715     expires: "2021-04-01"
2716   inside_tap:
2717     type: event
2718     description: |
2719       The user tapped inside of the etp contextual hint
2720       (which brings up the etp panel for this site).
2721     bugs:
2722       - https://github.com/mozilla-mobile/fenix/issues/9625
2723     data_reviews:
2724       - https://github.com/mozilla-mobile/fenix/pull/11923
2725       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
2726     data_sensitivity:
2727       - interaction
2728     notification_emails:
2729       - fenix-core@mozilla.com
2730     expires: "2021-04-01"
2732 tracking_protection:
2733   exception_added:
2734     type: event
2735     description: |
2736       A user added a tracking protection exception through the TP toggle in the
2737       panel.
2738     bugs:
2739       - https://github.com/mozilla-mobile/fenix/issues/5312
2740     data_reviews:
2741       - https://github.com/mozilla-mobile/fenix/pull/5414#issuecomment-532847188
2742       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2743     data_sensitivity:
2744       - interaction
2745     notification_emails:
2746       - fenix-core@mozilla.com
2747     expires: "2021-08-01"
2748   panel_settings:
2749     type: event
2750     description: |
2751       A user opened tracking protection settings from the panel.
2752     bugs:
2753       - https://github.com/mozilla-mobile/fenix/issues/5312
2754     data_reviews:
2755       - https://github.com/mozilla-mobile/fenix/pull/5414#issuecomment-532847188
2756       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2757     data_sensitivity:
2758       - interaction
2759     notification_emails:
2760       - fenix-core@mozilla.com
2761     expires: "2021-08-01"
2762   etp_shield:
2763     type: event
2764     description: |
2765       A user pressed the tracking protection shield icon in toolbar.
2766     bugs:
2767       - https://github.com/mozilla-mobile/fenix/issues/5312
2768     data_reviews:
2769       - https://github.com/mozilla-mobile/fenix/pull/5414#issuecomment-532847188
2770       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2771     data_sensitivity:
2772       - interaction
2773     notification_emails:
2774       - fenix-core@mozilla.com
2775     expires: "2021-08-01"
2776   etp_tracker_list:
2777     type: event
2778     description: |
2779       A user pressed into a list of categorized trackers in tracking protection
2780       panel.
2781     bugs:
2782       - https://github.com/mozilla-mobile/fenix/issues/5312
2783     data_reviews:
2784       - https://github.com/mozilla-mobile/fenix/pull/5414#issuecomment-532847188
2785       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2786     data_sensitivity:
2787       - interaction
2788     notification_emails:
2789       - fenix-core@mozilla.com
2790     expires: "2021-08-01"
2791   etp_settings:
2792     type: event
2793     description: |
2794       A user opened tracking protection settings through settings.
2795     bugs:
2796       - https://github.com/mozilla-mobile/fenix/issues/5312
2797     data_reviews:
2798       - https://github.com/mozilla-mobile/fenix/pull/5414#issuecomment-532847188
2799       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2800     data_sensitivity:
2801       - interaction
2802     notification_emails:
2803       - fenix-core@mozilla.com
2804     expires: "2021-08-01"
2805   etp_setting_changed:
2806     type: event
2807     description: |
2808       A user changed their tracking protection level setting to either strict,
2809       standard, or custom.
2810     extra_keys:
2811       etp_setting:
2812         description: "The new setting for ETP: strict, standard, custom"
2813     bugs:
2814       - https://github.com/mozilla-mobile/fenix/issues/5312
2815       - https://github.com/mozilla-mobile/fenix/issues/11063
2816     data_reviews:
2817       - https://github.com/mozilla-mobile/fenix/pull/5414#issuecomment-532847188
2818       - https://github.com/mozilla-mobile/fenix/pull/11383
2819       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2820     data_sensitivity:
2821       - interaction
2822     notification_emails:
2823       - fenix-core@mozilla.com
2824     expires: "2021-08-01"
2826 private_browsing_shortcut:
2827   create_shortcut:
2828     type: event
2829     description: |
2830       A user pressed the "Add private browsing shortcut" button in settings.
2831     bugs:
2832       - https://github.com/mozilla-mobile/fenix/issues/4658
2833     data_reviews:
2834       - https://github.com/mozilla-mobile/fenix/pull/5194
2835       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2836     data_sensitivity:
2837       - interaction
2838     notification_emails:
2839       - fenix-core@mozilla.com
2840     expires: "2021-08-01"
2841   cfr_add_shortcut:
2842     type: event
2843     description: |
2844       A user pressed the "Add shortcut" button when the contextual feature
2845       recommender appeared.
2846     bugs:
2847       - https://github.com/mozilla-mobile/fenix/issues/4658
2848     data_reviews:
2849       - https://github.com/mozilla-mobile/fenix/pull/5194
2850       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2851     data_sensitivity:
2852       - interaction
2853     notification_emails:
2854       - fenix-core@mozilla.com
2855     expires: "2021-08-01"
2856   cfr_cancel:
2857     type: event
2858     description: |
2859       A user pressed the "No thanks" button when the contextual feature
2860       recommender appeared.
2861     bugs:
2862       - https://github.com/mozilla-mobile/fenix/issues/4658
2863     data_reviews:
2864       - https://github.com/mozilla-mobile/fenix/pull/5194
2865       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2866     data_sensitivity:
2867       - interaction
2868     notification_emails:
2869       - fenix-core@mozilla.com
2870     expires: "2021-08-01"
2871   pinned_shortcut_priv:
2872     type: event
2873     description: |
2874       A user pressed the pinned private shortcut in Android home screen, opening
2875       up a new private search.
2876     bugs:
2877       - https://github.com/mozilla-mobile/fenix/issues/4658
2878     data_reviews:
2879       - https://github.com/mozilla-mobile/fenix/pull/5194
2880       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2881     data_sensitivity:
2882       - interaction
2883     notification_emails:
2884       - fenix-core@mozilla.com
2885     expires: "2021-08-01"
2886   static_shortcut_tab:
2887     type: event
2888     description: |
2889       A user pressed the long-press shortcut "Open new tab", opening up a new
2890       search.
2891     bugs:
2892       - https://github.com/mozilla-mobile/fenix/issues/4658
2893     data_reviews:
2894       - https://github.com/mozilla-mobile/fenix/pull/5194
2895       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2896     data_sensitivity:
2897       - interaction
2898     notification_emails:
2899       - fenix-core@mozilla.com
2900     expires: "2021-08-01"
2901   static_shortcut_priv:
2902     type: event
2903     description: |
2904       A user pressed the long-press shortcut "Open new private tab", opening up
2905       a new private search.
2906     bugs:
2907       - https://github.com/mozilla-mobile/fenix/issues/4658
2908     data_reviews:
2909       - https://github.com/mozilla-mobile/fenix/pull/5194
2910       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2911     data_sensitivity:
2912       - interaction
2913     notification_emails:
2914       - fenix-core@mozilla.com
2915     expires: "2021-08-01"
2917 tab:
2918   media_play:
2919     type: event
2920     description: |
2921       A user pressed the play icon on a tab from the home screen
2922     bugs:
2923       - https://github.com/mozilla-mobile/fenix/issues/5197
2924     data_reviews:
2925       - https://github.com/mozilla-mobile/fenix/pull/5266
2926       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2927     data_sensitivity:
2928       - interaction
2929     notification_emails:
2930       - fenix-core@mozilla.com
2931     expires: "2021-08-01"
2932     no_lint:
2933       - COMMON_PREFIX
2934   media_pause:
2935     type: event
2936     description: |
2937       A user pressed the pause icon on a tab from the home screen
2938     bugs:
2939       - https://github.com/mozilla-mobile/fenix/issues/5197
2940     data_reviews:
2941       - https://github.com/mozilla-mobile/fenix/pull/5266
2942       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2943     data_sensitivity:
2944       - interaction
2945     notification_emails:
2946       - fenix-core@mozilla.com
2947     expires: "2021-08-01"
2949 media_notification:
2950   play:
2951     type: event
2952     description: |
2953       A user pressed the play icon on the media notification
2954     bugs:
2955       - https://github.com/mozilla-mobile/fenix/issues/5197
2956     data_reviews:
2957       - https://github.com/mozilla-mobile/fenix/pull/5520
2958       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2959     data_sensitivity:
2960       - interaction
2961     notification_emails:
2962       - fenix-core@mozilla.com
2963     expires: "2021-08-01"
2964   pause:
2965     type: event
2966     description: |
2967       A user pressed the pause icon on the media notification
2968     bugs:
2969       - https://github.com/mozilla-mobile/fenix/issues/5197
2970     data_reviews:
2971       - https://github.com/mozilla-mobile/fenix/pull/5520
2972       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2973     data_sensitivity:
2974       - interaction
2975     notification_emails:
2976       - fenix-core@mozilla.com
2977     expires: "2021-08-01"
2979 media_state:
2980   play:
2981     type: event
2982     description: |
2983       Media started playing.
2984     bugs:
2985       - https://github.com/mozilla-mobile/fenix/issues/5705
2986     data_reviews:
2987       - https://github.com/mozilla-mobile/fenix/pull/6463
2988       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
2989     data_sensitivity:
2990       - interaction
2991     notification_emails:
2992       - fenix-core@mozilla.com
2993     expires: "2021-08-01"
2994   pause:
2995     type: event
2996     description: |
2997       Media playback was paused.
2998     bugs:
2999       - https://github.com/mozilla-mobile/fenix/issues/5705
3000     data_reviews:
3001       - https://github.com/mozilla-mobile/fenix/pull/6463
3002       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3003     data_sensitivity:
3004       - interaction
3005     notification_emails:
3006       - fenix-core@mozilla.com
3007     expires: "2021-08-01"
3008   stop:
3009     type: event
3010     description: |
3011       Media playback has ended.
3012     bugs:
3013       - https://github.com/mozilla-mobile/fenix/issues/5705
3014     data_reviews:
3015       - https://github.com/mozilla-mobile/fenix/pull/6463
3016       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3017     data_sensitivity:
3018       - interaction
3019     notification_emails:
3020       - fenix-core@mozilla.com
3021     expires: "2021-08-01"
3023 logins:
3024   open_logins:
3025     type: event
3026     description: |
3027       A user accessed Logins in Settings
3028     bugs:
3029       - https://github.com/mozilla-mobile/fenix/issues/5586
3030     data_reviews:
3031       - https://github.com/mozilla-mobile/fenix/pull/6352
3032       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3033     data_sensitivity:
3034       - interaction
3035     notification_emails:
3036       - fenix-core@mozilla.com
3037     expires: "2021-08-01"
3038   open_individual_login:
3039     type: event
3040     description: |
3041       A user accessed an individual login in saved logins
3042     bugs:
3043       - https://github.com/mozilla-mobile/fenix/issues/5586
3044     data_reviews:
3045       - https://github.com/mozilla-mobile/fenix/pull/6352
3046       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3047     data_sensitivity:
3048       - interaction
3049     notification_emails:
3050       - fenix-core@mozilla.com
3051     expires: "2021-08-01"
3052   copy_login:
3053     type: event
3054     description: |
3055       A user copied a piece of a login in saved logins
3056     bugs:
3057       - https://github.com/mozilla-mobile/fenix/issues/5586
3058     data_reviews:
3059       - https://github.com/mozilla-mobile/fenix/pull/6352
3060       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3061     data_sensitivity:
3062       - interaction
3063     notification_emails:
3064       - fenix-core@mozilla.com
3065     expires: "2021-08-01"
3066   view_password_login:
3067     type: event
3068     description: |
3069       A user viewed a password in an individual saved login
3070     bugs:
3071       - https://github.com/mozilla-mobile/fenix/issues/5586
3072     data_reviews:
3073       - https://github.com/mozilla-mobile/fenix/pull/6352
3074       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3075     data_sensitivity:
3076       - interaction
3077     notification_emails:
3078       - fenix-core@mozilla.com
3079     expires: "2021-08-01"
3080   save_logins_setting_changed:
3081     type: event
3082     description: |
3083       A user changed their setting for asking to save logins
3084     extra_keys:
3085       setting:
3086         description: |
3087           The new setting for saving logins the user selected. Either
3088           `ask_to_save` or `never_save`
3089     bugs:
3090       - https://github.com/mozilla-mobile/fenix/issues/5586
3091     data_reviews:
3092       - https://github.com/mozilla-mobile/fenix/pull/7767
3093       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3094     data_sensitivity:
3095       - interaction
3096     notification_emails:
3097       - fenix-core@mozilla.com
3098     expires: "2021-08-01"
3099   open_login_editor:
3100     type: event
3101     description: |
3102       A user entered the edit screen for an individual saved login
3103     bugs:
3104       - https://github.com/mozilla-mobile/fenix/issues/10173
3105     data_reviews:
3106       - https://github.com/mozilla-mobile/fenix/issues/11208
3107       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3108     data_sensitivity:
3109       - interaction
3110     notification_emails:
3111       - fenix-core@mozilla.com
3112     expires: "2021-08-01"
3113   delete_saved_login:
3114     type: event
3115     description: |
3116       A user confirms delete of a saved login
3117     bugs:
3118       - https://github.com/mozilla-mobile/fenix/issues/10173
3119     data_reviews:
3120       - https://github.com/mozilla-mobile/fenix/issues/11208
3121       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3122     data_sensitivity:
3123       - interaction
3124     notification_emails:
3125       - fenix-core@mozilla.com
3126     expires: "2021-08-01"
3127   save_edited_login:
3128     type: event
3129     description: |
3130       A user saves changes made to an individual login
3131     bugs:
3132       - https://github.com/mozilla-mobile/fenix/issues/10173
3133     data_reviews:
3134       - https://github.com/mozilla-mobile/fenix/issues/11208
3135       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3136     data_sensitivity:
3137       - interaction
3138     notification_emails:
3139       - fenix-core@mozilla.com
3140     expires: "2021-08-01"
3142 download_notification:
3143   resume:
3144     type: event
3145     description: |
3146       A user resumed a download in the download notification
3147     bugs:
3148       - https://github.com/mozilla-mobile/fenix/issues/5583
3149     data_reviews:
3150       - https://github.com/mozilla-mobile/fenix/pull/6554
3151       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3152     data_sensitivity:
3153       - interaction
3154     notification_emails:
3155       - fenix-core@mozilla.com
3156     expires: "2021-04-01"
3157   pause:
3158     type: event
3159     description: |
3160       A user paused a download in the download notification
3161     bugs:
3162       - https://github.com/mozilla-mobile/fenix/issues/5583
3163     data_reviews:
3164       - https://github.com/mozilla-mobile/fenix/pull/6554
3165       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3166     data_sensitivity:
3167       - interaction
3168     notification_emails:
3169       - fenix-core@mozilla.com
3170     expires: "2021-04-01"
3171   cancel:
3172     type: event
3173     description: |
3174       A user cancelled a download in the download notification
3175     bugs:
3176       - https://github.com/mozilla-mobile/fenix/issues/5583
3177     data_reviews:
3178       - https://github.com/mozilla-mobile/fenix/pull/6554
3179       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3180     data_sensitivity:
3181       - interaction
3182     notification_emails:
3183       - fenix-core@mozilla.com
3184     expires: "2021-04-01"
3185   try_again:
3186     type: event
3187     description: |
3188       A user tapped on try again when a download fails in the download
3189       notification
3190     bugs:
3191       - https://github.com/mozilla-mobile/fenix/issues/5583
3192     data_reviews:
3193       - https://github.com/mozilla-mobile/fenix/pull/6554
3194       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3195     data_sensitivity:
3196       - interaction
3197     notification_emails:
3198       - fenix-core@mozilla.com
3199     expires: "2021-04-01"
3200   open:
3201     type: event
3202     description: |
3203       A user opened a downloaded file in the download notification
3204     bugs:
3205       - https://github.com/mozilla-mobile/fenix/issues/5583
3206     data_reviews:
3207       - https://github.com/mozilla-mobile/fenix/pull/6554
3208       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3209     data_sensitivity:
3210       - interaction
3211     notification_emails:
3212       - fenix-core@mozilla.com
3213     expires: "2021-04-01"
3214   in_app_open:
3215     type: event
3216     description: |
3217       A user opened a downloaded file in the in-app notification link
3218     bugs:
3219       - https://github.com/mozilla-mobile/fenix/issues/5583
3220     data_reviews:
3221       - https://github.com/mozilla-mobile/fenix/pull/6554
3222       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3223     data_sensitivity:
3224       - interaction
3225     notification_emails:
3226       - fenix-core@mozilla.com
3227     expires: "2021-04-01"
3228   in_app_try_again:
3229     type: event
3230     description: |
3231       A user tapped on try again when a download fails in the in-app
3232       notification link
3233     bugs:
3234       - https://github.com/mozilla-mobile/fenix/issues/5583
3235     data_reviews:
3236       - https://github.com/mozilla-mobile/fenix/pull/6554
3237       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3238     data_sensitivity:
3239       - interaction
3240     notification_emails:
3241       - fenix-core@mozilla.com
3242     expires: "2021-04-01"
3244 user_specified_search_engines:
3245   custom_engine_added:
3246     type: event
3247     description: |
3248       A user added a new custom search engine
3249     bugs:
3250       - https://github.com/mozilla-mobile/fenix/issues/5884
3251     data_reviews:
3252       - https://github.com/mozilla-mobile/fenix/pull/6918
3253       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3254     data_sensitivity:
3255       - interaction
3256     notification_emails:
3257       - fenix-core@mozilla.com
3258     expires: "2021-08-01"
3259     no_lint:
3260       - COMMON_PREFIX
3261   custom_engine_deleted:
3262     type: event
3263     description: |
3264       A user deleted a custom search engine
3265     bugs:
3266       - https://github.com/mozilla-mobile/fenix/issues/5884
3267       - https://github.com/mozilla-mobile/fenix/issues/7881
3268     data_reviews:
3269       - https://github.com/mozilla-mobile/fenix/pull/6918
3270       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3271     data_sensitivity:
3272       - interaction
3273     notification_emails:
3274       - fenix-core@mozilla.com
3275     expires: "2021-08-01"
3277 search_suggestions:
3278   enable_in_private:
3279     type: event
3280     description: |
3281       A user enabled receiving search suggestions in private sessions
3282     bugs:
3283       - https://github.com/mozilla-mobile/fenix/issues/6070
3284     data_reviews:
3285       - https://github.com/mozilla-mobile/fenix/pull/6746
3286       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3287     data_sensitivity:
3288       - technical
3289       - interaction
3290     notification_emails:
3291       - fenix-core@mozilla.com
3292     expires: "2021-08-01"
3294 voice_search:
3295   tapped:
3296     type: event
3297     description: |
3298       A user selected the voice search button on the search screen.
3299     bugs:
3300       - https://github.com/mozilla-mobile/fenix/issues/10465
3301     data_reviews:
3302       - https://github.com/mozilla-mobile/fenix/pull/10785
3303       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3304     data_sensitivity:
3305       - interaction
3306     notification_emails:
3307       - fenix-core@mozilla.com
3308     expires: "2021-08-01"
3310 top_sites:
3311   open_default:
3312     type: event
3313     description: |
3314       A user opened a default top site
3315     bugs:
3316       - https://github.com/mozilla-mobile/fenix/issues/8125
3317     data_reviews:
3318       - https://github.com/mozilla-mobile/fenix/pull/10752
3319       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3320     data_sensitivity:
3321       - interaction
3322     notification_emails:
3323       - fenix-core@mozilla.com
3324     expires: "2021-08-01"
3325   open_frecency:
3326     type: event
3327     description: |
3328       A user opened a frecency top site
3329     bugs:
3330       - https://github.com/mozilla-mobile/fenix/issues/14565
3331     data_reviews:
3332       - https://github.com/mozilla-mobile/fenix/pull/15136
3333       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3334     data_sensitivity:
3335       - interaction
3336     notification_emails:
3337       - fenix-core@mozilla.com
3338     expires: "2021-08-01"
3339   open_pinned:
3340     type: event
3341     description: |
3342       A user opened a pinned top site
3343     bugs:
3344       - https://github.com/mozilla-mobile/fenix/issues/14565
3345     data_reviews:
3346       - https://github.com/mozilla-mobile/fenix/pull/15136
3347       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3348     data_sensitivity:
3349       - interaction
3350     notification_emails:
3351       - fenix-core@mozilla.com
3352     expires: "2021-08-01"
3353   swipe_carousel:
3354     type: event
3355     description: |
3356       A user swiped to change the page of the top sites carousel
3357     extra_keys:
3358       page:
3359         description: |
3360           The page number the carousel is now on
3361     bugs:
3362       - https://github.com/mozilla-mobile/fenix/issues/14565
3363     data_reviews:
3364       - https://github.com/mozilla-mobile/fenix/pull/15136
3365       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3366     data_sensitivity:
3367       - interaction
3368     notification_emails:
3369       - fenix-core@mozilla.com
3370     expires: "2021-08-01"
3371   long_press:
3372     type: event
3373     description: |
3374       A user long pressed on a top site
3375     extra_keys:
3376       type:
3377         description: |
3378           The type of top site. Options are: "FRECENCY," "DEFAULT," or "PINNED."
3379     bugs:
3380       - https://github.com/mozilla-mobile/fenix/issues/14565
3381     data_reviews:
3382       - https://github.com/mozilla-mobile/fenix/pull/15136
3383       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3384     data_sensitivity:
3385       - interaction
3386     notification_emails:
3387       - fenix-core@mozilla.com
3388     expires: "2021-08-01"
3389   open_in_new_tab:
3390     type: event
3391     description: |
3392       A user opens a new tab based on a top site item
3393     bugs:
3394       - https://github.com/mozilla-mobile/fenix/issues/6757
3395     data_reviews:
3396       - https://github.com/mozilla-mobile/fenix/pull/7523
3397       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3398     data_sensitivity:
3399       - interaction
3400     notification_emails:
3401       - fenix-core@mozilla.com
3402     expires: "2021-08-01"
3403   open_in_private_tab:
3404     type: event
3405     description: |
3406       A user opens a new private tab based on a top site item
3407     bugs:
3408       - https://github.com/mozilla-mobile/fenix/issues/6757
3409     data_reviews:
3410       - https://github.com/mozilla-mobile/fenix/pull/7523
3411       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3412     data_sensitivity:
3413       - interaction
3414     notification_emails:
3415       - fenix-core@mozilla.com
3416     expires: "2021-08-01"
3417   remove:
3418     type: event
3419     description: |
3420       A user removes a top site item
3421     bugs:
3422       - https://github.com/mozilla-mobile/fenix/issues/6757
3423     data_reviews:
3424       - https://github.com/mozilla-mobile/fenix/pull/7523
3425       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3426     data_sensitivity:
3427       - interaction
3428     notification_emails:
3429       - fenix-core@mozilla.com
3430     expires: "2021-08-01"
3432 about_page:
3433   support_tapped:
3434     type: event
3435     description: |
3436       A user tapped on "Support" item from About page
3437     bugs:
3438       - https://github.com/mozilla-mobile/fenix/issues/6834
3439     data_reviews:
3440       - https://github.com/mozilla-mobile/fenix/pull/8047
3441       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3442     data_sensitivity:
3443       - interaction
3444     notification_emails:
3445       - fenix-core@mozilla.com
3446     expires: "2021-04-01"
3447   privacy_notice_tapped:
3448     type: event
3449     description: |
3450       A user tapped on "Privacy notice" item from About page
3451     bugs:
3452       - https://github.com/mozilla-mobile/fenix/issues/6834
3453     data_reviews:
3454       - https://github.com/mozilla-mobile/fenix/pull/8047
3455       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3456     data_sensitivity:
3457       - interaction
3458     notification_emails:
3459       - fenix-core@mozilla.com
3460     expires: "2021-04-01"
3462 app_theme:
3463   dark_theme_selected:
3464     type: event
3465     description: |
3466       A user selected Dark Theme
3467     extra_keys:
3468       source:
3469         description: |
3470           The source from where dark theme was selected. The source can be
3471           'SETTINGS' or 'ONBOARDING'
3472     bugs:
3473       - https://github.com/mozilla-mobile/fenix/issues/7289
3474     data_reviews:
3475       - https://github.com/mozilla-mobile/fenix/pull/7968
3476       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3477     data_sensitivity:
3478       - interaction
3479     notification_emails:
3480       - fenix-core@mozilla.com
3481     expires: "2021-04-01"
3483 pocket:
3484   pocket_top_site_clicked:
3485     type: event
3486     description: |
3487       A user clicked on the trending Pocket top site
3488     bugs:
3489       - https://github.com/mozilla-mobile/fenix/issues/8126
3490     data_reviews:
3491       - https://github.com/mozilla-mobile/fenix/pull/8098
3492       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3493     data_sensitivity:
3494       - interaction
3495     notification_emails:
3496       - fenix-core@mozilla.com
3497     expires: "2021-08-01"
3498     no_lint:
3499       - COMMON_PREFIX
3501   pocket_top_site_removed:
3502     type: event
3503     description: |
3504       A user removed the trending Pocket top site
3505     bugs:
3506       - https://github.com/mozilla-mobile/fenix/issues/8126
3507     data_reviews:
3508       - https://github.com/mozilla-mobile/fenix/pull/8098
3509       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3510     data_sensitivity:
3511       - interaction
3512     notification_emails:
3513       - fenix-core@mozilla.com
3514     expires: "2021-08-01"
3516 first_session:
3517   campaign:
3518     type: string
3519     send_in_pings:
3520       - first-session
3521     description: |
3522       The name of the campaign that is responsible for this installation.
3523     bugs:
3524       - https://github.com/mozilla-mobile/fenix/issues/7295
3525     data_reviews:
3526       - https://github.com/mozilla-mobile/fenix/pull/8074#issuecomment-586512202
3527       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3528     data_sensitivity:
3529       - technical
3530       - interaction
3531     notification_emails:
3532       - fenix-core@mozilla.com
3533     expires: "2021-08-01"
3534   network:
3535     type: string
3536     send_in_pings:
3537       - first-session
3538     description: |
3539       The name of the Network that sourced this installation.
3540     bugs:
3541       - https://github.com/mozilla-mobile/fenix/issues/7295
3542     data_reviews:
3543       - https://github.com/mozilla-mobile/fenix/pull/8074#issuecomment-586512202
3544       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3545     data_sensitivity:
3546       - technical
3547       - interaction
3548     notification_emails:
3549       - fenix-core@mozilla.com
3550     expires: "2021-08-01"
3551   adgroup:
3552     type: string
3553     send_in_pings:
3554       - first-session
3555     description: |
3556       The name of the AdGroup that was used to source this installation.
3557     bugs:
3558       - https://github.com/mozilla-mobile/fenix/pull/8074#issuecomment-586512202
3559     data_reviews:
3560       - https://github.com/mozilla-mobile/fenix/pull/8074#issuecomment-586480836
3561       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3562     data_sensitivity:
3563       - technical
3564       - interaction
3565     notification_emails:
3566       - fenix-core@mozilla.com
3567     expires: "2021-08-01"
3568   creative:
3569     send_in_pings:
3570       - first-session
3571     type: string
3572     description: |
3573       The identifier of the creative material that the user interacted with.
3574     bugs:
3575       - https://github.com/mozilla-mobile/fenix/issues/7295
3576     data_reviews:
3577       - https://github.com/mozilla-mobile/fenix/pull/8074#issuecomment-586512202
3578       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3579     data_sensitivity:
3580       - technical
3581       - interaction
3582     notification_emails:
3583       - fenix-core@mozilla.com
3584     expires: "2021-08-01"
3585   timestamp:
3586     send_in_pings:
3587       - first-session
3588     type: datetime
3589     description: |
3590       The Glean generated date and time of the installation. This is
3591       unique per app install, though the rest of the data in this
3592       ping is from Adjust and will remain static across installs.
3593     bugs:
3594       - https://github.com/mozilla-mobile/fenix/issues/7295
3595     data_reviews:
3596       - https://github.com/mozilla-mobile/fenix/pull/8074#issuecomment-586512202
3597       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3598     data_sensitivity:
3599       - technical
3600       - interaction
3601     notification_emails:
3602       - fenix-core@mozilla.com
3603     expires: "2021-08-01"
3605 browser.search:
3606   with_ads:
3607     type: labeled_counter
3608     description: |
3609       Records counts of SERP pages with adverts displayed.
3610       The key format is ‘<provider-name>’.
3611     send_in_pings:
3612       - metrics
3613     bugs:
3614       - https://github.com/mozilla-mobile/fenix/issues/6558
3615     data_reviews:
3616       - https://github.com/mozilla-mobile/fenix/pull/10112
3617       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3618     data_sensitivity:
3619       - interaction
3620     notification_emails:
3621       - fenix-core@mozilla.com
3622     expires: "2021-08-01"
3623   ad_clicks:
3624     type: labeled_counter
3625     description: |
3626       Records clicks of adverts on SERP pages.
3627       The key format is ‘<provider-name>’.
3628     send_in_pings:
3629       - metrics
3630     bugs:
3631       - https://github.com/mozilla-mobile/fenix/issues/6558
3632     data_reviews:
3633       - https://github.com/mozilla-mobile/fenix/pull/10112
3634       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3635     data_sensitivity:
3636       - interaction
3637     notification_emails:
3638       - fenix-core@mozilla.com
3639     expires: "2021-08-01"
3640   in_content:
3641     type: labeled_counter
3642     description: |
3643       Records the type of interaction a user has on SERP pages.
3644     send_in_pings:
3645       - metrics
3646     bugs:
3647       - https://github.com/mozilla-mobile/fenix/issues/6557
3648     data_reviews:
3649       - https://github.com/mozilla-mobile/fenix/pull/10167
3650       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3651     data_sensitivity:
3652       - interaction
3653     notification_emails:
3654       - fenix-core@mozilla.com
3655     expires: "2021-08-01"
3657 addons:
3658   open_addons_in_settings:
3659     type: event
3660     description: |
3661       A user accessed "Add-ons" from the Settings
3662     bugs:
3663       - https://github.com/mozilla-mobile/fenix/issues/6174
3664     data_reviews:
3665       - https://github.com/mozilla-mobile/fenix/pull/8318
3666       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3667     data_sensitivity:
3668       - interaction
3669     notification_emails:
3670       - fenix-core@mozilla.com
3671     expires: "2021-04-01"
3672   open_addon_in_toolbar_menu:
3673     type: event
3674     description: |
3675       A user interacted with an installed add-on in the toolbar menu
3676     extra_keys:
3677       addon_id:
3678         description: |
3679           The id of the add-on that was interacted with in the toolbar menu
3680     bugs:
3681       - https://github.com/mozilla-mobile/fenix/issues/6174
3682     data_reviews:
3683       - https://github.com/mozilla-mobile/fenix/pull/8318
3684       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3685     data_sensitivity:
3686       - interaction
3687     notification_emails:
3688       - fenix-core@mozilla.com
3689     expires: "2021-04-01"
3690   has_installed_addons:
3691     type: boolean
3692     description: |
3693       Whether or not the user has installed add-ons on the device.
3694     send_in_pings:
3695       - metrics
3696     bugs:
3697       - https://github.com/mozilla-mobile/fenix/issues/6174
3698     data_reviews:
3699       - https://github.com/mozilla-mobile/fenix/pull/8318
3700       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3701     data_sensitivity:
3702       - interaction
3703     notification_emails:
3704       - fenix-core@mozilla.com
3705     expires: "2021-04-01"
3706   has_enabled_addons:
3707     type: boolean
3708     description: |
3709       Whether or not the user has enabled add-ons on the device.
3710     send_in_pings:
3711       - metrics
3712     bugs:
3713       - https://github.com/mozilla-mobile/fenix/issues/6174
3714     data_reviews:
3715       - https://github.com/mozilla-mobile/fenix/pull/8318
3716       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3717     data_sensitivity:
3718       - interaction
3719     notification_emails:
3720       - fenix-core@mozilla.com
3721     expires: "2021-04-01"
3722   installed_addons:
3723     type: string_list
3724     description: |
3725       A list of all installed add-ons on the device.
3726     send_in_pings:
3727       - metrics
3728     bugs:
3729       - https://github.com/mozilla-mobile/fenix/issues/8920
3730     data_reviews:
3731       - https://github.com/mozilla-mobile/fenix/pull/11080
3732       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3733     data_sensitivity:
3734       - interaction
3735     notification_emails:
3736       - fenix-core@mozilla.com
3737     expires: "2021-04-01"
3738   enabled_addons:
3739     type: string_list
3740     description: |
3741       A list of all enabled add-ons on the device.
3742     send_in_pings:
3743       - metrics
3744     bugs:
3745       - https://github.com/mozilla-mobile/fenix/issues/8920
3746     data_reviews:
3747       - https://github.com/mozilla-mobile/fenix/pull/11080
3748       - https://github.com/mozilla-mobile/fenix/pull/13958#issuecomment-676857877
3749     data_sensitivity:
3750       - interaction
3751     notification_emails:
3752       - fenix-core@mozilla.com
3753     expires: "2021-04-01"
3755 startup.timeline:
3756   framework_start:
3757     send_in_pings:
3758       - startup-timeline
3759     type: timespan
3760     time_unit: nanosecond
3761     description: |
3762       The duration the Android framework takes to start before letting us run
3763       code in `*Application.init`. This is calculated from `appInitTimestamp -
3764       processStartTimestamp`. `processStartTimestamp` is derived from the clock
3765       tick time unit, which is expected to be less granular than nanoseconds.
3766       Therefore, we convert and round our timestamps to clock ticks before
3767       computing the difference and convert back to nanoseconds to report.
3769       For debugging purposes, `clock_ticks_per_second`, which may vary between
3770       devices, is also reported as a metric
3771     bugs:
3772       - https://github.com/mozilla-mobile/fenix/issues/8803
3773     data_reviews:
3774       - https://github.com/mozilla-mobile/fenix/pull/9788#pullrequestreview-394228626
3775       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3776     data_sensitivity:
3777       - technical
3778     notification_emails:
3779       - perf-android-fe@mozilla.com
3780       - mcomella@mozilla.com
3781     expires: "2021-08-01"
3782   framework_start_error:
3783     send_in_pings:
3784       - startup-timeline
3785     type: boolean
3786     description: |
3787       An error when attempting to record `framework_start` - the application
3788       init timestamp returned a negative value - which is likely indicative of a
3789       bug in the implementation.
3790     bugs:
3791       - https://github.com/mozilla-mobile/fenix/issues/8803
3792     data_reviews:
3793       - https://github.com/mozilla-mobile/fenix/pull/9788#pullrequestreview-394228626
3794       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3795     data_sensitivity:
3796       - technical
3797     notification_emails:
3798       - perf-android-fe@mozilla.com
3799       - mcomella@mozilla.com
3800     expires: "2021-08-01"
3801   framework_start_read_error:
3802     send_in_pings:
3803       - startup-timeline
3804     type: boolean
3805     description: |
3806       An error when attempting to read stats from /proc pseudo-filesystem -
3807       privacy managers can block access to reading these files -
3808       the application will catch a file reading exception.
3809     bugs:
3810       - https://github.com/mozilla-mobile/fenix/issues/10434
3811     data_reviews:
3812       - https://github.com/mozilla-mobile/fenix/pull/10481
3813       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3814     data_sensitivity:
3815       - technical
3816     notification_emails:
3817       - perf-android-fe@mozilla.com
3818       - mcomella@mozilla.com
3819     expires: "2021-08-01"
3820   clock_ticks_per_second:
3821     send_in_pings:
3822       - startup-timeline
3823     type: counter
3824     description: |
3825       The number of clock tick time units that occur in one second on this
3826       particular device. This value is expected to be used in conjunction with
3827       the `framework_start` metric.
3828     bugs:
3829       - https://github.com/mozilla-mobile/fenix/issues/8803
3830     data_reviews:
3831       - https://github.com/mozilla-mobile/fenix/pull/9788#pullrequestreview-394228626
3832       - https://github.com/mozilla-mobile/fenix/pull/15713#issuecomment-703972068
3833     data_sensitivity:
3834       - technical
3835     notification_emails:
3836       - perf-android-fe@mozilla.com
3837       - mcomella@mozilla.com
3838     expires: "2021-08-01"
3840 perf.awesomebar:
3841   history_suggestions:
3842     send_in_pings:
3843       - metrics
3844     type: timing_distribution
3845     time_unit: millisecond
3846     description: >
3847       Duration of a history awesomebar suggestion query.
3848     bugs:
3849       - https://github.com/mozilla-mobile/android-components/issues/4992
3850     data_reviews:
3851       - https://github.com/mozilla-mobile/fenix/pull/10276#pullrequestreview-411101979
3852     data_sensitivity:
3853       - technical
3854       - interaction
3855     notification_emails:
3856       - fenix-core@mozilla.com
3857       - gkruglov@mozilla.com
3858     expires: "2020-11-15"
3859   bookmark_suggestions:
3860     send_in_pings:
3861       - metrics
3862     type: timing_distribution
3863     time_unit: millisecond
3864     description: >
3865       Duration of a bookmarks awesomebar suggestion query.
3866     bugs:
3867       - https://github.com/mozilla-mobile/android-components/issues/4992
3868     data_reviews:
3869       - https://github.com/mozilla-mobile/fenix/pull/10276#pullrequestreview-411101979
3870     data_sensitivity:
3871       - technical
3872       - interaction
3873     notification_emails:
3874       - fenix-core@mozilla.com
3875       - gkruglov@mozilla.com
3876     expires: "2020-11-15"
3877   search_engine_suggestions:
3878     send_in_pings:
3879       - metrics
3880     type: timing_distribution
3881     time_unit: millisecond
3882     description: >
3883       Duration of a search engine awesomebar suggestion query.
3884     bugs:
3885       - https://github.com/mozilla-mobile/android-components/issues/4992
3886     data_reviews:
3887       - https://github.com/mozilla-mobile/fenix/pull/10276#pullrequestreview-411101979
3888     data_sensitivity:
3889       - technical
3890       - interaction
3891     notification_emails:
3892       - fenix-core@mozilla.com
3893       - gkruglov@mozilla.com
3894     expires: "2020-11-15"
3895   session_suggestions:
3896     send_in_pings:
3897       - metrics
3898     type: timing_distribution
3899     time_unit: millisecond
3900     description: >
3901       Duration of a session awesomebar suggestion query.
3902     bugs:
3903       - https://github.com/mozilla-mobile/android-components/issues/4992
3904     data_reviews:
3905       - https://github.com/mozilla-mobile/fenix/pull/10276#pullrequestreview-411101979
3906     data_sensitivity:
3907       - technical
3908       - interaction
3909     notification_emails:
3910       - fenix-core@mozilla.com
3911       - gkruglov@mozilla.com
3912     expires: "2020-11-15"
3913   synced_tabs_suggestions:
3914     send_in_pings:
3915       - metrics
3916     type: timing_distribution
3917     time_unit: millisecond
3918     description: >
3919       Duration of a synced tabs awesomebar suggestion query.
3920     bugs:
3921       - https://github.com/mozilla-mobile/android-components/issues/4992
3922     data_reviews:
3923       - https://github.com/mozilla-mobile/fenix/pull/10276#pullrequestreview-411101979
3924     data_sensitivity:
3925       - technical
3926       - interaction
3927     notification_emails:
3928       - fenix-core@mozilla.com
3929       - gkruglov@mozilla.com
3930     expires: "2020-11-15"
3931   clipboard_suggestions:
3932     send_in_pings:
3933       - metrics
3934     type: timing_distribution
3935     time_unit: millisecond
3936     description: >
3937       Duration of a clipboard awesomebar suggestion query.
3938     bugs:
3939       - https://github.com/mozilla-mobile/android-components/issues/4992
3940     data_reviews:
3941       - https://github.com/mozilla-mobile/fenix/pull/10276#pullrequestreview-411101979
3942     data_sensitivity:
3943       - technical
3944       - interaction
3945     notification_emails:
3946       - fenix-core@mozilla.com
3947       - gkruglov@mozilla.com
3948     expires: "2020-11-15"
3949   shortcuts_suggestions:
3950     send_in_pings:
3951       - metrics
3952     type: timing_distribution
3953     time_unit: millisecond
3954     description: >
3955       Duration of a shortcuts awesomebar suggestion query.
3956     bugs:
3957       - https://github.com/mozilla-mobile/android-components/issues/4992
3958     data_reviews:
3959       - https://github.com/mozilla-mobile/fenix/pull/10276#pullrequestreview-411101979
3960     data_sensitivity:
3961       - technical
3962       - interaction
3963     notification_emails:
3964       - fenix-core@mozilla.com
3965       - gkruglov@mozilla.com
3966     expires: "2020-11-15"
3968 autoplay:
3969   visited_setting:
3970     type: event
3971     description: A user visited the autoplay settings screen
3972     bugs:
3973       - https://github.com/mozilla-mobile/fenix/issues/11579
3974     data_reviews:
3975       - https://github.com/mozilla-mobile/fenix/pull/13041#issuecomment-665777411
3976     data_sensitivity:
3977       - interaction
3978     notification_emails:
3979       - fenix-core@mozilla.com
3980     expires: "2021-02-01"
3981   setting_changed:
3982     type: event
3983     description: |
3984       A user changed their autoplay setting to either block_cellular,
3985       block_audio, or block_all.
3986     extra_keys:
3987       autoplay_setting:
3988         description: |
3989           The new setting for autoplay: block_cellular,
3990           block_audio, or block_all.
3991     bugs:
3992       - https://github.com/mozilla-mobile/fenix/issues/11579
3993     data_reviews:
3994       - https://github.com/mozilla-mobile/fenix/pull/13041#issuecomment-665777411
3995     data_sensitivity:
3996       - interaction
3997     notification_emails:
3998       - fenix-core@mozilla.com
3999     expires: "2021-02-01"
4001 storage.stats:
4002   query_stats_duration:
4003     send_in_pings:
4004       - metrics
4005     type: timing_distribution
4006     description: >
4007       How long it took to query the device for the StorageStats that contain the
4008       file size information. The docs say it may be expensive so we want to
4009       ensure it's not too expensive.  This value is only available on Android
4010       8+.
4011     bugs:
4012       - https://github.com/mozilla-mobile/fenix/issues/12802
4013     data_reviews:
4014       - https://github.com/mozilla-mobile/fenix/pull/12876#issuecomment-666770732
4015     data_sensitivity:
4016       - technical
4017       - interaction
4018     notification_emails:
4019       - fenix-core@mozilla.com
4020       - perf-android-fe@mozilla.com
4021       - mcomella@mozilla.com
4022     expires: "2021-02-01"
4023   app_bytes:
4024     send_in_pings:
4025       - metrics
4026     type: memory_distribution
4027     description: >
4028       The size of the app's APK and related files as installed: this is expected
4029       to be larger than download size. This is the output of
4030       [StorageStats.getAppBytes](https://developer.android.com/reference/android/app/usage/StorageStats#getAppBytes())
4031       so see that for details. This value is only available on Android 8+. A
4032       similar value may be available on the Google Play dashboard: we can use
4033       this value to see if that value is reliable enough.
4034     memory_unit: byte
4035     bugs:
4036       - https://github.com/mozilla-mobile/fenix/issues/12802
4037     data_reviews:
4038       - https://github.com/mozilla-mobile/fenix/pull/12876#issuecomment-666770732
4039     data_sensitivity:
4040       - technical
4041       - interaction
4042     notification_emails:
4043       - fenix-core@mozilla.com
4044       - perf-android-fe@mozilla.com
4045       - mcomella@mozilla.com
4046     expires: "2021-02-01"
4047   cache_bytes:
4048     send_in_pings:
4049       - metrics
4050     type: memory_distribution
4051     description: >
4052       The size of all cached data in the app. This is the output of
4053       [StorageStats.getCacheBytes](https://developer.android.com/reference/android/app/usage/StorageStats#getCacheBytes())
4054       so see that for details. This value is only available on Android 8+.
4055     memory_unit: byte
4056     bugs:
4057       - https://github.com/mozilla-mobile/fenix/issues/12802
4058     data_reviews:
4059       - https://github.com/mozilla-mobile/fenix/pull/12876#issuecomment-666770732
4060     data_sensitivity:
4061       - technical
4062       - interaction
4063     notification_emails:
4064       - fenix-core@mozilla.com
4065       - perf-android-fe@mozilla.com
4066       - mcomella@mozilla.com
4067     expires: "2021-02-01"
4068   data_dir_bytes:
4069     send_in_pings:
4070       - metrics
4071     type: memory_distribution
4072     description: >
4073       The size of all data minus `cache_bytes`. This is the output of
4074       [StorageStats.getDataBytes](https://developer.android.com/reference/android/app/usage/StorageStats#getDataBytes())
4075       except we subtract the value of `cache_bytes` so the cache is not measured
4076       redundantly; see that method for details. This value is only available on
4077       Android 8+.
4078     memory_unit: byte
4079     bugs:
4080       - https://github.com/mozilla-mobile/fenix/issues/12802
4081     data_reviews:
4082       - https://github.com/mozilla-mobile/fenix/pull/12876#issuecomment-666770732
4083     data_sensitivity:
4084       - technical
4085       - interaction
4086     notification_emails:
4087       - fenix-core@mozilla.com
4088       - perf-android-fe@mozilla.com
4089       - mcomella@mozilla.com
4090     expires: "2021-02-01"
4092 progressive_web_app:
4093   homescreen_tap:
4094     type: event
4095     description: |
4096       A user taps on PWA homescreen icon
4097     bugs:
4098       - https://github.com/mozilla-mobile/fenix/issues/10261
4099     data_reviews:
4100       - https://github.com/mozilla-mobile/fenix/pull/11859
4101     data_sensitivity:
4102       - interaction
4103     notification_emails:
4104       - fenix-core@mozilla.com
4105       - erichards@mozilla.com
4106     expires: "2021-03-01"
4107   install_tap:
4108     type: event
4109     description: |
4110       A user installs a PWA. Could be a shortcut or added to homescreen.
4111     bugs:
4112       - https://github.com/mozilla-mobile/fenix/issues/10261
4113     data_reviews:
4114       - https://github.com/mozilla-mobile/fenix/pull/11859
4115     data_sensitivity:
4116       - interaction
4117     notification_emails:
4118       - fenix-core@mozilla.com
4119       - erichards@mozilla.com
4120     expires: "2021-03-01"
4121   foreground:
4122     type: event
4123     description: |
4124       A user brings the PWA into the foreground.
4125     extra_keys:
4126       time_ms:
4127         description: |
4128           The current time in ms when the PWA was brought to the foreground.
4129     bugs:
4130       - https://github.com/mozilla-mobile/fenix/issues/10261
4131     data_reviews:
4132       - https://github.com/mozilla-mobile/fenix/pull/11859
4133     data_sensitivity:
4134       - interaction
4135     notification_emails:
4136       - fenix-core@mozilla.com
4137       - erichards@mozilla.com
4138     expires: "2021-03-01"
4139   background:
4140     type: event
4141     description: |
4142       A user puts the PWA into the background.
4143     extra_keys:
4144       time_ms:
4145         description: |
4146           The current time in ms when the PWA was backgrounded.
4147     bugs:
4148       - https://github.com/mozilla-mobile/fenix/issues/10261
4149     data_reviews:
4150       - https://github.com/mozilla-mobile/fenix/pull/11859
4151     data_sensitivity:
4152       - interaction
4153     notification_emails:
4154       - fenix-core@mozilla.com
4155       - erichards@mozilla.com
4156     expires: "2021-03-01"
4158 master_password:
4159   displayed:
4160     type: event
4161     description: |
4162       The master password migration dialog was displayed
4163     bugs:
4164       - https://github.com/mozilla-mobile/fenix/pull/14468#issuecomment-684114534
4165     data_reviews:
4166       - https://github.com/mozilla-mobile/fenix/pull/14468#issuecomment-684114534
4167     data_sensitivity:
4168       - interaction
4169     notification_emails:
4170       - fenix-core@mozilla.com
4171     expires: "2021-03-01"
4172   migration:
4173     type: event
4174     description: |
4175       Logins were successfully migrated using a master password.
4176     bugs:
4177       - https://github.com/mozilla-mobile/fenix/pull/14468#issuecomment-684114534
4178     data_reviews:
4179       - https://github.com/mozilla-mobile/fenix/pull/14468#issuecomment-684114534
4180     data_sensitivity:
4181       - interaction
4182     notification_emails:
4183       - fenix-core@mozilla.com
4184     expires: "2021-03-01"
4186 tabs:
4187   setting_opened:
4188     type: event
4189     description: |
4190       The tab settings were opened.
4191     bugs:
4192       - https://github.com/mozilla-mobile/fenix/issues/15347#issue-707408975
4193     data_reviews:
4194       - https://github.com/mozilla-mobile/fenix/pull/15811#issuecomment-706402952
4195     data_sensitivity:
4196       - interaction
4197     notification_emails:
4198       - fenix-core@mozilla.com
4199     expires: "2021-08-01"