forked from rdmorganiser/rdmo-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dcc.xml
1971 lines (1971 loc) · 90.5 KB
/
dcc.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://rdmorganiser.github.io/terms/questions/dcc">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>dcc</key>
<dc:comment>DCC. (2013). Checklist for a Data Management Plan. v.4.0. Edinburgh: Digital Curation</dc:comment>
<order>10</order>
<title lang="en">DCC Checklist 4.0</title>
<title lang="de">DCC Checkliste 4.0</title>
</catalog>
<section dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/administrative">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>administrative</key>
<path>dcc/administrative</path>
<dc:comment/>
<catalog dc:uri="https://rdmorganiser.github.io/terms/questions/dcc"/>
<order>0</order>
<title lang="en">Administrative Data</title>
<title lang="de">Verwaltungsdaten</title>
</section>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/administrative/project-description">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>project-description</key>
<path>dcc/administrative/project-description</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/administrative"/>
<is_collection>False</is_collection>
<order>1</order>
<title lang="en">Project description</title>
<title lang="de">Projektbeschreibung</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/dcc/administrative/project-description/title">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>title</key>
<path>dcc/administrative/project-description/title</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/research_question/title"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/administrative/project-description"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en">Briefly summarise the type of study to help others understand the purposes for which the data are being collected or created.</help>
<help lang="de">Fassen Sie kurz die Art der Studie zusammen, um anderen zu helfen, die Ziele zu verstehen, für die die Daten erhoben oder erstellt werden.</help>
<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>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/administrative/project-description/name">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>name</key>
<path>dcc/administrative/project-description/name</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/coordination/name"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/administrative/project-description"/>
<is_collection>True</is_collection>
<order>2</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Which persons or institutions are responsible for the project coordination?</text>
<text lang="de">Welche Personen oder Institutionen sind verantwortlich für die Projektkoordination?</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://rdmorganiser.github.io/terms/questions/dcc/administrative/project-description/data_contact">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>data_contact</key>
<path>dcc/administrative/project-description/data_contact</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/data_management/name"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/administrative/project-description"/>
<is_collection>True</is_collection>
<order>3</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Which persons or institutions are responsible for the data management in the project?</text>
<text lang="de">Welche Personen oder Institutionen sind verantwortlich für das Datenmanagement im Projekt?</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/dcc/administrative/project-policies">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>project-policies</key>
<path>dcc/administrative/project-policies</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/administrative"/>
<is_collection>False</is_collection>
<order>2</order>
<title lang="en">Project policies</title>
<title lang="de">Projektrichtlinien</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/dcc/administrative/project-policies/rdm_policy">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>rdm_policy</key>
<path>dcc/administrative/project-policies/rdm_policy</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/partner/rdm_policy"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/administrative/project-policies"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Does your institution have rules or guidelines for the handling of research data? If yes, 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.</text>
<text lang="de">Gibt es an Ihrer Einrichtung Regeln oder Richtlinien zum Umgang mit den im Projekt erhobenen Forschungsdaten? Wenn ja, skizzieren Sie diese kurz und verweisen Sie ggf. auf weiterführende Informationen. Geben Sie bitte auch an, welchen
Grad an Verbindlichkeit sie haben.</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://rdmorganiser.github.io/terms/questions/dcc/administrative/project-policies/funder_policy">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>funder_policy</key>
<path>dcc/administrative/project-policies/funder_policy</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/funder/rdm_policy"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/administrative/project-policies"/>
<is_collection>False</is_collection>
<order>2</order>
<help lang="en">Funders of research also increasingly specify requirements regarding the management of research data in funded projects. Examples are the <a
href="http://www.dfg.de/en/research_funding/proposal_review_decision/applicants/submitting_proposal/research_data/index.html" target="_blank">DFG Guidelines on the Handling of Reserach Data</a> or the <a
href="http://ec.europa.eu/research/participants/data/ref/h2020/grants_manual/hi/oa_pilot/h2020-hi-oa-data-mgt_en.pdf" target="_blank">Guidelines on Data Management in Horizon 2020</a> of the European Commission.</help>
<help lang="de">Auch Forschungsförderer stellen zunehmend Anforderungen an das Datenmanagement in von ihnen geförderten Projekten. Beispiele sind die <a
href="http://www.dfg.de/foerderung/antragstellung_begutachtung_entscheidung/antragstellende/antragstellung/nachnutzung_forschungsdaten/" target="_blank">DFG-Leitlinien zum Umgang mit Forschungsdaten</a> oder die <a
href="http://ec.europa.eu/research/participants/data/ref/h2020/grants_manual/hi/oa_pilot/h2020-hi-oa-data-mgt_en.pdf" target="_blank">Guidelines on Data Management in Horizon 2020</a> der Europäischen Komission.</help>
<text lang="en">Does the funder have rules or recommendations for data management? If yes, 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.</text>
<text lang="de">Gibt es von Seiten des Forschungsförderers Vorgaben oder Richtlinien bezüglich des Umgangs mit den im Projekt erhobenen Forschungsdaten? Wenn ja, skizzieren Sie diese kurz und verweisen Sie ggf. auf weiterführende Informationen. Geben
Sie bitte auch an, welchen Grad an Verbindlichkeit sie haben.</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://rdmorganiser.github.io/terms/questions/dcc/administrative/project-policies/requirements">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>requirements</key>
<path>dcc/administrative/project-policies/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/dcc/administrative/project-policies"/>
<is_collection>False</is_collection>
<order>3</order>
<help lang="en"/>
<help lang="de"/>
<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>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<section dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>collection</key>
<path>dcc/collection</path>
<dc:comment>123</dc:comment>
<catalog dc:uri="https://rdmorganiser.github.io/terms/questions/dcc"/>
<order>1</order>
<title lang="en">Data Collection</title>
<title lang="de">Datenaufnahme</title>
</section>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-dataset">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>dataset-dataset</key>
<path>dcc/collection/dataset-dataset</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection"/>
<is_collection>True</is_collection>
<order>11</order>
<title lang="en">What data will you collect or create?</title>
<title lang="de">Was für Daten werden gesammelt oder erstellt?</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://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-dataset/description">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>description</key>
<path>dcc/collection/dataset-dataset/description</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/description"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-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 data is it?</text>
<text lang="de">Um was für einen Daten 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>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-dataset/origin">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>origin</key>
<path>dcc/collection/dataset-dataset/origin</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/origin"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-dataset"/>
<is_collection>False</is_collection>
<order>3</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Is the data being created or re-used?</text>
<text lang="de">Werden die Daten 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://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-dataset/uri">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>uri</key>
<path>dcc/collection/dataset-dataset/uri</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/uri"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-dataset"/>
<is_collection>False</is_collection>
<order>4</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>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-dataset/creator_name">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>creator_name</key>
<path>dcc/collection/dataset-dataset/creator_name</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/creator/name"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-dataset"/>
<is_collection>False</is_collection>
<order>5</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>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-format_size">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>dataset-format_size</key>
<path>dcc/collection/dataset-format_size</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection"/>
<is_collection>True</is_collection>
<order>12</order>
<title lang="en">Which data size do you expect?</title>
<title lang="de">Welche Datengröße ist zu erwarten?</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de"/>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-format_size/format">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>format</key>
<path>dcc/collection/dataset-format_size/format</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/format"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-format_size"/>
<is_collection>False</is_collection>
<order>2</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.</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.</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>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-format_size/volume">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>volume</key>
<path>dcc/collection/dataset-format_size/volume</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/size/volume"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/dataset-format_size"/>
<is_collection>False</is_collection>
<order>6</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://rdmorganiser.github.io/terms/questions/dcc/collection/process-structure">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>process-structure</key>
<path>dcc/collection/process-structure</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection"/>
<is_collection>False</is_collection>
<order>22</order>
<title lang="en">How will the data be collected or created?</title>
<title lang="de">Wie werden die daten gesammelt oder erstellt?</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/dcc/collection/process-structure/creation_methods">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>creation_methods</key>
<path>dcc/collection/process-structure/creation_methods</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/creation_methods"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/process-structure"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en">Outline how the data will be collected/created and which community data standards will be used. 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.</help>
<help lang="de">Erläutern Sie, wie die Daten erhoben/erstellt werden und welche Datenstandards verwendet werden. 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://rdmorganiser.github.io/terms/questions/dcc/collection/process-structure/organisation_policy">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>organisation_policy</key>
<path>dcc/collection/process-structure/organisation_policy</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/storage/organisation_policy"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/process-structure"/>
<is_collection>False</is_collection>
<order>3</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Are there internal project guidelines for a consistent organisation of the data? If so, where they are documented?</text>
<text lang="de">Gibt es projektinterne Richtlinien zur einheitlichen Organisation der Daten? Wenn ja, wo sind diese festgehalten?</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_no_not_yet"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/process-structure/naming_policy">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>naming_policy</key>
<path>dcc/collection/process-structure/naming_policy</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/storage/naming_policy"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/process-structure"/>
<is_collection>False</is_collection>
<order>4</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Is there a internal project guideline for naming the data? If so, please briefly outline the naming conventions and, if necessary, link to the documentation.</text>
<text lang="de">Gibt es eine projektinterne Richtlinie zur Benennung der Daten? Wenn ja, bitte skizzieren Sie sie kurz und verlinken Sie ggf. zu einer ausführlicheren Dokumentation.</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_no_not_yet"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/process-structure/measures">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>measures</key>
<path>dcc/collection/process-structure/measures</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/quality_assurance"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/process-structure"/>
<is_collection>False</is_collection>
<order>20</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Which measures of quality assurance are taken for the data?</text>
<text lang="de">Welche Maßnahmen zur Qualitätssicherung werden für die Daten ergriffen?</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://rdmorganiser.github.io/terms/questions/dcc/collection/process-versioning">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>process-versioning</key>
<path>dcc/collection/process-versioning</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection"/>
<is_collection>True</is_collection>
<order>22</order>
<title lang="en">How will you handle versioning?</title>
<title lang="de">Wie werden die Daten versioniert?</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de"/>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/process-versioning/yesno">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>yesno</key>
<path>dcc/collection/process-versioning/yesno</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/versioning_yesno"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/process-versioning"/>
<is_collection>False</is_collection>
<order>11</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Are different versions of the dataset created?</text>
<text lang="de">Werden verschiedene Versionen des Datensatzes erzeugt?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>yesno</widget_type>
<value_type>boolean</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/process-versioning/strategy">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>strategy</key>
<path>dcc/collection/process-versioning/strategy</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/versioning_strategy"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/process-versioning"/>
<is_collection>False</is_collection>
<order>12</order>
<help lang="en">Please briefly describe the project-internal regulations for the versioning of data sets (e.g.: What kind of changes require a new version? How are changes documented? What are the naming rules for different versions?)</help>
<help lang="de">Bitte beschreiben Sie hier kurz projektinterne Regelungen zur Versionierung von Datensätzen (z. B.: Welche Änderungen machen eine neue Version erforderlich? Wie werden die Änderungen dokumentiert? Wie werden die verschiedenen Versionen benannt?)</help>
<text lang="en">Which versioning strategy is applied for this dataset?</text>
<text lang="de">Welche Versionierungsstrategie wird für diesen Datensatz angewandt?</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://rdmorganiser.github.io/terms/questions/dcc/collection/process-versioning/tool">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>tool</key>
<path>dcc/collection/process-versioning/tool</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/versioning_tool"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/collection/process-versioning"/>
<is_collection>False</is_collection>
<order>13</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://rdmorganiser.github.io/terms/questions/dcc/documentation_metadata">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>documentation_metadata</key>
<path>dcc/documentation_metadata</path>
<dc:comment/>
<catalog dc:uri="https://rdmorganiser.github.io/terms/questions/dcc"/>
<order>2</order>
<title lang="en">Documentation and Metadata</title>
<title lang="de">Dokumentation und Metadaten</title>
</section>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/documentation_metadata/documentation-metadata">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>documentation-metadata</key>
<path>dcc/documentation_metadata/documentation-metadata</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/metadata/scope"/>
<section dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/documentation_metadata"/>
<is_collection>False</is_collection>
<order>11</order>
<title lang="en">What documentation and metadata will accompany the data?</title>
<title lang="de">Welche Dokumentation und Metadaten werden für die Daten benötigt?</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/dcc/documentation_metadata/documentation-metadata/scope">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>scope</key>
<path>dcc/documentation_metadata/documentation-metadata/scope</path>
<dc:comment>probably we should introduce a separate question for being findable and re-used</dc:comment>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/metadata/scope"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/documentation_metadata/documentation-metadata"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Which information is necessary for other parties to understand the data (that is, to understand their collection or creation, analysis, and research results obtained on its basis) and to re-use it?</text>
<text lang="de">Welche Informationen sind für Außenstehende notwendig, um die Daten zu verstehen (d. h. ihre Erhebung bzw. Entstehung, Analyse sowie die auf ihrer Basis gewonnenen Forschungsergebnisse nachvollziehen) und nachnutzen zu können?</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://rdmorganiser.github.io/terms/questions/dcc/documentation_metadata/documentation-metadata/creation">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>creation</key>
<path>dcc/documentation_metadata/documentation-metadata/creation</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/metadata/creation"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/documentation_metadata/documentation-metadata"/>
<is_collection>False</is_collection>
<order>2</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">How will you capture / create this documentation and metadata?</text>
<text lang="de">Wie werden diese Dokumentation und Metadaten erfasst / 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://rdmorganiser.github.io/terms/questions/dcc/documentation_metadata/documentation-metadata/standards">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>standards</key>
<path>dcc/documentation_metadata/documentation-metadata/standards</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/metadata/standards"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/documentation_metadata/documentation-metadata"/>
<is_collection>True</is_collection>
<order>3</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Which standards, ontologies, classifications etc. are used to describe the data and context information?</text>
<text lang="de">Welche Standards, Ontologien, Klassifikationen etc. werden zur Beschreibung der Daten und Kontextinformation genutzt?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/metadata_standards"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/documentation_metadata/documentation-metadata/responsible_person">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>responsible_person</key>
<path>dcc/documentation_metadata/documentation-metadata/responsible_person</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/metadata/responsible_person/name"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/documentation_metadata/documentation-metadata"/>
<is_collection>True</is_collection>
<order>4</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Who is responsible for documenting the metadata and context information and for checking if they are correct and complete?</text>
<text lang="de">Wer ist verantwortlich für die Dokumentation und Prüfung der Metadaten und Kontextinformationen auf Richtigkeit und Vollständigkeit?</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://rdmorganiser.github.io/terms/questions/dcc/ethics_legal">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>ethics_legal</key>
<path>dcc/ethics_legal</path>
<dc:comment/>
<catalog dc:uri="https://rdmorganiser.github.io/terms/questions/dcc"/>
<order>3</order>
<title lang="en">Ethics and Legal Compliance</title>
<title lang="de">Ethik und Recht</title>
</section>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ethics-personal_data">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>ethics-personal_data</key>
<path>dcc/ethics_legal/ethics-personal_data</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal"/>
<is_collection>False</is_collection>
<order>10</order>
<title lang="en">How will you manage any ethical issues?</title>
<title lang="de">Wie werden ethische Aspekte berücksichtigt?</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/dcc/ethics_legal/ethics-personal_data/yesno">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>yesno</key>
<path>dcc/ethics_legal/ethics-personal_data/yesno</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sensitive_data/personal_data_yesno/yesno"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ethics-personal_data"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Does the data contain personal data?</text>
<text lang="de">Enthälten die Daten personenbezogene Daten?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>yesno</widget_type>
<value_type>boolean</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ethics-personal_data/anonymization">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>anonymization</key>
<path>dcc/ethics_legal/ethics-personal_data/anonymization</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sensitive_data/personal_data/anonymization"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ethics-personal_data"/>
<is_collection>False</is_collection>
<order>2</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Will the data be anonymised or pseudonymised?</text>
<text lang="de">Werden die Daten anonymisiert oder pseudonymisiert?</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_anonymisation"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ethics-personal_data/extent">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>extent</key>
<path>dcc/ethics_legal/ethics-personal_data/extent</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sensitive_data/personal_data/consent/extent"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ethics-personal_data"/>
<is_collection>False</is_collection>
<order>3</order>
<help lang="en">Basically, the collection, processing, archiving and publication of personal data is only admissible, when the “informed consent” of the person in question has been obtained. There are only very few cases in which this is not the case
(see, also for more information: <a href="http://www.dfg.de/download/pdf/foerderung/grundlagen_dfg_foerderung/informationen_fachwissenschaften/geisteswissenschaften/standards_recht.pdf" target="_blank">Informationen zu rechtlichen
Aspekten bei der Handhabung von Sprachkorpora</a>, p. 6).</help>
<help lang="de">Grundsätzlich gilt, dass eine Erhebung, Verarbeitung, Archivierung und Veröffentlichung personenbezogener Daten nur zulässig ist, wenn eine entsprechende „informierte Einwilligung“ der Betroffenen vorliegt. Nur in ganz wenigen,
jeweils in den Datenschutzgesetzen definierten Ausnahmefällen wird diese nicht benötigt (vgl., auch für mehr Information, <a
href="http://www.dfg.de/download/pdf/foerderung/grundlagen_dfg_foerderung/informationen_fachwissenschaften/geisteswissenschaften/standards_recht.pdf" target="_blank">Informationen zu rechtlichen Aspekten bei der Handhabung von
Sprachkorpora</a>, S. 6).</help>
<text lang="en">To what extent is the "informed consent" obtained from the persons concerned?</text>
<text lang="de">In welchem Umfang wird die "informierte Einwilligung" der Betroffenen eingeholt?</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/informed_consent_options"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ipr-ipr">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>ipr-ipr</key>
<path>dcc/ethics_legal/ipr-ipr</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal"/>
<is_collection>True</is_collection>
<order>20</order>
<title lang="en">How will you manage copyright and Intellectual Property Rights (IPR) issues?</title>
<title lang="de">Wie werden Urheber- und andere Immaterialgüterrechte berücksichtigt?</title>
<help lang="en"/>
<help lang="de"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name lang="de"/>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ipr-ipr/copyrights">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>copyrights</key>
<path>dcc/ethics_legal/ipr-ipr/copyrights</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/ipr/copyrights"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ipr-ipr"/>
<is_collection>True</is_collection>
<order>2</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Does copyright law apply to this dataset?</text>
<text lang="de">Be- oder entstehen an diesem Datensatz Urheberrechte?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/dataset_copyright_laws"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ipr-ipr/other_rights">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>other_rights</key>
<path>dcc/ethics_legal/ipr-ipr/other_rights</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/ipr/other_rights"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ipr-ipr"/>
<is_collection>True</is_collection>
<order>3</order>
<help lang="en"/>
<help lang="de"/>
<text lang="en">Do other intellectual property rights apply to this dataset?</text>
<text lang="de">Be- oder entstehen an diesem Datensatz andere Schutzrechte?</text>
<verbose_name lang="en"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="en"/>
<verbose_name_plural lang="de"/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/dataset_other_rights"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ipr-ipr/conditions">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>conditions</key>
<path>dcc/ethics_legal/ipr-ipr/conditions</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sharing/conditions"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/dcc/ethics_legal/ipr-ipr"/>
<is_collection>True</is_collection>
<order>3</order>
<help lang="en">The options refer to the licenses of the <a href="https://creativecommons.org/share-your-work/licensing-types-examples/" target="_blank">Creative Commons family</a>.</help>
<help lang="de">Die Auswahlmöglichkeiten orientieren sich an Lizenzen der <a href="http://de.creativecommons.org/was-ist-cc/" target="_blank">Creative-Commons-Familie</a>.</help>
<text lang="en">Under which terms of use or license will the dataset be published or shared?</text>
<text lang="de">Unter welchen Nutzungsbedingungen oder welcher Lizenz sollen die Daten veröffentlicht bzw. geteilt werden?</text>
<verbose_name lang="en"/>