forked from rdmorganiser/rdmo-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fhpshort.xml
1593 lines (1562 loc) · 83.6 KB
/
fhpshort.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" ?>
<rdmo xmlns:dc="http://purl.org/dc/elements/1.1/">
<catalog dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>fhpshort</key>
<dc:comment>Ein kurzer Fragenkatalog für die FH Potsdam mit den wichtigstens Fragen</dc:comment>
<order>1</order>
<title lang="en">Brief questionaire</title>
<title lang="de">Kurzer Fragenkatalog</title>
</catalog>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>general</key>
<path>fhpshort/general</path>
<dc:comment/>
<catalog dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort"/>
<order>0</order>
<title lang="en">General</title>
<title lang="de">Allgemein</title>
</section>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/topic-title">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>topic-title</key>
<path>fhpshort/general/topic-title</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general"/>
<is_collection>False</is_collection>
<order>0</order>
<title lang="en">Topic</title>
<title lang="de">Thema</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/topic-title/title">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>title</key>
<path>fhpshort/general/topic-title/title</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/research_question/title"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/topic-title"/>
<is_collection>False</is_collection>
<order>0</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">What is the main research question of the project?</text>
<text lang="de">Wie lautet die primäre Forschungsfrage des Projektes?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/topic-research_field">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>topic-research_field</key>
<path>fhpshort/general/topic-research_field</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general"/>
<is_collection>False</is_collection>
<order>1</order>
<title lang="en">Research field</title>
<title lang="de">Disziplin</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/topic-research_field/research_field">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>research_field</key>
<path>fhpshort/general/topic-research_field/research_field</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/research_field/title"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/topic-research_field"/>
<is_collection>True</is_collection>
<order>0</order>
<help lang="en">The list of disciplines follows the <a href="http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/" target="_blank">subject classification of the DFG (German Research Foundation)</a>.</help>
<help lang="de">Die Liste der Disziplinen entspricht der <a href="http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/" target="_blank">Fachsystematik der Deutschen Forschungsgemeinschaft (DFG)</a>.</help>
<text lang="en">Which research field(s) does this project belong to?</text>
<text lang="de">Welcher Disziplin / welchen Disziplinen ist das Projekt zuzuordnen?</text>
<verbose_name lang="en">discipline</verbose_name>
<verbose_name lang="de">Forschungsdisziplin</verbose_name>
<verbose_name_plural lang="en">disciplines</verbose_name_plural>
<verbose_name_plural lang="de">Forschungsdisziplinen</verbose_name_plural>
<widget_type>select</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/research_fields"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/project-schedule-schedule">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>project-schedule-schedule</key>
<path>fhpshort/general/project-schedule-schedule</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general"/>
<is_collection>False</is_collection>
<order>10</order>
<title lang="en">Project schedule</title>
<title lang="de">Projektablauf</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/project-schedule-schedule/project_start">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>project_start</key>
<path>fhpshort/general/project-schedule-schedule/project_start</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/schedule/project_start"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/project-schedule-schedule"/>
<is_collection>False</is_collection>
<order>0</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">When does the project start?</text>
<text lang="de">Wann beginnt die Projektlaufzeit?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>date</widget_type>
<value_type>datetime</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/project-schedule-schedule/project_end">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>project_end</key>
<path>fhpshort/general/project-schedule-schedule/project_end</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/schedule/project_end"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/project-schedule-schedule"/>
<is_collection>False</is_collection>
<order>2</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">When does the project end?</text>
<text lang="de">Wann endet die Projektlaufzeit?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>date</widget_type>
<value_type>datetime</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/project-partners-partner">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>project-partners-partner</key>
<path>fhpshort/general/project-partners-partner</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/partner/id"/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general"/>
<is_collection>True</is_collection>
<order>21</order>
<title lang="en">Project partner</title>
<title lang="de">Projektpartner</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en">project partner</verbose_name>
<verbose_name lang="de">Projektpartner</verbose_name>
<verbose_name_plural lang="en">project partners</verbose_name_plural>
<verbose_name_plural lang="de">Projektpartner</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/project-partners-partner/name">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>name</key>
<path>fhpshort/general/project-partners-partner/name</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/partner/name"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general/project-partners-partner"/>
<is_collection>False</is_collection>
<order>0</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Project partner</text>
<text lang="de">Projektpartner</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/fhpshort/general/other-requirements-yesno">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>other-requirements-yesno</key>
<path>fhpshort/general/other-requirements-yesno</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general"/>
<is_collection>False</is_collection>
<order>30</order>
<title lang="en">Other requirments I</title>
<title lang="de">Weitere Anforderungen I</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/fhpshort/general/other-requirements-yesno/yesno">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>yesno</key>
<path>fhpshort/general/other-requirements-yesno/yesno</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/additional_rdm_policy/yesno"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/fhpshort/general/other-requirements-yesno"/>
<is_collection>False</is_collection>
<order>0</order>
<help lang="en">Examples of discipline-specific requirements are:
- <a href="http://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/guidelines_biodiversity_research.pdf" target="_blank">Guidelines on the Handling of Research Data in Biodiversity Research (German only)</a>
- <a href="http://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/richtlinien_forschungsdaten_bildungsforschung.pdf" target="_blank">Guidelines for the provision and use of quantitative data in education research (German only)</a>
- <a href="http://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/foerderkriterien_editionen_literaturwissenschaft.pdf" target="_blank">Elegibility criteria for funding for scholarly editions in the literary studies (German only)</a>
- Recommendations on <a href="http://www.dfg.de/download/pdf/foerderung/grundlagen_dfg_foerderung/informationen_fachwissenschaften/geisteswissenschaften/standards_sprachkorpora.pdf" target="_blank">data standards and tools</a> as well as <a href="https://www.dfg.de/resource/blob/171632/383249f00d425a643bd8c120404bbff6/standards-sprachkorpora-data.pdf" target="_blank">legal aspects</a> associated with language corpora (German only)</help>
<help lang="de">Beispiele für fachspezifische Empfehlungen und Richtlinien sind:
- <a href="http://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/richtlinien_forschungsdaten_biodiversitaetsforschung.pdf" target="_blank">Richtlinien zum Umgang mit Forschungsdaten in der Biodiversitätsforschung</a>
- Empfehlungen zur <a href="http://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/richtlinien_forschungsdaten_bildungsforschung.pdf" target="_blank">Bereitstellung und Nutzung quantitativer Daten in der Bildungsforschung</a>
- <a href="http://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/foerderkriterien_editionen_literaturwissenschaft.pdf" target="_blank">Förderkriterien für wissenschaftliche Editionen in der Literaturwissenschaft</a>
- Empfehlungen zu
- <a href="http://www.dfg.de/download/pdf/foerderung/grundlagen_dfg_foerderung/informationen_fachwissenschaften/geisteswissenschaften/standards_sprachkorpora.pdf" target="_blank">datentechnischen Standards und Tools</a> sowie zu
- <a href="https://www.dfg.de/resource/blob/171632/383249f00d425a643bd8c120404bbff6/standards-sprachkorpora-data.pdf" target="_blank">rechtlichen Fragen</a> bei der Erhebung von Sprachkorpora</help>
<text lang="en">Are there requirements regarding the data management from other parties (e.g. the scholarly/scientific community)?</text>
<text lang="de">Gibt es von weiteren Seiten (z. B. von der Fachcommunity) Anforderungen an das Datenmanagement, die beachtet werden müssen?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>radio</widget_type>
<value_type>boolean</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/other_requirements_options"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/fhpshort/general/other-requirements-requirements">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>other-requirements-requirements</key>
<path>fhpshort/general/other-requirements-requirements</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/general"/>
<is_collection>False</is_collection>
<order>31</order>
<title lang="en">Other requirments II</title>
<title lang="de">Weitere Anforderungen II</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<conditions>
<condition dc:uri="https://rdmorganiser.github.io/terms/conditions/additional_rdm_policy"/>
</conditions>
</questionset>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/fhpshort/general/other-requirements-requirements/requirements">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>requirements</key>
<path>fhpshort/general/other-requirements-requirements/requirements</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/additional_rdm_policy/requirements"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/fhpshort/general/other-requirements-requirements"/>
<is_collection>False</is_collection>
<order>0</order>
<help lang="en">Please briefly outline them and refer to more detailed sources of information if necessary. Please also indicate, if the rules / guidelines are mandatory or optional.</help>
<help lang="de">Bitte skizzieren Sie sie kurz und verweisen Sie ggf. auf weiterführende Informationen. Geben Sie bitte auch an, welchen Grad an Verbindlichkeit sie haben.</help>
<text lang="en">Which are these additional requirements regarding data management?</text>
<text lang="de">Welche Anforderungen an das Datenmanagement sind dies?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>content-classification</key>
<path>fhpshort/content-classification</path>
<dc:comment/>
<catalog dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort"/>
<order>1</order>
<title lang="en">Content classification</title>
<title lang="de">Inhaltliche Einordnung</title>
</section>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification/data-dataset">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>data-dataset</key>
<path>fhpshort/content-classification/data-dataset</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification"/>
<is_collection>True</is_collection>
<order>1</order>
<title lang="en">Data</title>
<title lang="de">Daten</title>
<help lang="en">The following questions collect information on the data that is produced or used in the project. They also help to estimate the value of the data in terms of potential re-use and long-term preservation.
Before data is newly created, it is advisable to check if there is existing data that could be re-used. This way, redundant collection or creation of research data is prevented. This saves efforts and costs. Furthermore, in the case of personal data, the <a href="http://www.gesetze-im-internet.de/englisch_bdsg/englisch_bdsg.html" target="_blank">German Federal Data Protection Act</a > allows the collection of personal data only when there are no other reasonable means to clarify the research question (re-use of existing data would be such a reasonable means). Also, there shall be collected no more information than necessary.
The information regarding the data collected, produced or used in the project is gathered along datasets. The definition of these datasets is an important conceptional decision that has to be made individually and carefully for each project.</help>
<help lang="de">Die nächsten Fragen dienen zur Beschreibung der Datensätze, die im Projekt erzeugt und/oder verwendet werden. Sie helfen zudem, den Wert der Daten hinsichtlich der potentiellen Nachnutzung und einer späteren Archivierung einschätzen zu können.
Vor der Erzeugung von Daten empfiehlt es sich zu prüfen, ob bereits vorhandene Daten nachgenutzt werden können. Die Vermeidung doppelter Erhebungen spart Aufwand und Kosten. Handelt es sich um personenbezogene Daten, ist dies zudem durch den Grundsatz der Erforderlichkeit (<a href="https://www.gesetze-im-internet.de/bdsg_1990/" target="_blank">BDSG</a>) sowie das Prinzip der Datenvermeidung und Datensparsamkeit (<a href="https://www.gesetze-im-internet.de/bdsg_1990/__3a.html" target="_blank">§3a BDSG</a>) geboten.
Die Angaben zu den im Projekt erzeugten oder verwendeten Daten sind nach „Datensätzen“ strukturiert. Die Definition dessen, was jeweils ein Datensatz ist, ist eine wichtige konzeptionelle Entscheidung, die für jedes Vorhaben bzw. Projekt individuell getroffen und sorgfältig abgewogen werden muss.</help>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification/data-dataset/description">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>description</key>
<path>fhpshort/content-classification/data-dataset/description</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/description"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification/data-dataset"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en">Please briefly describe the data type and / or the method used to create or collect the data, for example:
* quantitative online survey
* 3D model / digital reconstruction of a stone age settlement
* software developed within the project</help>
<help lang="de">Bitte beschreiben Sie hier kurz, um welchen Datentyp es sich handelt und mit welcher Methode die Daten erhoben oder erstellt wurden, z. B.:
* quantitative Online-Befragung
* 3D-Modellierung / digitale Rekonstruktion einer steinzeitlichen Siedlung
* Software, die im Projekt entwickelt wird</help>
<text lang="en">What kind of dataset is it?</text>
<text lang="de">Um was für einen Datensatz handelt es sich?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification/data-existing_data">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>data-existing_data</key>
<path>fhpshort/content-classification/data-existing_data</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification"/>
<is_collection>True</is_collection>
<order>2</order>
<title lang="en">Data origin</title>
<title lang="de">Datenursprung</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification/data-existing_data/origin">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>origin</key>
<path>fhpshort/content-classification/data-existing_data/origin</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/origin"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification/data-existing_data"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Is the dataset being created or re-used?</text>
<text lang="de">Wird der Datensatz selbst erzeugt oder nachgenutzt?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>radio</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/dataset_origin_options"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification/data-existing_data/creator_name">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>creator_name</key>
<path>fhpshort/content-classification/data-existing_data/creator_name</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/creator/name"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification/data-existing_data"/>
<is_collection>False</is_collection>
<order>2</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">If re-used, who created the dataset?</text>
<text lang="de">Wenn nachgenutzt, wer hat den Datensatz erzeugt?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification/data-existing_data/uri">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>uri</key>
<path>fhpshort/content-classification/data-existing_data/uri</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/uri"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/content-classification/data-existing_data"/>
<is_collection>False</is_collection>
<order>3</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">If re-used, under which address, PID or URL can the dataset be found?</text>
<text lang="de">Wenn nachgenutzt, unter welcher Adresse, PID oder URL ist der Datensatz verfügbar?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>technical-classification</key>
<path>fhpshort/technical-classification</path>
<dc:comment/>
<catalog dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort"/>
<order>2</order>
<title lang="en">Technical classification</title>
<title lang="de">Technische Einordnung</title>
</section>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-volume">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>data-volume</key>
<path>fhpshort/technical-classification/data-volume</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification"/>
<is_collection>True</is_collection>
<order>2</order>
<title lang="en">Data size</title>
<title lang="de">Datengröße</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-volume/volume">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>volume</key>
<path>fhpshort/technical-classification/data-volume/volume</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/size/volume"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-volume"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">What is the actual or expected size of the dataset?</text>
<text lang="de">Was ist die tatsächliche oder erwartete Größe des Datensatzes?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>radio</widget_type>
<value_type>float</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/dataset_size_options"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-formats">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>data-formats</key>
<path>fhpshort/technical-classification/data-formats</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification"/>
<is_collection>True</is_collection>
<order>3</order>
<title lang="en">Formats</title>
<title lang="de">Formate</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-formats/format">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>format</key>
<path>fhpshort/technical-classification/data-formats/format</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/format"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-formats"/>
<is_collection>False</is_collection>
<order>4</order>
<help lang="en">When choosing a data format, one should consider the consequences for collaborative use, long-term preservation as well as re-use. It is advisable to prefer formats that are standardised, open, non-proprietary and well-established in the respective scholarly community. More criteria and detailed explanations can be found e.g. in the <a href="https://escience.aip.de/wissgrid/publikationen/Leitfaden_Data-Management-WissGrid.pdf" target="_blank">WissGrid-Leitfaden, pp. 22 f.</a>).</help>
<help lang="de">Bei der Wahl des Dateiformates sollten auch die Konsequenzen für die kollaborative Nutzung, die Langzeitarchivierung sowie die Nachnutzung beachtet werden. Es empfiehlt sich, möglichst standardisierte, nicht-proprietäre und allgemein bzw. in der spezifischen Community verbreitete Formate zu nutzen. Weitere Kriterien sowie detaillierte Erläuterungen sind z. B. im <a href="https://escience.aip.de/wissgrid/publikationen/Leitfaden_Data-Management-WissGrid.pdf" target="_blank">WissGrid-Leitfaden, S. 22 f.</a>) zu finden.</help>
<text lang="en">Which file formats are used?</text>
<text lang="de">In welchen Formaten liegen die Daten vor?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-tools">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>data-tools</key>
<path>fhpshort/technical-classification/data-tools</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification"/>
<is_collection>True</is_collection>
<order>4</order>
<title lang="en">Tools</title>
<title lang="de">Werkzeuge</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-tools/creation_methods">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>creation_methods</key>
<path>fhpshort/technical-classification/data-tools/creation_methods</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/creation_methods"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-tools"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en">This information is necessary to be able to reconstruct the process by which the data was generated. It is also a prerequisite to judge the objectivity, reliability and validity of the dataset.
For reproducible data, it is also required to re-generate the data if need be.</help>
<help lang="de">Diese Informationen sind für alle Arten von Daten relevant, um ihre Genese nachvollziehen zu können. Bei reproduzierbaren Daten kommt ein weiterer Aspekt hinzu. Diese müssen nicht notwendigerweise aufbewahrt werden - allerdings müssen alle Geräte, Software und auch Informationen über die Vorgehensweise erhalten bleiben, die notwendig sind, um die Daten erneut erstellen zu können.</help>
<text lang="en">Which tools, software, technologies or processes are used to generate or collect the data?</text>
<text lang="de">Welche Instrumente, Software, Technologien oder Verfahren werden zur Erzeugung oder Erfassung der Daten genutzt?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-tools/usage_technology">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>usage_technology</key>
<path>fhpshort/technical-classification/data-tools/usage_technology</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/usage_technology"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-tools"/>
<is_collection>False</is_collection>
<order>2</order>
<help lang="en">To be able to re-use data (e.g. to replicate studies, for meta analysis or to solve new research questions), along with the data the software, equipment and knowledge about special methods to use the data are required .
Just as with the formats, the recommendation is: the more standardised, open and established, the better for re-use.</help>
<help lang="de">Um Daten nachnutzen zu können, bspw. für die Replikation von Studien, Metaanalysen oder die Beantwortung neuer Forschungsfragen, werden neben den Daten selbst auch die Software, Geräte etc. und das Wissen über spezielle Verfahren zur Nutzung benötigt.
Ebenso wie bei den Formaten gilt hier: je standardisierter, offener und etablierter diese sind, desto einfacher ist i.d.R. eine Nachnutzung möglich.</help>
<text lang="en">Which software, processes or technologies are necessary to use the data?</text>
<text lang="de">Welche Software, Verfahren oder Technologien sind notwendig, um die Daten zu nutzen?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-versioning">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>data-versioning</key>
<path>fhpshort/technical-classification/data-versioning</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification"/>
<is_collection>True</is_collection>
<order>5</order>
<title lang="en">Versioning</title>
<title lang="de">Versionierung</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-versioning/tool">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>tool</key>
<path>fhpshort/technical-classification/data-versioning/tool</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/versioning_tool"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/technical-classification/data-versioning"/>
<is_collection>False</is_collection>
<order>3</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Which technology or tool is used for versioning?</text>
<text lang="de">Welche Technologie bzw. welches Tool wird zur Versionierung verwendet?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>radio</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/software_versioning_technology_options"/>
</optionsets>
<conditions/>
</question>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>data-usage</key>
<path>fhpshort/data-usage</path>
<dc:comment/>
<catalog dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort"/>
<order>3</order>
<title lang="en">Data usage</title>
<title lang="de">Datenutzung</title>
</section>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/scenarios-usage">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>scenarios-usage</key>
<path>fhpshort/data-usage/scenarios-usage</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage"/>
<is_collection>True</is_collection>
<order>0</order>
<title lang="en">Usage scenarios</title>
<title lang="de">Nutzungsszenarien</title>
<help lang="en">The following questions will help to estimate, which ressources are necessary to enable the envisioned data usage scenarios during the project. These can be technical / IT resources as well as expertise brought in by e.g. data managment or IT experts.</help>
<help lang="de">Die folgenden Fragen dienen dazu einzuschätzen, welche Ressourcen für die geplante Nutzung der Daten während der Projektlaufzeit nötig sind. Dabei kann es sich um technische bzw. IT-Ressourcen handeln, aber auch um Expertise, die z. B. durch Datenmanagement- oder IT-ExpertInnen eingebracht wird.</help>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/scenarios-usage/infrastructure">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>infrastructure</key>
<path>fhpshort/data-usage/scenarios-usage/infrastructure</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/usage_infrastructure"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/scenarios-usage"/>
<is_collection>False</is_collection>
<order>0</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">To what extent will infrastructure resources be required (e.g. CPU hours, bandwidth, storage space... etc.).</text>
<text lang="de">In welchem Umfang werden Infrastrukturressourcen benötigt (CPU-Stunden, Bandbreite, Speicherplatz etc.)?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>radio</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/infrastructure_resources"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/scenarios-usage/support">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>support</key>
<path>fhpshort/data-usage/scenarios-usage/support</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/usage_support"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/scenarios-usage"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Are there actual or potential usage scenarios that could benefit from support by a data management or IT expert, or that even require such support?</text>
<text lang="de">Gibt es beabsichtigte (ggf. auch potentielle) Nutzungsszenarien, für die die Unterstützung durch Datenmanagement- oder IT-ExpertInnen sinnvoll oder notwendig ist?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>radio</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/yes_with_text_no"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-storage-and-security-storage">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>data-storage-and-security-storage</key>
<path>fhpshort/data-usage/data-storage-and-security-storage</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage"/>
<is_collection>True</is_collection>
<order>11</order>
<title lang="en">Storage location</title>
<title lang="de">Speicherort</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-storage-and-security-storage/type">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>type</key>
<path>fhpshort/data-usage/data-storage-and-security-storage/type</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/storage/type"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-storage-and-security-storage"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Where is the dataset stored during the project?</text>
<text lang="de">Wo wird der Datensatz während des Projektes gespeichert?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-storage-and-security-data_security">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>data-storage-and-security-data_security</key>
<path>fhpshort/data-usage/data-storage-and-security-data_security</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage"/>
<is_collection>True</is_collection>
<order>12</order>
<title lang="en">Data storage and security</title>
<title lang="de">Datenspeicherung und -sicherheit</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-storage-and-security-data_security/backups">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>backups</key>
<path>fhpshort/data-usage/data-storage-and-security-data_security/backups</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/data_security/backups"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-storage-and-security-data_security"/>
<is_collection>False</is_collection>
<order>2</order>
<help lang="en">This question refers to backups while the data is being worked with. Questions of long-term preservation will be adressed in the respective section.</help>
<help lang="de">Die Frage bezieht sich auf Backups während der Zeit, in denen mit den Daten gearbeitet wird. Fragen der Langzeitarchivierung werden gesondert im entsprechenden Abschnitt behandelt.</help>
<text lang="en">How and how often will backups of the data be created?</text>
<text lang="de">Wie und wie oft werden Backups der Daten erstellt?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-storage-and-security-data_security/name">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>name</key>
<path>fhpshort/data-usage/data-storage-and-security-data_security/name</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/data_security/backup_responsible/name"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-storage-and-security-data_security"/>
<is_collection>True</is_collection>
<order>3</order>
<help lang="en">This question refers to backups while the data is being worked with. Questions of long-term preservation will be adressed in the respective section.</help>
<help lang="de">Die Frage bezieht sich auf Backups während der Zeit, in denen mit den Daten gearbeitet wird. Fragen der Langzeitarchivierung werden gesondert im entsprechenden Abschnitt behandelt.</help>
<text lang="en">Who is responsible for the backups?</text>
<text lang="de">Wer ist verantwortlich für die Erstellung der Backups?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-storage-and-security-data_security/security_measures">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>security_measures</key>
<path>fhpshort/data-usage/data-storage-and-security-data_security/security_measures</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/data_security/security_measures"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-storage-and-security-data_security"/>
<is_collection>False</is_collection>
<order>4</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Which measures or provisions are in place to ensure data security (e.g. protection against unauthorized access, data recovery, transfer of sensitive data)?</text>
<text lang="de">Welche Maßnahmen zur Gewährleistung der Datensicherheit werden getroffen (z. B. Schutz vor unbefugtem Zugriff, Datenwiederherstellung, Übertragung sensibler Daten)?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-sharing-and-re-use-publication">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>data-sharing-and-re-use-publication</key>
<path>fhpshort/data-usage/data-sharing-and-re-use-publication</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage"/>
<is_collection>True</is_collection>
<order>20</order>
<title lang="en">Data sharing and re-use</title>
<title lang="de">Weitergabe und Veröffentlichung</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-sharing-and-re-use-publication/yesno">
<uri_prefix>https://rdmo.fh-potsdam.de/terms</uri_prefix>
<key>yesno</key>
<path>fhpshort/data-usage/data-sharing-and-re-use-publication/yesno</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sharing/yesno"/>
<questionset dc:uri="https://rdmo.fh-potsdam.de/terms/questions/fhpshort/data-usage/data-sharing-and-re-use-publication"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Will this dataset be published or shared?</text>
<text lang="de">Soll dieser Datensatz veröffentlicht oder geteilt werden?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>radio</widget_type>
<value_type>boolean</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/dataset_sharing_options"/>
</optionsets>
<conditions/>