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

Health Connect VO2 Max Records Export Format

The VO2 Max export contains data about the user's maximal aerobic capacity (VO2 max). Each record represents a single instantaneous measurement.

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, in ISO 8601 format. Is always in UTC.

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.

Time

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

ZoneOffsetSetAtUpload

Whether the time zone offset applied to `Time` 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.

Vo2MillilitersPerMinuteKilogram

The user's measured VO2 max, in ml/kg/minute.

MeasurementMethod

Optional value for the VO2 max score was measured, one of:

  • `"MEASUREMENT_METHOD_COOPER_TEST"`
  • `"MEASUREMENT_METHOD_HEART_RATE_RATIO"`
  • `"MEASUREMENT_METHOD_METABOLIC_CART"`
  • `"MEASUREMENT_METHOD_MULTISTAGE_FITNESS_TEST"`
  • `"MEASUREMENT_METHOD_OTHER"`
  • `"MEASUREMENT_METHOD_ROCKPORT_FITNESS_TEST"`

Sample CSV Export

HealthConnectRecordKey,ParticipantIdentifier,ParticipantID,MetadataDataOriginPackageName,MetadataLastModifiedTime,MetadataClientRecordID,MetadataClientRecordVersion,MetadataDeviceManufacturer,MetadataDeviceModel,MetadataDeviceType,MetadataRecordingMethod,InsertedDate,Time,ZoneOffsetSetAtUpload,Vo2MillilitersPerMinuteKilogram,MeasurementMethod
46f84187-dfa5-338f-9a41-b03210e2143e,TST123456,1be320d5-57fa-4860-8fa2-033b27038c4e,com.garmin.android.apps.connectmobile,2026-02-18T15:02:41Z,177521,1,,,TYPE_WATCH,RECORDING_METHOD_AUTOMATICALLY_RECORDED,2026-02-18T15:23:51Z,2025-02-18T11:02:32-04:00,,26.829999923706055,MEASUREMENT_METHOD_HEART_RATE_RATIO

Sample JSON Export

{
  "HealthConnectRecordKey": "46f84187-dfa5-338f-9a41-b03210e2143e",
    "ParticipantIdentifier": "TST123456",
    "ParticipantID": "1be320d5-57fa-4860-8fa2-033b27038c4e",
   "InsertedDate": "2026-02-18T15:23:51Z",
"Metadata":{
  "DataOriginPackageName": "com.garmin.android.apps.connectmobile",
  "LastModifiedTime": "2026-02-18T15:02:41Z",
       "ClientRecordID": "1775212391000",
  "ClientRecordVersion": 1,
"Device":{"Type":"TYPE_WATCH"}
  "RecordingMethod": "RECORDING_METHOD_AUTOMATICALLY_RECORDED"
},
    "Time": "2026-02-18T11:02:32-04:00",
"Vo2MillilitersPerMinuteKilogram": 26.829999923706055,
"MeasurementMethod": "MEASUREMENT_METHOD_HEART_RATE_RATIO"
}