The AllParticipants export contains all participants on the project.
The EnrolledParticipants export is a legacy export as of 02-Feb-2023, but contains those who have enrolled via the MyDataHelps app.
Table of Contents
Data Fields
Field | Description |
---|---|
ParticipantIdentifier |
A unique identifier for the participant in this project. This can be set up via the invitation sent to the user, or will be auto-generated if the identifier was not specified in the invitation. |
ParticipantID |
The stable, automatically generated, internal system identifier for this participant. Universally unique identifier (UUID). |
GlobalKey |
A global key for the participant which can be used to identify the participant across multiple projects. Note: This is only included in the EnrolledParticipants export, since this field does not exist for analog participants. |
EmailAddress |
The email address of the participant. |
FirstName |
The first name of the participant. |
MiddleName |
The middle name of the participant. |
LastName |
The last name of the participant. |
Gender |
The gender of the participant. |
DateOfBirth |
The date of birth of the participant. |
SecondaryIdentifier |
The secondary identifier created for this participant if one was set up when they were invited. |
PostalCode |
The zip code of the participant. |
EnrollmentDate |
The date/time the participant enrolled in this project, in ISO 8601 format. |
CustomFields |
Lists any custom fields associated with the patient, formatted as a JSON string. For example: { "Medication1": "Warfarin","SurgeryDate": "2018-11-01" }
|
EventDates |
Deprecated; participant events are now included in CustomFields. |
UtcOffset |
The UTC offset of the participant. |
TimeZone |
The timezone of the participant. |
PreferredLanguage |
The preferred language of the participant. |
Sample CSV Export
ParticipantIdentifier,GlobalKey,EmailAddress,FirstName,MiddleName,LastName,Gender,DateOfBirth,SecondaryIdentifier,PostalCode,EnrollmentDate,EventDates,CustomFields,UtcOffset,TimeZone,PreferredLanguage
ba9c19c4-9938-420f-aba6-d6d6c88c6417,7bd77fae-ce35-44c9-a13a-cb6211006201,abc@example.com,John,Jacob,Smith,,8/14/87,,15101,2017-12-05T18:25:59Z,{},"{""Medication1"":""Wafarin""}",-04:00:00,America/New_York,,
820c2f2d-43fc-47d2-a6a9-08886f5818ba,3c019e4f-e064-4055-9183-851488de3340,def@example.com,Allen,Jack,Smith,,1/12/98,,,2018-01-29T15:58:19Z,{},{},-05:00:00,America/Chicago,en
d30c9752-2da3-45a6-878a-757ea36252b4,92eb35d8-ed89-49c6-a17d-b64ad04859ca,ghi@example.com,Jim,Bob,Smith,M,8/14/87,,,2018-03-22T21:41:28Z,{},"{""DischargeDate"":""2018-11-03""",05:30:00,Asia/Kolkata,es
Sample JSON Export
{
"ParticipantIdentifier": "ba9c19c4-9938-420f-aba6-d6d6c88c6417",
"GlobalKey": "7bd77fae-ce35-44c9-a13a-cb6211006201",
"EmailAddress": "abc@example.com",
"FirstName": "John",
"MiddleName": "Jacob",
"LastName": "Smith",
"DateOfBirth": "1987-08-14",
"PostalCode": "15101",
"EnrollmentDate": "2017-12-05T18:25:59Z",
"EventDates": {},
"CustomFields": {
"Medication1": "Wafarin"
},
"UtcOffset": "-04:00:00",
"TimeZone": "America/New_York"
},
{
"ParticipantIdentifier": "820c2f2d-43fc-47d2-a6a9-08886f5818ba",
"GlobalKey": "3c019e4f-e064-4055-9183-851488de3340",
"EmailAddress": "def@example.com",
"FirstName": "Allen",
"MiddleName": "Jack",
"LastName": "Smith",
"DateOfBirth": "1998-01-12",
"EnrollmentDate": "2018-01-29T15:58:19Z",
"EventDates": {},
"CustomFields": {},
"UtcOffset": "-05:00:00",
"TimeZone": "America/Chicago",
"PreferredLanguage": "en"
},
{
"ParticipantIdentifier": "d30c9752-2da3-45a6-878a-757ea36252b4",
"GlobalKey": "92eb35d8-ed89-49c6-a17d-b64ad04859ca",
"EmailAddress": "ghi@example.com",
"FirstName": "Jim",
"MiddleName": "Bob",
"LastName": "Smith",
"Gender": "M",
"DateOfBirth": "1987-08-14",
"EnrollmentDate": "2018-03-22T21:41:28Z",
"EventDates": {},
"CustomFields": {
"DischargeDate":"2018-11-03",
"SurgeryDate":"2018-11-01"
},
"UtcOffset": "05:30:00",
"TimeZone": "Asia/Kolkata",
"PreferredLanguage": "es"
}