forked from rdmorganiser/rdmo-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfg_editions.xml
1541 lines (1541 loc) · 112 KB
/
dfg_editions.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://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>DFG_editions_cleansed</key>
<dc:comment/>
<order>23</order>
<title lang="en">DFG grants (scientific editions in litary studies)</title>
<title lang="de">DFG-Anträge (Wissenschaftliche Editionen in den Literaturwissenschaften)</title>
</catalog>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>allgemeines</key>
<path>DFG_editions_cleansed/allgemeines</path>
<dc:comment/>
<catalog dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed"/>
<order>1</order>
<title lang="en">General or global topics</title>
<title lang="de">Allgemeine und projektübergreifende Aspekte</title>
</section>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/fachspezifische_fragen">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>fachspezifische_fragen</key>
<path>DFG_editions_cleansed/allgemeines/fachspezifische_fragen</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project"/>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines"/>
<is_collection>False</is_collection>
<order>0</order>
<title lang="en">Subject Specific Requirements</title>
<help lang="en"><b>Please keep in mind: </b> In addition to the generic <a href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/richtlinien_forschungsdaten.pdf" target=_blank>Guideline for
handling research data (in German)</a> DFG has various <a target="_blank" href="https://www.dfg.de/en/research_funding/proposal_review_decision/applicants/research_data/index.html">stricter requirements and further
recommendations</a> (scroll down on webpage) for some disciplines. <br /><br /> This questionnaire also covers the requirements in the <a
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/foerderkriterien_editionen_literaturwissenschaft.pdf" target="_blank">funding criteria for editions in literary studies (in German) </a>.
<br /><br /> Further requirements exisit for projects in the following disciplines: <ul> <li> <b> Social and Cultural anthropology, non-European cultures, Judaic studies and religious studies:</b>
<ul><li><a target="_blank" href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/handreichung_fachkollegium_106_forschungsdaten.pdf">guidelines (in German)</a> by the DFG Review
Board 106 </li></ul> </li> <li><b>project involving language corpora:</b> <ul> <li><a target=_blank
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/guidelines_review_board_linguistics_corpora.pdf">Guidelines by the DFG Review Board on Linguistics</a></li> <li><a
target="_blank" href="https://www.dfg.de/download/pdf/foerderung/grundlagen_dfg_foerderung/informationen_fachwissenschaften/geisteswissenschaften/standards_recht.pdf">information on legal aspect</a> (copyright, data
protection, privacy, anonymization) </li> <li><a target="_blank"
href="https://www.dfg.de/download/pdf/foerderung/grundlagen_dfg_foerderung/informationen_fachwissenschaften/geisteswissenschaften/standards_sprachkorpora.pdf">Recommendations for technical standards and software tools</a>.
</li> </ul> </li> <li><b>Economic Sciences:</b> <ul> <li> requirements of the <a
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/fachkollegium112_forschungsdatenmanagement_1811.pdf" target=_blank>DFG Review Board 112 "Economics"</a> (German)</li> <li>
requirements in the <a href="http://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/basisinformationen_forschungsdatenmanagement.pdf" target=_blank>Basic Information on Research Data Management</a> (German) of
the Council for Social and Economic Data (RatSWD)</li> </ul> </li> <li><b>Sociology:</b> <ul> <li> requirements in the <a
href="http://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/basisinformationen_forschungsdatenmanagement.pdf" target=_blank>Basic Information on Research Data Management</a> (German) of the Council for Social and
Economic Data (RatSWD) </li> <li> recommendations in the DGS statement <a href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/dgs_stellungnahme_forschungsdaten.pdf" target=_blank> Provisioning
and reuse of research data in sociology </a> (German) </li> </ul> </li> <li><b>Educational Sciences:</b> <ul> <li> requirements in the <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</a> (in German)</li> </ul> </li> <li><b>Psychologie:</b></br> <ul> <li>Die <a
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/empfehlungen_forschungsdaten_psychologie.pdf" target=_blank>Data Management in Psychological Science: Specification of the DFG
Guidelines</a></li> <li> <a target= _blank href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/empfehlungen_forschungsdaten_psychologie_kommentar.pdf">Comment of the DFG Review Board
"Psychology"</a> regarding "Data Management in Psychological Science: Specification of the DFG Guidelines" (see above)</li> <li><a
href="https://www.dfg.de/download/pdf/foerderung/grundlagen_dfg_foerderung/informationen_fachwissenschaften/geisteswissenschaften/foerderkriterien_replikationsstudien_psychologie.pdf" target=_blank>Funding criteria for replications
studies in Psychology</a> (in German)</li> </ul> </li> <li><b>Ethnology:</b></br> <a href="http://www.d-g-v.org/sites/default/files/dgv-positionspapier_fdm.pdf" target=_blank>Position
paper of the "Deutsche Gesellschaft für Volkskunde" on archiving, access and reuse of research data</a></li> <li><b>Biodiversity Research:</b> </br><a
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/guidelines_biodiversity_research.pdf" target=_blank>Guidelines on the Handling of Research Data in Biodiversity Research</a> </li> </ul>
<b>Please always check the guidelines and requirements on the DFG webpage.</b> Currently the research data management requirements are changing rather quickly and this questionnaire might not yet cover the most recent developments!</help>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Fachspezifische Regelungen</title>
<help lang="de"><b>Bitte beachten Sie: </b> Neben den allgemeinen Anforderungen</a> in den fachübergreifenden <a
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/richtlinien_forschungsdaten.pdf" target=_blank>Leitlinien zum Umgang mit Forschungsdaten</a> hat die DFG <a target="_blank"
href="https://www.dfg.de/foerderung/antrag_gutachter_gremien/antragstellende/nachnutzung_forschungsdaten/index.html#anker62194854">strengere Vorgaben und weitere Empfehlungen</a> für einige Fachdisziplinen. <br /><br />
Dieser Fragebogen deckt zusätzlich die Anforderungen der <a href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/foerderkriterien_editionen_literaturwissenschaft.pdf"
target="_blank">Förderkriterien für wissenschaftliche Editionen in der Literaturwissenschaft</a> ab. <br /><br /> Weitere Vorgaben bestehen unter anderem für <ul> <li> <b>Sozial- und
Kulturanthropologie, Außereuropäische Kulturen, Judaistik und Religionswissenschaften</b> <ul><li><a target="_blank"
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/handreichung_fachkollegium_106_forschungsdaten.pdf">Handreichung des DFG Fachkollegiums 106</a> </li></ul> </li>
<li><b>Projekte, die mit Sprachkorpora arbeiten</b> <ul> <li><a target=_blank
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/guidelines_review_board_linguistics_corpora.pdf">Guidelines by the DFG Review Board on Linguistics</a> (in Englisch)</li> <li>die <a
target="_blank" href="https://www.dfg.de/download/pdf/foerderung/grundlagen_dfg_foerderung/informationen_fachwissenschaften/geisteswissenschaften/standards_recht.pdf">Empfehlungen und Informationen zu den rechtlichen
Aspekten</a> (Urheberrecht, Datenschutz, Anonymisierung) </li> <li>die <a target="_blank"
href="https://www.dfg.de/download/pdf/foerderung/grundlagen_dfg_foerderung/informationen_fachwissenschaften/geisteswissenschaften/standards_sprachkorpora.pdf">Empfehlungen zu technischen Standards und Softwarewerkzeugen</a>.
</li> </ul> </li> <li><b>Wirtschaftswissenschaften</b> <ul> <li> Empfehlungen des <a
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/fachkollegium112_forschungsdatenmanagement_1811.pdf" target=_blank>DFG Fachkollegiums 112 "Wirtschaftswissenschaften"</a></li>
<li> Anforderungen in den <a href="http://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/basisinformationen_forschungsdatenmanagement.pdf" target=_blank>Basisinformationen zum
Forschungsdatenmanagement</a> des Rats für Sozial- und WirtschaftsDaten (RatSWD) </li> </ul> </li> <li><b>Soziologie</b> <ul> <li>Die <a
href="http://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/basisinformationen_forschungsdatenmanagement.pdf" target="_blank">Basisinformationen zum Forschungsdatenmanagement</a> des Rats für Sozial-
und WirtschaftsDaten (RatSWD) </li> <li> DGS-Stellungnahme zur <a href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/dgs_stellungnahme_forschungsdaten.pdf" target=_blank>Bereitstellung und
Nachnutzung von Forschungsdaten in der Soziologie</a> </li> </ul> </li> <li><b>Erziehungswissenschaften</b> <ul> <li> Memorandum des Fachkollegiums „Erziehungswissenschaft“ der DFG <a
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/richtlinien_forschungsdaten_bildungsforschung.pdf" target="_blank">Bereitstellung und Nutzung quantitativer Forschungsdaten in der
Bildungsforschung</a></li> </ul> </li> <li><b>Psychologie</b></br> <ul> <li>Die <a
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/empfehlungen_forschungsdaten_psychologie.pdf" target=_blank>Empfehlungen des DGPs-Vorstands zum Umgang mit Forschungsdaten im Fach
Psychologie</a></li> <li>Der <a target= _blank href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/empfehlungen_forschungsdaten_psychologie_kommentar.pdf">Kommentar des Fachkollegiums
Psychologie und der Geschäftsstelle der DFG</a> zu den Empfehlungen des DGPs-Vorstands zum Umgang mit Forschungsdaten</li> <li>Die <a
href="https://www.dfg.de/download/pdf/foerderung/grundlagen_dfg_foerderung/informationen_fachwissenschaften/geisteswissenschaften/foerderkriterien_replikationsstudien_psychologie.pdf" target=_blank>Förderkriterien für direkte
Replikationsstudienin der Psychologie</a></li> </ul> </li> <li><b>Ethnologie / Volkskunde</b></br> <a href="http://www.d-g-v.org/sites/default/files/dgv-positionspapier_fdm.pdf"
target=_blank>Positionspapier der Deutschen Gesellschaft für Volkskunde e.V. zu Archivierung, Bereitstellung und Nachnutzung von Forschungsdaten</a></li> <li><b>Biodiversität</b> </br><a
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/richtlinien_forschungsdaten_biodiversitaetsforschung.pdf" target=_blank>Richtlinien zum Umgang mit Forschungsdaten in der Biodiversitätsforschung</a>
</li> </ul> <b>Bitte ziehen Sie immer auch die DFG-Webseite zu Rate.</b> Gerade beim Datenmanagement werden regelmäßig neue Empfehlungen ausgesprochen und dieser Fragebogen könnte diese Informationen noch nicht enthalten!</help>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/fachspezifische_fragen/subject">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>subject</key>
<path>DFG_editions_cleansed/allgemeines/fachspezifische_fragen/subject</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/research_field"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/fachspezifische_fragen"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en">If your answer is "yes", please contact for more information: <a target="_blank" href="https://CONTACT.LINK">CONTACT_CENTRE</a>.</help>
<text lang="en">Are there other DFG regulations in addition to the "funding criteria for editions in literary studies" that apply to the project?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">FallsSie diese Frage mit "ja" beantworten, sollten Sie sich mit der Beratungsstelle in Verbindung setzten, da verschiedenen Fachanforderungen berücksichtigt werden müssen: <a target="_blank"
href="https://KONTAKT.LINK">KONTAKTSTELLE</a>.</help>
<text lang="de">Treffen neben den Förderkriterien für wissenschaftliche Editionen in der Literaturwissenschaft auch andere fachliche Vorgaben auf das Projekt zu?</text>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<widget_type>yesno</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://fdm-bayern.org/eHumanities/options/guidance_set"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/sfb_rules">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>sfb_rules</key>
<path>DFG_editions_cleansed/allgemeines/sfb_rules</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/funder/id"/>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines"/>
<is_collection>False</is_collection>
<order>1</order>
<title lang="en">data policy</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Datenpolicy</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/sfb_rules/policy">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>policy</key>
<path>DFG_editions_cleansed/allgemeines/sfb_rules/policy</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/funder/rdm_policy"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/sfb_rules"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en">If the project already has its own data policy, you could for example link to it here. COMMENT_ON_INST_POLICY Furthermore, you should consider guidelines and standards that are already established in your scientific community. <div
class="akkordeon"> <div> <input type="checkbox" name="acc" id="acc1"> <label for="acc1">Example answer</label> <div class="acc-body">
EXAMPLE_ANSWER_BASED_ON_INST_POLICY </div> </div> </div> Additionally, the guidelines and funding rules mentioned in the previous question can be relevant. Note that for <b>scientific editions</b> the <a
target="_blank" href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/foerderkriterien_editionen_literaturwissenschaft.pdf">DFG funding rules</a> have general stipulations for the grant
appliaction as well as data management requirements. The general stipulations are not covered yet in this questionnaire.</help>
<text lang="en">Are there established rules for handling data within the project? If so, what are these rules? Are there other guidelines that will be followed?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Wenn die Regeln bereits verschriftlicht sind, z.B. weil die beteiligten Institute bereits über Vorschriften verfügen oder weil es Vorgaben von Fachgesellschaften gibt, können diese auch einfach verlinkt werden. Gehen Sie hier
insbesondere auf Leitlinien und Standards der Fachcommunity ein. <br /> KOMMENTAR_ZU_INST_POLICY <div class="akkordeon"> <div> <input type="checkbox" name="acc" id="acc1"> <label
for="acc1">Beispielantwort</label> <div class="acc-body"> BEISPIELANTWORT_MIT_POLICY </div> </div> </div> </br> Darüber hinaus sind auch die Richtlinien, die in der vorangehenden Frage
angegeben wurden unter Umständen für das Projekt von Bedeutung. Beachten Sie, dass für <b>Editionen in der Literaturwissenschaft</b> die <a target="_blank"
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/foerderkriterien_editionen_literaturwissenschaft.pdf">Förderrichtlinien</a> neben Regelungen zum Datenmanagement auch einige allgemeine Anforderungen
beinhalten (Publikationsform, Aufbau, usw.). Diese werden durch diesen Fragenbogen zum Datenmanagement nicht vollständig abgedeckt.</help>
<text lang="de">Werden für das Gesamtprojekt eigene Regeln zum Umgang mit Forschungsdaten vorgegeben? Wenn ja, welche Regeln sind das? Gibt es noch andere Richtlinien, die verbindlich sind?</text>
<verbose_name lang="de"/>
<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://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/general">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>general</key>
<path>DFG_editions_cleansed/allgemeines/general</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/partner/id"/>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines"/>
<is_collection>False</is_collection>
<order>2</order>
<title lang="en">Management</title>
<help lang="en">The questionnaire follows the grant application guidelines for a CRC. It can, however, also be used for generic DFG grant proposals which need to follow similar (if slightly less extensive) data management criteria. Furthermore, the
data management provisions of the DFG funding criteria for editions in literary studies are included.</help>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Management</title>
<help lang="de">Dieser Fragebogen folgt den DFG-Vorgaben für SFB-Anträge. Er kann aber auch für allgemeine DFG-Anträge genutzt werden, die ähnlichen, wenn auch geringfügig weniger umfassenden Kriterien folgen müssen. Zusätzlich werden die
Anforderungen an das Datenmanagement der Förderrichtlinien für wissenschaftliche Editionen der DFG abgefragt.</help>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/general/data_coordinator">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>data_coordinator</key>
<path>DFG_editions_cleansed/allgemeines/general/data_coordinator</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/coordination"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/general"/>
<is_collection>True</is_collection>
<order>1</order>
<help lang="en">Ideally you want to have (at least) one person who will be responsible for data management in the whole project or CRC. This could e.g. be a PI or a scientist specifically attached to a central administrative project. The coordination
could involve: making sure that members follow the agreed upon rules for handling data; check whether individual projects deposit data and documentation; administrate the project wiki; keep in touch with computer centers, libraries and data archives;
make sure data that data used in multiple projects is stored to everyone's satisfaction.</help>
<text lang="en">Who is responsible for coordinating data management across the whole project? What are the persons' duties?</text>
<verbose_name lang="en">data manager</verbose_name>
<verbose_name_plural lang="en">data managers</verbose_name_plural>
<help lang="de">Eine Person, die sich dauerhaft um das Datenmanagement kümmert, ist von Vorteil. Dies kann bei einem SFB zum Beispiel ein/e PI oder ein/e Wissenschaftler/in sein, die/der dafür teilweise dem zentralen Verwaltungsprojekt zugewiesen
ist. Die Aufgaben könnten umfassen: auf die Einhaltung der internen Regeln zum Umgang mit Daten achten, das Projekt-Wiki beziehungsweise das Datenarchiv administrieren, die Archivierung von Daten und Dokumentation in den Teilprojekten überprüfen oder
Kontaktstelle für Rechenzentren, Bibliotheken und Datenarchive sein, mit denen das Projekt zusammenarbeitet.</help>
<text lang="de">Wer ist für die Koordination des Datenmanagements im gesamten Projekt zuständig? Was sind die Aufgaben dieser Person / der Personen?</text>
<verbose_name lang="de">Koordinator</verbose_name>
<verbose_name_plural lang="de">Koordinatoren</verbose_name_plural>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/services">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>services</key>
<path>DFG_editions_cleansed/allgemeines/services</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project"/>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines"/>
<is_collection>False</is_collection>
<order>3</order>
<title lang="en">Tools for data management</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Werkzeuge für das Datenmanagement</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/services/tools">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>tools</key>
<path>DFG_editions_cleansed/allgemeines/services/tools</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/support"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/services"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en">Some examples: * A project wiki that is used to document each dataset in detail (including how and when different versions have been updated or cleansed) * Each project continuously updates a data management plan - using a wiki or a
dedicated tool like RDMO, DMPonline or <a target="_blank" href="https://datawiz.leibniz-psychology.org/DataWiz/">DataWiz</a>. * you will use electronic lab books to ensure reproducibility and to allow for frictionless
cooperation among various labs You should be aware that referees sometimes ask for details about the software (why this tool? how will it be used? who is responsible? what about data privacy? how can you extract the information without loss, if the
system has to be abandoned / changed? ...).</help>
<text lang="en">Will you employ tools that assist researchers with the data management? How are these utilized in the research workflow?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Einige Beispiele: * Ein Wiki, in dem alle Arbeitsschritte mit den Datensätzen dokumentiert werden: wann und wie der Datensatz modifiziert wird; wann und wie ein Schritt zur Datenbereinigung durchgeführt wurde, usw. * jedes Projekt
wird einen Datenmanagementplan pflegen, z.B. in einen Software-Tool wie RDMO, DMPonline oder DataWIZ. * Es werden elektronische Laborbücher verwendet, um die Forschung zu dokumentieren und die Reproduzierbarkeit langfristig zu sichern. Bedenken Sie:
Es kommt vor, dass Gutachter nach Details zu den Tools und zum Einsatz fragen (warum dieses Tool, wie sieht es mit dem Datenschutz aus, wie wird das im Workflow genau eingesetzt, wer kümmert sich um das regelmäßige Befüllen oder was ist die
Exitstrategie, wenn ein kommerzielles Tools nicht weiter verwendet werden kann).</help>
<text lang="de">Werden besondere Werkzeuge zum Datenmanagement eingesetzt? Wie unterstützen diese den Forschungsworkflow?</text>
<verbose_name lang="de"/>
<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://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/other_insitutions">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>other_insitutions</key>
<path>DFG_editions_cleansed/allgemeines/other_insitutions</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/external_services"/>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines"/>
<is_collection>True</is_collection>
<order>5</order>
<title lang="en">Cooperation with infrastructure organizations</title>
<help lang="en">For many projects a cooperation with the various service facilities at UNI_NAME_SHORT, such as the IT centre or the library, is not unlikely. However, especially in CRC/TRs services provided by other research centers are often
utilized (for example services of the Leibniz Supercomputing Centre / LRZ). These services could encompass: * storage and backup for research data * cloud services (like B2SAVE) * institutional data repositories for archiving and publication *
platforms / tools for planning data management * description of data sets with metadata and controlled vocabularies; assistance creating / using ontologies * help archiving and publishing the text data of the edition in basis format To discuss the
cooperation, please add an organization using the green button.</help>
<verbose_name lang="en">organization</verbose_name>
<verbose_name_plural lang="en">organizations</verbose_name_plural>
<title lang="de">Kooperation mit Infrastruktureinrichtungen</title>
<help lang="de">Viele Projekte werden durch andere UNI_NAME_KURZ-Einrichtungen unterstützt, beispielsweise durch das IT-Zentrum oder die Bibliothek. Gerade bei SFB/TR sind häufig Einrichtungen an anderen Universitäten oder Forschungszentren beteiligt
(z.B. das Leibniz-Rechenzentrum). Dienstleistungen dieser Einrichtungen können sein: * Speicherung und Backup von Datensätzen * Cloud-Services (wie B2SAVE) * Institutionelle Datenrepositorien zur Archivierung und Veröffentlichung * Plattformen für
Werkzeuge zur Datenmanagementplanung * Erschließung von Datensätzen / Vergabe von Metadaten; Unterstützung bei der Verwendung / dem Erstellen von Ontologien * Hilfe bei der Bereitstellung der Text-Daten der Edition im Basisformat Um die Kooperation
mit diesen Einrichtungen genauer zu beschreiben, fügen Sie bitte zunächst eine neue Einrichtung mit Hilfe des grünen Buttons hinzu.</help>
<verbose_name lang="de">Einrichtung</verbose_name>
<verbose_name_plural lang="de">Einrichtungen</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/other_insitutions/details">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>details</key>
<path>DFG_editions_cleansed/allgemeines/other_insitutions/details</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/external_services"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/allgemeines/other_insitutions"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en"/>
<text lang="en">Discuss how infrastructure facilities support the CRC:</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Beschreiben Sie, wie die Infrastruktureinrichtung das Projekt beim Daten- und Wissensmanagement unterstützt:</text>
<verbose_name lang="de"/>
<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://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>teilprojekte</key>
<path>DFG_editions_cleansed/teilprojekte</path>
<dc:comment/>
<catalog dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed"/>
<order>2</order>
<title lang="en">Data management</title>
<title lang="de">Datenmanagement</title>
</section>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/data_types">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>data_types</key>
<path>DFG_editions_cleansed/teilprojekte/data_types</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte"/>
<is_collection>True</is_collection>
<order>1</order>
<title lang="en">Research Data</title>
<help lang="en">You can create individual text fields for different data types / sets. This is recommended if a project works with a variety of different data types / sets. For <b>edition projects</b> it is recommendend to treat the
actual <i>text data</i> as a separate dataset, (e.g. separate from scans of manuscripts or the published digital edition), as there are specific DFG requirements for these (see last section of the questionnaire).</help>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<title lang="de">Forschungsdaten</title>
<help lang="de">Sie können für jeden Datentyp / Datensatz ein eigenes Feld anlegen. Dies ist sinnvoll, wenn in einem Teilprojekt sehr unterschiedliche Datentypen verwendet werden. In <b>Editionsprojekten</b> ist es hilfreich, zumindest
die reinen Textdaten der Edition und die (digitale) Edition jeweils einen eigenen Datensatz anzulegen, da dies die Beantwortung der für Editionen spezifischen Fragen erleichtert.</help>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/data_types/research_data">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>research_data</key>
<path>DFG_editions_cleansed/teilprojekte/data_types/research_data</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/description"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/data_types"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en">You can be brief as details on experiments / studies will doubtlessly be presented in the proposal(s) for the individual project(s). Describe data and software with a short abstract. Data formats and types will be the topic of other questions.</help>
<text lang="en">What research data (or software) will be created, collected or re-used in the project?</text>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<help lang="de">Details hierzu werden sich ohnehin in den Antragstexten der einzelnen Teilprojekte finden. Beschreiben Sie die Daten und / oder Software knapp mit einem Abstract; Fragen zu Datenformaten und -typen kommen im Anschluss noch gesondert.</help>
<text lang="de">Welche Datensätze (oder Software) werden erzeugt, bearbeitet oder wiederverwendet?</text>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/data_types/types">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>types</key>
<path>DFG_editions_cleansed/teilprojekte/data_types/types</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/format"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/data_types"/>
<is_collection>True</is_collection>
<order>2</order>
<help lang="en">Also consider if different formats should / will be used at different stages of the project (for raw data, cleansed data, archiving ...) and why these formats are advantageous / sustainable. Data types / methods include [examples for
formats in brackets] * quantitative online survey [csv-file, SPSS (.por, .sav),...] * 3D model / digital reconstruction of a stone age settlement * software developed within the project * quantitative interviews [avi, wav, mp4, ...] * transcriptions
of historic deeds [TEI P5, text files encoded in unicode UTF-8,...] * photographs of works of art [tif, jpeg2000, png, ...] 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. A table with recommended file formats can be found in Kristin Briney, <i>Data Management for
Researchers</i>, Pelargic, 2015, pages 133-134.</help>
<text lang="en">What kind of data types will be generated? What data formats will be used for the data?</text>
<verbose_name lang="en">data type</verbose_name>
<verbose_name_plural lang="en">data types</verbose_name_plural>
<help lang="de">Gehen Sie auch darauf ein, ob unterschiedliche Formate in unterschiedlichen Phasen eingesetzt werden (etwa für die Rohdaten, für die aufbereiteten Daten oder zur langfristigen Archivierung). Warum sind diese Datenformate von Vorteil
bzw. nachhaltig? Die Datentypen / Methoden können beispielsweise sein [Beispiele für Datenformate in Klammern]: * quantitative Online-Befragung [csv, SPSS-Dateien (.por, .sav), ...] * 3D-Modellierung / digitale Rekonstruktion einer steinzeitlichen
Siedlung * Software, die im Projekt entwickelt wird * qualitative Interviews [.wav, .mp4, ...] * Transkriptionen alter Urkunden [TEI P5, Textdatei kodiert in Unicode in UTF-8, ...] * Aufnahmen von Kunstwerken [.tif, jpeg2000, .png, ...] 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="http://nestor.sub.uni-goettingen.de/handbuch/" target="_blank">nestor Handbuch</a> zu finden.</help>
<text lang="de">Welche Datentypen werden erzeugt? Welche Datenformate werden hierfür eingesetzt?</text>
<verbose_name lang="de">Datentyp</verbose_name>
<verbose_name_plural lang="de">Datentypen</verbose_name_plural>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/data_types/Standards">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>Standards</key>
<path>DFG_editions_cleansed/teilprojekte/data_types/Standards</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/metadata"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/data_types"/>
<is_collection>False</is_collection>
<order>3</order>
<help lang="en">Standards are usually discipline or data type specific. E.g., in social sciences the DDI (metadata) standards are quite common. Various scholarly societies have guidelines regarding documentation and metadata to ensure re-usability
and reproducibility. For scientific editions DFG expects all projects to publish the underlying text data in the so called basis format, see page 6 of the <a target="_blank"
href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/foerderkriterien_editionen_literaturwissenschaft.pdf">funding rules</a>. This will be addressed in more detail in the final section of the
questionnaire.</help>
<text lang="en">Are data documented / described with metadata according to certain (community) standards?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Standards sind meist Disziplin- bzw. Datentyp-spezifisch. So sind die DDI-Metaddaten-Standards bei sozialwissenschaftlichen Daten sehr verbreitet. Etliche Fachgesellschaften (z.B. die Deutsche Gesellschaft für Psychologie) haben
eigenen Empfehlungen, was die Dokumentation oder Metadaten angeht. Bei wissenschaftlichen Editionen in der Literaturwissenschaft wird erwartet, dass die Textdaten im sogenannten Basisformat bereitgestellt werden, siehe Seite 6 der <a
target="_blank" href="https://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten/foerderkriterien_editionen_literaturwissenschaft.pdf">Förderkriterien</a>. Dies wird im letzten Abschnitt des Fragebogens
noch genauer behandelt.</help>
<text lang="de">Werden die Daten nach bestimmten (Fach-)Standards dokumentiert / mit Metadaten versehen?</text>
<verbose_name lang="de"/>
<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/DFG_editions_cleansed/teilprojekte/data-existing_data">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>data-existing_data</key>
<path>DFG_editions_cleansed/teilprojekte/data-existing_data</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte"/>
<is_collection>True</is_collection>
<order>10</order>
<title lang="en">Data origin</title>
<help lang="en"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<title lang="de">Datenursprung</title>
<help lang="de"/>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/DFG_editions_cleansed/teilprojekte/data-existing_data/origin">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>origin</key>
<path>DFG_editions_cleansed/teilprojekte/data-existing_data/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/DFG_editions_cleansed/teilprojekte/data-existing_data"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en"/>
<text lang="en">Is the dataset being created or re-used?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Wird der Datensatz selbst erzeugt oder nachgenutzt?</text>
<verbose_name lang="de"/>
<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/DFG_editions_cleansed/teilprojekte/data-existing_data/creator_name">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>creator_name</key>
<path>DFG_editions_cleansed/teilprojekte/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://rdmorganiser.github.io/terms/questions/DFG_editions_cleansed/teilprojekte/data-existing_data"/>
<is_collection>False</is_collection>
<order>2</order>
<help lang="en"/>
<text lang="en">If re-used, who created the dataset?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Wenn nachgenutzt, wer hat den Datensatz erzeugt?</text>
<verbose_name lang="de"/>
<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/DFG_editions_cleansed/teilprojekte/data-existing_data/uri">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>uri</key>
<path>DFG_editions_cleansed/teilprojekte/data-existing_data/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/DFG_editions_cleansed/teilprojekte/data-existing_data"/>
<is_collection>False</is_collection>
<order>3</order>
<help lang="en"/>
<text lang="en">If re-used, under which address, PID or URL can the dataset be found?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Wenn nachgenutzt, unter welcher Adresse, PID oder URL ist der Datensatz verfügbar?</text>
<verbose_name lang="de"/>
<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/DFG_editions_cleansed/teilprojekte/data-existing_data/scenario">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>scenario</key>
<path>DFG_editions_cleansed/teilprojekte/data-existing_data/scenario</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/reuse_scenario"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/DFG_editions_cleansed/teilprojekte/data-existing_data"/>
<is_collection>False</is_collection>
<order>5</order>
<help lang="en"/>
<text lang="en">Which individuals, groups or institutions could be interested in re-using this dataset? What are possible scenarios? What consequences does the re-use potential have for the provision of the data later?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Für welche Personen, Gruppen oder Institutionen könnte dieser Datensatz (für die Nachnutzung) von Interesse sein? Für welche Szenarien ist dies denkbar?</text>
<verbose_name lang="de"/>
<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://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/qa">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>qa</key>
<path>DFG_editions_cleansed/teilprojekte/qa</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte"/>
<is_collection>True</is_collection>
<order>30</order>
<title lang="en">Quality Assurance</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Maßnahmen zur Qualitätssicherung</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/qa/curator">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>curator</key>
<path>DFG_editions_cleansed/teilprojekte/qa/curator</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/collaboration_organisation"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/qa"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en"/>
<text lang="en">Who will be responsible for the data management and quality control?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Wer ist für das Datenmanagement und die Qualitätssicherung verantwortlich?</text>
<verbose_name lang="de"/>
<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/DFG_editions_cleansed/teilprojekte/qa/type">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>type</key>
<path>DFG_editions_cleansed/teilprojekte/qa/type</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/storage/type"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/qa"/>
<is_collection>False</is_collection>
<order>2</order>
<help lang="en">If parts of the documentation or related software (custom development) are not stored with the data, also indicate where they are stored. This applies to the documentation of the software, too.</help>
<text lang="en">Where is the dataset stored during the project?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Falls Teile der Dokumentation oder zugehöriger, selbst entwickelter Software nicht mit dem Datensatz zusammen gespeichert sind, sollten Sie auch angeben, wo diese gespeichert sind. Das gilt auch für die Dokumentation der Software.</help>
<text lang="de">Wo wird der Datensatz während des Projektes gespeichert?</text>
<verbose_name lang="de"/>
<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://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/qa/qa">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>qa</key>
<path>DFG_editions_cleansed/teilprojekte/qa/qa</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/quality_assurance"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/teilprojekte/qa"/>
<is_collection>False</is_collection>
<order>3</order>
<help lang="en">This includes for example direct measure during data collection or analysis, such as: <ul> <li>detailed training for the collectors to avoid accidental contamination of the data (for example during interviews,
psychological experiments, ...)</li> <li>redundant data collection / transcriptions</li> <li>details protocols for each interviews</li> <li>strict separation of data collection / generation and analysis (Black
Box)</li> </ul> as well as administrative steps <ul> <li>regular update of a data management plan</li> <li>authentication steps for access to the (raw) data</li> <li>use of automated backup tools and
redundant storage devices</li> <li>documentation of each modification / step during data analysis</li> </ul> In particular, you should clearly address how and where data (raw data, cleansed date etc.) will be stored and
backuped during the project.</help>
<text lang="en">What measures will be taken to ensure integrity and quality of the data?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Hierunter können direkte Maßnahmen bei der Datenerhebung / Auswertung fallen, wie etwa: <ul> <li>eingängige Schulung der Erhebenden, um unabsichtliche Beeinflussung der Ergebnisse zu verhindern (beispielsweise bei
Interviews, Experimenten in der Psychologie, ...)</li> <li>doppelte Datenerhebung</li> <li>Kalibrationsprotokolle für jeden Sensor</li> <li>strikte Trennung von Analyse und Datenerhebung</li> <li>feste
Auswertprotokolle, die zunächst an simulierten Datensätzen getestet / optimiert werden, und dann ohne weitere Veränderung auf den Rohdatensatz angewandt werden (Black Box Verfahren) </li> </ul> oder administrative Maßnahmen: <ul>
<li>Erstellen von Datenmanagementplänen</li> <li>Authentifizierungsschritte vor dem Zugriff auf die (Roh-)Daten</li> <li>Einsatz von automatische Backup-Tools und von redundanten Speichersysteme</li>
<li>Dokumentation aller Arbeitsschritte während der Analyse in einem Wiki</li> </ul> Hier sollte in jedem Fall beschrieben werden, wie und wo die Daten (Rohdaten, aufbereitet Daten, usw.) während des Projektes gespeichert werden und
wie die Backups der Daten erzeugt werden.</help>
<text lang="de">Welche Maßnahmen zur Qualitätssicherung der Datenspeicherung und der Datenerhebung werden durchgeführt?</text>
<verbose_name lang="de"/>
<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://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/legal_aspects">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>legal_aspects</key>
<path>DFG_editions_cleansed/legal_aspects</path>
<dc:comment/>
<catalog dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed"/>
<order>3</order>
<title lang="en">Legal aspects and ethics</title>
<title lang="de">Rechtliche und ethische Aspekte</title>
</section>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/DFG_editions_cleansed/legal_aspects/intellectual-property-rights-dataset">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>intellectual-property-rights-dataset</key>
<path>DFG_editions_cleansed/legal_aspects/intellectual-property-rights-dataset</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/legal_aspects"/>
<is_collection>True</is_collection>
<order>31</order>
<title lang="en">Intellectual property rights</title>
<help lang="en">Data or software can be subject to intellectual or industrial property rights. Applicable laws differ broadly even within EU. According to the German copyright law (UrhG) works of literature, scholarship and the arts that can be
regarded as a “personal intellectual creation” are protected by copyright. Copyright protection expires 70 years after the death of the copyright holder. Mere data, e.g. measured data or survey data, and metadata (except in some cases descriptive
metadata) are not protected by copyright. § 2 of the UrhG lists the following kinds of protected works (list is not concluded): * linguistic works such as written works, speeches and computer programs * works of music * pantomimic works including
works of the art of dance * works or the fine arts including works of architecture and the applied arts as well as sketches of such works * works of photography and cinematography * descriptions and illustrations of scholarly or technical nature such
as drawings, plans, maps, sketches, tables and three-dimensional represenations According to § 3, copyright is also applicable to translations and other modifications or adaptions of a work if they are individual intellectual creations of the editor.
Finally, according to § 4 copyright also extents to collected editions and database works. Collected editions are “collections of work, data or other independent elements that are individual intellectual creations based on the selection and
arrangement of the elements”. Database works are defined as “collected editions, the elements of which are arranged in a systematic or methodical way and can be accessed individually by electronic means or in other ways”. Other relevant property
rights can be trademarks, patents, utility models, plant variety rights protection, integrated circuit layout design protection, geographical indications or registered designs.</help>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<title lang="de">Urheber- oder verwandte Schutzrechte</title>
<help lang="de">Daten oder Software können Urheber- oder anderen Schutzrechten unterliegen. Die Rechtslage kann selbst in der EU von Land zu Land erheblich abweichen. In Deutschland sind nach dem Urheberrechtsgesetz (UrhG) Werke der Literatur,
Wissenschaft und Kunst, die eine „persönliche geistige Schöpfung“ darstellen, urheberrechtlich geschützt. Der urheberrechtliche Schutz erlischt 70 Jahre nach dem Tod der bzw. des Urheberin/s. Reine Daten, z.B. Messdaten oder Survey-Daten, aber auch
Metadaten (bis auf ggf. „beschreibende“ Metadaten) sind hingegen nicht schutzfähig. In § 2 nennt das UrhG folgende geschützte Werkarten, wobei die Aufzählung nicht abschließend ist: * Sprachwerke, wie Schriftwerke, Reden und Computerprogramme * Werke
der Musik * pantomimische Werke einschließlich Werke der Tanzkunst * Werke der bildenden Künste einschließlich der Werke der Baukunst und der angewandten Kunst und Entwürfe solcher Werke * Lichtbildwerke einschließlich der Werke, die ähnlich wie
Lichtbildwerke geschaffen werden * Darstellungen wissenschaftlicher oder technischer Art wie Zeichnungen, Pläne, Karten, Skizzen, Tabellen und plastische Darstellungen. Nach § 3 sind auch „Übersetzungen und andere Bearbeitungen“ von Werken geschützt,
die persönliche geistige Schöpfungen des Bearbeiters sind“. Schließlich sind nach § 4 auch Sammelwerke und Datenbankwerke geschützt, was im Bereich Forschungsdaten durchaus relevant sein kann. Sammelbankwerke werden dabei definiert als „Sammlungen
von Werken, Daten oder anderen unabhängigen Elementen, die aufgrund der Auswahl oder Anordnung der Elemente eine persönliche geistige Schöpfung sind“. Bei einem „Datenbankwerk im Sinne des Gesetzes“ handelt es sich um ein „Sammelwerk, dessen Elemente
systematisch oder methodisch angeordnet und einzeln mit Hilfe elektronischer Mittel oder auf andere Weise zugänglich sind“. Weitere relevante Schutzrechte können gewerbliche Schutzrechte wie Patente, Gebrauchsmuster, Sortenschutz [bei
Pflanzenzüchtungen], Halbleiterschutz, Marken, geographische Herkunftsangaben, eingetragene Designs oder geschäftliche Bezeichnungen sein.</help>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmorganiser.github.io/terms/questions/DFG_editions_cleansed/legal_aspects/intellectual-property-rights-dataset/copyrights">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>copyrights</key>
<path>DFG_editions_cleansed/legal_aspects/intellectual-property-rights-dataset/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/DFG_editions_cleansed/legal_aspects/intellectual-property-rights-dataset"/>
<is_collection>True</is_collection>
<order>1</order>
<help lang="en"/>
<text lang="en">Does copyright law apply to this dataset?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Be- oder entstehen an diesem Datensatz Urheberrechte?</text>
<verbose_name lang="de"/>
<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/DFG_editions_cleansed/legal_aspects/intellectual-property-rights-dataset/other_rights">
<uri_prefix>https://rdmorganiser.github.io/terms</uri_prefix>
<key>other_rights</key>
<path>DFG_editions_cleansed/legal_aspects/intellectual-property-rights-dataset/other_rights</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/ipr"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/DFG_editions_cleansed/legal_aspects/intellectual-property-rights-dataset"/>
<is_collection>True</is_collection>
<order>2</order>
<help lang="en"/>
<text lang="en">Do other intellectual property rights apply to this dataset?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Be- oder entstehen an diesem Datensatz andere Schutzrechte?</text>
<verbose_name lang="de"/>
<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://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/legal_aspects/intellectual-property-rights-dataset/reuse_rules">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>reuse_rules</key>
<path>DFG_editions_cleansed/legal_aspects/intellectual-property-rights-dataset/reuse_rules</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/ipr/owner"/>
<questionset dc:uri="https://rdmorganiser.github.io/terms/questions/DFG_editions_cleansed/legal_aspects/intellectual-property-rights-dataset"/>
<is_collection>False</is_collection>
<order>3</order>
<help lang="en">The condition may be set in a contract (in German: "Nutzungsüberlassungsvertrag") or the dataset / software can be published under a specific license. Common examples for the latter case are CC licenses (e.g., CC0 or CC BY),
the MIT license, the GNU Public License or the Apache license.</help>
<text lang="en">If you re-use data in the project: What are the conditions for re-use? Were the data published under a specific license?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Die Nutzungsbedingungen können vertraglich geregelt werden (Nutzungsüberlassungsvertrag mit einem Industriepartner oder anderem Datengeber) oder die Daten / Software werden unter einer entsprechenden Lizenz publiziert. Beispiele für
gebräuchliche Lizenzen sind die CC Lizenzen (insbesondere CC0 oder CC BY), die Apache Lizenz, die GNU Public License oder die MIT Lizenz.</help>
<text lang="de">Falls Daten Dritter nachgenutzt werden: Was sind die Bedingungen für die Nutzung? Unter welcher Lizenz wurden die Daten veröffentlicht?</text>
<verbose_name lang="de"/>
<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://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/legal_aspects/legal_aspects">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>legal_aspects</key>
<path>DFG_editions_cleansed/legal_aspects/legal_aspects</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/legal_aspects"/>
<is_collection>True</is_collection>
<order>41</order>
<title lang="en">Legal Aspects</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Rechtliche Aspekte</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/legal_aspects/legal_aspects/schranken">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>schranken</key>
<path>DFG_editions_cleansed/legal_aspects/legal_aspects/schranken</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/ipr/other_rights"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/legal_aspects/legal_aspects"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en">This includes, for example: * Contracts with an industry partner. * The dataset contains personal data. Hence the data are subject to data / privacy protection laws. * The data are sensitive and need to be stored in a secure system.
E.g., datasets contain personal information, the location of an endangered species or information on a vulnerable archaeological site.</help>
<text lang="en">Are (parts of) the data subject to other legal or contractual constraints?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Dies kann umfassen: * vertragliche Vereinbarungen mit Partnern aus der Industrie. * Der Datensatz / die Texte enthalten personenbezogene Daten und unterliegen Datenschutzauflagen (z.B. eine Anonymisierung der Rohdaten ist notwendig) *
Die Daten sind besonders sensibel und können nicht einfach weitergegeben werden (Geolokalisierung einer Ausgrabung, Lebensraum bedrohter Tierarten, ...).</help>
<text lang="de">Sind die Daten oder Teile der Daten in dem Projekt von weiteren rechtlichen Regelungen betroffen?</text>
<verbose_name lang="de"/>
<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://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/editions">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>editions</key>
<path>DFG_editions_cleansed/editions</path>
<dc:comment/>
<catalog dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed"/>
<order>5</order>
<title lang="en">Special questions for scientific editions</title>
<title lang="de">Spezielle Fragen zu Editionsprojekten</title>
</section>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/editions/editionen">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>editionen</key>
<path>DFG_editions_cleansed/editions/editionen</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/editions"/>
<is_collection>False</is_collection>
<order>10</order>
<title lang="en">Requirements for Scientific Editions I</title>
<help lang="en">If the project involves a scientific edition, the DFG requires additional information regarding data management in the grant application. See also <a
href="https://www.dfg.de/download/pdf/foerderung/grundlagen_dfg_foerderung/informationen_fachwissenschaften/geisteswissenschaften/foerderkriterien_editionen_literaturwissenschaft.pdf" target="_blank">further criteria</a>
beyond data management. This first part of questions deals with the publication of the edition and not the associated data. These topics can also be part of the actual project description.</help>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Kriterien für wissenschaftliche Editionen I</title>
<help lang="de">Falls das (Teil-)Projekt eine wissenschaftliche Edition erstellt, gibt es weitere Anforderungen an das Datenmanagement, die im Antragstext diskutiert werden müssen. Siehe auch die <a
href="https://www.dfg.de/download/pdf/foerderung/grundlagen_dfg_foerderung/informationen_fachwissenschaften/geisteswissenschaften/foerderkriterien_editionen_literaturwissenschaft.pdf" target="_blank">Anforderungen an
Editionsprojekte</a>. Die in diesem Anschnitt aufgeführten Fragen sind nicht alle Bestandteil des Datenmanagements, sondern befassen sich auch mit der Publikation der Edition selbst. Diese Aspekte können auch in der Projektbeschreibung
behandelt werden.</help>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/editions/editionen/legal_questions">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>legal_questions</key>
<path>DFG_editions_cleansed/editions/editionen/legal_questions</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/legal_aspects"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/editions/editionen"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en">DFG generally expects that all steps to clarify the legal situation are finished at the time of the application. Hence, DFG funding cannot be used for this purpose.</help>
<text lang="en">Have the legal aspects for the publication for the edition (e.g. copyright, intellectual property rights, privacy laws or data protection rules) been sorted out? If there are still unclear aspects discuss and evaluate them in detail.</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Die DFG erwartet in der Regel, dass die Maßnahmen zur Klärung der rechtlichen Situation vor der Antragstellung durchgeführt werden. Diese Maßnahmen können deshalb nicht durch DFG-Mittel finanziert werden.</help>
<text lang="de">Sind die rechtlichen Fragen zur Veröffentlichung der Edition (z.B. Urheberrecht, Datenschutzrecht, Leistungsschutz- und Persönlichkeitsrecht) bereits geklärt? Sollte es ungeklärte Aspekte geben, benennen und bewerten Sie diese konkret.</text>
<verbose_name lang="de"/>
<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://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/editions/editionen/form_of_publication">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>form_of_publication</key>
<path>DFG_editions_cleansed/editions/editionen/form_of_publication</path>
<dc:comment/>
<attribute dc:uri="https://fdm-bayern.org/eHumanities/domain/project/editions/publication_form"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/editions/editionen"/>
<is_collection>False</is_collection>
<order>2</order>
<help lang="en">If you do not plan a purely digital publication, the desicion must be explained and justified in the edition concept. If the edition is not published in digital form at all, you should ensure that the (print) publishers do not obtain
the exclusive rights to a digital publication for a longer period of time. This way a digital publication can still be attempted at a later stage.</help>
<text lang="en">How will the edition be published?</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Falls keine (reine) digitale Veröffentlichung geplant ist, muss diese Entscheidung im Editionskonzept begründet werden. Falls auf eine digitale Publikation verzichtet wird, sollte darauf geachtet werden entsprechende exklusive
Nutzungsrechte nicht dauerhaft an die Verlage abzutreten. So ist eine digitale Publikation zu einem späteren Zeitpunkt noch möglich.</help>
<text lang="de">Wie wird die Edition publiziert werden?</text>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<widget_type>radio</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://fdm-bayern.org/eHumanities/options/publication_form"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/editions/editionen_2">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>editionen_2</key>
<path>DFG_editions_cleansed/editions/editionen_2</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/editions"/>
<is_collection>False</is_collection>
<order>15</order>
<title lang="en">Requirements for Scientific Editions II - Digital Editions</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Kriterien für wissenschaftliche Editionen II - Digitale Editionen</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/editions/editionen_2/open_access">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>open_access</key>
<path>DFG_editions_cleansed/editions/editionen_2/open_access</path>
<dc:comment/>
<attribute dc:uri="https://fdm-bayern.org/eHumanities/domain/project/editions/openaccess"/>
<questionset dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/editions/editionen_2"/>
<is_collection>False</is_collection>
<order>1</order>
<help lang="en"/>
<text lang="en">For digital publications: Will the publication be open access? If not, please give detailed reasons.</text>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Falls eine digitale Veröffentlichung geplant ist: Wird die Veröffentlichung Open Access erfolgen? Falls dem nicht so ist, begründen Sie dies.</text>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<widget_type>radio</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<optionsets>
<optionset dc:uri="https://fdm-bayern.org/eHumanities/options/open_access"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://fdm-bayern.org/eHumanities/questions/DFG_editions_cleansed/editions/editionen_2/technical_standards">
<uri_prefix>https://fdm-bayern.org/eHumanities</uri_prefix>
<key>technical_standards</key>
<path>DFG_editions_cleansed/editions/editionen_2/technical_standards</path>