Health Connect Skin Temperature Records Export Format
The Skin Temperature Records export contains data about the skin temperature of a user. Each record can represent a series of measurements of temperature differences from a baseline value.
- File Prefix: `HealthConnectRecords_SkinTemperature`
- Samples File Prefix (CSV Format): `HealthConnectRecords_SkinTemperature_Deltas`
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 location on the body where the skin temperature was taken, one of:
|
|
|
The time of this skin temperature measurement, in ISO 8601 format. Is always in UTC. |
|
|
The skin temperature measurement, in `DeltaTemperatureUnit` scale. Note: Delta may be relative to a previously established baseline skin temperature, or an unspecified baseline. |
|
|
The temperature unit of `DeltaValue`. |
Sample CSV Export
Skin Temperature Records
HealthConnectRecordKey,ParticipantIdentifier,ParticipantID,MetadataDataOriginPackageName,MetadataLastModifiedTime,MetadataClientRecordID,MetadataClientRecordVersion,MetadataDeviceManufacturer,MetadataDeviceModel,MetadataDeviceType,MetadataRecordingMethod,InsertedDate,StartTime,StartZoneOffsetSetAtUpload,EndTime,EndZoneOffsetSetAtUpload,MeasurementLocation
5fb197f9-e9b0-32a8-a736-0302f831140e,TST12345,1be320d5-57fa-4860-8fa2-033b27038c4e,com.ouraring.oura,2025-08-04T20:39:18.067Z,,0,Oura,,TYPE_RING,RECORDING_METHOD_AUTOMATICALLY_RECORDED,2025-10-24T22:09:58Z,2025-08-04T15:06:53.194-05:00,,2025-08-04T16:36:53.194-04:00,,MEASUREMENT_LOCATION_FINGER
Skin Temperature Deltas
HealthConnectRecordKey,Time,DeltaValue,DeltaTemperatureUnit
5fb197f9-e9b0-32a8-a736-0302f831140e,2025-08-04T16:06:53.194Z,25.2
5fb197f9-e9b0-32a8-a736-0302f831140e,2025-08-04T16:10:12.194Z,25.5
5fb197f9-e9b0-32a8-a736-0302f831140e,2025-08-04T16:13:31.194Z,24.7
5fb197f9-e9b0-32a8-a736-0302f831140e,2025-08-04T16:16:50.194Z,24.3
Sample JSON Export
{
"HealthConnectRecordKey": "5fb197f9-e9b0-32a8-a736-0302f831140e",
"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_AUTOMATICALLY_RECORDED"
},
"StartTime": "2025-08-04T15:06:53.194-04:00",
"EndTime": "2025-08-04T16:36:53.194-04:00",
"MeasurementLocation": "MEASUREMENT_LOCATION_FINGER",
"Deltas": [
{
"Delta": {
"TemperatureUnit": "CELSIUS",
"Value": 25.2
},
"Time": "2025-08-04T16:06:53.194Z"
},
{
"Delta": {
"TemperatureUnit": "CELSIUS",
"Value": 25.5
},
"Time": "2025-08-04T16:10:12.194Z"
},
{
"Delta": {
"TemperatureUnit": "CELSIUS",
"Value": 24.7
},
"Time": "2025-08-04T16:13:31.194Z"
},
{
"Delta": {
"TemperatureUnit": "CELSIUS",
"Value": 24.3
},
"Time": "2025-08-04T16:16:50.194Z"
}
]
}