-
Notifications
You must be signed in to change notification settings - Fork 0
/
consent-gen.xml
2369 lines (2353 loc) · 108 KB
/
consent-gen.xml
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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<rdmo xmlns:dc="http://purl.org/dc/elements/1.1/" created="2024-06-11T12:01:11.733235+02:00" version="2.1.3">
<catalog dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen</uri_path>
<dc:comment/>
<order>-1</order>
<title lang="en">Katalogue for genrating a declaration of consent</title>
<help lang="en"/>
<title lang="de">Fragenkatalog zur Erstellung einer Einwilligungserklärung</title>
<help lang="de"/>
<sections>
<section dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/introduction" order="0"/>
<section dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information" order="1"/>
<section dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information_obligation" order="2"/>
<section dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/consent-gen" order="3"/>
</sections>
</catalog>
<section dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/introduction">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/introduction</uri_path>
<dc:comment/>
<title lang="en">Introduction</title>
<title lang="de">Einführung</title>
<pages>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/introduction/notes" order="1"/>
</pages>
</section>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/introduction/notes">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/introduction/notes</uri_path>
<dc:comment/>
<attribute/>
<is_collection>False</is_collection>
<title lang="en">Notes</title>
<help lang="en">TODO</help>
<verbose_name lang="en"/>
<title lang="de">Hinweise</title>
<help lang="de">**Was ist der Fragenkatalog zur Generierung einer Einwilligungserklärung?**
Der Einwilligungserklärung-Generator soll Sie bei der Erstellung einer Einwilligungserklärung für Ihr Forschungsprojekt unterstützen.
Der Fragenkatalog führt sie dabei durch die wichtigsten Aspekte einer informierten Einwilligungserklärung. Durch die Ansicht werden automatisiert Textbausteine generiert, welche als Grundlage für eine Einwilligungserklärung genutzt werden können.
**Wichtige Hinweise**
<ul>
<li>Dieser Generator stellt eine Hilfestellung dar, um Sie bei der Erstellung einer Einwilligungserklärung zu unterstützen.
</li>
<li>Es besteht kein Anspruch auf Vollständigkeit und Ihre individuellen Bedarfe können von diesem Fragenkatalog möglicherweise nicht abgedeckt sein.
</li>
<li>Bitte halten Sie daher auf jeden Fall Rücksprache mit den Datenschutzbeauftragten Ihrer Institution!
Im besten Fall ziehen Sie Ihre Datenschutzbeauftragten in die Erstellung der Einwilligungserklärung mit ein, indem Sie bereits vor dem Ausfüllen des Fragenkatalogs Kontakt aufnehmen.
Zudem können Sie Datenschutz-Exptertinnen und -Experten zu Ihrem RDMO-Projekt hinzufügen
</li>
<li> Durch den Generator wird kein fertiges, druckreifes Dokument erzeugt. Sie müssen dieses in ein anderes Format exportieren und notwendige Formulierungen anpassen oder hinzufügen.
</li>
<li> Kopieren Sie keine existierenden Einwilligungserklärungen -- hierdurch werden möglicherweise Formulierungen kopiert, welche für das aktuelle Projekt ungültig sind.
</li>
</ul>
**Generierte Textbausteine**
Nach der Beantwortung der Fragen kann in der Projektansicht bei der "Ansicht für den Generator der Einwilligungserklärungen", basierend auf Ihren Antworten, eine Vorlage für eine Einwilligungserklärung angesehen werden. Bedenken Sie, dass Ihre Antworten -- und auch nicht gegebene Antworten -- diese Vorlage beeinflussen.
Im Anschluss können Sie die generierte Vorlage in diverse Formate exportieren und weiterverarbeiten.
Das komplette Dokument besteht aus drei Bereichen, welches sich in der Struktur des Fragenkatalogs spiegelt.
**Wie ist der Fragenkatalog aufgebaut?**
Der Fragenkatalog besteht aus drei Abschnitten:
<ul>
<li>Informationen zum Forschungsprojekt. Diese Informationen werden genutzt, um die Textbausteine des Anschreibens zu füllen </li>
<li>Datenschutzrechtlicher Informationsteil. Hier werden Informationen abgefragt, die sich u.a. aus <a href="https://dsgvo-gesetz.de/art-13-dsgvo/">Artikel 13</a> und <a href="https://dsgvo-gesetz.de/art-14-dsgvo/">Artikel 14</a> der DSGVO ergeben </li>
<li>Einwilligungsteil. Hier wird die Einwilligung abgefragt. Zudem besteht die Möglichkeit, für jede Zweckänderung eine separate Einwilligung anzulegen. </li>
</ul>
**Quellen, Referenzen**
<ul>
<li> Für die Erstellung dieses Fragenkatalogs wurden einige Formulierungsbeispiele des Leibniz-Institut für Bildungsforschung und Bildungsinformation verwendet und adaptiert:
Verbund Forschungsdaten Bildung: Formulierungsbeispiele für "informierte Einwilligungen". Version 2.1. Frankfurt am Main: DIPF | Leibniz-Institut für Bildungsforschung und Bildungsinformation 2018, 8 S. - (fdb info; 4) - URN: urn:nbn:de:0111-pedocs-223018 - <a href="https://doi.org/10.25656/01:22301">DOI: 10.25656/01:22301</a>
</li>
<li>
Verbund Forschungsdaten Bildung: Checkliste zur Erstellung rechtskonformer Einwilligungserklärungen mit besonderer Berücksichtigung von Erhebungen an Schulen, Version 2.0. Frankfurt am Main: DIPF | Leibniz-Institut für Bildungsforschung und Bildungsinformation, 2019, <a href="https://doi.org/10.25656/01:22297">DOI: 10.25656/01:22297</a>
</li>
<li>
Schaar, K. (2017). Die informierte Einwilligung als Voraussetzung für die (Nach-)nutzung von Forschungsdaten. Beitrag zur Standardisierung von Einwilligungserklärungen im Forschungsbereich unter Einbeziehung der Vorgaben der DS-GVO und Ethikvorgaben. RatSWD Working Paper 264/2017. Rat für Sozial- und Wirtschaftsdaten (RatSWD).
<a href="https://doi.org/10.17620/02671.12">DOI: https://doi.org/10.17620/02671.12</a>.
</li>
<li> Beachten Sie die entsprechenden Artikel der Datenschutzgrundverordnung: <a href="https://dsgvo-gesetz.de/">Link zur DSGVO</a> </li>
</ul></help>
<verbose_name lang="de"/>
<questionsets/>
<questions/>
<conditions/>
</page>
<section dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information</uri_path>
<dc:comment/>
<title lang="en">Informations</title>
<title lang="de">Informationen</title>
<pages>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/general-informations" order="0"/>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/introduction/formulations" order="1"/>
</pages>
</section>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/general-informations">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information/general-informations</uri_path>
<dc:comment/>
<attribute/>
<is_collection>False</is_collection>
<title lang="en">Informations about the project</title>
<help lang="en"/>
<verbose_name lang="en"/>
<title lang="de">Informationen über das Forschungsprojekt</title>
<help lang="de">Die eingegebenen Informationen auf dieser Seite werden in der Ansicht (View) in das Anschreiben eingefügt.</help>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/project-name" order="0"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/project-description" order="1"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/participants" order="2"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/funding" order="3"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/questions-person" order="4"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/information-date" order="5"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/information-date-person" order="6"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/information_sender" order="7"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/project-name">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information/project-name</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/information_project_name"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">State the project the personal data is processed.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Geben Sie eine Projektbezeichnung oder einen Titel an. Dieser Titel wird in der Ansicht als Überschrift verwendet.</help>
<text lang="de">Benennen Sie das Projekt, in dem die Daten erhoben und verarbeitet werden.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/project-description">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information/project-description</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/information_project_description"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Describe the research project.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Beschreiben Sie den Inhalt und die Ziele des Forschungsprojekts. Verwenden Sie eine Beschreibung, die für die Teilnehmenden/Probanden verständlich ist. Der Zweck der Datenerhebung sollte hier nicht beschrieben werden, da diese Information im datenschutzrechtlichen Informationsteil behandelt wird.
Sollten Sie eine Projektbeschreibung eingeben, wird dieser Text in der Ansicht nach dem Anschreiben eingefügt.</help>
<text lang="de">Beschreiben Sie Ihr Forschungsprojekt.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/participants">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information/participants</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/information_participants"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the participants of the project.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Geben Sie die beteiligten Abteilungen, Institute und/oder Institutionen an.
Sollten Sie die Beteiligten benennen, werden diese in der Ansicht nach dem Anschreiben eingefügt.</help>
<text lang="de">Nennen Sie die Beteiligten des Forschungsprojekts.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/funding">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information/funding</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/information_funding"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the funding institution of the project.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Falls es für die Einwilligungserklärung relevant ist, nennen Sie die Fördereinrichtung Ihres Projekts. Beachten Sie bitte den Fördervertrag, da dieser u.a. für die Verantwortlichkeiten relevant sein könnte.
Sollten Sie eine Fördereinrichtung nennen wird diese in der Ansicht im Anschreiben eingefügt.</help>
<text lang="de">Nennen Sie die Fördereinrichtung des Forschungsprojekts.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/questions-person">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information/questions-person</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/information_questions_person"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en">Name a person, an email address, a telephone number, and/or a postal address.</help>
<text lang="en">Please name the contact person in case the participants have queries or questions of understanding.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Geben Sie einen Namen, eine eMail-Adresse, eine Telefonnummer und/oder die Anschrift an.
Diese Informationen werden in der Ansicht im Anschreiben eingefügt.</help>
<text lang="de">Bitte benennen Sie die Ansprechperson, falls die Teilnehmenden Rückfragen oder Verständnisfragen haben.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/information-date">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information/information-date</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/information_due_date"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">When do the participants need to sign and turn in the declaration of consent?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Geben Sie ein Datum an, bis zu dem die Teilnehmenden das Dokument unterschreiben und zurückgeben sollen.
Falls Sie ein Datum angeben, wird dieses in der Ansicht in dem Anschreiben eingefügt.</help>
<text lang="de">Bis wann müssen die Teilnehmenden die Einwilligungserklärung unterschreiben?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/information-date-person">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information/information-date-person</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/information_due_date_person"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Who should the participants send/give back the (signed) declaration of consent?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Falls Sie eine Person benennen, wird diese Information in der Ansicht in dem Anschreiben eingefügt.</help>
<text lang="de">Wem sollen die Teilnehmenden die (unterschriebene) Einwilligungserklärung zurück senden/geben?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/information_sender">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information/information_sender</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/information_sender"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Who is the sender of the cover letter?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Falls Sie einen Absender angeben, wird diese Person in der Ansicht als Absender des Anschreibens eingefügt. Falls Sie keine Person nennen, wird der Default-Wert "Projektleitung" eingesetzt.</help>
<text lang="de">Wer ist der Absender des Anschreibens?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/introduction/formulations">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/introduction/formulations</uri_path>
<dc:comment/>
<attribute/>
<is_collection>False</is_collection>
<title lang="en">Formulations</title>
<help lang="en"/>
<verbose_name lang="en"/>
<title lang="de">Formulierungen</title>
<help lang="de"/>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/salutation" order="0"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/request-approval" order="1"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/consent-gen/introduction/informations/voluntary" order="2"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/thanks" order="3"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/salutation">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information/salutation</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/information_salutation"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Phrase the initial salutation.</text>
<default_text lang="en">Dear Sir or madam</default_text>
<verbose_name lang="en"/>
<help lang="de">Beispiele: "Sehr geehrte Damen und Herren", "Liebe Studierende".
Der vorgegebene Default-Text ist "Sehr geehrte Damen und Herren".</help>
<text lang="de">Wählen Sie die initiale Anrede für das Anschreiben.</text>
<default_text lang="de">Sehr geehrte Damen und Herren</default_text>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/request-approval">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information/request-approval</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/information_approval"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Statement for approval request.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Dieser Text wird im Anschreiben direkt hinter der Anrede verwendet.
Der vorgegebene Default-Text lautet wie folgt:
"im Folgenden informieren wir Sie über den Umgang mit Ihren personenbezogenen Daten und bitten um Ihre Zustimmung zur Teilnahme an unserer Studie sowie zur Verwendung Ihrer Daten für die angegebenen Zwecke."</help>
<text lang="de">Text für die Bitte zur Zustimmung.</text>
<default_text lang="de">im Folgenden informieren wir Sie über den Umgang mit Ihren personenbezogenen Daten und bitten um Ihre Zustimmung zur Teilnahme an unserer Studie sowie zur Verwendung Ihrer Daten für die angegebenen Zwecke.</default_text>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/consent-gen/introduction/informations/voluntary">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/consent-gen/introduction/informations/voluntary</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/consent_declaration_voluntary"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Statement for voluntary participation and declaration of consent.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Der Default-Text lautet wie folgt:
"Ihre Teilnahme an unserer Studie ist in jedem Fall freiwillig. Lehnen Sie die Teilnahme ab oder widerrufen oder beschränken Sie Ihre Einwilligung, entstehen Ihnen hieraus keine Nachteile."</help>
<text lang="de">Text für die Freiwilligkeit der Teilnahme und Einwilligung.</text>
<default_text lang="de">Ihre Teilnahme an unserer Studie ist in jedem Fall freiwillig. Lehnen Sie die Teilnahme ab oder widerrufen oder beschränken Sie Ihre Einwilligung, entstehen Ihnen hieraus keine Nachteile.</default_text>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information/thanks">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information/thanks</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/information_thanks"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Who is the sender of the cover letter?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Der Text wird im Anschreiben am Ende eingefügt. Der Default-Text lautet: "Wir danken Ihnen für Ihre Mitwirkung und Ihr Vertrauen in unsere Arbeit."</help>
<text lang="de">Text für eine Danksagung</text>
<default_text lang="de">Wir danken Ihnen für Ihre Mitwirkung und Ihr Vertrauen in unsere Arbeit.</default_text>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<section dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information_obligation">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information_obligation</uri_path>
<dc:comment/>
<title lang="en">Necessary informations</title>
<title lang="de">Datenschutzrechtlicher Informationsteil</title>
<pages>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/name_contact_responsible" order="0"/>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/purpose_legal_basis" order="1"/>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/data_categories" order="2"/>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/receiver" order="3"/>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/third_country" order="4"/>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/contact_data_protection_officer" order="5"/>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/rights" order="6"/>
</pages>
</section>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/name_contact_responsible">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information-obligation/name_contact_responsible</uri_path>
<dc:comment/>
<attribute/>
<is_collection>False</is_collection>
<title lang="en">Name and contact of responsible person</title>
<help lang="en"/>
<verbose_name lang="en"/>
<title lang="de">Name und Kontaktdaten der Verantwortlichen</title>
<help lang="de"/>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/name_institution" order="0"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/address" order="1"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/telephone" order="2"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/email" order="3"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/name_institution">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/name_institution</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_name_institution"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the person which is responsible for data protection.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Geben Sie den Namen der für den Datenschutz in diesem Projekt verantwortlichen Person an.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/address">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/address</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_address"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the address of the person who is responsible for data protection.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Geben Sie die Adresse der für den Datenschutz in diesem Projekt verantwortlichen Person an.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/telephone">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/telephone</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_telephone"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the telephone number of the person who is responsible for data protection.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Geben Sie die Telefonnummer der für den Datenschutz in diesem Projekt verantwortlichen Person an.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/email">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/email</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_email"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the email address of the person who is responsible for data protection.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Geben Sie die email-Adresse der für den Datenschutz in diesem Projekt verantwortlichen Person an.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/purpose_legal_basis">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information-obligation/purpose_legal_basis</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_purpose_legal_basis/obligation_purpose_legal_basis_id"/>
<is_collection>True</is_collection>
<title lang="en">Purposes and legal bases</title>
<help lang="en">Add an Item for each purpose with its legal basis.</help>
<verbose_name lang="en">Item</verbose_name>
<title lang="de">Zwecke und Rechtsgrundlagen</title>
<help lang="de">Legen Sie für jeden Zweck mit der zugehörigen Rechtsgrundlage einen eigenen Zweck an.</help>
<verbose_name lang="de">Zweck</verbose_name>
<questionsets/>
<questions>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/purpose" order="0"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/legal_basis" order="1"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/purpose">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/purpose</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_purpose_legal_basis/obligation_purpose"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the purpose of the data processing</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Geben Sie den Zweck der Datenverarbeitung an</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/legal_basis">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/legal_basis</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_purpose_legal_basis/obligation_legal_basis"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the legal basis of the data processing</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Geben Sie die Rechtsgrundlage der Verarbeitung an</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/data_categories">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information-obligation/data_categories</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_data_categories/obligation_data_categories_id"/>
<is_collection>True</is_collection>
<title lang="en">Data categories</title>
<help lang="en">Add an Item for each data category.</help>
<verbose_name lang="en">Item</verbose_name>
<title lang="de">Datenkategorien</title>
<help lang="de">Legen Sie für jede Datenkategorie eine eigene Kategorie an.</help>
<verbose_name lang="de">Kategorie</verbose_name>
<questionsets/>
<questions>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/data_category" order="0"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/data_type" order="1"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/data_category">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/data_category</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_data_categories/obligation_data_category"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the a data category</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Geben Sie eine Datenkategorie an</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/data_type">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/data_type</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_data_categories/obligation_data_type"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the type of data</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Geben Sie den Typ der Daten an</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/receiver">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information-obligation/receiver</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/receiver/receiver_id"/>
<is_collection>True</is_collection>
<title lang="en">Receiver of data</title>
<help lang="en"/>
<verbose_name lang="en">Receiver</verbose_name>
<title lang="de">Empfänger der Daten</title>
<help lang="de">Geben Sie die Empfänger bzw. die Kategorie von Empfängern der Daten an. Legen Sie für jeden Empfänger/jede Kategorie einen Empfänger an.
Werden keine Daten übertragen, dann legen Sie kein Set an und überspringen Sie diese Frage.</help>
<verbose_name lang="de">Empfänger</verbose_name>
<questionsets/>
<questions>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/receiver" order="0"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/receiver_legal_basis" order="1"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/receiver">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/receiver</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/receiver/receiver_name"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the receiver or the receiver category of the data, respectively</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Nennen Sie den Empfänger bzw. die Kategorie von Empfängern für die Daten</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/receiver_legal_basis">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/receiver_legal_basis</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/receiver/receiver_legal_basis"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the legal basis for the data transfer</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Nennen Sie die Rechtsgrundlage für die Datenübertragung</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/third_country">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information-obligation/third_country</uri_path>
<dc:comment/>
<attribute/>
<is_collection>False</is_collection>
<title lang="en">Third country and international organization</title>
<help lang="en"/>
<verbose_name lang="en"/>
<title lang="de">Drittland und internationale Organisation</title>
<help lang="de"/>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/third_country" order="0"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/third_country">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/third_country</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/third_country"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Name the third country or international organization the personal data is transmitted to</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Nennen Sie das Drittland oder die internationale Organisation, an welche personenbezogene Daten übertragen werden</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<page dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/information-obligation/contact_data_protection_officer">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/information-obligation/contact_data_protection_officer</uri_path>
<dc:comment/>
<attribute/>
<is_collection>False</is_collection>
<title lang="en">Contact of the data protection officer.</title>
<help lang="en"/>
<verbose_name lang="en"/>
<title lang="de">Kontaktdaten der/des Datenschutzbeauftragten.</title>
<help lang="de"/>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/name_data_protection_officer" order="0"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/address_data_protection_officer" order="1"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/telephone_data_protection_officer" order="2"/>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/email_data_protection_officer" order="3"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/name_data_protection_officer">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/name_data_protection_officer</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_name_data_protection_officer"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Give the name of the data protection officer.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Geben Sie den Namen der/des Datenschutzbeauftragten an.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/address_data_protection_officer">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/address_data_protection_officer</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_address_data_protection_officer"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Give the address of the data protection officer.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Geben Sie die Adresse der/des Datenschutzbeauftragten an.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm.tu-dortmund.de/questions/consent-gen/obligation/telephone_data_protection_officer">
<uri_prefix>https://fdm.tu-dortmund.de</uri_prefix>
<uri_path>consent-gen/obligation/telephone_data_protection_officer</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.tu-dortmund.de/terms/domain/project/obligation/obligation_telephone_data_protection_officer"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Give the telephone numer of the data protection officer.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Geben Sie die Telefonnummer der/des Datenschutzbeauftragten an.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>