Skip to content
  • There are no suggestions because the search field is empty.

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

HealthConnectRecordKey

A unique key for this Health Connect Record, used to cross reference Samples in CSV format.

ParticipantIdentifier

The identifier of the participant this record is for. Can be used to cross reference with Participants.

ParticipantID

The stable, automatically generated, internal system identifier for this participant. Universally unique identifier (UUID).

MetadataOriginPackageName

The package name of the application that generated this record.

MetadataLastModifiedTime

When the data was last modified (or originally created) by the application.

MetadataClientRecordID

Optional client-supplied record unique data identifier associated with this record.

MetadataClientRecordVersion

Optional client-supplied version associated with this record.

MetadataDeviceManufacturer

Optional client-supplied manufacturer of the device associated with this record.

MetadataDeviceModel

Optional client-supplied model of the device associated with this record.

MetadataDeviceType

Optional client-supplied manufacturer of the device associated with this record.

MetadataRecordingMethod

Whether the record was generated manually or automatically, if known.

InsertedDate

The date MyDataHelps received the data from Health Connect, in ISO 8601 format. Is always in UTC.

StartTime

The time the record started, in ISO 8601 format. Includes timezone offset information. 

StartZoneOffsetSetAtUpload

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.

EndTime

The time the record ended, in ISO 8601 format. Includes timezone offset information. 

EndZoneOffsetSetAtUpload

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.

Time

The time of this heart rate sample, in ISO 8601 format.

BeatsPerMinute

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
      }
    ]
}