Health Connect Heart Rate Daily Aggregate Export Format
The heart rate daily aggregate export contains aggregate data about users' heart rate over the course of one day.
Data Fields
|
Field |
Description |
|---|---|
|
|
A unique key for this Health Connect aggregate. |
|
|
The identifier of the participant this record is for. Can be used to cross reference with Participants. |
|
|
The stable, automatically generated, internal system identifier for this participant. Universally unique identifier (UUID). |
|
|
The date MyDataHelps received the data from Health Connect, in ISO 8601 format. Includes timezone offset information. |
|
|
The start time of this aggregate, representing a participant's day. Does not include timezone offset. |
|
|
The start time of this aggregate, representing a participant's day. Does not include timezone offset. |
|
|
The name of this aggregate data. |
|
|
The numeric value of this aggregate data. |
|
|
The package name(s) of the application(s) that generated this data. |
Sample CSV Export
HealthConnectAggregateKey,ParticipantIdentifier,ParticipantID,InsertedDate,StartTime,EndTime,MetricName,Value,DataOriginPackageNames
1fd4133e-1767-5a01-969d-b3451d2488b8,TST123456,1be320d5-57fa-4860-8fa2-033b27038c4e,2025-10-27T23:51:40Z,2025-09-10T00:00:00,2025-09-11T00:00:00,HeartRateSeries_bpm_min,70,com.google.android.apps.fitness
63e0a5bd-9c2f-51e6-9184-735c511de4db,TST123456,1be320d5-57fa-4860-8fa2-033b27038c4e,2025-10-27T23:51:40Z,2025-09-10T00:00:00,2025-09-11T00:00:00,HeartRateSeries_bpm_max,94,com.google.android.apps.fitness
Sample JSON Export
{
"HealthConnectAggregateKey": "1fd4133e-1767-5a01-969d-b3451d2488b8",
"ParticipantIdentifier": "TST123456",
"ParticipantID": "1be320d5-57fa-4860-8fa2-033b27038c4e",
"InsertedDate": "2025-10-27T23:51:40Z",
"StartTime": "2025-09-10T00:00:00",
"EndTime": "2025-09-11T00:00:00",
"MetricName": "HeartRateSeries_bpm_min",
"Value": 70.0,
"DataOriginPackageNames": "com.google.android.apps.fitness"
}
{
"HealthConnectAggregateKey": "63e0a5bd-9c2f-51e6-9184-735c511de4db",
"ParticipantIdentifier": "TST123456",
"ParticipantID": "1be320d5-57fa-4860-8fa2-033b27038c4e",
"InsertedDate": "2025-10-27T23:51:40Z",
"StartTime": "2025-09-10T00:00:00",
"EndTime": "2025-09-11T00:00:00",
"MetricName": "HeartRateSeries_bpm_max",
"Value": 94.0,
"DataOriginPackageNames": "com.google.android.apps.fitness"
}