forked from rdmorganiser/rdmo-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfdnext_template_options.xml
1300 lines (1300 loc) · 68.3 KB
/
fdnext_template_options.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:31:21.968273+01:00">
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/access">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>access</key>
<dc:comment/>
<order>12</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/access/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>01</key>
<path>access/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/access"/>
<order>0</order>
<text lang="en">Only the following groups of people have access to all of the project’s research data</text>
<text lang="de">Nur bestimmte Personenkreise erhalten Zugriff auf sämtliche Forschungsdaten des Projekts, und zwar</text>
<additional_input>True</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/access/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>02</key>
<path>access/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/access"/>
<order>0</order>
<text lang="en">All project members have access to only specific research data as follows</text>
<text lang="de">Alle Projektmitglieder haben jeweils nur auf einen bestimmten Ausschnitt der Forschungsdaten Zugriff, und zwar</text>
<additional_input>True</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/access/03">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>03</key>
<path>access/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/access"/>
<order>0</order>
<text lang="en">All project members have access to all research data.</text>
<text lang="de">Alle Projektmitglieder dürfen auf alle Forschungsdaten zugreifen.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/access/04">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>04</key>
<path>access/04</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/access"/>
<order>0</order>
<text lang="en">Further access regulations</text>
<text lang="de">Weitere/andere Zugriffsregelungen</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/archive-repo">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>archive-repo</key>
<dc:comment/>
<order>0</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/archive-repo/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>01</key>
<path>archive-repo/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/archive-repo"/>
<order>0</order>
<text lang="en">All research data are stored in the archives of the following institution</text>
<text lang="de">Alle Forschungsdaten werden in der Archivierungsinfrastruktur einer am Projekt beteiligten Institution aufbewahrt, und zwar</text>
<additional_input>True</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/archive-repo/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>02</key>
<path>archive-repo/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/archive-repo"/>
<order>0</order>
<text lang="en">Research data are stored in the archives of the different participating institutions.</text>
<text lang="de">Die Forschungsdaten werden verteilt in den jeweiligen Archivierungsinfrastrukturen der beteiligten Einrichtungen aufbewahrt.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/archive-repo/03">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>03</key>
<path>archive-repo/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/archive-repo"/>
<order>0</order>
<text lang="en">Research data is stored at the following multi-site repository or data archive</text>
<text lang="de">Die Forschungsdaten werden in einem standortübergreifenden Repositorium oder Datenarchiv aufbewahrt, und zwar</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/backup">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>backup</key>
<dc:comment/>
<order>11</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/backup/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>01</key>
<path>backup/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/backup"/>
<order>0</order>
<text lang="en">The back-up of research data is automated via the storage infrastructure used.</text>
<text lang="de">Das Back-Up der Forschungsdaten erfolgt automatisiert über die genutzte Speicherinfrastruktur.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/backup/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>02</key>
<path>backup/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/backup"/>
<order>0</order>
<text lang="en">The creation of regular back-ups of the research data is ensured by project-internal responsibilities and workflows.</text>
<text lang="de">Durch projektinterne Zuständigkeiten und Workflows wird die Erstellung regelmäßiger Back-Ups der Forschungsdaten sichergestellt.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/backup/03">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>03</key>
<path>backup/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/backup"/>
<order>0</order>
<text lang="en">The creation of regular back-ups is the responsibility of the individual project members.</text>
<text lang="de">Die Erstellung regelmäßiger Back-Ups liegt in der Verantwortung der einzelnen Projektmitglieder.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/backup/04">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>04</key>
<path>backup/04</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/backup"/>
<order>0</order>
<text lang="en">Further/other specifications</text>
<text lang="de">Weitere/andere Festlegungen</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>data</key>
<dc:comment/>
<order>4</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>01</key>
<path>data/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data"/>
<order>1</order>
<text lang="en">The research data policy applies to all data generated and used within the project.</text>
<text lang="de">Die Forschungsdaten-Policy gilt für alle im Rahmen des Projekts erhobenen und nachgenutzten Daten.</text>
<additional_input>False</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>
<key>02</key>
<path>data/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data"/>
<order>2</order>
<text lang="en">The research data policy only applies to the following research data</text>
<text lang="de">Die Forschungsdaten-Policy gilt nur die folgenden Forschungsdaten</text>
<additional_input>True</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>
<key>03</key>
<path>data/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data"/>
<order>3</order>
<text lang="en">The following additions have been agreed</text>
<text lang="de">Folgende Ergänzungen wurden vereinbart</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>data-protection</key>
<dc:comment/>
<order>0</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>01</key>
<path>data-protection/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection"/>
<order>0</order>
<text lang="en">The legal basis as well as any necessary measures to be taken are agreed with the department at the institute responsible for data protection.</text>
<text lang="de">Die Rechtsgrundlage für die Verarbeitung sowie die erforderlichen Maßnahmen werden mit den Fachabteilungen der Einrichtung abgestimmt.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>02</key>
<path>data-protection/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection"/>
<order>0</order>
<text lang="en">The legal basis for managing personal research data within the project is informed consent.</text>
<text lang="de">Die Verarbeitung personenbezogener Forschungsdaten erfolgt im Projekt auf der Rechtsgrundlage der informierten Einwilligung.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/03">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>03</key>
<path>data-protection/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection"/>
<order>0</order>
<text lang="en">Consent forms will be made available to all project members.</text>
<text lang="de">Vorlagen für die informierte Einwilligung werden allen Projektmitgliedern zur Verfügung gestellt.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/04">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>04</key>
<path>data-protection/04</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection"/>
<order>0</order>
<text lang="en">A data processing agreement is concluded when passing on personal data to service providers (e.g. labs, transcription services).</text>
<text lang="de">Bei Weitergabe der personenbezogenen Daten an Dienstleister (z.B. Labore, Transkriptionsdienstleister) wird mit diesem ein Auftragsverarbeitungsvertrag geschlossen.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/05">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>05</key>
<path>data-protection/05</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection"/>
<order>0</order>
<text lang="en">For joint research projects, a written agreement regarding individual responsibility for the management of data is concluded between the project partners.</text>
<text lang="de">Bei gemeinsamer Verarbeitung im Rahmen von Verbundforschung wird zwischen den Projektpartnern eine schriftliche Vereinbarung über die individuelle Verantwortlichkeit jedes Partners getroffen.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/06">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>06</key>
<path>data-protection/06</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection"/>
<order>0</order>
<text lang="en">Research data are anonymized when the research goal permits. When it is not possible to fully anonymize data, the data are pseudonymized.</text>
<text lang="de">Die Forschungsdaten werden anonymisiert, sobald es der Forschungszweck es erlaubt. Wenn eine vollständige Anonymisierung nicht möglich ist, erfolgt eine Pseudonymisierung.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/07">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>07</key>
<path>data-protection/07</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection"/>
<order>0</order>
<text lang="en">Suitable technical and organizational measures are implemented to protect personal data (e.g. access rights, encryption, password protection)</text>
<text lang="de">Es werden geeignete technisch-organisatorische Maßnahmen zum Schutz der personenbezogenen Daten getroffen (z.B. Zugriffsrechte, Verschlüsselung, Passwortschutz).</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/08">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>08</key>
<path>data-protection/08</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection"/>
<order>0</order>
<text lang="en">Research data is only published in anonymized form or with the consent of the affected parties.</text>
<text lang="de">Eine Veröffentlichung der Forschungsdaten erfolgt ausschließlich in anonymisierter Form oder nach Einwilligung der Betroffenen.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection/09">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>09</key>
<path>data-protection/09</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/data-protection"/>
<order>0</order>
<text lang="en">Further measures include</text>
<text lang="de">Weitere Maßnahmen sind</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/definitions">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>definitions</key>
<dc:comment/>
<order>2</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/definitions/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>01</key>
<path>definitions/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/definitions"/>
<order>0</order>
<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>
<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>
<additional_input>False</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>
<key>02</key>
<path>definitions/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/definitions"/>
<order>0</order>
<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>
<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>
<additional_input>False</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>
<key>03</key>
<path>definitions/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/definitions"/>
<order>0</order>
<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>
<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>
<additional_input>False</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>
<key>04</key>
<path>definitions/04</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/definitions"/>
<order>0</order>
<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>
<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>
<additional_input>False</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>
<key>05</key>
<path>definitions/05</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/definitions"/>
<order>0</order>
<text lang="en">FAIR principles: The FAIR principles state that research data and their metadata should be findable, accessible, interoperable, and reusable.</text>
<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>
<additional_input>False</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>fdnext-goals</key>
<dc:comment/>
<order>1</order>
<provider_key/>
<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>
<key>01</key>
<path>fdnext-goals/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals"/>
<order>0</order>
<text lang="en">Establish a uniform approach to managing research data</text>
<text lang="de">Etablierung eines einheitlichen Vorgehens im Umgang mit Forschungsdaten</text>
<additional_input>False</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>
<key>02</key>
<path>fdnext-goals/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals"/>
<order>0</order>
<text lang="en">Facilitate cooperation</text>
<text lang="de">Erleichterung der Zusammenarbeit</text>
<additional_input>False</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>
<key>03</key>
<path>fdnext-goals/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals"/>
<order>0</order>
<text lang="en">Provide orientation for (new) employees</text>
<text lang="de">Orientierung für (neue) Mitarbeiter*innen</text>
<additional_input>False</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>
<key>04</key>
<path>fdnext-goals/04</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals"/>
<order>0</order>
<text lang="en">Establish a framework for data management plans</text>
<text lang="de">Bildung des Rahmens für Datenmanagementpläne</text>
<additional_input>False</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>
<key>05</key>
<path>fdnext-goals/05</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals"/>
<order>0</order>
<text lang="en">Achieve transparency both internally and externally</text>
<text lang="de">Herstellung von Transparenz nach innen und außen</text>
<additional_input>False</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>
<key>06</key>
<path>fdnext-goals/06</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals"/>
<order>0</order>
<text lang="en">Ensure compliance with funding policy and legal requirements</text>
<text lang="de">Sicherstellen von Compliance mit förderpolitischen und gesetzlichen Vorgaben</text>
<additional_input>False</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>
<key>07</key>
<path>fdnext-goals/07</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/fdnext-goals"/>
<order>0</order>
<text lang="en">Further goals</text>
<text lang="de">Weitere</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>guidelines</key>
<dc:comment/>
<order>8</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>02</key>
<path>guidelines/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines"/>
<order>2</order>
<text lang="en">FAIR Principles</text>
<text lang="de">FAIR-Prinzipien</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines/03">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>03</key>
<path>guidelines/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines"/>
<order>3</order>
<text lang="en">Guidelines of the funding organizations</text>
<text lang="de">Vorgaben des Forschungsförderers</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines/04">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>04</key>
<path>guidelines/04</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines"/>
<order>4</order>
<text lang="en">Disciplinary guidelines of the research fields involved in the project</text>
<text lang="de">Disziplinäre Richtlinien der am Projekt beteiligten Fachcommunities</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines/05">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>05</key>
<path>guidelines/05</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines"/>
<order>5</order>
<text lang="en">Institutional bylaws on good scientific practice published by the participating institutions</text>
<text lang="de">Institutionelle Satzungen zur guten wissenschaftlichen Praxis der beteiligten Einrichtungen</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines/06">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>06</key>
<path>guidelines/06</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines"/>
<order>6</order>
<text lang="en">Institutional research data policies of the participating institutions</text>
<text lang="de">Institutionelle Forschungsdaten-Policies der beteiligten Einrichtungen</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines/07">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>07</key>
<path>guidelines/07</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/guidelines"/>
<order>7</order>
<text lang="en">Other policies relevant to the project include</text>
<text lang="de">Weitere für das Projekt relevante Richtlinien sind</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/law">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>law</key>
<dc:comment/>
<order>4</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/law/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>02</key>
<path>law/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/law"/>
<order>0</order>
<text lang="en">Data protection law</text>
<text lang="de">Datenschutz</text>
<additional_input>False</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>
<key>04</key>
<path>law/04</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/law"/>
<order>0</order>
<text lang="en">Other laws and regulations</text>
<text lang="de">Weitere</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/lawm">
<uri_prefix>https://fdm.ub.tu-berlin.de/</uri_prefix>
<key>lawm</key>
<dc:comment/>
<order>5</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/lawm/01">
<uri_prefix>https://fdm.ub.tu-berlin.de/</uri_prefix>
<key>01</key>
<path>lawm/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/lawm"/>
<order>0</order>
<text lang="en">Copyright status is clarified in consultation with the legal departments of the institution(s).</text>
<text lang="de">In Zusammenarbeit mit den rechtlichen Fachabteilungen der Einrichtung(en) wird der urheberrechtliche Status der Forschungsdaten geklärt.</text>
<additional_input>False</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>
<key>02</key>
<path>lawm/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/lawm"/>
<order>0</order>
<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>
<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>
<additional_input>False</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>
<key>03</key>
<path>lawm/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/lawm"/>
<order>0</order>
<text lang="en">Further measures include</text>
<text lang="de">Weitere Maßnahmen sind</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/license">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>license</key>
<dc:comment/>
<order>16</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/license/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>01</key>
<path>license/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/license"/>
<order>1</order>
<text lang="en">The choice of a suitable license is at the discretion of the individual researchers.</text>
<text lang="de">Die Wahl einer geeigneten Lizenz obliegt den einzelnen Forschenden.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/license/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>02</key>
<path>license/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/license"/>
<order>2</order>
<text lang="en">The research data are to be published under the following license</text>
<text lang="de">Die Forschungsdaten sollen unter folgender Lizenz veröffentlicht werden</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/name">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>name</key>
<dc:comment/>
<order>13</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/name/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>01</key>
<path>name/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/name"/>
<order>0</order>
<text lang="en">The storage of research data should follow this predetermined folder structure</text>
<text lang="de">Die Ablage der Forschungsdaten soll einer vorgegebenen Ordnerstruktur folgen, und zwar</text>
<additional_input>True</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/name/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>02</key>
<path>name/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/name"/>
<order>0</order>
<text lang="en">Files should be names according to the following predetermined pattern</text>
<text lang="de">Die Benennung der Dateien soll einem vorgegebenen Schema folgen, und zwar</text>
<additional_input>True</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/name/03">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>03</key>
<path>name/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/name"/>
<order>0</order>
<text lang="en">The actual naming of files as well as the folder structure are at the discretion of the individual project members.</text>
<text lang="de">Die Benennung von Dateien sowie die Ordnerstruktur liegt im Ermessen der einzelnen Projektmitglieder.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/name/04">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>04</key>
<path>name/04</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/name"/>
<order>0</order>
<text lang="en">Further/other specifications</text>
<text lang="de">Weitere/andere Festlegungen</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/options/documentation">
<uri_prefix>https://fdm.ub.tu-berlin.de/options/</uri_prefix>
<key>documentation</key>
<dc:comment/>
<order>0</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/options/documentation/01">
<uri_prefix>https://fdm.ub.tu-berlin.de/options/</uri_prefix>
<key>01</key>
<path>documentation/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/options/documentation"/>
<order>0</order>
<text lang="en">The data documentation takes place in one or more separate files, for which suitable templates are made available to the project members.</text>
<text lang="de">Die Datendokumentation erfolgt in einer oder mehreren separaten Dateien, für die den Projektmitgliedern geeignete Vorlagen zur Verfügung gestellt werden.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/options/documentation/02">
<uri_prefix>https://fdm.ub.tu-berlin.de/options/</uri_prefix>
<key>02</key>
<path>documentation/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/options/documentation"/>
<order>0</order>
<text lang="en">An electronic laboratory notebook is used for data documentation, namely</text>
<text lang="de">Für die Datendokumentation wird ein Elektronisches Laborbuch genutzt, und zwar</text>
<additional_input>True</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/options/documentation/03">
<uri_prefix>https://fdm.ub.tu-berlin.de/options/</uri_prefix>
<key>03</key>
<path>documentation/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/options/documentation"/>
<order>0</order>
<text lang="en">Data documentation is the responsibility of the individual project members.</text>
<text lang="de">Die Datendokumentation liegt in der Verantwortung der einzelnen Projektmitglieder.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/options/documentation/04">
<uri_prefix>https://fdm.ub.tu-berlin.de/options/</uri_prefix>
<key>04</key>
<path>documentation/04</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/options/documentation"/>
<order>0</order>
<text lang="en">Further/other specifications</text>
<text lang="de">Weitere/andere Festlegungen</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/persons">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>persons</key>
<dc:comment/>
<order>3</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/persons/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>01</key>
<path>persons/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/persons"/>
<order>1</order>
<text lang="en">The research data policy applies to everyone involved in the research project.</text>
<text lang="de">Die Forschungsdaten-Policy gilt für alle am Forschungsprojekt beteiligten Personen.</text>
<additional_input>False</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>
<key>02</key>
<path>persons/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/persons"/>
<order>2</order>
<text lang="en">The research data policy applies only to the following persons involved in the project</text>
<text lang="de">Die Forschungsdaten-Policy gilt nur für bestimmte am Projekt beteiligte Personen. Zu diesen zählen</text>
<additional_input>True</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>
<key>03</key>
<path>persons/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/persons"/>
<order>3</order>
<text lang="en">Third parties not directly involved in the project shall also be obliged to comply with this policy in corresponding agreements.</text>
<text lang="de">Nicht direkt am Projekt beteiligte Dritte sollen in entsprechenden Vereinbarungen ebenfalls zur Einhaltung dieser Policy verpflichtet werden.</text>
<additional_input>False</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>
<key>04</key>
<path>persons/04</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/persons"/>
<order>4</order>
<text lang="en">If agreements with third parties not directly involved in the project are being concluded, these have priority.</text>
<text lang="de">Vereinbarungen mit nicht direkt am Projekt beteiligten Dritten haben ggf. Vorrang.</text>
<additional_input>False</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>
<key>05</key>
<path>persons/05</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/persons"/>
<order>5</order>
<text lang="en">The following additions have been agreed</text>
<text lang="de">Folgende Ergänzungen wurden vereinbart</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/place">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>place</key>
<dc:comment/>
<order>0</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/place/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>01</key>
<path>place/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/place"/>
<order>0</order>
<text lang="en">The choice of an appropriate research data repository or data center is the responsibility of the individual researcher.</text>
<text lang="de">Die Wahl eines geeigneten Forschungsdatenrepositoriums oder Datenzentrums obliegt den einzelnen Forschenden.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/place/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>02</key>
<path>place/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/place"/>
<order>0</order>
<text lang="en">The following research data repository or data center should be used for publishing research data</text>
<text lang="de">Für die Veröffentlichung von Forschungsdaten soll folgendes Forschungsdatenrepositorium oder Datenzentrum genutzt werden</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/pre_def">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>pre_def</key>
<dc:comment/>
<order>0</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/pre_def/yes">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>yes</key>
<path>pre_def/yes</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/pre_def"/>
<order>1</order>
<text lang="en">Yes</text>
<text lang="de">Ja</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/pre_def/no">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>no</key>
<path>pre_def/no</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/pre_def"/>
<order>2</order>
<text lang="en">No</text>
<text lang="de">Nein</text>
<additional_input>False</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/privacy">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>privacy</key>
<dc:comment/>
<order>6</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/privacy/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>01</key>
<path>privacy/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/privacy"/>
<order>0</order>
<text lang="en">The legal basis as well as any necessary measures to be taken are agreed with the department at the institute responsible for data protection.</text>
<text lang="de">Die Rechtsgrundlage für die Verarbeitung sowie die erforderlichen Maßnahmen werden mit der für Datenschutz zuständigen Fachabteilung der Einrichtung abgestimmt.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/privacy/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>02</key>
<path>privacy/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/privacy"/>
<order>0</order>
<text lang="en">The legal basis for managing personal research data within the project is informed consent.</text>
<text lang="de">Die Verarbeitung personenbezogener Forschungsdaten erfolgt im Projekt auf der Rechtsgrundlage der informierten Einwilligung.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/privacy/03">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>03</key>
<path>privacy/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/privacy"/>
<order>0</order>
<text lang="en">Consent forms will be made available to all project members.</text>
<text lang="de">Vorlagen für die informierte Einwilligung werden allen Projektmitgliedern zur Verfügung gestellt.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/privacy/04">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>04</key>
<path>privacy/04</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/privacy"/>
<order>0</order>
<text lang="en">A data processing agreement is concluded when passing on personal data to service providers (e.g. labs, transcription services).</text>
<text lang="de">Bei Weitergabe der personenbezogenen Daten an Dienstleister (z.B. Labore, Transkriptionsdienstleister) wird mit diesem ein Auftragsverarbeitungsvertrag geschlossen.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/privacy/05">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>05</key>
<path>privacy/05</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/privacy"/>
<order>0</order>
<text lang="en">For joint research projects, a written agreement regarding individual responsibility for the management of data is concluded between the project partners.</text>
<text lang="de">Bei gemeinsamer Verarbeitung im Rahmen von Verbundforschung wird zwischen den Projektpartnern eine schriftliche Vereinbarung über die individuelle Verantwortlichkeit jedes Partners getroffen.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/privacy/06">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>06</key>
<path>privacy/06</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/privacy"/>
<order>0</order>
<text lang="en">Research data are anonymized when the research goal permits. When it is not possible to fully anonymize data, the data are pseudonymized.</text>
<text lang="de">Die Forschungsdaten werden anonymisiert, sobald es der Forschungszweck es erlaubt. Wenn eine vollständige Anonymisierung nicht möglich ist, erfolgt eine Pseudonymisierung.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/privacy/07">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>07</key>
<path>privacy/07</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/privacy"/>
<order>0</order>
<text lang="en">Suitable technical and organizational measures are implemented to protect personal data (e.g. access rights, encryption, password protection)</text>
<text lang="de">Es werden geeignete technisch-organisatorische Maßnahmen zum Schutz der personenbezogenen Daten getroffen (z.B. Zugriffsrechte, Verschlüsselung, Passwortschutz).</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/privacy/08">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>08</key>
<path>privacy/08</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/privacy"/>
<order>0</order>
<text lang="en">Research data is only published in anonymized form or with the consent of the affected parties.</text>
<text lang="de">Eine Veröffentlichung der Forschungsdaten erfolgt ausschließlich in anonymisierter Form oder nach Einwilligung der Betroffenen.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/privacy/09">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>09</key>
<path>privacy/09</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/privacy"/>
<order>0</order>
<text lang="en">Further measures include</text>
<text lang="de">Weitere Maßnahmen sind</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/publication">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>publication</key>
<dc:comment/>
<order>14</order>
<provider_key/>
<conditions/>
</optionset>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/publication/01">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>01</key>
<path>publication/01</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/publication"/>
<order>0</order>
<text lang="en">All research data generated in the project will be made publicly available unless there are legal, contractual, or ethical reasons for not doing so.</text>
<text lang="de">Alle im Projekt entstehenden Forschungsdaten werden öffentlich zur Verfügung gestellt, sofern keine rechtlichen, vertraglichen oder ethischen Gründe entgegenstehen.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/publication/02">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>02</key>
<path>publication/02</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/publication"/>
<order>0</order>
<text lang="en">Research data generated in the project that are necessary for the verification of scientific results will be made publicly available, provided that there are no legal, contractual or ethical reasons to the contrary.</text>
<text lang="de">Im Projekt entstandene Forschungsdaten, die zur Nachprüfung wissenschaftlicher Ergebnisse notwendig sind, werden öffentlich zur Verfügung gestellt, sofern keine rechtlichen, vertraglichen oder ethischen Gründe entgegenstehen.</text>
<additional_input>False</additional_input>
</option>
<option dc:uri="https://fdm.ub.tu-berlin.de/options/publication/03">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>03</key>
<path>publication/03</path>
<dc:comment/>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/publication"/>
<order>0</order>
<text lang="en">Further/other specifications</text>
<text lang="de">Weitere/andere Festlegungen</text>
<additional_input>True</additional_input>
</option>
<optionset dc:uri="https://fdm.ub.tu-berlin.de/options/publication-venue">
<uri_prefix>https://fdm.ub.tu-berlin.de</uri_prefix>
<key>publication-venue</key>
<dc:comment/>
<order>15</order>
<provider_key/>
<conditions/>
</optionset>