Health Connect Active Calories Burned Records Export Format
The Active Calories Burned Records export contains data about the calories burned by a user during activity such as exercise.
Data Fields
|
Field |
Description |
|---|---|
|
|
A unique key for this Health Connect Record. |
|
|
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, in ISO 8601 format. Is always in UTC. |
|
|
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 amount of energy burned during this record. |
|
|
The measurement unit of `EnergyValue`, one of:
|
Sample CSV Export
HealthConnectRecordKey,ParticipantIdentifier,ParticipantID,MetadataDataOriginPackageName,MetadataLastModifiedTime,MetadataClientRecordID,MetadataClientRecordVersion,MetadataDeviceManufacturer,MetadataDeviceModel,MetadataDeviceType,MetadataRecordingMethod,InsertedDate,StartTime,StartZoneOffsetSetAtUpload,EndTime,EndZoneOffsetSetAtUpload,EnergyValue,EnergyType
7a5e3fbe-9da7-3aea-8708-56372ec2e3ef,TST123456,1be320d5-57fa-4860-8fa2-033b27038c4e,com.careevolution.mydatahelps,2026-02-18T15:02:41Z,,0,,,,RECORDING_METHOD_UNKNOWN,2026-02-18T15:23:51Z,2026-02-18T09:02:32-04:00,,2026-02-18T10:48:32-04:00,,487000.0,CALORIES
Sample JSON Export
{
"HealthConnectRecordKey": "7a5e3fbe-9da7-3aea-8708-56372ec2e3ef",
"ParticipantIdentifier": "TST123456",
"ParticipantID": "1be320d5-57fa-4860-8fa2-033b27038c4e",
"InsertedDate": "2026-02-18T15:23:51Z",
"Metadata": {
"DataOriginPackageName": "com.careevolution.mydatahelps",
"LastModifiedTime": "2026-02-18T15:02:41Z",
"ClientRecordVersion": "0",
"RecordingMethod": "RECORDING_METHOD_UNKNOWN",
},
"StartTime": "2026-02-18T09:02:32-04:00",
"EndTime": "2026-02-18T10:48:32-04:00",
"Energy": {
"Type": "CALORIES",
"Value": 487000.0
}
}