No Description

ConsentDocument.swift 9.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. //
  2. // ConsentDocument.swift
  3. // EncuestaMarle
  4. //
  5. // Created by Tatiana Castro on 5/21/19.
  6. // Copyright © 2019 TANIA. All rights reserved.
  7. //
  8. import ResearchKit
  9. class ConsentDocument: ORKConsentDocument {
  10. override init() {
  11. super.init()
  12. title = NSLocalizedString("TANIA Consent Form", comment: "")
  13. sections = []
  14. let section1 = ORKConsentSection(type: .overview)
  15. section1.summary = "You have been invited to participate in this study whose objectives are (1) to develop and demonstrate the utility of a mobile application (TANIA) to collect perception data of students participating in research experiences and (2) to use TANIA to determine the sources of self-efficacy that lead to career exploration and decision-making in undergraduate students."
  16. section1.content = "You have been invited to participate in this study whose objectives are (1) to develop and demonstrate the utility of a mobile application (TANIA) to collect perception data of students participating in research experiences and (2) to use TANIA to determine the sources of self-efficacy that lead to career exploration and decision-making in undergraduate students. This study is been carried out under the supervision of Dr. Juan S. Ramírez Lugo, Department of Biology and Dr. Carlos Corrada Bravo, Department of Computer Sciences at the University of Puerto Rico, Rio Piedras Campus. You were selected to participate in this study because you are enrolled in a course that offers a research experience or you voluntarily participate in research with a professor affiliated to the Río Piedras Campus."
  17. if sections == nil {
  18. sections = [section1]
  19. } else {
  20. sections!.append(section1)
  21. }
  22. let section2 = ORKConsentSection(type: .timeCommitment)
  23. section2.summary = "In the study you will be asked to answer a questionnaire, about your perception of self-efficacy in research, scientific identity and decision-making about your professional career at the beginning and end of your research experience."
  24. section2.content = "In the study you will be asked to answer a questionnaire, about your perception of self-efficacy in research, scientific identity and decision-making about your professional career at the beginning and end of your research experience. It will take you between 10-20 minutes to answer this questionnaire. You are also expected to respond to short questionnaires between 1-3 times per week while you are participating in the research. You will receive notifications at random times during your research experience and answer questions adapted from survey instruments that have been previously validated. It will take you between 1-3 minutes to answer these questionnaires. It is expected that 25 students will participate in this phase of the study."
  25. if sections == nil {
  26. sections = [section2]
  27. } else {
  28. sections!.append(section2)
  29. }
  30. let section3 = ORKConsentSection(type: .dataGathering)
  31. section3.summary = "While answering the questions, you may feel uncomfortable because the questions are about your general opinion about science and research and your career. If you feel uncomfortable with the questions, you can stop and choose not to answer the question. "
  32. section3.content = "While answering the questions, you may feel uncomfortable because the questions are about your general opinion about science and research and your career. If you feel uncomfortable with the questions, you can stop and choose not to answer the question. When you download the application, it will occupy space in the memory of your mobile device and also consume your data plan in the transmission of information when you answer the questionnaires. It is estimated that the application will have a size of 40 Mb (As reference the WhatsApp application is 88.9 Mb). Although at the moment we cannot say exactly how much memory or data you will consume, we understand that both will be minimal. The risks of this study are minimal. "
  33. if sections == nil {
  34. sections = [section3]
  35. } else {
  36. sections!.append(section3)
  37. }
  38. let section4 = ORKConsentSection(type: .privacy)
  39. section4.summary = "Your identity will be protected throughout the study."
  40. section4.content = "Your identity will be protected throughout the study. Your identifiable information will be handled confidentially and when presenting the results of the investigation you will not be identified. The information you issue through the application will be through access credentials (username and password) that only you will know. These access credentials will be encrypted and any subsequent association between you and your data will be made by reference to the encrypted information, not your personal identity. The data collected through the questionnaires will be stored digitally on a secure hard drive in the researcher's office. These data will also be stored virtually in the cloud, with access limited only to researchers."
  41. if sections == nil {
  42. sections = [section4]
  43. } else {
  44. sections!.append(section4)
  45. }
  46. let section5 = ORKConsentSection(type: .dataUse)
  47. section5.summary = "The data obtained will be used to improve academic offerings and research experiences."
  48. section5.content = "The data obtained will be used to improve academic offerings and research experiences. The results of this study may be part of a scientific publication on science education strategies and will serve as a basis to improve the teaching curriculum. It may be used to develop proposals for obtaining external funds for research. The officials of the Río Piedras Campus of the University of Puerto Rico and / or federal agencies responsible for ensuring the integrity of the research may require the researcher to prove the data obtained in this study, including this informed consent. \nThe information handled by your device can be intervened or revised by third parties. These people can be people with legitimate or illegitimate access to the device and its content such as a family member, employer, hackers, intruders, etc. In addition, the device that you use may keep track of the information you access or send over the Internet."
  49. if sections == nil {
  50. sections = [section5]
  51. } else {
  52. sections!.append(section5)
  53. }
  54. let section6 = ORKConsentSection(type: .onlyInDocument)
  55. section6.content = "If you decide to participate in this study, understand that your participation is completely voluntary and that you have the right to abstain from participating or even withdraw at any time of the study without incurring in any penalty. In the application you will find the instructions to withdraw from the study and stop receiving notifications if you wish. You also have the right not to answer any question if you wish. Your participation in this study will not affect in any way your academic evaluation in the courses in which you are carrying out this research. Finally, you have the right to receive a copy of this document.\nIf you have any questions or would like more information about this study, please contact Prof. Ramírez Lugo at 787-764-0000 Ext. 88068, at 787-918-5330 or by email at juan.ramirez3@upr.edu at any moment. If you have any questions about your rights as a participant or claim or complaint related to your participation in this study, you may contact the Compliance Officer of the Río Piedras Campus of the University of Puerto Rico, at telephone 764-0000, extension 86773 or cipshi. degi@upr.edu.\nYour signature on this document means that you have decided to participate voluntarily, that the information presented on this Consent Sheet has been discussed and that you have received a copy of this document. This printed sheet will be stored under lock and key for a period of 5 years after completion of the investigation and will then be shredded and discarded."
  56. if sections == nil {
  57. sections = [section6]
  58. } else {
  59. sections!.append(section6)
  60. }
  61. let signature = ORKConsentSignature(forPersonWithTitle: "Participant", dateFormatString: nil, identifier: "ConsentDocumentParticipantSignature")
  62. addSignature(signature)
  63. }
  64. required init?(coder aDecoder: NSCoder) {
  65. fatalError("init(coder:) has not been implemented")
  66. }
  67. }
  68. extension ORKConsentSectionType: CustomStringConvertible {
  69. public var description: String {
  70. switch self {
  71. case .overview:
  72. return "Overview"
  73. case .dataGathering:
  74. return "Data Gathering"
  75. case .privacy:
  76. return "Privacy"
  77. case .dataUse:
  78. return "Data Use"
  79. case .timeCommitment:
  80. return "Time Commitment"
  81. case .studySurvey:
  82. return "StudySurvey"
  83. case .studyTasks:
  84. return "StudyTasks"
  85. case .withdrawing:
  86. return "Withdrawing"
  87. case .custom:
  88. return "Custom"
  89. case .onlyInDocument:
  90. return "OnlyInDocument"
  91. }
  92. }
  93. }