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

Health Connect Blood Pressure Records Export Format

Blood pressure records capture the blood pressure of a user. Each record represents a single instantaneous blood pressure reading.

Data Fields

Field

Description

HealthConnectRecordKey

A unique key for this Health Connect Record.

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. Includes timezone offset information.

Time

The time and date this record was generated, in ISO 8601 format. Includes timezone offset information. 

ZoneOffsetSetAtUpload

The offset from the user's local time and UTC time when the measurement was recorded.

SystolicValue

Systolic value

DiastolicValue

Diastolic value

BodyPosition

The body position when the measurement was recorded.

MeasurementLocation

The location on the body where the measurement was recorded.

Sample CSV Export

HealthConnectRecordKey,ParticipantIdentifier,ParticipantID,MetadataDataOriginPackageName,MetadataLastModifiedTime,MetadataClientRecordID,MetadataClientRecordVersion,MetadataDeviceManufacturer,MetadataDeviceModel,MetadataDeviceType,MetadataRecordingMethod,InsertedDate,Time,ZoneOffsetSetAtUpload,SystolicValue,DiastolicValue,BodyPosition,MeasurementLocation
d4ab7dd3-3ab4-47f8-91ca-32883a30919f,TST123456,1be320d5-57fa-4860-8fa2-033b27038c4e,com.careevolution.mydatahelps,2026-02-18T15:02:41Z,,0,,,,RECORDING_METHOD_UNKNOWN,2026-02-18T15:23:51Z,2025-02-18T11:02:32-04:00,,120,60,BODY_POSITION_LYING_DOWN,MEASUREMENT_LOCATION_LEFT_UPPER_ARM

Sample JSON Export

{
    "Properties": {
        "Diastolic": { "Value": 120.0 },
        "Systolic": { "Value": 60.0 },
        "BodyPosition": "BODY_POSITION_LYING_DOWN",
        "MeasurementLocation": "MEASUREMENT_LOCATION_LEFT_UPPER_ARM"
    },
    "HealthConnectRecordKey": "d4ab7dd3-3ab4-47f8-91ca-32883a30919f",
    "ParticipantIdentifier": "TST123456",
    "ParticipantID": "1be320d5-57fa-4860-8fa2-033b27038c4e",
    "Time": "2026-02-18T11:02:32-04:00",
    "MetadataDataOriginPackageName": "com.careevolution.mydatahelps",
    "MetadataLastModifiedTime": "2026-02-18T15:02:41Z",
    "MetadataClientRecordVersion": "0",
    "MetadataRecordingMethod": "RECORDING_METHOD_UNKNOWN",
    "InsertedDate": "2026-02-18T15:23:51Z"
}