forked from rdmorganiser/rdmo-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fdnext_template.xml
2481 lines (2443 loc) · 120 KB
/
fdnext_template.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-07-25T15:04:41.768848+02:00" version="2.1.3">
<catalog dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-gen</uri_path>
<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"/>
<sections>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/general-information" order="0"/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble" order="2"/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope" order="3"/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal" order="4"/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/accountability" order="5"/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/rd" order="6"/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/passage" order="11"/>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/end" order="12"/>
</sections>
</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>
<uri_path>fdnext-gen/general-information</uri_path>
<dc:comment/>
<title lang="en">General Information</title>
<title lang="de">Allgemeine Hinweise</title>
<pages>
<page dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/general-information/general-information_text" order="1"/>
</pages>
</section>
<page 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>
<uri_path>fdnext-gen/general-information/general-information_text</uri_path>
<dc:comment/>
<attribute/>
<is_collection>False</is_collection>
<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"/>
<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"/>
<questionsets/>
<questions>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/general-information/general-information_text/yesno" order="0"/>
</questions>
<conditions/>
</page>
<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>
<uri_path>fdnext-gen/general-information/general-information_text/yesno</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/domain/yesno"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Read and understood</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Gelesen und verstanden</text>
<default_text lang="de"/>
<verbose_name 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>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/domain/yesno">
<uri_prefix>https://fdm.ub.tu-berlin.de/domain/fdnext</uri_prefix>
<key>yesno</key>
<path>yesno</path>
<dc:comment/>
<parent/>
</attribute>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-gen/preamble</uri_path>
<dc:comment/>
<title lang="en">Preamble</title>
<title lang="de">Präambel</title>
<pages>
<page dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_description" order="0"/>
<page dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_objectives" order="1"/>
<page dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_definitions" order="2"/>
</pages>
</section>
<page dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_description">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-gen/preamble/preamble_description</uri_path>
<dc:comment/>
<attribute/>
<is_collection>False</is_collection>
<title lang="en">Description of the research project</title>
<help lang="en"/>
<verbose_name lang="en"/>
<title lang="de">Beschreibung des Forschungsprojekts</title>
<help lang="de"/>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_description/description" order="0"/>
</questions>
<conditions/>
</page>
<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>
<uri_path>fdnext-gen/preamble/preamble_description/description</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/description/description"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<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"/>
<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"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/description/description">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>description</key>
<path>fdnext/description/description</path>
<dc:comment/>
<parent dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/description"/>
</attribute>
<page dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_objectives">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-gen/preamble/preamble_objectives</uri_path>
<dc:comment/>
<attribute/>
<is_collection>False</is_collection>
<title lang="en">Policy Objectives</title>
<help lang="en"/>
<verbose_name lang="en"/>
<title lang="de">Ziele der Policy</title>
<help lang="de"/>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_objectives/goals" order="0"/>
</questions>
<conditions/>
</page>
<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>
<uri_path>fdnext-gen/preamble/preamble_objectives/goals</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/goals/goals"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<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"/>
<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"/>
<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>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/goals/goals">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>goals</key>
<path>fdnext/goals/goals</path>
<dc:comment/>
<parent dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/goals"/>
</attribute>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-goals</uri_path>
<dc:comment/>
<provider_key/>
<options>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/01" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/02" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/03" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/04" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/05" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/06" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/07" order="0"/>
</options>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-goals/01</uri_path>
<dc:comment/>
<text lang="en">Establish a uniform approach to managing research data</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Etablierung eines einheitlichen Vorgehens im Umgang mit Forschungsdaten</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-goals/02</uri_path>
<dc:comment/>
<text lang="en">Facilitate cooperation</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Erleichterung der Zusammenarbeit</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/03">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-goals/03</uri_path>
<dc:comment/>
<text lang="en">Provide orientation for (new) employees</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Orientierung für (neue) Mitarbeiter*innen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/04">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-goals/04</uri_path>
<dc:comment/>
<text lang="en">Establish a framework for data management plans</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Bildung des Rahmens für Datenmanagementpläne</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/05">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-goals/05</uri_path>
<dc:comment/>
<text lang="en">Achieve transparency both internally and externally</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Herstellung von Transparenz nach innen und außen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/06">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-goals/06</uri_path>
<dc:comment/>
<text lang="en">Ensure compliance with funding policy and legal requirements</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Sicherstellen von Compliance mit förderpolitischen und gesetzlichen Vorgaben</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals/07">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-goals/07</uri_path>
<dc:comment/>
<text lang="en">Further goals</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Weitere</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input>text</additional_input>
</option>
<page dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_definitions">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-gen/preamble/preamble_definitions</uri_path>
<dc:comment/>
<attribute/>
<is_collection>False</is_collection>
<title lang="en">Definitions</title>
<help lang="en"/>
<verbose_name lang="en"/>
<title lang="de">Definitionen</title>
<help lang="de"/>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_definitions/def" order="1"/>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/preamble/preamble_definitions/02" order="2"/>
</questions>
<conditions/>
</page>
<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>
<uri_path>fdnext-gen/preamble/preamble_definitions/def</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/definitions/definitions"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<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"/>
<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"/>
<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>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/definitions/definitions">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>definitions</key>
<path>fdnext/definitions/definitions</path>
<dc:comment/>
<parent dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/definitions"/>
</attribute>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/definitions">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>definitions</uri_path>
<dc:comment/>
<provider_key/>
<options>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/definitions/01" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/definitions/02" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/definitions/03" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/definitions/04" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/definitions/05" order="0"/>
</options>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/definitions/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>definitions/01</uri_path>
<dc:comment/>
<text lang="en">Researchers: In terms of this research policy, researchers refers to all professors, research associates and assistants, doctoral candidates, research students and other employees conducting research within the project.</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Forschende: Forschende im Sinne dieser Policy sind alle Professor*innen, wissenschaftlichen Mitarbeiter*innen, Promovierenden, forschenden Studierenden und weiteren Beschäftigten, die im Rahmen eines Projektes Forschung betreiben.</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/definitions/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>definitions/02</uri_path>
<dc:comment/>
<text lang="en">Research data: Research data are all data that lead to analyzable results within the framework of research processes. These may include simulation data, raw data or audiovisual media.</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Forschungsdaten: Forschungsdaten sind alle Daten, die im Rahmen von Forschungsprozessen zu auswertbaren Ergebnissen führen. Dies können u.a. Simulationsdaten, Rohdaten oder audiovisuelle Medien sein.</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/definitions/03">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>definitions/03</uri_path>
<dc:comment/>
<text lang="en">Research Data Management (RDM): Research Data Management refers to all measures relating to research data. This includes planning, collecting, storing, analyzing, describing, archiving, and sharing research data as well as their re-use.</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Forschungsdatenmanagement (FDM): Unter FDM werden alle Maßnahmen im Zusammenhang mit Forschungsdaten verstanden. Dazu zählen Planung, Sammlung, Speicherung, Auswertung, Beschreibung, Archivierung, Veröffentlichung und Nachnutzung von Forschungsdaten.</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/definitions/04">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>definitions/04</uri_path>
<dc:comment/>
<text lang="en">Data management plan (DMP): A data management plan provides a structured description of the relevant research data and how they will be managed throughout the project.</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Datenmanagementplan (DMP): Im Datenmanagementplan findet sich eine strukturierte Beschreibung der relevanten Forschungsdaten und des Umgangs mit ihnen im Laufe des Projekts.</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/definitions/05">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>definitions/05</uri_path>
<dc:comment/>
<text lang="en">FAIR principles: The FAIR principles state that research data and their metadata should be findable, accessible, interoperable, and reusable.</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">FAIR-Prinzipien: Die FAIR-Prinzipien besagen, dass die Forschungsdaten sowie ihre Metadaten auffindbar (findable), zugänglich (accessible), interoperabel (interoperable) und nachnutzbar (reusable) sein sollen.</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<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>
<uri_path>fdnext-gen/preamble/preamble_definitions/02</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/definitions/definitions01"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Other definitions relevant to the project:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Weitere für das Projekt relevante Definitionen:</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>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/definitions/definitions01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>definitions01</key>
<path>fdnext/definitions/definitions01</path>
<dc:comment/>
<parent dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/definitions"/>
</attribute>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-gen/scope</uri_path>
<dc:comment/>
<title lang="en">Scope</title>
<title lang="de">Geltungsbereich</title>
<pages>
<page dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope/scope" order="0"/>
</pages>
</section>
<page dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope/scope">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-gen/scope/scope</uri_path>
<dc:comment/>
<attribute/>
<is_collection>False</is_collection>
<title lang="en">Persons and research data</title>
<help lang="en"/>
<verbose_name lang="en"/>
<title lang="de">Personenkreis und Forschungsdaten</title>
<help lang="de"/>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope/scope/person" order="0"/>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/scope/scope/data" order="1"/>
</questions>
<conditions/>
</page>
<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>
<uri_path>fdnext-gen/scope/scope/person</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/scope/persons"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<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">The research data policy applies to the following persons:</text>
<default_text lang="en"/>
<verbose_name 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">Die Forschungsdaten-Policy gilt für die folgenden Personen:</text>
<default_text lang="de"/>
<verbose_name 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>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/scope/persons">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>persons</key>
<path>fdnext/scope/persons</path>
<dc:comment/>
<parent dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/scope"/>
</attribute>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/persons">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>persons</uri_path>
<dc:comment/>
<provider_key/>
<options>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/persons/01" order="1"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/persons/02" order="2"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/persons/03" order="3"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/persons/04" order="4"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/persons/05" order="5"/>
</options>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/persons/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>persons/01</uri_path>
<dc:comment/>
<text lang="en">The research data policy applies to everyone involved in the research project.</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Die Forschungsdaten-Policy gilt für alle am Forschungsprojekt beteiligten Personen.</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/persons/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>persons/02</uri_path>
<dc:comment/>
<text lang="en">The research data policy applies only to the following persons involved in the project</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Die Forschungsdaten-Policy gilt nur für bestimmte am Projekt beteiligte Personen. Zu diesen zählen</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input>text</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/persons/03">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>persons/03</uri_path>
<dc:comment/>
<text lang="en">Third parties not directly involved in the project shall also be obliged to comply with this policy in corresponding agreements.</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Nicht direkt am Projekt beteiligte Dritte sollen in entsprechenden Vereinbarungen ebenfalls zur Einhaltung dieser Policy verpflichtet werden.</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/persons/04">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>persons/04</uri_path>
<dc:comment/>
<text lang="en">If agreements with third parties not directly involved in the project are being concluded, these have priority.</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Vereinbarungen mit nicht direkt am Projekt beteiligten Dritten haben ggf. Vorrang.</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/persons/05">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>persons/05</uri_path>
<dc:comment/>
<text lang="en">The following additions have been agreed</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Folgende Ergänzungen wurden vereinbart</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input>text</additional_input>
</option>
<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>
<uri_path>fdnext-gen/scope/scope/data</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/scope/data"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<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">The research data policy applies to the following data:</text>
<default_text lang="en"/>
<verbose_name 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">Die Forschungsdaten-Policy gilt für die folgenden Daten:</text>
<default_text lang="de"/>
<verbose_name 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>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/scope/data">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>data</key>
<path>fdnext/scope/data</path>
<dc:comment/>
<parent dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/scope"/>
</attribute>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>data</uri_path>
<dc:comment/>
<provider_key/>
<options>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data/01" order="1"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data/02" order="2"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data/03" order="3"/>
</options>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>data/01</uri_path>
<dc:comment/>
<text lang="en">The research data policy applies to all data generated and used within the project.</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Die Forschungsdaten-Policy gilt für alle im Rahmen des Projekts erhobenen und nachgenutzten Daten.</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>data/02</uri_path>
<dc:comment/>
<text lang="en">The research data policy only applies to the following research data</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Die Forschungsdaten-Policy gilt nur die folgenden Forschungsdaten</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input>text</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data/03">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>data/03</uri_path>
<dc:comment/>
<text lang="en">The following additions have been agreed</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Folgende Ergänzungen wurden vereinbart</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input>text</additional_input>
</option>
<section dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-gen/legal</uri_path>
<dc:comment/>
<title lang="en">Legal Aspects</title>
<title lang="de">Rechtliche Aspekte</title>
<pages>
<page dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal" order="0"/>
</pages>
</section>
<page dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>fdnext-gen/legal/legal</uri_path>
<dc:comment/>
<attribute/>
<is_collection>False</is_collection>
<title lang="en">Ensuring legal compliance</title>
<help lang="en"/>
<verbose_name lang="en"/>
<title lang="de">Gesetze und Richtlinien</title>
<help lang="de"/>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal/law" order="0"/>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal/measure" order="1"/>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal/data" order="2"/>
<question dc:uri="https://fdm.ub.tu-berlin.de/questions/fdnext-gen/legal/legal/guideline" order="8"/>
</questions>
<conditions/>
</page>
<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>
<uri_path>fdnext-gen/legal/legal/law</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/legal/law"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<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"/>
<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"/>
<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>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/legal/law">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>law</key>
<path>fdnext/legal/law</path>
<dc:comment/>
<parent dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/legal"/>
</attribute>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/law">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>law</uri_path>
<dc:comment/>
<provider_key/>
<options>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/law/02" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/law/04" order="1"/>
</options>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/law/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>law/02</uri_path>
<dc:comment/>
<text lang="en">Data protection law</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Datenschutz</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/law/04">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>law/04</uri_path>
<dc:comment/>
<text lang="en">Other laws and regulations</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Weitere</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input>text</additional_input>
</option>
<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>
<uri_path>fdnext-gen/legal/legal/measure</uri_path>
<dc:comment/>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/legal/lawm"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<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"/>
<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"/>
<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>
<attribute dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/legal/lawm">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>lawm</key>
<path>fdnext/legal/lawm</path>
<dc:comment/>
<parent dc:uri="https://fdm.ub.tu-berlin.de/domain/fdnext/legal"/>
</attribute>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/lawm">
<uri_prefix>https://fdm.ub.tu-berlin.de/</uri_prefix>
<uri_path>lawm</uri_path>
<dc:comment/>
<provider_key/>
<options>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/lawm/01" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/lawm/02" order="1"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/lawm/03" order="2"/>
</options>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/lawm/01">
<uri_prefix>https://fdm.ub.tu-berlin.de/</uri_prefix>
<uri_path>lawm/01</uri_path>
<dc:comment/>
<text lang="en">Copyright status is clarified in consultation with the legal departments of the institution(s).</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">In Zusammenarbeit mit den rechtlichen Fachabteilungen der Einrichtung(en) wird der urheberrechtliche Status der Forschungsdaten geklärt.</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/lawm/02">
<uri_prefix>https://fdm.ub.tu-berlin.de/</uri_prefix>
<uri_path>lawm/02</uri_path>
<dc:comment/>
<text lang="en">Agreements on data usage within the project are agreed with all members of the project, such as on authorship for data publications or usage rights for individual project members for the duration of the project as well as after leaving the project.</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Es werden projektinterne Datennutzungsvereinbarungen mit allen Mitgliedern getroffen, z.B. zur Autorschaft bei Datenpublikationen sowie zu Nutzungsrechten der einzelnen Projektmitglieder während der Projektlaufzeit sowie nach eventuellem Ausscheiden.</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input/>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/lawm/03">
<uri_prefix>https://fdm.ub.tu-berlin.de/</uri_prefix>
<uri_path>lawm/03</uri_path>
<dc:comment/>
<text lang="en">Further measures include</text>
<help lang="en"/>
<view_text lang="en"/>
<text lang="de">Weitere Maßnahmen sind</text>
<help lang="de"/>
<view_text lang="de"/>
<additional_input>text</additional_input>
</option>
<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>
<uri_path>fdnext-gen/legal/legal/data</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/legal_aspects/ipr"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<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"/>
<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"/>
<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>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/legal_aspects/ipr">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>ipr</key>
<path>project/legal_aspects/ipr</path>
<dc:comment/>
<parent dc:uri="https://rdmorganiser.github.io/terms/domain/project/legal_aspects"/>
</attribute>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<uri_path>data-protection</uri_path>
<dc:comment/>
<provider_key/>
<options>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/01" order="0"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/02" order="1"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/03" order="2"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/04" order="3"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/05" order="4"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/06" order="5"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/07" order="6"/>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/08" order="7"/>