Difference between revisions of "Informed consent"
m |
|||
| (3 intermediate revisions by one other user not shown) | |||
| Line 8: | Line 8: | ||
The source documents: | The source documents: | ||
| − | * | + | * {{Download link|media=Informed consent slides.pdf|Slides of the information session|pdf}} |
| − | * | + | * {{Download link|media=Informed consent instructions.docx|Instructions for completing the table|docx}} |
| − | * | + | * {{Download link|media=Informed consent template.docx|Template information document and consent form|docx}} Ethics Committee Social Sciences, Version 1.0 November 2025 |
Feel free to reach out to [https://www.ru.nl/personen/kos-m Miriam Kos] in case of any questions. | Feel free to reach out to [https://www.ru.nl/personen/kos-m Miriam Kos] in case of any questions. | ||
| Line 16: | Line 16: | ||
== Implementation == | == Implementation == | ||
Since this procedure no longer uses standard forms supplied by the Institute, you will have to include the information brochure and consent form in your own experiment. | Since this procedure no longer uses standard forms supplied by the Institute, you will have to include the information brochure and consent form in your own experiment. | ||
| − | For two common online experiment systems ( | + | For two common online experiment systems ([[LimeSurvey]] and [[jsPsych]]) we give an example how to include such a form here. |
| − | Feel free to contact [https://www.ru.nl/personen/ham-w-van | + | Feel free to contact [https://www.ru.nl/personen/ham-w-van Wilbert van Ham] for questions about the examples. |
| − | === | + | |
| − | [https://questions.socsci.ru.nl/index.php/245182 Demo survey] for the informed consent form with all elements. This | + | === LimeSurvey example === |
| + | [https://questions.socsci.ru.nl/index.php/245182 Demo survey] for the informed consent form with all elements. This {{Download link|https://www.socsci.ru.nl/tsg/informed-consent/limesurvey_survey_245182.lss|LSS file}} contains the survey structure. You can download it (right click -> save as...) and import it as a new survey (Create survey -> import). | ||
For anonymous studies all questions can be removed. For non-anonymous studies the first questions must be present. For non-medical studies the second question can be removed. | For anonymous studies all questions can be removed. For non-anonymous studies the first questions must be present. For non-medical studies the second question can be removed. | ||
| − | CONSENTQALL is an array with all the questions. For | + | CONSENTQALL is an array with all the questions. For LimeSurvey this is one question with several subquestions. Remove the ones that you do not need. To make sure the first two subquestions are answered with ''Yes'', there is a ''Question validation equation'' in the logic section that reads: |
<code> | <code> | ||
| Line 35: | Line 36: | ||
CONSENTQALL_SQ1=="Y" | CONSENTQALL_SQ1=="Y" | ||
</code> | </code> | ||
| − | |||
=== jsPsych example === | === jsPsych example === | ||
| − | Demo [https://www.socsci.ru.nl/tsg/informed-consent/informed-consent.html jsPsych experiment]. You can right click the experiment to save it. | + | Demo [https://www.socsci.ru.nl/tsg/informed-consent/informed-consent.html jsPsych experiment]. You can click it to see it the way the participant sees it, at the end the data entered is shown. You can right click the experiment, after opening it, to save it. |
Make sure to replace: | Make sure to replace: | ||
| Line 48: | Line 48: | ||
<code>return (responses.mandatory_data === "no" )</code> | <code>return (responses.mandatory_data === "no" )</code> | ||
| − | if you have only one mandatory line. | + | if you have only one mandatory line instead of two. |
Latest revision as of 17:05, 10 August 2026
Informed consent
We have an updated informed consent procedure for research reviewed by the Ethical Committee of Social Sciences (ECSS) as of November 2025.
The following changes have been implemented:
- Generic templates for RU/Faculty of Social Sciences, with shorter and better understandable texts, available via ECSS website
- Based on these templates researchers compile their own study-specific general information brochure and consent forms
- Updates to the screening form and Adverse Events Procedure
The source documents:
- ⬇️Slides of the information session (pdf)
- ⬇️Instructions for completing the table (docx)
- ⬇️Template information document and consent form (docx) Ethics Committee Social Sciences, Version 1.0 November 2025
Feel free to reach out to Miriam Kos in case of any questions.
Implementation
Since this procedure no longer uses standard forms supplied by the Institute, you will have to include the information brochure and consent form in your own experiment. For two common online experiment systems (LimeSurvey and jsPsych) we give an example how to include such a form here.
Feel free to contact Wilbert van Ham for questions about the examples.
LimeSurvey example
Demo survey for the informed consent form with all elements. This ⬇️LSS file contains the survey structure. You can download it (right click -> save as...) and import it as a new survey (Create survey -> import).
For anonymous studies all questions can be removed. For non-anonymous studies the first questions must be present. For non-medical studies the second question can be removed.
CONSENTQALL is an array with all the questions. For LimeSurvey this is one question with several subquestions. Remove the ones that you do not need. To make sure the first two subquestions are answered with Yes, there is a Question validation equation in the logic section that reads:
CONSENTQALL_SQ1=="Y" AND CONSENTQALL_SQ2=="Y"
If you do not want to force the second question to be answered with Yes, you must remove the second part:
CONSENTQALL_SQ1=="Y"
jsPsych example
Demo jsPsych experiment. You can click it to see it the way the participant sees it, at the end the data entered is shown. You can right click the experiment, after opening it, to save it.
Make sure to replace:
return (responses.mandatory_data === "no" || responses.mandatory_contact === "no")
with:
return (responses.mandatory_data === "no" )
if you have only one mandatory line instead of two.