Health Connect Heart Rate Records Export Format
The Heart Rate Records export contains data about user's heart rate. Each record represents a series of heart rate measurements as samples.
- File Prefix: `HealthConnectRecords_HeartRate`
- Samples File Prefix (CSV Format): `HealthConnectRecords_HeartRate_Samples`
Data Fields
|
Field |
Description |
|---|---|
|
|
A unique key for this Health Connect Record, used to cross reference Samples in CSV format. |
|
|
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 package name of the application that generated this record. |
|
|
When the data was last modified (or originally created) by the application. |
|
|
Optional client-supplied record unique data identifier associated with this record. |
|
|
Optional client-supplied version associated with this record. |
|
|
Optional client-supplied manufacturer of the device associated with this record. |
|
|
Optional client-supplied model of the device associated with this record. |
|
|
Optional client-supplied manufacturer of the device associated with this record. |
|
|
Whether the record was generated manually or automatically, if known. |
|
|
The date MyDataHelps received the data from Health Connect, in ISO 8601 format. Is always in UTC. |
|
|
The time the record started, in ISO 8601 format. Includes timezone offset information. |
|
|
Whether the time zone offset applied to `StartTime` was derived from the mobile device's zone offset when the data was uploaded. "True" if derived in this way, "False", Null (CSV) or missing property (JSON) if zone offset was provided by Health Connect. |
|
|
The time the record ended, in ISO 8601 format. Includes timezone offset information. |
|
|
Whether the time zone offset applied to `EndTime` was derived from the mobile device's zone offset when the data was uploaded. "True" if derived in this way, "False", Null (CSV) or missing property (JSON) if zone offset was provided by Health Connect. |
|
|
The time of this heart rate sample, in ISO 8601 format. |
|
|
The user's heart rate. |
Sample CSV Export
Heart Rate Records
HealthConnectRecordKey,ParticipantIdentifier,ParticipantID,MetadataDataOriginPackageName,MetadataLastModifiedTime,MetadataClientRecordID,MetadataClientRecordVersion,MetadataDeviceManufacturer,MetadataDeviceModel,MetadataDeviceType,MetadataRecordingMethod,InsertedDate,StartTime,StartZoneOffsetSetAtUpload,EndTime,EndZoneOffsetSetAtUpload
30000000-ad92-4f61-91b1-473fc16f670f,TST12345,1be320d5-57fa-4860-8fa2-033b27038c4e,com.ouraring.oura,2025-08-04T20:39:18.067Z,,0,Oura,,TYPE_RING,RECORDING_METHOD_ACTIVELY_RECORDED,2025-10-24T22:09:58Z,2025-08-04T15:06:53.194-05:00,,2025-08-04T16:36:53.194-04:00,
Heart Rate Samples
HealthConnectRecordKey,Time,BeatsPerMinute
30000000-ad92-4f61-91b1-473fc16f670f,2025-08-04T20:06:53.194Z,65
30000000-ad92-4f61-91b1-473fc16f670f,2025-08-04T20:10:12.194Z,69
30000000-ad92-4f61-91b1-473fc16f670f,2025-08-04T20:13:31.194Z,62
30000000-ad92-4f61-91b1-473fc16f670f,2025-08-04T20:16:50.194Z,48
Sample JSON Export
{
"HealthConnectRecordKey": "30000000-ad92-4f61-91b1-473fc16f670f",
"ParticipantIdentifier": "TST12345",
"ParticipantID": "1be320d5-57fa-4860-8fa2-033b27038c4e",
"InsertedDate": "2025-10-24T22:09:58Z",
"Metadata": {
"DataOriginPackageName": "com.ouraring.oura",
"LastModifiedTime": "2025-08-04T20:39:18.067Z",
"ClientRecordVersion": 0,
"Device": {
"Manufacturer": "Oura",
"Type": "TYPE_RING"
},
"RecordingMethod": "RECORDING_METHOD_ACTIVELY_RECORDED"
},
"StartTime": "2025-08-04T15:06:53.194-05:00",
"EndTime": "2025-08-04T16:36:53.194-04:00",
"Samples": [
{
"Time": "2025-08-04T20:06:53.194Z",
"BeatsPerMinute": 65
},
{
"Time": "2025-08-04T20:10:12.194Z",
"BeatsPerMinute": 69
},
{
"Time": "2025-08-04T20:13:31.194Z",
"BeatsPerMinute": 62
},
{
"Time": "2025-08-04T20:16:50.194Z",
"BeatsPerMinute": 48
}
]
}