forked from rdmorganiser/rdmo-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfdnext_template_questions.xml
1232 lines (1214 loc) · 68.4 KB
/
fdnext_template_questions.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
<rdmo xmlns:dc="http://purl.org/dc/elements/1.1/" created="2023-11-21T14:32:20.947272+01:00">
<catalog dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>fdnext-gen</key>
<dc:comment/>
<order>1</order>
<title lang="en">Questionnaire for the creation of a research data policy for research projects</title>
<help lang="en"/>
<title lang="de">Fragenkatalog zur Erstellung einer Projekt-Forschungsdaten-Policy</title>
<help lang="de"/>
</catalog>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/general-information">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>general-information</key>
<path>fdnext-gen/general-information</path>
<dc:comment/>
<catalog dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen"/>
<order>0</order>
<title lang="en">General Information</title>
<title lang="de">Allgemeine Hinweise</title>
</section>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/general-information/general-information_text">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>general-information_text</key>
<path>fdnext-gen/general-information/general-information_text</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/general-information"/>
<questionset/>
<is_collection>False</is_collection>
<order>1</order>
<title lang="en">Introduction</title>
<help lang="en">**What is the Research Data Policy Generator?**
The Research Data Policy Generator is a tool that supports you in creating a research data policy for your research project. It generates text modules based on your answers in the following questionnaire.
**What are the advantages of using the generator?**
Using the generator simplifies the process of policy creation and ensures that all relevant topics are covered.
**How does answering the questions in the generator work?**
For most questions, you can choose from pre-set answers and add customised wording if needed. Some questions require free text answers.
**Can I interrupt the questionnaire and continue later?**
Yes, you can interrupt your work at any time and continue at a later point. You can also use the navigation to jump back and forth between questions and do not need to work on them in the given order.
**In what form are the text modules output?**
After you have completed the questionnaire, you will receive an overview of all questions and answers that you can use to formulate your policy. This overview can be exported to a text processing programme and further edited.
**How long does it take to complete the questionnaire?**
Experience shows that it takes between 30 and 45 minutes to complete the questionnaire. Please note that the time for any upstream coordination processes in the team is not included.
**Do I have to answer all the questions in the questionnaire?**
No, all questions are optional. You only need to answer those that are relevant to your project.
**Where can I find examples of research data policies?**
You can find examples of research data policies at [forschungsdaten.org](https://www.forschungsdaten.org/index.php/Data_Policies).
**Is there any further help for creating a research data policy?**
Yes, in the publication ["Forschungsdaten-Policies für Forschungsprojekte: ein strukturierter Leitfaden"](https://doi.org/10.14279/depositonce-16196) you will find additional guidance on how to create a project-internal research data policy.
**At what point during the project should the tool be used?**
We recommend creating a policy with our tool right at the beginning of the project so that you can commit to common goals in the team right from the start and have enough time for the necessary coordination processes.</help>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Einführung</title>
<help lang="de">**Was ist der Forschungsdaten-Policy-Generator?**
Der Forschungsdaten-Policy-Generator ist ein Werkzeug, das Sie bei der Erstellung einer Forschungsdaten-Policy für Ihr Forschungsprojekt unterstützt. Er generiert Textbausteine basierend auf Ihren Antworten im nachfolgenden Fragebogen.
**Welche Vorteile bietet die Verwendung des Generators?**
Die Nutzung des Generators vereinfacht den Prozess der Policy-Erstellung und stellt sicher, dass alle relevanten Themen abgedeckt werden.
**Wie funktioniert die Beantwortung der Fragen im Generator?**
Bei den meisten Fragen können Sie aus vorgegebenen Antworten auswählen und bei Bedarf individuelle Formulierungen hinzufügen. Einige Fragen erfordern nur Freitextantworten.
**Kann ich die Bearbeitung unterbrechen und später fortsetzen?**
Ja, es ist jederzeit möglich, die Bearbeitung zu unterbrechen und an späterer Stelle fortzusetzen. Auch können Sie über die Navigation zwischen Fragen hin- und herspringen und brauchen sie nicht in der vorgegebenen Reihenfolge zu bearbeiten.
**In welcher Form werden die Textbausteine ausgegeben?**
Nachdem Sie den Fragebogen ausgefüllt haben, erhalten Sie eine Übersicht aller Fragen und Antworten, die Sie zur Formulierung Ihrer Policy nutzen können. Diese Übersicht kann in ein Textverarbeitungsprogramm exportiert und weiterbearbeitet werden.
**Wie lange dauert es, den Fragebogen auszufüllen?**
Erfahrungsgemäß dauert das Ausfüllen des Fragebogens zwischen 30 und 45 Minuten. Bitte beachten Sie, dass die Zeit für ggf. vorgelagerte Abstimmungsprozesse im Team nicht inbegriffen ist.
**Muss ich alle Fragen im Fragebogen beantworten?**
Nein, alle Fragen sind optional. Sie brauchen nur diejenigen beantworten, die für Ihr Projekt relevant sind.
**Wo finde ich Beispiele für Forschungsdaten-Policies?**
Sie können Beispiele für Forschungsdaten-Policies auf [forschungsdaten.org](https://www.forschungsdaten.org/index.php/Data_Policies) finden.
**Gibt es weitere Hilfestellungen zur Erstellung einer Forschungsdaten-Policy?**
Ja, in der Publikation ["Forschungsdaten-Policies für Forschungsprojekte: ein strukturierter Leitfaden"](https://doi.org/10.14279/depositonce-16196) finden Sie zusätzliche Hinweise zur Erstellung einer projektinternen Forschungsdaten-Policy.
**Zu welchem Zeitpunkt der Projektlaufzeit sollte das Tool verwendet werden?**
Wir empfehlen, direkt zu Projektbeginn eine Policy mit unserem Tool zu erstellen, damit Sie sich im Team von Anfang an auf gemeinsame Ziele festlegen und genügend Zeit für die notwendigen Abstimmungsprozesse haben.</help>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/general-information/general-information_text/yesno">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>yesno</key>
<path>fdnext-gen/general-information/general-information_text/yesno</path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/domain/yesno"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/general-information/general-information_text"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en"/>
<text lang="en">Read and understood</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Gelesen und verstanden</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>yesno</widget_type>
<value_type>boolean</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>preamble</key>
<path>fdnext-gen/preamble</path>
<dc:comment/>
<catalog dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen"/>
<order>2</order>
<title lang="en">Preamble</title>
<title lang="de">Präambel</title>
</section>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_description">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>preamble_description</key>
<path>fdnext-gen/preamble/preamble_description</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble"/>
<questionset/>
<is_collection>False</is_collection>
<order>0</order>
<title lang="en">Description of the research project</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Beschreibung des Forschungsprojekts</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_description/description">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>description</key>
<path>fdnext-gen/preamble/preamble_description/description</path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/description/description"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_description"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en">Please provide a brief description of your research project. Please include the title, topic, and goals of your project. Further relevant information could include the names of any other institutions involved as well as the funding organization (for third-party funded projects) and the duration of the project.</help>
<text lang="en">Short description</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Bitte beschreiben Sie ihr Projekt kurz. Nennen Sie dafür den Titel, das Thema sowie Ziele des Forschungsprojektes. Weitere relevante Informationen sind ggf. die weiteren am Projekt beteiligten Institutionen sowie – im Falle von Drittmittelprojekten – die Förderorganisation und die Laufzeit.</help>
<text lang="de">Kurzbeschreibung</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural 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>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_objectives">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>preamble_objectives</key>
<path>fdnext-gen/preamble/preamble_objectives</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble"/>
<questionset/>
<is_collection>False</is_collection>
<order>0</order>
<title lang="en">Policy Objectives</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Ziele der Policy</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_objectives/goals">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>goals</key>
<path>fdnext-gen/preamble/preamble_objectives/goals</path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/goals/goals"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_objectives"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en"/>
<text lang="en">The research data policy seeks to achieve the following goals for the project:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Bitte kreuzen Sie alle zutreffenden Antworten an. Für Ergänzungen nutzen Sie bitte das Freitextfeld.</help>
<text lang="de">Mit der Forschungsdaten-Policy werden für das Projekt folgende Ziele verfolgt:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_definitions">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>preamble_definitions</key>
<path>fdnext-gen/preamble/preamble_definitions</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble"/>
<questionset/>
<is_collection>False</is_collection>
<order>0</order>
<title lang="en">Definitions</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Definitionen</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_definitions/def">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>def</key>
<path>fdnext-gen/preamble/preamble_definitions/def</path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/definitions/definitions"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_definitions"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en">It is best to define any specific terms in the preamble. Please select the definitions that you would like to be part of your policy. If you need to define any additional terms, you can do so in the free text field.</help>
<text lang="en">The following key terms are to be defined:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Sollen bestimmte Begriffe definiert werden, bietet sich die Präambel dafür an. Bitte wählen Sie die Definitionen aus, die Teil Ihrer Policy sein sollen. Sollen weitere Begriffe definiert werden, haben Sie die Möglichkeit, diese im Freitextfeld zu ergänzen.</help>
<text lang="de">Folgende zentrale Begriffe sollen definiert werden:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/definitions"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_definitions/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>02</key>
<path>fdnext-gen/preamble/preamble_definitions/02</path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/definitions/definitions01"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_definitions"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en"/>
<text lang="en">Other definitions relevant to the project:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Weitere für das Projekt relevante Definitionen:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural 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>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>scope</key>
<path>fdnext-gen/scope</path>
<dc:comment/>
<catalog dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen"/>
<order>3</order>
<title lang="en">Scope</title>
<title lang="de">Geltungsbereich</title>
</section>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope/scope">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>scope</key>
<path>fdnext-gen/scope/scope</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope"/>
<questionset/>
<is_collection>False</is_collection>
<order>0</order>
<title lang="en">Persons and research data</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Personenkreis und Forschungsdaten</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope/scope/person">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>person</key>
<path>fdnext-gen/scope/scope/person</path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/scope/persons"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope/scope"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en">Your policy can apply to everyone involved in the research project or to a specific group of persons only. If the latter is the case, please define this group in the free text field.</help>
<text lang="en"/>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Ihre Policy kann für alle am Forschungsprojekt beteiligten Personen gelten oder nur für einen bestimmten Personenkreis. Sollte der zweite Fall zutreffen, definieren Sie den Personenkreis bitte im Freitextfeld.</help>
<text lang="de"/>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/persons"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope/scope/data">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>data</key>
<path>fdnext-gen/scope/scope/data</path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/scope/data"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope/scope"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en">Your policy can cover all or some of the data generated and used within your research project (e.g., just the data generated within the project or just the digital data). If the latter is the case, please define the relevant types of data in the free text field.</help>
<text lang="en"/>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Ihre Policy kann für alle im Rahmen des Forschungsprojekts erhobenen und verwendeten Daten gelten oder nur für einen Teil (z.B. nur für die selbst erhobenen oder nur für die digitalen Daten). Sollte der zweite Fall zutreffen, definieren Sie die betroffenen Datentypen bitte im Freitextfeld.</help>
<text lang="de"/>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data"/>
</optionsets>
<conditions/>
</question>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>legal</key>
<path>fdnext-gen/legal</path>
<dc:comment/>
<catalog dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen"/>
<order>4</order>
<title lang="en">Legal Aspects</title>
<title lang="de">Rechtliche Aspekte</title>
</section>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>legal</key>
<path>fdnext-gen/legal/legal</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal"/>
<questionset/>
<is_collection>False</is_collection>
<order>0</order>
<title lang="en">Ensuring legal compliance</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Gesetze und Richtlinien</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal/law">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>law</key>
<path>fdnext-gen/legal/legal/law</path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/legal/law"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en">The management of research data must take account of legal regulations. Different legal regulations are relevant for different types of research data. For all types of research data, it is always necessary to clarify the copyright status, as this has consequences for usage rights. Data protection law is only relevant when working with personal data. Further legal regulations may be relevant (e.g. in the area of medical research). Should this be the case, you are also expected to demonstrate legally compliant management of data for these areas.</help>
<text lang="en">In addition to copyright, the following laws concerning the handling of research data play a role in the project:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Der Umgang mit Forschungsdaten muss unter Beachtung gesetzlicher Regelungen erfolgen. Dabei sind für unterschiedliche Arten von Forschungsdaten unterschiedliche gesetzliche Regelungen relevant. Immer relevant ist eine Klärung des urheberrechtlichen Status der Forschungsdaten, da sich hieraus Konsequenzen für die Nutzungsrechte ergeben. Das Datenschutzrecht wird lediglich bei der Arbeit mit personenbezogenen Forschungsdaten relevant. Gegebenenfalls können weitere gesetzliche Regelungen relevant sein (z.B. im Bereich der medizinischen Forschung). Sollte dies der Fall sein, sollten Sie auch für diese Rechtsbereiche darlegen, auf welche Weise Sie den gesetzeskonformen Umgang gewährleisten.</help>
<text lang="de">Neben dem Urheberrecht spielen folgende Gesetze, die den Umgang mit Forschungsdaten betreffen, im Projekt eine Rolle:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/law"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal/measure">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>measure</key>
<path>fdnext-gen/legal/legal/measure</path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/legal/lawm"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en">Please be aware that different research data in your project may have different legal status. Consequently, you should always consult the department responsible for copyright issues.</help>
<text lang="en">The handling of research data in compliance with copyright law is ensured in particular by the following measures:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Bitte beachten Sie, dass die Forschungsdaten in Ihrem Projekt einen unterschiedlichen rechtlichen Status haben können. Halten Sie daher unbedingt Rücksprache mit der für Urheberrecht zuständigen Fachabteilung.</help>
<text lang="de">Der urheberrechtskonforme Umgang mit Forschungsdaten wird insbesondere durch folgende Maßnahmen gewährleistet:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/lawm"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal/data">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>data</key>
<path>fdnext-gen/legal/legal/data</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/legal_aspects/ipr"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en">Certain measures for protecting personal data are prescribed by data protection laws. The answer options contain typical data protection measures for research projects. However, you should always consult the person or department responsible for data protection regarding the legal basis as well as suitable technical and organizational measures and any available forms and templates.</help>
<text lang="en">The handling of research data in compliance with data protection law is ensured in particular by the following measures:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Einige Maßnahmen zum Schutz personenbezogener Daten werden durch die Datenschutzgesetze zwingend vorgegeben. Sie finden in den Antwortoptionen typische Maßnahmen zum Datenschutz in Forschungsprojekten. Sie sollten aber in jedem Fall mit der für Datenschutz zuständigen Stelle Rücksprache über die Rechtsgrundlage, geeignete technisch-organisatorische Maßnahmen sowie ggf. vorhandene Vorlagen halten.</help>
<text lang="de">Der datenschutzkonforme Umgang mit Forschungsdaten wird insbesondere durch folgende Maßnahmen gewährleistet:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal/guideline">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>guideline</key>
<path>fdnext-gen/legal/legal/guideline</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/legal_aspects"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>8</order>
<help lang="en">In addition to legal requirements, there are also a number of guidelines which may be relevant for your research project. You should always consult the [Guidelines for Safeguarding Good Research Practice](https://www.dfg.de/download/pdf/foerderung/rechtliche_rahmenbedingungen/gute_wissenschaftliche_praxis/kodex_gwp_en.pdf) published by the German Research Foundation (DFG). Similarly, you should always consult any research data policies produced by the relevant institutions. You can find an overview of guidelines for managing research data that might be relevant for your project [here](https://forschungsdaten.info/themen/ethik-und-gute-wissenschaftliche-praxis/leitlinien-und-policies/).</help>
<text lang="en">Furthermore, in addition to the DFG's Guidelines for Safeguarding Good Research Practice, the following guidelines are relevant to the handling of research data in the project:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Für Ihr Forschungsprojekt gibt es neben den gesetzlichen Vorgaben weitere Richtlinien, die relevant sein können. Der [Kodex zur Sicherung guter wissenschaftlicher Praxis](https://www.dfg.de/download/pdf/foerderung/rechtliche_rahmenbedingungen/gute_wissenschaftliche_praxis/kodex_gwp.pdf) der DFG muss in jedem Fall berücksichtigt werden. Wenn vorhanden, müssen auch die jeweiligen institutionellen Forschungsdaten-Policies berücksichtigt werden. Eine Übersicht mit weiteren Leitlinien zum Umgang mit Forschungsdaten, die für Sie relevant sein könnten, finden Sie auf [forschungsdaten.info](https://forschungsdaten.info/themen/ethik-und-gute-wissenschaftliche-praxis/leitlinien-und-policies/).</help>
<text lang="de">Darüber hinaus sind im Umgang mit den Forschungsdaten neben dem Kodex zur Sicherung guter wissenschaftlicher Praxis der DFG im Projekt folgende Richtlinien relevant:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines"/>
</optionsets>
<conditions/>
</question>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/accountability">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>accountability</key>
<path>fdnext-gen/accountability</path>
<dc:comment/>
<catalog dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen"/>
<order>5</order>
<title lang="en">Accountability</title>
<title lang="de">Verantwortlichkeit</title>
</section>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/accountability/accountability">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>accountability</key>
<path>fdnext-gen/accountability/accountability</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/accountability"/>
<questionset/>
<is_collection>False</is_collection>
<order>0</order>
<title lang="en">Responsibility for implementing the policy</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Zuständigkeit für die Umsetzung der Policy</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/accountability/accountability/responsibilty">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>responsibilty</key>
<path>fdnext-gen/accountability/accountability/responsibilty</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/data_management/name"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/accountability/accountability"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en">The implementation of the policy involves several tasks that can be in the responsibility of different people involved in the project. These can be, for example, the project lead, the project coordination, a data steward or the individual researchers. Please tick the relevant tasks for your project in the list below and indicate which person is responsible for them.</help>
<text lang="en">Responsibility for the practical implementation of the measures contained in the policy lies with the following person(s):</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Die Umsetzung der Policy umfasst mehrere Aufgaben, die in den Zuständigkeitsbereichen verschiedener am Projekt beteiligter Personen liegen können. Dies können z.B. die Projektleitung, die Projektkoordination, ein*e Data Steward oder die einzelnen Forschenden sein. Bitte kreuzen Sie in der nachfolgenden Liste die für Ihr Projekt relevanten Aufgaben an und geben Sie dahinter an, welche Person dafür zuständig ist.</help>
<text lang="de">Für die Umsetzung der in der Policy formulierten Grundsätze sind die folgenden Personen zuständig:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/responsibility"/>
</optionsets>
<conditions/>
</question>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>rd</key>
<path>fdnext-gen/rd</path>
<dc:comment/>
<catalog dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen"/>
<order>6</order>
<title lang="en">Managing research data</title>
<title lang="de">Umgang mit Forschungsdaten</title>
</section>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/storage">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>storage</key>
<path>fdnext-gen/rd/storage</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd"/>
<questionset/>
<is_collection>False</is_collection>
<order>1</order>
<title lang="en">Storage and data organization</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Speicherung und Datenorganisation</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/storage/location">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>location</key>
<path>fdnext-gen/rd/storage/location</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/storage"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en">Please use the free text field to provide further details as required.</help>
<text lang="en">The following agreements are made regarding data storage:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Bitte geben Sie an, welche Absprachen bezüglich der Speicherung und Datenorganisation getroffen wurden. Für eventuelle Spezifizierungen nutzen Sie bitte das Freitextfeld.</help>
<text lang="de">Es werden folgende Absprachen bezüglich der Speicherung von Forschungsdaten getroffen:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/storage"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/storage/backup">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>backup</key>
<path>fdnext-gen/rd/storage/backup</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/data_security/backup_responsible/name"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/storage"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en">Please use the free text field to provide further details as required.</help>
<text lang="en">The following specifications exist for the back-up of the data:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Bitte geben Sie an, welche Regelungen in Bezug auf die Erstellung von Back-Ups der Forschungsdaten bestehen. Für eventuelle Spezifizierungen nutzen Sie bitte das Freitextfeld.</help>
<text lang="de">Es bestehen folgende Festlegungen zum Back-Up der Daten:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/backup"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/storage/access">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>access</key>
<path>fdnext-gen/rd/storage/access</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/data_security/access_permissions"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/storage"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en">Please use the free text field to provide further details as required.</help>
<text lang="en">The following regulations apply regarding access:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Bitte geben Sie an, welche Regeln in Bezug auf den Zugriff auf die im Rahmen des Projekts entstandenen Forschungsdaten bestehen. Für eventuelle Spezifizierungen nutzen Sie bitte das Freitextfeld.</help>
<text lang="de">Es gelten folgende Zugriffsregelungen:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/access"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/storage/name">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>name</key>
<path>fdnext-gen/rd/storage/name</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/storage/naming_policy"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/storage"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>3</order>
<help lang="en">Please use the free text field to provide further details as required.</help>
<text lang="en">The following specifications apply to naming files and to file and folder structures:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Bitte geben Sie an, welche Festlegungen zur Benennung von Dateien und zur Datei- und Ordnerstruktur getroffen wurden. Für eventuelle Spezifizierungen nutzen Sie bitte das Freitextfeld.</help>
<text lang="de">Folgende Festlegungen wurden zur Benennung von Dateien und zur Datei- und Ordnerstruktur getroffen:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/name"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/documentation">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>documentation</key>
<path>fdnext-gen/rd/documentation</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd"/>
<questionset/>
<is_collection>False</is_collection>
<order>2</order>
<title lang="en">Documenting data</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Datendokumentation</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/documentation/documentation">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>documentation</key>
<path>fdnext-gen/rd/documentation/documentation</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/metadata/creation"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/documentation"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en">It is necessary to document data so that it can be retraced, understood and interpreted at a later date. There are different options for documenting data according to the data type. For quantitative surveys these include field reports and method reports; for laboratory studies, a (electronic) laboratory book; for qualitative data, a contextualization. Please indicate the format and procedure for recording research data within the project.</help>
<text lang="en">Research data should be documented as follows:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Eine Datendokumentation ist notwendig, damit Dritte die Forschungsdaten verstehen und nachnutzen zu können. Sie beinhaltet z.B. Informationen zum Kontext der Erhebung und zu den durchgeführten Verarbeitungsschritten sowie Erläuterungen zu Abkürzungen oder Codes.</help>
<text lang="de">Die Forschungsdaten sollen in folgender Form dokumentiert werden:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/options/documentation"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/archive">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>archive</key>
<path>fdnext-gen/rd/archive</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd"/>
<questionset/>
<is_collection>False</is_collection>
<order>3</order>
<title lang="en">Archiving</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Archivierung</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/archive/archive">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>archive</key>
<path>fdnext-gen/rd/archive/archive</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/preservation/repository"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/archive"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en">Good research practice requires that research data are stored for a minimum period of ten years. This can either be at the individual institution or using a multi-site repository or data archive.</help>
<text lang="en">By the end of the project, the research data will be stored for ten years at the following location:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Bitte beachten Sie, dass Forschungsdaten im Rahmen einer guten wissenschaftlichen Praxis für mindestens 10 Jahre aufbewahrt werden müssen. Dies kann entweder lokal an einer Einrichtung oder über ein standortübergreifendes Repositorium oder Datenarchiv erfolgen.</help>
<text lang="de">Die Forschungsdaten werden nach Ablauf des Projekts an folgenden Orten für zehn Jahre aufbewahrt:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/archive-repo"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/publication">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>publication</key>
<path>fdnext-gen/rd/publication</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd"/>
<questionset/>
<is_collection>False</is_collection>
<order>4</order>
<title lang="en">Publishing and licenses</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Veröffentlichung und Lizenzen</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/publication/pub">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>pub</key>
<path>fdnext-gen/rd/publication/pub</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sharing/yesno"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/publication"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en">The [DFG’s Guidelines for Safeguarding Good Research Practice](https://www.dfg.de/download/pdf/foerderung/rechtliche_rahmenbedingungen/gute_wissenschaftliche_praxis/kodex_gwp_en.pdf) recommends the publication of all research data necessary for verifying research findings as long as there are no legal, contractual or ethical reasons for not doing so. Reasons for not publishing data include plans to register a patent, confidentiality agreements when working with partners from industry or data protection. Decisions regarding which processing stage of the research data is necessary for verifying results (e.g. raw data or processed data) are at the discretion of the researchers. Please indicate whether all research data generated in the project should be published or only such data as are necessary for verifying results.</help>
<text lang="en">The following research data resulting from the project will be made publicly accessible:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Der [DFG-Kodex zur guten wissenschaftlichen Praxis](https://www.dfg.de/download/pdf/foerderung/rechtliche_rahmenbedingungen/gute_wissenschaftliche_praxis/kodex_gwp.pdf) sieht die Veröffentlichung aller Forschungsdaten vor, die zur Nachprüfung des Forschungsergebnisses notwendig sind, sofern keine rechtlichen, vertraglichen oder ethischen Gründe entgegenstehen. Gründe, die gegen eine Veröffentlichung sprechen, können z.B. eine geplante Patentanmeldung, Geheimhaltungsabsprachen bei Industriekooperationen oder der Datenschutz sein. Welche Verarbeitungsstufe der Forschungsdaten für die Überprüfbarkeit der Ergebnisse notwendig ist (z.B. Rohdaten oder verarbeitete Daten), liegt im Ermessen der Forschenden. Bitte geben Sie an, ob alle im Projekt entstehenden Forschungsdaten veröffentlicht werden sollen oder nur diejenigen, die zur Nachprüfung der wissenschaftlichen Ergebnisse notwendig sind.</help>
<text lang="de">Folgende im Projekt entstandene Forschungsdaten werden öffentlich zur Verfügung gestellt:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/publication"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/publication/place">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>place</key>
<path>fdnext-gen/rd/publication/place</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sharing/repository"/>
<questionset dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd/publication"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en">Repositories or data centers are to be used for the publication of research data, as these enable the research data to be made available in accordance with the FAIR principles (e.g., through DOI assignment and indexing with standardized metadata). Different types of data repositories are available. For example, there are institutional repositories (e.g., [DepositOnce](https://depositonce.tu-berlin.de/home) at TU Berlin), subject-specific repositories (e.g., [SowiDataNet|datorium](https://data.gesis.org/sharing/#!Home) for the social sciences or [Pangaea](https://www.pangaea.de/) for the geosciences), and cross-disciplinary repositories (e.g., [Zenodo](https://zenodo.org/)). Typically, the institution's research data management teams assist in selecting an appropriate repository.</help>
<text lang="en">The research data generated in the project are to be published at the following location:</text>
<default_text lang="en"/>