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

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

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.

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.

MeasurementLocation

The location on the body where the skin temperature was taken, one of:

  • `"MEASUREMENT_LOCATION_FINGER"`

  • `"MEASUREMENT_LOCATION_TOE"`
  • `"MEASUREMENT_LOCATION_UNKNOWN"`
  • `"MEASUREMENT_LOCATION_WRIST"`

Time

The time of this skin temperature measurement, in ISO 8601 format. Is always in UTC.

DeltaValue

The skin temperature measurement, in `DeltaTemperatureUnit` scale.

Note: Delta may be relative to a previously established baseline skin temperature, or an unspecified baseline.

DeltaTemperatureUnit

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"
      }
    ]
}