-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevices.json
More file actions
1684 lines (1684 loc) · 125 KB
/
devices.json
File metadata and controls
1684 lines (1684 loc) · 125 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "Abbott Freestyle Libre",
"id": "abbott-freestyle-libre",
"ordering_priority": 6,
"picture": "/assets/abbott-freestyle-libre.png",
"description": "The Abbott FreeStyle Libre is an advanced continuous glucose monitoring (CGM) system, essential for diabetes management. It features a discreet sensor attached to the upper arm, providing real-time glucose readings for up to 14 days. The sensor measures glucose levels in interstitial fluid, offering a less invasive alternative to traditional fingerstick tests. Users can scan the sensor with a dedicated reader or a smartphone app, which also provides optional alarms for hypo- and hyperglycemia. This CGM system is crucial for individuals with diabetes, enabling them to monitor glucose trends and patterns effectively. The FreeStyle Libre 2 aids in better diabetes management by allowing patients and healthcare providers to adjust treatments based on comprehensive glucose data. Its impact on diabetes care is significant, making it a valuable tool in both personal health management and medical research in endocrinology.",
"tags": [
"CGM"
],
"notebooks": [],
"link": "https://www.freestyle.abbott/us-en/products/freestyle-libre-2.html",
"specs": {
"product_details": {
"Location": "Back of upper arm",
"Price": "$0.00 - $75.00 / month",
"Sensors": [],
"Battery": ""
},
"security": {
"Wearable Connectivity": {
"short": "Yes",
"long": "Near-field communication."
},
"API Access Security": {
"short": "N/A",
"long": "No public API is available."
}
},
"privacy": {
"Data Risk": {
"short": "No",
"long": "Data from the Abbott Freestyle Libre includes continuous glucose readings. The sensor captures glucose data every minute, storing 8 hours of data at a time. When the sensor is scanned by the reader or compatible smartphone, the stored data is transferred, allowing users to view their glucose trends, peaks, and lows. The system also has optional real-time glucose alarms to notify users if glucose levels are too high or too low. <br />These data constitute a health data risk in the following categories: <br />- Physiological data: The system captures data related to hyperglycemic (high) and hypoglycemic (low) events, which can indicate potential health concerns or the need for treatment adjustments. <br />- Health status data: Continuous glucose readings, reflecting the individual's real-time and historical blood sugar levels, patterns of glucose fluctuations, allowing users to understand how different factors, such as meals, stress, or physical activity, impact their glucose levels. <br />- Predictive health insights: Based on glucose trends and patterns, users can adjust their dietary, medication, or lifestyle choices to optimize their glucose management and overall health."
},
"HIPAA Compliance": {
"short": "No",
"long": "Abbott Freestyle Libre collects glucose levels at frequent intervals, and this data is transmitted to its designated reader or compatible smart device. <br />Glucose data, due to its direct relevance to an individual's health status, could be considered protected health information under HIPAA. <br />Abbott Freestyle Libre is not HIPAA compliant."
},
"De-identification (When Sharing)": {
"short": "Yes",
"long": "Abbott may share your personal information with third parties with whom Abbott is jointly marketing a product or service or jointly conducting a program or activity."
},
"Shares With Third Parties": {
"short": "No",
"long": "Abbott Freestyle Libre mentions that they 'will not sell or license personal data to third parties except in connection with the sale or transfer of a product line or division, or in connection with a joint marketing program'. <br />This raises concerns about the specific conditions under which user data might be shared or transferred, especially since such broad provisions might encompass a variety of scenarios where data can be shared without explicit user consent."
},
"Transparency in Third Party Sharing": {
"short": "No",
"long": "Categories of third parties are vaguely referenced in connection with 'the sale or transfer of a product line or division' or in connection with 'a joint marketing program'. <br />No mentions of specific companies, organizations, or individuals are provided."
}
}
},
"api": {},
"summaries": [
"Abbott_Freestyle_Libre_2_Bariatrics.txt",
"Abbott_Freestyle_Libre_2_Cardiology.txt",
"Abbott_Freestyle_Libre_2_ChronicPainOrDiseases.txt",
"Abbott_Freestyle_Libre_2_Endocrinology.txt",
"Abbott_Freestyle_Libre_2_Gastroenterology.txt",
"Abbott_Freestyle_Libre_2_GeneralPhysiology.txt",
"Abbott_Freestyle_Libre_2_Nephrology.txt",
"Abbott_Freestyle_Libre_2_Obstetrics.txt",
"Abbott_Freestyle_Libre_2_Oncology.txt",
"Abbott_Freestyle_Libre_2_Other.txt",
"Abbott_Freestyle_Libre_2_Psychiatry.txt",
"Abbott_Freestyle_Libre_2_Pulmonology.txt",
"Abbott_Freestyle_Libre_2_Somnology.txt"
]
},
{
"name": "Actigraph CentrePoint Insight",
"id": "actigraph-centrepoint-insight",
"ordering_priority": 14,
"picture": "/assets/actigraph-centrepoint-insight.png",
"description": "The ActiGraph CentrePoint Insight Watch is a sophisticated tool designed for capturing real-world physical activity, functional mobility, and sleep patterns. It's equipped with advanced sensors, including an accelerometer, which accurately track movement and activity levels. This wearable device is worn on the wrist and continuously collects data on various parameters such as step count, activity intensity, and sleep quality. The CentrePoint Insight is particularly valuable for researchers and clinicians in fields like sports medicine, physical therapy, and sleep studies. It provides detailed insights into a patient's daily activity and sleep behaviors, crucial for understanding and managing conditions like obesity, cardiovascular diseases, and sleep disorders. The device's ability to monitor functional mobility also makes it useful in rehabilitation settings, helping to assess recovery progress. By offering a comprehensive view of a person's physical activity and sleep patterns, the ActiGraph CentrePoint Insight Watch plays a pivotal role in both individual health monitoring and broader clinical research. Its non-invasive, continuous data collection supports more informed healthcare decisions and contributes to advancements in various medical and research fields.",
"tags": [],
"notebooks": [],
"link": "https://theactigraph.com/cpiw",
"specs": {
"product_details": {
"Location": "Wrist",
"Price": "N/A",
"Sensors": [],
"Battery": ""
},
"security": {
"Wearable Connectivity": {
"short": "No",
"long": "Bluetooth."
},
"API Access Security": {
"short": "Yes",
"long": "No public API is available. Data may be accessed through unofficial third-party tools."
}
},
"privacy": {
"Data Risk": {
"short": "No",
"long": "Data from the Actigraph CentrePoint Insight includes subject identifier [1], location of the activity monitor (unconfirmed) [1], raw acceleration in G's [2], energy expenditure [2], MET rates [2], physical activity intensity [2], activity bouts [2], sedentary bouts [2], sleep latency [2], total sleep time [2], wake after sleep onset [2], and sleep efficiency [2]. <br />These data present a health data risk in the following categories: <br />- Physical Activity Data: Location of activity monitor (for context of physical activity), raw acceleration in G's, energy expenditure, MET rates, physical activity intensity, activity bouts, sedentary bouts <br />- Sleep Data: Sleep latency, total sleep time, wake after sleep onset, sleep efficiency"
},
"HIPAA Compliance": {
"short": "No",
"long": "Actigraph CentrePoint Insight collects subject identifiers, location of the activity monitor, and demographic specifics such as date of birth, timezone, gender, and weight. <br />Fitness and sleep data could be considered protected health information under HIPAA. <br />Acitgraph CentrePoint Insight is not HIPAA compliant."
},
"De-identification (When Sharing)": {
"short": "Yes",
"long": "ActiGraph utilizes Amazon Web Services (AWS) and Microsoft Azure which have both undergone third-party assessments to verify their security measures. ActiGraph ensures that it doesn't provide information to third parties beyond those acting under its instructions. ActiGraph specifies that it does not have the ability to identify clinical trial participants, as it operates under the instructions of the data controller (e.g., trial sponsor). This indicates a level of data separation where individual identities might not be directly linked to their data. <br />'Personal Data' as covered by the Privacy Shield Policy is data that can be linked to specific individuals and is protected, with rights for individuals to access, correct, amend, or delete their data. However, there's no explicit mention of differential privacy techniques or specific encryption methods for data in transit and at rest. It is clear that ActiGraph does not share information with non-agent third parties unless mandated by law or if it's necessary for protection purposes, keeping data privacy at the forefront of its services."
},
"Shares With Third Parties": {
"short": "No",
"long": "ActiGraph mentions that they share data with 'those which are acting on our behalf with our instructions'."
},
"Transparency in Third Party Sharing": {
"short": "No",
"long": "Categories of third parties are disclosed as 'those which are acting on our behalf with our instructions'. ActiGraph's data storage systems are provided by Amazon Web Services and Microsoft Azure. They do not provide specific names of other third-party entities. <br />No mentions of other specific companies, organizations, or individuals outside of Amazon Web Services and Microsoft Azure are provided."
}
}
},
"api": {},
"summaries": [
"Actigraph_CentrePoint_Insight_GeneralPhysiology.txt",
"Actigraph_CentrePoint_Insight_Obstetrics.txt",
"Actigraph_CentrePoint_Insight_Oncology.txt",
"Actigraph_CentrePoint_Insight_Pulmonology.txt",
"Actigraph_CentrePoint_Insight_Somnology.txt"
]
},
{
"name": "Apple Healthkit",
"id": "apple-healthkit",
"ordering_priority": 9999,
"picture": "/assets/apple-healthkit.png",
"description": "Apple HealthKit is a smartphone app designed to centralize and manage health data. It integrates data from various health and fitness apps, allowing users to track a wide range of health metrics such as physical activity, nutrition, sleep, and heart rate. HealthKit also supports data from external devices like blood pressure monitors and glucose meters, providing a comprehensive health overview. This app is particularly beneficial for individuals aiming to maintain or improve their health and wellness. It enables users to monitor their daily health behaviors and trends, facilitating informed lifestyle choices and health management. For healthcare providers, HealthKit offers a valuable tool to access patient health data, enhancing personalized care and treatment plans. HealthKit's role extends to research, where aggregated data can contribute to health studies and insights. Its ability to compile diverse health data in one platform makes it a key player in personal health management and the broader health technology landscape.",
"tags": [
"App"
],
"notebooks": [],
"link": "https://developer.apple.com/health-fitness/",
"specs": {
"product_details": {
"Location": "N/A (Smartphone App)",
"Price": "N/A",
"Sensors": [],
"Battery": "N/A"
},
"security": {
"Wearable Connectivity": {
"short": "N/A",
"long": "N/A"
},
"API Access Security": {
"short": "Yes",
"long": "API is available through OAuth 2.0."
}
},
"privacy": {
"Data Risk": {
"short": "No",
"long": "Data from Apple HealthKit can include a wide array of health metrics, depending on the apps and devices a user connects. This includes 'physiological data' ('heart rate', 'blood pressure', 'body temperature'), 'activity data' ('steps taken', 'flights climbed', 'distance traveled'), 'nutrition data' ('calories consumed', 'water intake', 'caffeine intake'), 'sleep data', 'menstrual cycle tracking', 'audiogram data', 'respiratory data', and much more. The platform is designed to aggregate and provide insights on a broad spectrum of health and fitness data. <br />These data constitute a health data risk in the following categories: <br />- Physical activity data: Workouts, steps, distance, active energy, and exercise types <br />- Sleep data: Sleep analysis and bedtime <br />- Physiological data: Metrics like heart rate, blood oxygen levels, blood pressure, and body temperature <br />- Health status data: Dietary energy, carbohydrates, protein, fat, sugar, vitamins, minerals, and water intake, menstrual cycle, sexual activity, and fertility predictions, noise exposure and audiograms, lab results, immunizations, allergies, medications, and various health records."
},
"HIPAA Compliance": {
"short": "No",
"long": "Apple devices gather a wide range of data. This includes account and device information, contact and payment details, transaction and fraud prevention data, and usage activity. Geographical specifics, health and fitness data are also logged. Apple also collects financial data, such as income and assets, and information related to the use of Apple-branded financial services. In certain regions, government-issued identification may be necessary for specific tasks. Additionally, interactions and communications with Apple's customer support and social media channels are monitored and stored. <br />Health and fitness data, potentially comprising steps, mobility data, headphone audio levels, sleep history, and health records, could be considered protected health information under HIPAA due to their relevance to health status or the provision of healthcare. <br />Apple Healthkit is not HIPAA compliant."
},
"De-identification (When Sharing)": {
"short": "Yes",
"long": "Apple's privacy policy suggests that health data is encrypted both in transit and at rest when iCloud is used. The company has stated that it uses differential privacy, a technique that adds noise to data to protect individual user's identities when collecting other types of data, but it is not explicitly mentioned if this technique is applied to health data. <br />There is no explicit mention whether data is de-identified before sharing with third parties for research purposes. However, Apple states that it 'does not share any personal data with third parties' and personal data is defined as 'data that directly identifies you — such as your name' as well as 'data that does not directly identify you, but that can reasonably be used to identify you — such as the serial number of your device'. Aggregated data, on the other hand, is not considered personal data."
},
"Shares With Third Parties": {
"short": "No",
"long": "Apple mentions that they 'may share personal data with Apple-affiliated companies, service providers who act on our behalf, our partners, developers, and publishers, or others at your direction'."
},
"Transparency in Third Party Sharing": {
"short": "No",
"long": "Categories of third parties are disclosed as 'service providers', 'partners', 'developers and publishers from whom you get a subscription' and 'others', with 'others' including national security institutions and law enforcement. <br />No mentions of specific companies, organizations, or individuals are provided."
}
}
},
"api": {},
"summaries": [
"Apple_HealthKit_Cardiology.txt",
"Apple_HealthKit_Endocrinology.txt",
"Apple_HealthKit_GeneralPhysiology.txt",
"Apple_HealthKit_Obstetrics.txt"
]
},
{
"name": "Apple iPhone",
"id": "apple-iphone",
"ordering_priority": 4,
"picture": "/assets/apple-iphone.png",
"description": "The Apple iPhone measures physical activity and health markers. Equipped with sensors like an accelerometer and gyroscope, it tracks steps, distance traveled, and overall physical activity. The iPhone's Health app consolidates this data, offering insights into daily fitness routines and health trends. This functionality is particularly useful for individuals focused on maintaining or improving their health and fitness. Users can monitor their daily activities, set fitness goals, and track their progress over time. The iPhone's capability to integrate with other health and fitness apps and devices, like heart rate monitors and sleep trackers, further enhances its utility in personal health management. In the realm of healthcare and research, the iPhone's data collection supports studies in areas like physical activity, epidemiology, and public health, making it a valuable asset in both personal wellness and wider health research initiatives.",
"tags": [
"App",
"Pedometer"
],
"notebooks": [],
"link": "https://www.apple.com/iphone/",
"specs": {
"product_details": {
"Location": "N/A (Smartphone)",
"Price": "N/A",
"Sensors": [],
"Battery": ""
},
"security": {
"Wearable Connectivity": {
"short": "Yes",
"long": "Wifi or bluetooth"
},
"API Access Security": {
"short": "N/A",
"long": "No public API is available. Data may be accessible through the Apple HealthKit and third party apps."
}
},
"privacy": {
"Data Risk": {
"short": "No",
"long": "Data from the Apple iPhone includes steps, flights of stairs, and other walking data, mobility data, headphone audio levels, sleep history, and health records from healthcare providers. Health/fitness apps and devices downloaded from the App Store as well as devices such as blood pressure monitors and weight scales contribute to an aggregated data pool [1].<br />These data constitute a health data risk in the following categories:<br />- Physical Activity: Steps, flight of stairs, other walking data, mobility data<br />- Health status data: Headphone audio levels [2]<br />- Sleep data: Sleep history<br />- Health risk assessment: Health records from healthcare providers [3]<br />- Predictive health insights: Data from other apps and devices [4]"
},
"HIPAA Compliance": {
"short": "No",
"long": "Apple iPhone collects account and device information, contact and payment details, transaction and fraud prevention data, and usage activity. Geographical specifics, health and fitness data are also logged. The Apple iPhone also collects financial data, such as income and assets, and information related to the use of Apple-branded financial services. In certain regions, government-issued identification may be necessary for specific tasks. Interactions and communications with Apple's customer support and social media channels are monitored and stored.<br />Steps, mobility, headphone audio levels, sleep, and health data could be considered protected health information under HIPAA.<br />Apple iPhone is not HIPAA compliant."
},
"De-identification (When Sharing)": {
"short": "Yes",
"long": "Apple's privacy policy states that health data is encrypted both in transit and at rest when iCloud is used. The company has stated that it uses differential privacy, a technique that adds noise to data to protect individual user's identities when collecting other types of data, but it is not explicitly mentioned if this technique is applied to health data. <br />There is no explicit mention whether data is de-identified before sharing with third parties for research purposes. However, Apple states that it 'does not share any personal data with third parties' and personal data is defined as 'data that directly identifies you — such as your name' as well as 'data that does not directly identify you, but that can reasonably be used to identify you — such as the serial number of your device'. Aggregated data, on the other hand, is not considered personal data. "
},
"Shares With Third Parties": {
"short": "No",
"long": "Apple mentions that they 'may share personal data with Apple-affiliated companies, service providers who act on our behalf, our partners, developers, and publishers, or others at your direction'."
},
"Transparency in Third Party Sharing": {
"short": "No",
"long": "Categories of third parties are disclosed as 'service providers', 'partners', 'developers and publishers from whom you get a subscription' and 'others', with 'others' including national security institutions and law enforcement. <br />No mentions of specific companies, organizations, or individuals are provided."
}
}
},
"api": {},
"summaries": [
"IPhone_Bariatrics.txt",
"IPhone_Cardiology.txt",
"IPhone_ChronicPainOrDiseases.txt",
"IPhone_Endocrinology.txt",
"IPhone_Gastroenterology.txt",
"IPhone_GeneralPhysiology.txt",
"IPhone_Gynecology.txt",
"IPhone_Nephrology.txt",
"IPhone_Obstetrics.txt",
"IPhone_Oncology.txt",
"IPhone_Other.txt",
"IPhone_Psychiatry.txt",
"IPhone_Pulmonology.txt",
"IPhone_Somnology.txt"
]
},
{
"name": "Apple Watch",
"id": "apple-watch",
"ordering_priority": 3,
"picture": "/assets/apple-watch.png",
"description": "Easy to access consumer wearable. Great for personal use if interested in general fitness/sleep tracking. Can also double as a research wearable if high granularity or unprocessed data is not needed. Most accurate pedometer, calorimetry, and SPO2. Keep in mind that Apple Watch samples HRV at random times so it is difficult to get quality HRV data readings from this device unless you have timed 'Breath' HRV.",
"tags": [
"SPO2",
"Continuous HRV",
"2-Stage",
"Calorimeter"
],
"notebooks": [],
"link": "https://www.apple.com",
"specs": {
"product_details": {
"Location": "Wrist",
"Price": "$249.00 - $799.00[@apple2024watch]",
"Sensors": [
"PPG",
"Gyroscope",
"Barometer",
"Altimeter",
"Electrical EEG",
"Magnetic Compass",
"Light",
"Microphone"
],
"Battery": "18 hours[@apple2024watchbattery]"
},
"security": {
"Wearable Connectivity": {
"short": "Yes",
"long": "Bluetooth[@apple2024connect]."
},
"API Access Security": {
"short": "N/A",
"long": "No public API is available. Data may be accessbile through the Apple HealthKit and third party apps[@esposito2022watchOS]."
}
},
"privacy": {
"Data Risk": {
"short": "Yes",
"long": "Data from the Apple Watch includes location[@appleintro], ecg[@appleintro], heart rate[@appleintro], and heart health[@appleintro]. These data constitute a health data risk in the following categories: <br />- Physical Activity Data: Heart rate, ecg <br />- Health Status Data: Heart health <br />- Health Risk Assessment: Likelihood of heart related health issues"
},
"HIPAA Compliance": {
"short": "No",
"long": "Apple Watch collects account and device information, contact and payment details, transaction and fraud prevention data, and usage activity. Geographical specifics, health and fitness data are also logged. The Apple Watch also collects financial data, such as income and assets, and information related to the use of Apple-branded financial services. In certain regions, government-issued identification may be necessary for specific tasks. Additionally, interactions and communications with Apple's customer support and social media channels are monitored and stored. <br /> Steps, mobility, headphone audio levels, sleep, and health data could be considered protected health information under HIPAA. <br /> Apple Watch is not HIPAA compliant[@apple2022privacypolicy]."
},
"De-identification (When Sharing)": {
"short": "Yes",
"long": "Apple's privacy policy suggests that health data is encrypted both in transit and at rest when iCloud is used. The company has stated that it uses differential privacy, a technique that adds noise to data to protect individual user's identities when collecting other types of data, but it is not explicitly mentioned if this technique is applied to health data.[@apple2024differentialprivacy]<br /><br /> There is no explicit mention whether data is de-identified before sharing with third parties for research purposes. However, Apple states that it 'does not share any personal data with third parties' and personal data is defined as 'data that directly identifies you — such as your name' as well as 'data that does not directly identify you, but that can reasonably be used to identify you — such as the serial number of your device'[@apple2022privacypolicy]. Aggregated data, on the other hand, is not considered personal data.<br /><br />"
},
"Shares With Third Parties": {
"short": "Yes",
"long": "Apple mentions that they 'may share personal data with Apple-affiliated companies, service providers who act on our behalf, our partners, developers, and publishers, or others at your direction'[@apple2022privacypolicy]."
},
"Transparency in Third Party Sharing": {
"short": "No",
"long": "Categories of third parties are disclosed as 'service providers', 'partners', 'developers and publishers from whom you get a subscription' and 'others', with 'others' including national security institutions and law enforcement[@apple2022privacypolicy].<br /><br /> No mentions of specific companies, organizations, or individuals are provided."
}
}
},
"api": {},
"summaries": [
"Apple_Watch_5_Cardiology.txt",
"Apple_Watch_5_ChronicPainOrDiseases.txt",
"Apple_Watch_5_Gastroenterology.txt",
"Apple_Watch_5_GeneralPhysiology.txt",
"Apple_Watch_5_Other.txt",
"Apple_Watch_5_Psychiatry.txt",
"Apple_Watch_5_Pulmonology.txt",
"Apple_Watch_5_Somnology.txt"
]
},
{
"name": "Biostrap",
"id": "biostrap",
"ordering_priority": 9999,
"picture": "/assets/biostrap.png",
"description": "The Biostrap is a wearable designed for health and fitness tracking, focusing on metrics like heart rate variability (HRV), respiratory rate, and SpO2. It also provides detailed sleep analysis, including sleep stages and movement tracking. The device is capable of capturing high-resolution biometric data, which can be useful for monitoring health and detecting early signs of illness, including respiratory and cardiovascular issues. Biostrap integrates with third-party apps and supports remote monitoring for health professionals, making it suitable for both individual users and clinical applications. It uses a wristband and chest strap for data collection, depending on the specific activity or health metric being tracked.",
"tags": [
"HR",
"HRV"
],
"notebooks": [],
"link": "https://biostrap.com/",
"specs": {
"product_details": {
"Location": "N/A",
"Price": "N/A",
"Sensors": [],
"Battery": ""
},
"security": {
"Wearable Connectivity": {
"short": "N/A",
"long": "N/A"
},
"API Access Security": {
"short": "N/A",
"long": "N/A"
}
},
"privacy": {
"Data Risk": {
"short": "N/A",
"long": "N/A"
},
"HIPAA Compliance": {
"short": "N/A",
"long": "N/A"
},
"De-identification (When Sharing)": {
"short": "N/A",
"long": "N/A"
},
"Shares With Third Parties": {
"short": "N/A",
"long": "N/A"
},
"Transparency in Third Party Sharing": {
"short": "N/A",
"long": "N/A"
}
}
},
"api": {},
"summaries": []
},
{
"name": "Coros Pace",
"id": "coros-pace",
"ordering_priority": 21,
"picture": "/assets/coros-pace.png",
"description": "The Coros Pace is a lightweight, high-performance sports watch designed for athletes and fitness enthusiasts. It offers advanced tracking capabilities for various activities, including running, swimming, and cycling. The watch is equipped with GPS, a heart rate monitor, and a barometric altimeter, providing accurate data on pace, distance, heart rate, and elevation. Its battery life is notably long-lasting, making it suitable for extended training sessions and endurance events. The Coros Pace also supports customizable workout plans and provides detailed analysis of training metrics, aiding athletes in optimizing their performance. Additionally, the watch syncs with smartphones for notifications and data sharing, allowing users to keep track of their progress and share it with coaches or fitness communities. The Coros Pace stands out for its precision, durability, and utility in sports and fitness training.",
"tags": [
"SPO2",
"Pedometer",
"Calorimeter"
],
"notebooks": [],
"link": "https://coros.com/pace3",
"specs": {
"product_details": {
"Location": "Wrist",
"Price": "$229.00",
"Sensors": [],
"Battery": ""
},
"security": {
"Wearable Connectivity": {
"short": "No",
"long": "Bluetooth"
},
"API Access Security": {
"short": "N/A",
"long": "No public API is available."
}
},
"privacy": {
"Data Risk": {
"short": "No",
"long": "Data from the Coros Pace includes steps tracking, distance covered, heart rate monitoring, sleep tracking, elevation gained, cadence, stride length, calories burned, VO2 max estimation, and training load tracking. <br />These data constitute a health data risk in the following categories: <br />- Physical activity data: Steps tracking, distance covered, elevation gained, cadence, stride length, calories burned <br />- Sleep data: Sleep tracking <br />- Physiological data: Heart rate monitoring <br />- Physical fitness level: VO2 max estimation, training load tracking"
},
"HIPAA Compliance": {
"short": "No",
"long": "Coros Pace collects activity data based on the user's physical activities, including steps, distance traveled, swimming metrics, calories burned, running dynamics, cadence, stride length, elevation gain, and training load. The device also monitors heart rate, sleep cycles, and VO2 max estimation. Technical data for product and service use, such as GPS location, technical logs, battery measurement, and device configuration, are processed. <br />Heart rate, sleep, and physiological measurement data could be considered protected health information under HIPAA. <br />Coros Pace is not HIPAA compliant."
},
"De-identification (When Sharing)": {
"short": "Yes",
"long": "Coros Pace may share information about users in various circumstances, including with service providers working on their behalf, third-party services like Strava and TrainingPeaks if connected to the COROS account, or publicly if users participate in interactive areas of their Services. Data may also be disclosed in legal contexts, during business negotiations, or among COROS's corporate affiliates. Additionally, with user consent or at the user's direction, COROS may share aggregated or de-identified information, which cannot reasonably be used to identify an individual. Users can disable auto-sync settings to stop automatic data sharing with third-party platforms, though existing data on those platforms will remain unless deleted from their servers."
},
"Shares With Third Parties": {
"short": "No",
"long": "Coros Pace may engage third-party entities to provide analytics and advertising services for their websites and online platforms. These third parties may utilize various technologies to collect information such as IP address, web browser, mobile network information, and user behavior. COROS and other involved parties may use this information to analyze user activity, gauge feature popularity, and deliver tailored ads and content. Users who wish to opt out of interest-based ads may do so at aboutads.info/choices, and some mobile devices may offer features to restrict information collection for interest-based advertising purposes."
},
"Transparency in Third Party Sharing": {
"short": "No",
"long": "Categories of third parties are disclosed as 'service providers', 'advertising partners', 'professional advisors' and 'authorities and others', and 'business transferees'. <br />No mentions of specific companies, organizations, or individuals are provided."
}
}
},
"api": {},
"summaries": []
},
{
"name": "Cronometer",
"id": "cronometer",
"ordering_priority": 7,
"picture": "/assets/cronometer.png",
"description": "Cronometer is a nutrition tracking app that provides detailed analysis of dietary intake. It allows users to log their food consumption and monitor nutrients, including calories, macronutrients (carbs, fats, proteins), and micronutrients (vitamins and minerals). The app's extensive food database ensures accurate tracking of various food items and recipes. A key feature of Cronometer is its ability to customize nutrition goals based on individual needs, making it suitable for various dietary plans, including weight loss, muscle gain, or maintenance. It also supports integration with fitness devices to track physical activity and caloric expenditure. Cronometer offers detailed reports and charts, giving users insights into their nutritional habits and helping them make informed dietary choices. Its focus on comprehensive nutrient tracking sets it apart from other food diary apps, making it a valuable tool for anyone serious about their nutrition and overall health.",
"tags": [
"App"
],
"notebooks": [
{
"name": "cronometer.ipynb",
"link": "https://colab.research.google.com/github/Stanford-Health/Wearible-notebooks/blob/main/notebooks/cronometer.ipynb"
}
],
"link": "https://cronometer.com/",
"specs": {
"product_details": {
"Location": "N/A (Smartphone App)",
"Price": "N/A",
"Sensors": [],
"Battery": "N/A"
},
"security": {
"Wearable Connectivity": {
"short": "N/A",
"long": "N/A"
},
"API Access Security": {
"short": "N/A",
"long": "No public API is available."
}
},
"privacy": {
"Data Risk": {
"short": "No",
"long": "Data from Cronometer includes detailed 'food consumption' data, which breaks down the nutrient profile of foods consumed, such as 'macronutrients' ('carbohydrates', 'proteins', 'fats'), 'micronutrients' (vitamins, minerals, etc.), 'caloric intake', and more. The platform also captures 'physical activity' data, either entered manually or imported from connected fitness tracking devices. Users can also log 'biometric data' such as 'weight', 'blood pressure', and 'sleep hours', and set personal health and wellness goals. <br />These data constitute a health data risk in the following categories: <br />- Physical activity data: Activity type, duration, intensity, and estimated caloric burn.<br />- Health status data: Detailed breakdown of daily food consumption and nutrient intake, including both macronutrients and micronutrients, weight trends, body measurements, blood pressure, cholesterol levels, captures patterns of consumption, such as frequency of specific foods or meals, highlighting potential dietary imbalances or deficiencies."
},
"HIPAA Compliance": {
"short": "No",
"long": "Cronometer collects dietary intake, exercise routines, and biometric data. It offers analysis of macro and micronutrient intake based on user entries. <br />Data related to dietary intake, exercise, and biometrics could be considered protected health information under HIPAA. <br />Cronometer is not HIPAA compliant."
},
"De-identification (When Sharing)": {
"short": "No",
"long": "Non Personal Information. As used in this Privacy Notice, 'Non-Personal Information' means information that does not identify you and cannot be used to contact you personally and may include: (a) certain [A1]publicly available information; (b) aggregate information, meaning data about a group or category of services or users from which individual identities and other Personal Information has been removed; (c) deidentified information that cannot be easily linked back to the individual; or (d) [A2]and in full compliance with HIPAA and Privacy laws, and on an aggregated and anonymous basis, your diary entries, health data[A3], recipes, targets and profile."
},
"Shares With Third Parties": {
"short": "No",
"long": "Cronometer mentions that they 'may share data with third parties for the purposes of operating our services, maintaining the safety and security of our services, and for marketing purposes.'"
},
"Transparency in Third Party Sharing": {
"short": "No",
"long": "Categories of third parties are not specifically outlined in the privacy policy. <br />No mentions of specific companies, organizations, or individuals are provided."
}
}
},
"api": {},
"summaries": [
"Cronometer_ChronicPainOrDiseases.txt",
"Cronometer_Endocrinology.txt",
"Cronometer_Gastroenterology.txt"
]
},
{
"name": "Dexcom G Pro",
"id": "dexcom-g-pro",
"ordering_priority": 5,
"picture": "/assets/dexcom-g-pro.png",
"description": "The Dexcom G Pro is a continuous glucose monitoring (CGM) system designed for diabetes management in both clinical and personal settings. It features a small, wearable sensor that continuously measures glucose levels in interstitial fluid and a transmitter that sends data to a display device. The G Pro allows for unblinded or blinded monitoring, giving healthcare providers flexibility in how they use the device for patient care. This CGM system is particularly useful for gaining insights into a patient's glucose patterns and variability, which can inform treatment decisions. It does not require fingerstick calibrations, offering convenience and ease of use. The real-time glucose data and trend analysis provided by the Dexcom G Pro are valuable for managing both type 1 and type 2 diabetes, helping to reduce the risk of hypoglycemia and improve glycemic control. Its accuracy and reliability make it a trusted tool in diabetes care.",
"tags": [
"CGM"
],
"notebooks": [
{
"name": "dexcom_g6_pro.ipynb",
"link": "https://colab.research.google.com/github/Stanford-Health/Wearible-notebooks/blob/main/notebooks/dexcom_g6_pro.ipynb"
}
],
"link": "https://provider.dexcom.com/products/dexcom-g6-pro",
"specs": {
"product_details": {
"Location": "Back of upper arm, abdomen, upper buttocks",
"Price": "$59.00",
"Sensors": [],
"Battery": ""
},
"security": {
"Wearable Connectivity": {
"short": "No",
"long": "Bluetooth"
},
"API Access Security": {
"short": "Yes",
"long": "API is available through OAuth 2.0."
}
},
"privacy": {
"Data Risk": {
"short": "No",
"long": "Data from the Dexcom Pro CGM includes real-time glucose readings taken at regular intervals. The device can alert the user to high and low glucose levels, allowing for timely interventions. Through trends and historical data, the CGM offers insights into glucose variations due to factors like meals, insulin dosages, and physical activity. Additionally, it may include data points such as the time and date of readings, any calibrations done, and potentially user-inputted events like meals or exercise. <br />These data constitute a health data risk in the following categories: <br />- Physical activity data: Physical activity can influence glucose dynamics, and annotations or trends could be linked to exercise routines. <br />- Physiological data: Rapid changes in glucose levels can provide insights into certain physiological responses like stress, illness, or reactions to medications. <br />- Health status data: Continuous glucose levels, which directly reflect the user's metabolic state and responses to insulin, food intake, or other factors. <br />- Predictive health insights: Analysis of glucose trends can be used to predict potential future hypoglycemic or hyperglycemic events, allowing for preventive measures."
},
"HIPAA Compliance": {
"short": "No",
"long": "Dexcom Pro CGM collects real-time glucose readings, trends, and provides alerts for high or low glucose levels. This information is relayed to the user's smartphone or receiver device, aiding in diabetes management. <br />Glucose readings and associated trends can be seen as protected health information under HIPAA since they directly relate to a person's health condition and treatment. <br />Dexcom Pro CGM is not HIPAA compliant."
},
"De-identification (When Sharing)": {
"short": "Yes",
"long": "Dexcom Pro CGM interfaces with Dexcom CLARITY, a management tool that processes data from the CGM. The Dexcom Receiver used by CLARITY anonymizes this data. The Dexcom G6, a CGM system by Dexcom, features a 'Share' function. This allows users to transmit their glucose data to chosen recipients, like family members or healthcare professionals. Data shared via this function is encrypted, ensuring that only authorized individuals can access it. <br />Dexcom's policy on data handling states that Personal Information is shared with Service Providers. This includes reasons like managing their business, maintaining their products, delivering services, or upholding contracts. They also share data for purposes where the user has given consent, for sending surveys when legally permissible, to meet legal obligations, and to assert or protect legal rights."
},
"Shares With Third Parties": {
"short": "No",
"long": "Dexcom Pro CGM mentions that they 'share Personal Information with our Service Providers for specified purposes such as operating and managing our business, product support, and establishing legal claims.' It also mentions sharing data for the delivery of their Products and Services, where consent has been given, and for compliance with applicable law. The data is shared in compliance with applicable data protection law and under the constraints of specified contracts that maintain confidentiality and prescribed use."
},
"Transparency in Third Party Sharing": {
"short": "No",
"long": "Categories of third parties are disclosed as 'Service Providers'. <br />No mentions of specific companies, organizations, or individuals are provided."
}
}
},
"api": {},
"summaries": [
"Dexcom_G6_Pro_Cardiology.txt",
"Dexcom_G6_Pro_Endocrinology.txt",
"Dexcom_G6_Pro_GeneralPhysiology.txt",
"Dexcom_G6_Pro_Obstetrics.txt",
"Dexcom_G6_Pro_Pulmonology.txt",
"Dexcom_G6_Pro_Somnology.txt"
]
},
{
"name": "Elite HRV",
"id": "elite-hrv",
"ordering_priority": 22,
"picture": "/assets/elite-hrv.png",
"description": "The Elite HRV app is designed to track heart rate variability (HRV), heart rate, and respiratory rate to provide insights into autonomic nervous system function, stress, and recovery. It supports integration with compatible wearables, such as chest straps, to deliver accurate HRV measurements. The app provides personalized recommendations based on HRV trends, helping users monitor stress, optimize recovery, and improve performance. It includes guided breathing exercises aimed at enhancing HRV and managing stress. The Elite HRV platform also allows for team and group data tracking, which is useful for coaches, trainers, and researchers who need to monitor multiple individuals.",
"tags": [
"HRV"
],
"notebooks": [
{
"name": "polar-h10.ipynb",
"link": "https://colab.research.google.com/github/Stanford-Health/Wearible-notebooks/blob/main/notebooks/polar_h10.ipynb"
}
],
"link": "https://elitehrv.com/",
"specs": {
"product_details": {
"Location": "N/A (Smartphone App)",
"Price": "N/A",
"Sensors": [],
"Battery": "N/A"
},
"security": {
"Wearable Connectivity": {
"short": "N/A",
"long": "N/A"
},
"API Access Security": {
"short": "N/A",
"long": "N/A"
}
},
"privacy": {
"Data Risk": {
"short": "N/A",
"long": "N/A"
},
"HIPAA Compliance": {
"short": "N/A",
"long": "N/A"
},
"De-identification (When Sharing)": {
"short": "N/A",
"long": "N/A"
},
"Shares With Third Parties": {
"short": "N/A",
"long": "N/A"
},
"Transparency in Third Party Sharing": {
"short": "N/A",
"long": "N/A"
}
}
},
"api": {},
"summaries": []
},
{
"name": "Fitbit Charge",
"id": "fitbit-charge",
"ordering_priority": 0,
"picture": "/assets/fitbit-charge.png",
"description": "One of the only wrist worn wearable devices that is still validated for calorimetric use. The algorithm accuracy provides great insight into activity calories burned. This device also has accurate SPO2 and pedometer tracking for walking.",
"tags": [
"SPO2",
"HR",
"2-Stage",
"Pedometer",
"Calorimeter"
],
"notebooks": [
{
"name": "fitbit_charge_4.ipynb",
"link": "https://colab.research.google.com/github/Stanford-Health/Wearible-notebooks/blob/main/notebooks/fitbit_charge_4.ipynb"
}
],
"link": "https://www.fitbit.com/global/us/products/trackers/charge4",
"specs": {
"product_details": {
"Location": "Wrist",
"Price": "$110.00[]",
"Sensors": [],
"Battery": ""
},
"security": {
"Wearable Connectivity": {
"short": "Yes",
"long": "Wifi or bluetooth."
},
"API Access Security": {
"short": "Yes",
"long": "API is available through OAuth 2.0."
}
},
"privacy": {
"Data Risk": {
"short": "No",
"long": "Data from the Fitbit Charge includes steps tracking, distance covered, heart rate monitoring, sleep tracking, calories burned, floors climbed, and active zone minutes. These data constitute a health data risk in the following categories: Physical activity data (steps tracking, distance covered, calories burned, floors climbed, active zone minute); Sleep data (sleep tracking); physiological data (heart rate monitoring)."
},
"HIPAA Compliance": {
"short": "No",
"long": "Google Fitbit Charge collects identity data such as email address, birth date, usernames, and user preferences. The device amasses activity data based on the user's physical activities, including steps, distance traveled, floors climbed, heart rate, blood oxygen levels (SpO2), sleep stages, skin temperature, stress management, and menstrual tracking. Technical data for product and service use, including GPS location, technical logs, device configuration, and app usage, are processed. Heart rate, blood oxygen levels, skin temperature, sleep, and physiological measurement data could be considered protected health information under HIPAA. Google Fitbit Sense is not HIPAA compliant."
},
"De-identification (When Sharing)": {
"short": "Yes",
"long": "Fitbit Charge may share non-personal information that has been aggregated or de-identified, ensuring that it cannot reasonably be used to identify an individual. Such information might be disclosed publicly and to third parties, such as in public reports about exercise and activity. It could also be shared with partners under agreement with Fitbit, or as part of the community benchmarking information provided to users of Fitbit's subscription services."
},
"Shares With Third Parties": {
"short": "No",
"long": "Fitbit Charge incorporates payment features in some of its devices, requiring users to provide identification and verification details such as name, card number, expiration date, and CVV code. This information is encrypted and sent to the card network, which returns a token to the device, allowing transactions without exposing the card number. Fitbit stores only the last four digits of the card number and the card issuer's information but does not store the full transaction history. If purchasing Fitbit merchandise on their website, payment details are provided but not stored by Fitbit. Shipping addresses are stored for order fulfillment, while third-party payment processors may retain payment information in line with their own policies and terms. Fitbit's handling of payment information emphasizes security and privacy, limiting retention of sensitive financial details."
},
"Transparency in Third Party Sharing": {
"short": "No",
"long": "Categories of third parties are disclosed as 'service providers', 'partners', 'developers and publishers from whom you get a subscription' and 'others', with 'others' including national security institutions and law enforcement. No mentions of specific companies, organizations, or individuals are provided."
}
}
},
"api": {},
"summaries": [
"Fitbit_Charge_4_ChronicPainOrDiseases.txt",
"Fitbit_Charge_4_Endocrinology.txt",
"Fitbit_Charge_4_GeneralPhysiology.txt",
"Fitbit_Charge_4_Psychiatry.txt",
"Fitbit_Charge_4_Somnology.txt"
]
},
{
"name": "Fitbit Sense",
"id": "fitbit-sense",
"ordering_priority": 1,
"picture": "/assets/fitbit-sense.png",
"description": "The Fitbit Sense is a smartwatch that focuses on health and wellness tracking. It offers comprehensive monitoring of heart rate, activity levels, sleep patterns, and stress management. The device includes an EDA (electrodermal activity) sensor for stress tracking, a skin temperature sensor, and an ECG (electrocardiogram) app for heart health. In addition to fitness tracking features like step count, calories burned, and workout intensity, the Sense provides detailed sleep analysis, including sleep stages and sleep score. Its built-in GPS tracks outdoor activities accurately, and the watch supports various workout modes. The Fitbit Sense also offers smart features like notifications, voice assistants, and music control. It syncs with the Fitbit app, where users can view their health and fitness data, set goals, and track progress. This smartwatch is designed for individuals looking to closely monitor and manage their overall health and wellness.",
"tags": [
"SPO2",
"HR",
"2-Stage",
"Pedometer",
"Calorimeter"
],
"notebooks": [
{
"name": "fitbit-sense.ipynb",
"link": "https://colab.research.google.com/github/Stanford-Health/Wearible-notebooks/blob/main/notebooks/fitbit_sense.ipynb"
}
],
"link": "https://www.fitbit.com/global/us/products/smartwatches/sense",
"specs": {
"product_details": {
"Location": "Wrist",
"Price": "$249.00",
"Sensors": [
"PPG"
],
"Battery": ""
},
"security": {
"Wearable Connectivity": {
"short": "Yes",
"long": "Wifi or bluetooth."
},
"API Access Security": {
"short": "Yes",
"long": "API is available through OAuth 2.0."
}
},
"privacy": {
"Data Risk": {
"short": "No",
"long": "Data from the Fitbit Sense includes steps tracking, distance covered, heart rate monitoring, sleep tracking, blood oxygen levels (SpO2) monitoring, stress tracking, skin temperature variation, and electrodermal activity (EDA) scanning. These data constitute a health data risk in the following categories: Physical activity data (Steps tracking, distance covered); sleep data (sleep tracking); physiological data (heart rate monitoring, blood oxygen levels (SpO2) monitoring, skin temperature variation); health status data (stress tracking, electrodermal activity (EDA) scanning)."
},
"HIPAA Compliance": {
"short": "No",
"long": "Fitbit Sense collects identity data such as email address, birth date, usernames, and user preferences. The device amasses activity data based on the user's physical activities, including steps, distance traveled, floors climbed, heart rate, blood oxygen levels (SpO2), sleep stages, skin temperature, stress management, and menstrual tracking. Technical data for product and service use, including GPS location, technical logs, device configuration, and app usage, are processed. Heart rate, blood oxygen levels, skin temperature, sleep, and physiological measurement data could be considered protected health information under HIPAA. Fitbit Sense is not HIPAA compliant."
},
"De-identification (When Sharing)": {
"short": "Yes",
"long": "Fitbit Sense may share non-personal information that has been aggregated or de-identified, ensuring that it cannot reasonably be used to identify an individual. Such information might be disclosed publicly and to third parties, such as in public reports about exercise and activity. It could also be shared with partners under agreement with Fitbit, or as part of the community benchmarking information provided to users of Fitbit's subscription services."
},
"Shares With Third Parties": {
"short": "No",
"long": "Fitbit Sense incorporates payment features in some of its devices, requiring users to provide identification and verification details such as name, card number, expiration date, and CVV code. This information is encrypted and sent to the card network, which returns a token to the device, allowing transactions without exposing the card number. Fitbit stores only the last four digits of the card number and the card issuer's information but does not store the full transaction history. If purchasing Fitbit merchandise on their website, payment details are provided but not stored by Fitbit. Shipping addresses are stored for order fulfillment, while third-party payment processors may retain payment information in line with their own policies and terms. Fitbit's handling of payment information emphasizes security and privacy, limiting retention of sensitive financial details."
},
"Transparency in Third Party Sharing": {
"short": "No",
"long": "Categories of third parties are disclosed as 'service providers', 'partners', 'developers and publishers from whom you get a subscription' and 'others', with 'others' including national security institutions and law enforcement. No mentions of specific companies, organizations, or individuals are provided."
}
}
},
"api": {},
"summaries": [
"Fitbit_Sense_Bariatrics.txt",
"Fitbit_Sense_Cardiology.txt",
"Fitbit_Sense_ChronicPainOrDiseases.txt",
"Fitbit_Sense_Endocrinology.txt",
"Fitbit_Sense_GeneralPhysiology.txt",
"Fitbit_Sense_Oncology.txt",
"Fitbit_Sense_Psychiatry.txt"
]
},
{
"name": "Garmin Fēnix",
"id": "garmin-fenix",
"ordering_priority": 12,
"picture": "/assets/garmin-fenix.png",
"description": "Garmin Fenix line is one of the best watches for running/cycling tracking and has the best GPS system of any of the devices we have covered. The HR sensor on this device is on the upper end of accuracy, even for higher heart rates and outdoor motion.",
"tags": [
"SPO2",
"Continuous HRV",
"2-Stage",
"Pedometer",
"Calorimeter"
],
"notebooks": [
{
"name": "garmin_fēnix_7s.ipynb",
"link": "https://colab.research.google.com/github/Stanford-Health/Wearible-notebooks/blob/main/notebooks/garmin_fēnix_7s.ipynb"
}
],
"link": "https://www.garmin.com/en-US/p/735542",
"specs": {
"product_details": {
"Location": "Wrist",
"Price": "$699.99",
"Sensors": [],
"Battery": ""
},
"security": {
"Wearable Connectivity": {
"short": "Yes",
"long": "Wifi or bluetooth."
},
"API Access Security": {
"short": "No",
"long": "API is available through OAuth 1.0."
}
},
"privacy": {
"Data Risk": {
"short": "No",
"long": "Data from the Garmin fēnix includes name, mailing address, phone number, email address, contact preferences, device's serial numbers, purchase dates, and purchased subscriptions. Activity data like steps, distance, pace, activity time, calories burned, heart rate, sleep, location, golf stats, menstrual cycle information, hydration, and music played are also tracked. Additional voluntary data may include location, activity types (such as running, hiking, cycling, golf), gender, birthdate, height, and weight. Users can manually add activities to their account. Users may be prompted for gender, height, weight, birthdate, activity level, and normal bed and wake times [1]. <br />These data constitute a health data risk in the following categories: <br />- Physical activity: Steps, distance, pace, activity time, calories burned, activity types [2] <br />- Health status data: Heart rate, sleep, hydration, menstrual cycle information [3] <br />- Sleep data: Sleep, normal bed and wake time [4] <br />- Health risk assessment: Heart rate, sleep, hydration, activity data <br />- Predictive health insights: Heart rate, sleep data, hydration, physical activity data"
},
"HIPAA Compliance": {
"short": "No",
"long": "Garmin fēnix collects identity and contact data such as email address, password, and mobile phone number. This data is used for account security, providing user information about Garmin's products, services, apps, or account, marketing communications (if consent is given), customer support interaction, and violation notifications. Activity data like location on your activity course, heart rate related metrics, stress score, Body Battery, pulse oximetry, and fitness goals are processed for analysis and sharing (with user consent). This data can also be used to provide personalized Insights and recommendations (if user opts into the Insights feature), for aggregated trend analysis and feature development, and for internal research and development (if the user is opted in to product improvement). Location data is processed for providing location-based services. The processing of these data are backed by varying legal grounds, including user consent, performance of a contract, and legitimate interest. <br />Heart rate, pulse oximetry, and fitness goal data could be considered protected health information under HIPAA. <br />Garmin fēnix is not HIPAA compliant."
},
"De-identification (When Sharing)": {
"short": "Yes",
"long": "Garmin fēnix's privacy policy does not explicitly state that personal data is encrypted in transit or at rest. The policy details how personal data is used and shared with third-party service providers for various purposes like payment processing, shipping, fraud detection, and customer support, but does not mention any specific de-identification technique [1]. <br />Personal data might be transferred to affiliates or third parties in specific situations, but these entities are not permitted to process your personal data other than as described in the privacy policy without providing notice and obtaining consent, if required by applicable laws. There is no explicit mention whether data is de-identified before sharing with third parties. Garmin states that it 'does not sell, and have not sold, your personal information' and that sensitive personal information is only used or disclosed for certain purposes [2]. However, this is only stated in the California-specific privacy policy under CCPA and not in the general privacy policy page. <br />Previously, a ransomware attack was perpetuated on Garmin, affecting numerous services across the company, including Garmin Connect and portions of Garmin.com. The attack took down the flyGarmin and Garmin Pilot apps, causing days-long outages that hindered some Garmin hardware used in planes and boats. Although some pilots and athletes were temporarily affected, Garmin stating that there was 'no indication that any customer data, including payment information from Garmin Pay, was accessed, lost or stolen' during the attack [3]. This incident underscores some previous vulnerability in Garmin's security infrastructure."
},
"Shares With Third Parties": {
"short": "No",
"long": "Garmin fēnix states that they 'share personal data with service providers, advertising partners, professional advisors, authorities and others, and business transferees'."
},
"Transparency in Third Party Sharing": {
"short": "Yes",
"long": "Garmin uses third-party services for various functions. Adobe and SendGrid assist with sending and tracking emails. SMS messages are dispatched via Vonage and Twilio, with other regional services including Alibaba Cloud (China), every8d (Taiwan), aligo sms (South Korea), fpt / chunghwa (Vietnam), and true corp (Thailand). Third-party providers are used to analyze the performance of Garmin's products, services, websites, and apps. Payment processing varies by region and includes Adyen, PayPal, Alipay (China), WeChat Pay powered by tenpay (China), UnionPay (China), NewebPay, Klarna, and Veritrans. Fraud detection utilizes Cybersource, and address verification services are provided by third parties like Google and CDYNE. <br />Garmin partners with third-party services for shipping products and customer service. Point-of-sale services for in-store purchases are facilitated by Erply. Shipment information tracking is offered through Narvar. Global Blue provides tax rebate paperwork, while VHT provides callback request functionality for customer support. Garmin also collaborates with third-party providers for generating tax regulatory reports in some countries."
}
}
},
"api": {},
"summaries": [
"Garmin_Fenix_7S_Cardiology.txt",
"Garmin_Fenix_7S_ChronicPainOrDiseases.txt",
"Garmin_Fenix_7S_Endocrinology.txt",
"Garmin_Fenix_7S_GeneralPhysiology.txt",
"Garmin_Fenix_7S_Gynecology.txt",
"Garmin_Fenix_7S_Oncology.txt",
"Garmin_Fenix_7S_Psychiatry.txt",
"Garmin_Fenix_7S_Pulmonology.txt",
"Garmin_Fenix_7S_Somnology.txt"
]
},
{
"name": "Hypnodyne ZMax",
"id": "hypnodyne-zmax",
"ordering_priority": 16,
"picture": "/assets/hypnodyne-zmax.png",
"description": "The Hypnodyne ZMax is a sleep-monitoring device capable of two-stage sleep classification and five-stage sleep detection, though it is not cleared for clinical diagnosis. It uses advanced EEG technology alongside metrics such as SpO2, heart rate, and heart rate variability (HRV) to monitor sleep patterns and detect potential sleep disorders, including sleep apnea. The device offers customization through its app, allowing adjustments based on real-time vital signs. It is primarily designed for research and detailed sleep analysis rather than for use during physical activities or exercise.",
"tags": [
"EEG"
],
"notebooks": [],
"link": "https://hypnodynecorp.com/",
"specs": {
"product_details": {
"Location": "N/A",
"Price": "N/A",
"Sensors": [],
"Battery": ""
},
"security": {
"Wearable Connectivity": {
"short": "N/A",
"long": "N/A"
},
"API Access Security": {
"short": "N/A",
"long": "N/A"
}
},
"privacy": {
"Data Risk": {
"short": "N/A",
"long": "N/A"
},
"HIPAA Compliance": {
"short": "N/A",
"long": "N/A"
},
"De-identification (When Sharing)": {
"short": "N/A",
"long": "N/A"
},
"Shares With Third Parties": {
"short": "N/A",
"long": "N/A"
},
"Transparency in Third Party Sharing": {
"short": "N/A",
"long": "N/A"
}
}
},
"api": {},
"summaries": []
},
{
"name": "MyFitnessPal",
"id": "myfitnesspal",
"ordering_priority": 8,
"picture": "/assets/myfitnesspal.png",
"description": "MyFitnessPal is a widely-used nutrition and fitness tracking app that helps users monitor their diet and exercise routines. It features a large food database, making it easy to log meals and track calorie intake. Users can also record their physical activities and workouts, allowing for a comprehensive view of their fitness journey. The app calculates daily calorie needs based on individual goals, whether it's weight loss, gain, or maintenance, and tracks progress over time. MyFitnessPal also provides a breakdown of macronutrients (carbs, fats, proteins) and other nutritional information to help users make healthier food choices. One of the strengths of MyFitnessPal is its community aspect, offering motivation and support through forums and challenges. The app's user-friendly interface and integration with various fitness devices make it a popular choice for those looking to improve their dietary habits and overall health.",
"tags": [
"App"
],
"notebooks": [
{
"name": "my-fitness-pal.ipynb",
"link": "https://colab.research.google.com/github/Stanford-Health/Wearible-notebooks/blob/main/notebooks/my_fitness_pal.ipynb"
}
],
"link": "https://www.myfitnesspal.com/",
"specs": {
"product_details": {
"Location": "N/A (Smartphone App)",
"Price": "N/A",
"Sensors": [],
"Battery": "N/A"
},
"security": {
"Wearable Connectivity": {
"short": "N/A",
"long": "N/A"
},
"API Access Security": {
"short": "Yes",
"long": "API is available through OAuth 2.0."
}
},
"privacy": {
"Data Risk": {
"short": "No",
"long": "Data from MyFitnessPal encompasses detailed 'food consumption' data, offering an extensive breakdown of nutrient profiles for foods consumed, including 'macronutrients' ('carbohydrates', 'proteins', 'fats'), and 'micronutrients' (vitamins, minerals, etc.). Additionally, the platform records 'caloric intake' and 'caloric burn' from physical activities, which can be manually entered or integrated from various fitness tracking devices. Users can also register 'weight' and other body measurements and set personalized health objectives. <br />These data constitute a health data risk in the following categories: <br />- Physical activity data: Information on exercise type, duration, intensity, and estimated calorie expenditure.<br />- Health status data: Comprehensive logs of daily food consumption detailing both macronutrients and micronutrients, trends in weight, body measurements, and sometimes more detailed metrics if synchronized with other devices, dietary patterns & habits: Illuminates consistent eating patterns, potential dietary imbalances, or nutrient deficiencies."
},
"HIPAA Compliance": {
"short": "No",
"long": "MyFitnessPal collects daily food consumption, exercise activities, and sometimes weight or other health metrics. The application provides insights based on these inputs to assist users in meeting their health goals. <br />The recorded dietary, exercise, and health metrics could be considered protected health information under HIPAA. <br />MyFitnessPal is not HIPAA compliant."
},
"De-identification (When Sharing)": {
"short": "No",
"long": "MyFitnessPal collects, uses, discloses and processes Personal Data as outlined in this Privacy Policy, including to operate and improve the Services and our business; for advertising and marketing; and to provide you with innovative fitness and wellness services, as further described in this Privacy Policy. <br />We may create de-identified or anonymous data from Personal Data by excluding data components (such as your name, email address, or linkable tracking ID) that makes the data personally identifiable to you, through obfuscation, or through other means. Our use of anonymized and de-identified data is not subject to this Privacy Policy."
},
"Shares With Third Parties": {
"short": "No",
"long": "MyFitnessPal, owned by Under Armour, mentions that they may share user data with third parties for several reasons, including for advertising and promotional purposes. The company specifies that they may share 'de-identified or aggregated data with others for their own uses'. Furthermore, third-party service providers may be given access to personal data as necessary to perform their functions."
},
"Transparency in Third Party Sharing": {
"short": "No",
"long": "Categories of third parties are not specifically outlined in the privacy policy. <br />No mentions of specific companies, organizations, or individuals are provided."
}
}
},
"api": {},
"summaries": [
"MyFitnessPal_Bariatrics.txt",
"MyFitnessPal_Cardiology.txt",
"MyFitnessPal_Endocrinology.txt",
"MyFitnessPal_Gastroenterology.txt",
"MyFitnessPal_GeneralPhysiology.txt",
"MyFitnessPal_Obstetrics.txt",
"MyFitnessPal_Oncology.txt",
"MyFitnessPal_Other.txt",
"MyFitnessPal_Psychiatry.txt"
]
},
{
"name": "Oura Ring",
"id": "oura-ring",
"ordering_priority": 2,
"picture": "/assets/oura-ring.png",
"description": "Excellent device that is validated for 2 stage sleep classification and can perform 5 stage sleep detection (though not validated for clinical use). The readiness scores, activity goals are well tailored and the app even has a setting to turn off activity goals if the ring detects that you have elevated body temperature, lower trending HRV, and elevated HR. The device has recently had updates to SPO2 which have made battery life somewhat unreliable. Take a look at the 1 star reviews. Physical activity and lifting are slightly impacted as the ring is difficult to use during heavy lifts and calisthenics training.",
"tags": [
"SPO2",
"HR",
"2-Stage",
"Pedometer",
"Calorimeter"
],
"notebooks": [
{
"name": "oura-ring-3.ipynb",
"link": "https://colab.research.google.com/github/Stanford-Health/Wearible-notebooks/blob/main/notebooks/oura_ring_gen_3.ipynb"
}
],
"link": "https://ouraring.com/product/heritage-silver",
"specs": {
"product_details": {
"Location": "Index finger",
"Price": "$299.00",
"Sensors": [],
"Battery": ""
},
"security": {
"Wearable Connectivity": {
"short": "Yes",
"long": "Wifi or bluetooth."
},