Health Connect Deleted Records Export Format
Each Health Connect Records export includes an associated Deleted Records export, indicating whether specific records have been deleted. All Deleted Records exports use this same schema, regardless of the associated records export schema.The file prefix for deleted records exports is HealthConnectRecords_{RecordType}_Deleted.
Data Fields
|
Field |
Description |
|---|---|
|
|
A unique key for the Health Connect Record which was deleted. |
|
|
The identifier of the participant this deleted 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 date the record was deleted, in ISO 8601 format. Is always in UTC. |
Sample CSV Export
HealthConnectRecordKey,ParticipantIdentifier,ParticipantID,DeletedDate
cccccccc-7777-4444-aaaa-2222d39140c2,TST123456,1be320d5-57fa-4860-8fa2-033b27038c4e,2026-03-04T15:23:51Z
Sample JSON Export
{
"HealthConnectRecordKey": "cccccccc-7777-4444-aaaa-2222d39140c2",
"ParticipantIdentifier": "TST123456",
"ParticipantID": "1be320d5-57fa-4860-8fa2-033b27038c4e",
"DeletedDate": "2026-03-04T15:23:51Z"
}