Post-Study Debrief Survey

This post-study debrief survey template is designed for researchers conducting academic, clinical, or user studies. It captures participant experience across multiple dimensions including comfort level, understanding of procedures, concerns about data handling, and suggestions for improvement. The form includes dynamic sections that adapt based on participant responses, showing follow-up questions for any negative experiences while celebrating positive feedback.

Specialized

Try the Form

Thank you for participating in our research study. Your feedback helps us improve future studies and ensures participant wellbeing.
Overall Study Experience
Very dissatisfied
Very satisfied
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
export function researchDebriefSurvey(form: FormTs) {
// Post-Study Debrief Survey - Comprehensive research participant feedback
// Demonstrates: MatrixQuestion, RatingScale, EmojiRating, StarRating, Slider, conditional visibility
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Post-Study Debrief',
computedValue: () => 'Thank you for participating in our research study. Your feedback helps us improve future studies and ensures participant wellbeing.',
customStyles: {
backgroundColor: '#7c3aed',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Overall Experience
// ============================================
const overallSection = form.addSubform('overallExperience', {
title: 'Overall Study Experience'
});
 
overallSection.addRow(row => {
row.addEmojiRating('overallFeeling', {
label: 'How do you feel about your participation in this study?',
preset: 'mood',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
overallSection.addSpacer();
 
overallSection.addRow(row => {
row.addRatingScale('satisfactionScore', {
preset: 'satisfaction',
label: 'How satisfied are you with your overall experience?',
size: 'md',
alignment: 'center'
});
});
 
// ============================================
// SECTION 2: Study Components Matrix
// ============================================
const componentsSection = form.addSubform('studyComponents', {
title: 'Study Components Evaluation',
isVisible: () => overallSection.emojiRating('overallFeeling')?.value() !== null
});
 
componentsSection.addRow(row => {
row.addMatrixQuestion('componentRatings', {
label: 'Please rate each aspect of the study:',
rows: [
{ id: 'instructions', label: 'Clarity of instructions', isRequired: true },
{ id: 'procedures', label: 'Study procedures', isRequired: true },
{ id: 'duration', label: 'Study duration', isRequired: false },
{ id: 'environment', label: 'Study environment', isRequired: false },
{ id: 'equipment', label: 'Equipment/materials used', isRequired: false },
{ id: 'breaks', label: 'Rest breaks provided', isRequired: false }
],
columns: [
{ id: 'poor', label: 'Poor' },
{ id: 'fair', label: 'Fair' },
{ id: 'good', label: 'Good' },
{ id: 'excellent', label: 'Excellent' }
],
striped: true,
fullWidth: true
});
});
 
// ============================================
// SECTION 3: Researcher Interaction
// ============================================
const researcherSection = form.addSubform('researcherInteraction', {
title: 'Researcher Interaction',
isVisible: () => overallSection.emojiRating('overallFeeling')?.value() !== null
});
 
researcherSection.addRow(row => {
row.addStarRating('researcherProfessionalism', {
label: 'Rate the professionalism of the research team',
maxStars: 5,
size: 'lg',
alignment: 'center',
showConfettiOnMax: true
});
});
 
researcherSection.addRow(row => {
row.addStarRating('communicationClarity', {
label: 'How clearly did the researcher explain the study?',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
researcherSection.addRow(row => {
row.addThumbRating('questionsAnswered', {
label: 'Were all your questions answered satisfactorily?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
alignment: 'center'
});
});
 
// Follow-up for unanswered questions
researcherSection.addRow(row => {
row.addTextarea('unansweredQuestions', {
label: 'What questions remained unanswered?',
placeholder: 'Please describe any questions or concerns that were not addressed...',
rows: 3,
isVisible: () => researcherSection.thumbRating('questionsAnswered')?.value() === 'down'
});
});
 
// ============================================
// SECTION 4: Comfort & Concerns
// ============================================
const comfortSection = form.addSubform('comfortConcerns', {
title: 'Comfort & Concerns',
isVisible: () => overallSection.emojiRating('overallFeeling')?.value() !== null,
customStyles: () => {
const feeling = overallSection.emojiRating('overallFeeling')?.value();
if (feeling === 'sad' || feeling === 'down') {
return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
}
return {};
}
});
 
comfortSection.addRow(row => {
row.addSlider('comfortLevel', {
label: 'How comfortable did you feel during the study?',
min: 1,
max: 10,
step: 1,
defaultValue: 5,
showValue: true,
unit: '/ 10'
});
});
 
comfortSection.addRow(row => {
row.addRadioButton('experiencedDiscomfort', {
label: 'Did you experience any discomfort during the study?',
options: [
{ id: 'none', name: 'No discomfort' },
{ id: 'mild', name: 'Mild discomfort' },
{ id: 'moderate', name: 'Moderate discomfort' },
{ id: 'significant', name: 'Significant discomfort' }
],
orientation: 'vertical'
});
});
 
// Conditional discomfort details
const discomfortDetails = comfortSection.addSubform('discomfortDetails', {
title: 'Please describe your discomfort',
isVisible: () => {
const discomfort = comfortSection.radioButton('experiencedDiscomfort')?.value();
return discomfort === 'mild' || discomfort === 'moderate' || discomfort === 'significant';
},
customStyles: { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' }
});
 
discomfortDetails.addRow(row => {
row.addCheckboxList('discomfortTypes', {
label: 'What type of discomfort did you experience?',
options: [
{ id: 'physical', name: 'Physical discomfort' },
{ id: 'mental', name: 'Mental fatigue' },
{ id: 'emotional', name: 'Emotional distress' },
{ id: 'boredom', name: 'Boredom/tedium' },
{ id: 'confusion', name: 'Confusion about tasks' },
{ id: 'time-pressure', name: 'Time pressure/stress' },
{ id: 'privacy', name: 'Privacy concerns' },
{ id: 'other', name: 'Other' }
],
orientation: 'vertical'
});
});
 
discomfortDetails.addSpacer();
 
discomfortDetails.addRow(row => {
row.addTextarea('discomfortDescription', {
label: 'Please describe the discomfort in detail:',
placeholder: 'Your detailed feedback helps us improve participant experience...',
rows: 3,
isRequired: () => {
const discomfort = comfortSection.radioButton('experiencedDiscomfort')?.value();
return discomfort === 'moderate' || discomfort === 'significant';
}
});
});
 
// ============================================
// SECTION 5: Data & Privacy
// ============================================
const privacySection = form.addSubform('dataPrivacy', {
title: 'Data & Privacy',
isVisible: () => overallSection.emojiRating('overallFeeling')?.value() !== null
});
 
privacySection.addRow(row => {
row.addRatingScale('privacyConfidence', {
preset: 'likert-5',
label: 'I am confident my data will be handled securely and anonymously',
lowLabel: 'Strongly disagree',
highLabel: 'Strongly agree',
alignment: 'center'
});
});
 
privacySection.addRow(row => {
row.addThumbRating('consentUnderstood', {
label: 'Did you fully understand the consent form you signed?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
alignment: 'center'
});
});
 
privacySection.addRow(row => {
row.addTextarea('privacyConcerns', {
label: 'Any concerns about data handling or privacy?',
placeholder: 'Share any concerns you have...',
rows: 2,
isVisible: () => {
const confidence = privacySection.ratingScale('privacyConfidence')?.value();
return confidence !== null && confidence !== undefined && confidence <= 2;
}
});
});
 
// ============================================
// SECTION 6: Future Participation
// ============================================
const futureSection = form.addSubform('futureParticipation', {
title: 'Future Participation',
isVisible: () => overallSection.ratingScale('satisfactionScore')?.value() !== null
});
 
futureSection.addRow(row => {
row.addRatingScale('participateAgain', {
preset: 'nps',
label: 'How likely are you to participate in future studies with our team?',
showCategoryLabel: true,
showSegmentColors: true,
alignment: 'center'
});
});
 
futureSection.addRow(row => {
row.addCheckboxList('preferredStudyTypes', {
label: 'What types of studies would you be interested in?',
options: [
{ id: 'online', name: 'Online surveys' },
{ id: 'lab', name: 'Lab-based studies' },
{ id: 'interviews', name: 'Interviews' },
{ id: 'focus-groups', name: 'Focus groups' },
{ id: 'field', name: 'Field studies' },
{ id: 'longitudinal', name: 'Longitudinal studies' }
],
orientation: 'vertical',
isVisible: () => {
const score = futureSection.ratingScale('participateAgain')?.value();
return score !== null && score !== undefined && score >= 7;
}
});
});
 
// ============================================
// SECTION 7: Suggestions for Improvement
// ============================================
const suggestionsSection = form.addSubform('suggestions', {
title: 'Suggestions for Improvement',
isVisible: () => overallSection.emojiRating('overallFeeling')?.value() !== null
});
 
suggestionsSection.addSpacer();
 
suggestionsSection.addRow(row => {
row.addTextarea('improvementSuggestions', {
label: () => {
const feeling = overallSection.emojiRating('overallFeeling')?.value();
if (feeling === 'sad' || feeling === 'down') {
return 'What could we have done to make your experience better?';
}
return 'Do you have any suggestions to improve future studies?';
},
placeholder: 'Your suggestions are valuable for improving our research...',
rows: 4,
autoExpand: true
});
});
 
// ============================================
// SECTION 8: Contact for Follow-up
// ============================================
const contactSection = form.addSubform('contactSection', {
title: 'Follow-up Contact (Optional)',
isVisible: () => overallSection.emojiRating('overallFeeling')?.value() !== null
});
 
contactSection.addRow(row => {
row.addCheckbox('allowFollowUp', {
label: 'The research team may contact me regarding my feedback'
});
});
 
contactSection.addRow(row => {
row.addEmail('contactEmail', {
label: 'Email address',
placeholder: 'your@email.com',
isRequired: () => contactSection.checkbox('allowFollowUp')?.value() === true,
isVisible: () => contactSection.checkbox('allowFollowUp')?.value() === true
});
});
 
// ============================================
// SECTION 9: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Feedback Summary',
isVisible: () => {
const feeling = overallSection.emojiRating('overallFeeling')?.value();
const satisfaction = overallSection.ratingScale('satisfactionScore')?.value();
return feeling !== null && satisfaction !== null;
}
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const feeling = overallSection.emojiRating('overallFeeling')?.value();
const satisfaction = overallSection.ratingScale('satisfactionScore')?.value();
const comfort = comfortSection.slider('comfortLevel')?.value() ?? 5;
const researcherRating = researcherSection.starRating('researcherProfessionalism')?.value();
const npsScore = futureSection.ratingScale('participateAgain')?.value();
 
if (!feeling || satisfaction === null || satisfaction === undefined) return '';
 
const moodLabels: Record<string, string> = {
'sad': 'Negative',
'down': 'Somewhat negative',
'neutral': 'Neutral',
'happy': 'Positive',
'excited': 'Very positive'
};
 
let summary = 'Debrief Summary\n';
summary += '═'.repeat(25) + '\n\n';
summary += `Overall feeling: ${moodLabels[feeling] || feeling}\n`;
summary += `Satisfaction: ${satisfaction}/5\n`;
summary += `Comfort level: ${comfort}/10\n`;
if (researcherRating) {
summary += `Researcher rating: ${researcherRating}/5 stars\n`;
}
if (npsScore !== null && npsScore !== undefined) {
const category = futureSection.ratingScale('participateAgain')?.npsCategory();
summary += `\nFuture participation: ${npsScore}/10`;
if (category) {
summary += ` (${category})`;
}
}
 
return summary;
},
customStyles: () => {
const feeling = overallSection.emojiRating('overallFeeling')?.value();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (feeling === 'happy' || feeling === 'excited') {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (feeling === 'neutral') {
return { ...baseStyles, backgroundColor: '#e0e7ff', borderLeft: '4px solid #6366f1' };
} else {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
}
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Debrief Feedback',
isVisible: () => overallSection.emojiRating('overallFeeling')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank you for your feedback!',
message: 'Your responses will help us improve our research practices and ensure a positive experience for future participants. If you have any additional concerns, please contact the research team.'
});
}
 

Frequently Asked Questions

Is this template IRB-compliant?

This template provides a comprehensive framework for post-study debriefing. However, you should review it with your IRB to ensure it meets your institution's specific requirements. The template includes standard elements like consent confirmation, experience assessment, and opportunity to raise concerns.

Can I use this for clinical trials?

Yes, this template can be adapted for clinical trial debriefing. You may want to add study-specific questions about side effects, medication experiences, and clinical procedures. Ensure the template meets your regulatory requirements (FDA, EMA, etc.).

How do I handle negative feedback?

The form includes conditional sections that appear when participants indicate concerns or negative experiences. These sections provide structured ways to capture specific issues and allow researchers to follow up appropriately.

Can participants remain anonymous?

Yes, you can configure the form to be fully anonymous by removing or making optional the contact information section. The template respects participant privacy by default.

How do I customize the experience matrix?

The matrix question can be edited to include your specific study activities. Replace the default items (instructions, procedures, environment, etc.) with activities relevant to your study protocol.

What's the typical completion time?

Most participants complete this survey in 3-5 minutes. The conditional logic means participants with positive experiences see fewer follow-up questions, while those with concerns can provide detailed feedback.