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

Survey Results Export Format

When a participant completes a survey, it generates a Survey Result. Each survey result contains multiple step results (corresponding to each step of the survey), and each step result can contain multiple child results (answers to questions, results produced by active tasks, etc.). In some cases (e.g., instruction steps, or if a step was skipped)—a step result may not have any child results.

Survey Result Component Data

In the CSV export, multiple data files are produced for survey results for the different survey result components, with keys that can be used for cross referencing. In the JSON export, all of the results are contained in a single file and data structure. Deleted survey results will always be contained in a distinct file in both CSV and JSON format.

For more information about how to cross-reference data across the different survey result components, see Export File Type and Format Summary. For more information about the other components, see the following topics:

Data Fields

Sample CSV Export

SurveyResultKey,SurveyKey,SurveyName,SurveyVersion,ParticipantIdentifier,SurveyTaskKey,Type,StartDate,EndDate,DevicePlatform,DeviceName,DeviceOSVersion,InsertedDate,ParticipantID,ScheduleID,ScheduleInterval,ScheduleIntervalType,ScheduleName,ScheduleCategory,UserType,User,Locale,Event
a843228f-6369-f011-ad1f-0e0e6a19462f,3c1faa38-b8c4-eb11-aaab-0afb9334277d,Daily Mood Survey,0,MDH-808,50069b40-5769-f011-ad1f-0e0e6a19462f,Survey,2025-07-25T10:27:42-04:00,2025-07-25T10:28:02-04:00,WebClient,,,2025-07-25T14:28:02Z,ba5ba41b-a375-42fb-83d3-9c6d12554229,df5673b4-247e-4212-ae86-d363aed57693,0,Days,Day after Survey,Post-Surgery,Participant,,,

 

Sample JSON Export

{
 "SurveyResultKey": "a843228f-6369-f011-ad1f-0e0e6a19462f",
 "SurveyKey": "3c1faa38-b8c4-eb11-aaab-0afb9334277d",
 "SurveyName": "Daily Mood Survey",
 "ParticipantIdentifier": "MDH-808",
 "ParticipantID": "ba5ba41b-a375-42fb-83d3-9c6d12554229",
 "SurveyTaskKey": "50069b40-5769-f011-ad1f-0e0e6a19462f",
 "Type": "Survey",
 "SurveyVersion": 0,
 "StartDate": "2025-07-25T10:27:42-04:00",
 "EndDate": "2025-07-25T10:28:02-04:00",
 "DevicePlatform": "WebClient",
 "InsertedDate": "2025-07-25T14:28:02Z",
 "UserType": "Participant",
 "StepResults":[
  {
  "SurveyStepResultKey": "b343228f-6369-f011-ad1f-0e0e6a19462f",
  "StepIdentifier": "Guilty",
  "StartDate": "2025-07-25T10:27:43-04:00",
  "EndDate": "2025-07-25T10:27:46-04:00",
  "Results": [
  {
   "Type": "QuestionResult",
   "QuestionResultKey": "cd43228f-6369-f011-ad1f-0e0e6a19462f",
   "ResultIdentifier": "Guilty",
   "Answers":[
    "1"
   ],
   "StartDate": "2025-07-25T10:27:43-04:00",
   "EndDate": "2025-07-25T10:27:46-04:00"
  }]
 }],
 "Schedule": {
  "ID": "df5673b4-247e-4212-ae86-d363aed57693",
  "Interval": "0",
  "IntervalType": "Days",
  "Name": "Day after Survey"
 }
}