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

Health Connect Steps Cadence Records Export Format

The Steps Cadence Records export contains data about the user's steps cadence. Each record represents a series of measurements as samples.

  • File Prefix: `HealthConnectRecords_StepsCadence`
  • Samples File Prefix (CSV Format): `HealthConnectRecords_StepsCadence_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, 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.

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

Rate

The user's steps cadence, in steps per minute.

Sample CSV Export

Steps Cadence Records

HealthConnectRecordKey,ParticipantIdentifier,ParticipantID,MetadataDataOriginPackageName,MetadataLastModifiedTime,MetadataClientRecordID,MetadataClientRecordVersion,MetadataDeviceManufacturer,MetadataDeviceModel,MetadataDeviceType,MetadataRecordingMethod,InsertedDate,StartTime,StartZoneOffsetSetAtUpload,EndTime,EndZoneOffsetSetAtUpload
a566f549-3f7b-49cf-b11b-3c965a956a10,TST12345,1be320d5-57fa-4860-8fa2-033b27038c4e,android,2025-10-24T20:26:56.19Z,,-1,Google,Pixel 10,TYPE_PHONE,RECORDING_METHOD_AUTOMATICALLY_RECORDED,2025-10-24T22:09:58Z,2025-10-24T15:06:53.194-05:00,,2025-10-24T16:36:53.194-04:00,

Steps Cadence Samples

HealthConnectRecordKey,Time,Rate
a566f549-3f7b-49cf-b11b-3c965a956a10,2025-10-24T20:06:53.194Z,104
a566f549-3f7b-49cf-b11b-3c965a956a10,2025-10-24T20:10:12.194Z,108
a566f549-3f7b-49cf-b11b-3c965a956a10,2025-10-24T20:13:31.194Z,149
a566f549-3f7b-49cf-b11b-3c965a956a10,2025-10-24T20:16:50.194Z,162

Sample JSON Export

{
  "HealthConnectRecordKey": "a566f549-3f7b-49cf-b11b-3c965a956a10",
  "ParticipantIdentifier": "TST12345",
  "ParticipantID": "1be320d5-57fa-4860-8fa2-033b27038c4e",
  "InsertedDate": "2025-10-24T22:09:58Z",
    "Metadata": {
      "DataOriginPackageName": "android",
      "LastModifiedTime": "2025-10-24T20:26:56.19Z",
      "ClientRecordVersion": -1,
        "Device": {
"Manufacturer": "Google",
"Model": "Pixel 10",
          "Type": "TYPE_PHONE"
        },
      "RecordingMethod": "RECORDING_METHOD_AUTOMATICALLY_RECORDED"
    },
  "StartTime": "2025-10-24T15:06:53.194-05:00",
  "EndTime": "2025-10-24T16:36:53.194-04:00",
    "Samples": [
        {
          "Time": "2025-10-24T20:06:53.194Z",
          "Rate": 104
        },
        {
          "Time": "2025-10-24T20:10:12.194Z",
          "Rate": 108
        },
        {
          "Time": "2025-10-24T20:13:31.194Z",
          "Rate": 149
        },
        {
          "Time": "2025-10-24T20:16:50.194Z",
          "Rate": 162
      }
    ]
}