-
Notifications
You must be signed in to change notification settings - Fork 38
/
mathplus_questions.xml
1730 lines (1720 loc) · 82 KB
/
mathplus_questions.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<rdmo xmlns:dc="http://purl.org/dc/elements/1.1/" created="2022-11-18T18:10:09.309595+01:00">
<catalog dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>mathplus</key>
<dc:comment>Dieser Fragenkatalog ist eine Anpassung an die Erfordernisse der mathematischen DMP im Umfeld der Berliner Mathematik. Er basiert in großen Teilen auf dem DFG-Fragenkatalog aus dem Projekt "FoDaKo - Forschungsdatenmanagement in Kooperation" (https://github.com/rdmorganiser/rdmo-catalog/tree/master/shared/fodako). Er ist eine Teilmenge des Katalogs "RDMO" und enthält nur die Fragen, die die Anforderungen in den "Leitlinien zum Umgang mit Forschungsdaten" der DFG, http://www.dfg.de/download/pdf/foerderung/antragstellung/forschungsdaten, abdecken. Die Fragen sind somit ausgesucht für Datenmanagementpläne, die Förderanträgen an die Deutsche Forschungsgemeinschaft (DFG) beigelegt werden sollen und keine fachspezifischen Zusatzanforderungen zu erfüllen haben.</dc:comment>
<order>500</order>
<title lang="en">DFG</title>
<help lang="en"/>
<title lang="de">DFG</title>
<help lang="de"/>
</catalog>
<section dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/content-classification">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>content-classification</key>
<path>mathplus/content-classification</path>
<dc:comment/>
<catalog dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus"/>
<order>1</order>
<title lang="en">Content classification</title>
<title lang="de">Inhaltliche Einordnung</title>
</section>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/content-classification/data-dataset">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>data-dataset</key>
<path>mathplus/content-classification/data-dataset</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/content-classification"/>
<questionset/>
<is_collection>True</is_collection>
<order>1</order>
<title lang="en">Datasets</title>
<help lang="en">The following questions collect information on the data that is used in the project. What are research data anyway? A more theoretical overview can be found here: <a href="https://library.leeds.ac.uk/info/14062/research_data_management/61/research_data_management_explained">https://library.leeds.ac.uk/info/14062/research_data_management/61/research_data_management_explained</a>. A very rough estimate would be that anything I use my mathematics on is research data.</help>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<title lang="de">Datensätze</title>
<help lang="de">Die nächsten zwei Fragen dienen zur Beschreibung der Datensätze, die im Projekt erzeugt oder verwendet werden.
Was sind eigentlich Forschungsdaten? Eine eher theoretische Übersicht findet man hier: <a href="https://www.forschungsdaten.org/index.php/Forschungsdaten">https://www.forschungsdaten.org/index.php/Forschungsdaten</a>. Prinzipiell sind Forschungsdaten alles, worauf ich meine Mathematik anwende.</help>
<verbose_name lang="de">Datensatz</verbose_name>
<verbose_name_plural lang="de">Datensätze</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/content-classification/data-dataset/description">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>description</key>
<path>mathplus/content-classification/data-dataset/description</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/description"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/content-classification/data-dataset"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<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:
* SPSS data - quantitative online survey
* 3D model / digital reconstruction of a stone age settlement
* Software developed within the project
* Trained Neural Networks</help>
<text lang="en">What kind of dataset is it?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Bitte beschreiben Sie hier kurz, um welche Art von Daten es sich handelt und mit welcher Methode die Daten erhoben oder erstellt wurden, z.B.:
* SPSS Datensatz - quantitative Online-Befragung
* 3D-Modell / digitale Rekonstruktion einer steinzeitlichen Siedlung
* Software, die im Projekt entwickelt wird
* Trained Neural Networks</help>
<text lang="de">Um was für einen Datensatz handelt es sich?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/content-classification/data-existing_data">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>data-existing_data</key>
<path>mathplus/content-classification/data-existing_data</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/content-classification"/>
<questionset/>
<is_collection>True</is_collection>
<order>2</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://rdmo.mathplus.de/terms/questions/mathplus/content-classification/data-existing_data/origin">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>origin</key>
<path>mathplus/content-classification/data-existing_data/origin</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/origin"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/content-classification/data-existing_data"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en"/>
<text lang="en">Is the dataset being created or re-used?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Wird der Datensatz selbst erzeugt oder nachgenutzt?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>radio</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/dataset_origin_options"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/content-classification/data-existing_data/creator_name">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>creator_name</key>
<path>mathplus/content-classification/data-existing_data/creator_name</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/creator/name"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/content-classification/data-existing_data"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en"/>
<text lang="en">If re-used, who created the dataset?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Wenn nachgenutzt, wer hat den Datensatz erzeugt?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/content-classification/data-existing_data/uri">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>uri</key>
<path>mathplus/content-classification/data-existing_data/uri</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/uri"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/content-classification/data-existing_data"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>3</order>
<help lang="en"/>
<text lang="en">If re-used, under which address, PID or URL can the dataset be found?</text>
<default_text lang="en"/>
<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>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<section dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>technical-classification</key>
<path>mathplus/technical-classification</path>
<dc:comment/>
<catalog dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus"/>
<order>2</order>
<title lang="en">Technical classification</title>
<title lang="de">Technische Einordnung</title>
</section>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-volume">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>data-volume</key>
<path>mathplus/technical-classification/data-volume</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification"/>
<questionset/>
<is_collection>True</is_collection>
<order>2</order>
<title lang="en">Data size</title>
<help lang="en"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<title lang="de">Datengröße</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://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-volume/volume">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>volume</key>
<path>mathplus/technical-classification/data-volume/volume</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/size/volume"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-volume"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en"/>
<text lang="en">What is the actual or expected size of the dataset?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Was ist die tatsächliche oder erwartete Größe des Datensatzes?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>radio</widget_type>
<value_type>float</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/dataset_size_options"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-volume/rate">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>rate</key>
<path>mathplus/technical-classification/data-volume/rate</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/rate"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-volume"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en">Optional. This is only of concern if the data production rate reaches TB scale.</help>
<text lang="en">How much data is produced per year?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Optional. Dies ist nur relevant, wenn das Wachstum die TB-Größenordnung erreicht.</help>
<text lang="de">Wie hoch ist die erwartete Erzeugungsrate der Daten pro Jahr?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>integer</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-formats">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>data-formats</key>
<path>mathplus/technical-classification/data-formats</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification"/>
<questionset/>
<is_collection>True</is_collection>
<order>3</order>
<title lang="en">Formats</title>
<help lang="en"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<title lang="de">Formate</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://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-formats/format">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>format</key>
<path>mathplus/technical-classification/data-formats/format</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/format"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-formats"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>4</order>
<help lang="en">When choosing a data format, one should consider the consequences for collaborative use, long-term preservation as well as re-use. It is advisable to prefer formats that are standardised, open, non-proprietary and well-established in the respective scholarly community. <i>Some examples here would be nice </i></help>
<text lang="en">Which file formats are used?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<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. <i> Hier ein paar Beispiele einfügen </i></help>
<text lang="de">In welchen Formaten liegen die Daten vor?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-tools">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>data-tools</key>
<path>mathplus/technical-classification/data-tools</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification"/>
<questionset/>
<is_collection>True</is_collection>
<order>4</order>
<title lang="en">Tools</title>
<help lang="en"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<title lang="de">Werkzeuge</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://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-tools/creation_methods">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>creation_methods</key>
<path>mathplus/technical-classification/data-tools/creation_methods</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/creation_methods"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-tools"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en">This information is necessary to be able to reconstruct the process by which the data was generated.</help>
<text lang="en">Which tools, software, technologies or processes are used to generate or collect the data?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Diese Informationen sind für alle Arten von Daten relevant, um ihre Genese nachvollziehen zu können.</help>
<text lang="de">Welche Instrumente, Software, Technologien oder Verfahren werden zur Erzeugung oder Erfassung der Daten genutzt?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-tools/usage_technology">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>usage_technology</key>
<path>mathplus/technical-classification/data-tools/usage_technology</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/usage_technology"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-tools"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en">To be able to re-use data maybe the software, equipment and knowledge about special methods to use the data are required. If you have the possibility to choose from various options, bear in mind the recommendation is: the more standardised, open and established, the better for re-use.</help>
<text lang="en">Which software, processes or technologies are necessary to use the data?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Um Daten nachnutzen zu können, werden neben den Daten selbst unter Umständen auch die Software, Geräte etc. und das Wissen über spezielle Verfahren zur Nutzung benötigt. Ebenso wie bei den Formaten gilt hier: je standardisierter, offener und etablierter diese sind, desto einfacher ist i.d.R. eine Nachnutzung möglich.</help>
<text lang="de">Welche Software, Verfahren oder Technologien sind notwendig, um die Daten zu nutzen?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-tools/documentation">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>documentation</key>
<path>mathplus/technical-classification/data-tools/documentation</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/software_documentation"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/technical-classification/data-tools"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>3</order>
<help lang="en"/>
<text lang="en">Is documentation about relevant software needed to use the data?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Ist zur Interpretation der Daten spezielle Software nötig, deren Dokumentation zur Verfügung gestellt werden kann?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>yesno</widget_type>
<value_type>boolean</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<section dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>data-usage</key>
<path>mathplus/data-usage</path>
<dc:comment/>
<catalog dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus"/>
<order>3</order>
<title lang="en">Data usage</title>
<title lang="de">Datennutzung</title>
</section>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-storage-and-security-storage">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>data-storage-and-security-storage</key>
<path>mathplus/data-usage/data-storage-and-security-storage</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage"/>
<questionset/>
<is_collection>True</is_collection>
<order>11</order>
<title lang="en">Data organisation</title>
<help lang="en"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<title lang="de">Datenorganisation</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://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-storage-and-security-storage/access_permissions">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>access_permissions</key>
<path>mathplus/data-usage/data-storage-and-security-storage/access_permissions</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/data_security/access_permissions"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-storage-and-security-storage"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en">e.g. project members, partners of the project, only in-house, external partners</help>
<text lang="en">Who is allowed to access the dataset?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">z.B. Projektmitglieder, Projektpartner, nur Interne, externe Partner</help>
<text lang="de">Wer darf auf den Datensatz zugreifen?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-storage-and-security-storage/type">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>type</key>
<path>mathplus/data-usage/data-storage-and-security-storage/type</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/storage/type"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-storage-and-security-storage"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en">Ideally, there is a shared folder in your working group where the data sets and related documentation are stored. If not, now would be a good time to set one up.</help>
<text lang="en">Where is the dataset stored during the project?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Idealerweise gibt es in Eurer Arbeitsgruppe ein gemeinsam genutzten Ordner, in dem die Datensätze und zugehörige Dokumentation gespeichert werden. Wenn nicht, wäre das jetzt ein guter Zeitpunkt, einen einzurichten.</help>
<text lang="de">Wo wird der Datensatz während des Projektes gespeichert?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-storage-and-security-storage/backups">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>backups</key>
<path>mathplus/data-usage/data-storage-and-security-storage/backups</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/data_security/backups"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-storage-and-security-storage"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en">This question refers to backups while the data is being worked with. Questions of long-term preservation will be adressed in the respective section.</help>
<text lang="en">How and how often will backups of the data be created?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Die Frage bezieht sich auf Backups während der Zeit, in denen mit den Daten gearbeitet wird. Fragen der Langzeitarchivierung werden gesondert im entsprechenden Abschnitt behandelt.</help>
<text lang="de">Wie und wie oft werden Backups der Daten erstellt?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-storage-and-security-storage/name">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>name</key>
<path>mathplus/data-usage/data-storage-and-security-storage/name</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/data_security/backup_responsible/name"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-storage-and-security-storage"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>3</order>
<help lang="en">A department or functional unit such as ITDS could also be entered here. In another line, you could then name the software used and, if you want to make it really elegant, the backup regime (daily, weekly, incremental, full, ...).</help>
<text lang="en">Who is responsible for the backups?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Hier könnte auch eine Abteilung oder Funktionseinheit wie etwa ITDS stehen. In einer weiteren Zeile könnte man dann die eingesetzte Software nennen und wenn es ganz elegant werden soll auch noch das Backupregime (täglich, wöchentlich, inkrementell, full, ...)</help>
<text lang="de">Wer ist verantwortlich für die Erstellung der Backups?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-storage-and-security-storage/security_measures">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>security_measures</key>
<path>mathplus/data-usage/data-storage-and-security-storage/security_measures</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/data_security/security_measures"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-storage-and-security-storage"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>4</order>
<help lang="en">This is more of an awareness-raising request than a question. It is definitely worth thinking about, especially if you are dealing with data from real people.</help>
<text lang="en">Have you thought about taking data security and sefety measures (e.g. protection against unauthorised access, data recovery, transfer of sensitive data)? If so, which ones?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Das ist mehr ein Sensibilisierungswunsch als eine Frage. Es lohnt sich durchaus, sich darüber Gedanken zu machen, speziell, wenn Ihr mit personenbezogenen Daten umgeht.</help>
<text lang="de">Habt Ihr dran gedacht, Maßnahmen zur Datensicherheit zu treffen (z. B. Schutz vor unbefugtem Zugriff, Datenwiederherstellung, Übertragung sensibler Daten)? Wenn ja, welche?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>data-sharing-and-re-use-publication</key>
<path>mathplus/data-usage/data-sharing-and-re-use-publication</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage"/>
<questionset/>
<is_collection>True</is_collection>
<order>52</order>
<title lang="en">Data sharing and re-use</title>
<help lang="en"/>
<verbose_name lang="en">dataset</verbose_name>
<verbose_name_plural lang="en">datasets</verbose_name_plural>
<title lang="de">Weitergabe und Veröffentlichung</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://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication/yesno">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>yesno</key>
<path>mathplus/data-usage/data-sharing-and-re-use-publication/yesno</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sharing/yesno"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en"/>
<text lang="en">Will this dataset be published or shared?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Soll dieser Datensatz veröffentlicht oder geteilt werden?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>radio</widget_type>
<value_type>boolean</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/dataset_sharing_options"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication/Repository">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>Repository</key>
<path>mathplus/data-usage/data-sharing-and-re-use-publication/Repository</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/preservation/repository"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en">Do you already have a place for your data? This could be one of the institutional repositories, like <a href="https://www.depositonce.tu-berlin.de/">DepositOnce</a> or <a href="https://refubium.fu-berlin.de/">ReFuBium</a>.
If you are looking for a discipline specific repository please give <a href="https://www.re3data.org/">Re3Data</a> a try.
If you don't find a suitable repository, there are always the generic repos like <a href="https://datadryad.org/">Dryad</a> oder <a href="https://zenodo.org/">Zenodo</a>.</help>
<text lang="en">Where will your data be published?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Gibt es bereits einen Platz für die Daten? Das könnte eines der institutionellen Repositorien sein, wie etwa <a href="https://www.depositonce.tu-berlin.de/">DepositOnce</a> oder <a href="https://refubium.fu-berlin.de/">ReFuBium</a>.
Bei der Suche nach einem disziplinspezifischen Repositorium hilft <a href="https://www.re3data.org/">Re3Data</a>.
Wenn auch da nichts passendes dabei sein sollte, gibt es immer noch die generischen Forschungsdatenrepositorien wie etwa <a href="https://datadryad.org/">Dryad</a> oder <a href="https://zenodo.org/">Zenodo</a>.</help>
<text lang="de">Wo sollen die Daten veröffentlicht werden?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmo.mathplus.de/terms/options/choose_repo"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication/uri">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>uri</key>
<path>mathplus/data-usage/data-sharing-and-re-use-publication/uri</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sharing/uri"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>3</order>
<help lang="en"/>
<text lang="en">Here you can place the link to your published data (URL, DOI, ...)</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Hier kann der Link zu den veröffentlichten Daten angegeben werden (URL, DOI, ...)</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication/data_publication_date">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>data_publication_date</key>
<path>mathplus/data-usage/data-sharing-and-re-use-publication/data_publication_date</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/data_publication_date"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>4</order>
<help lang="en"/>
<text lang="en">When will the data be published (if they are)?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Wann (wenn überhaupt) sollen die Daten veröffentlicht werden?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>date</widget_type>
<value_type>datetime</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions>
<condition dc:uri="https://rdmorganiser.github.io/terms/conditions/data_sharing"/>
</conditions>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication/explanation">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>explanation</key>
<path>mathplus/data-usage/data-sharing-and-re-use-publication/explanation</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sharing/explanation"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>5</order>
<help lang="en"/>
<text lang="en">If not, please give two or three key points why not, distinguishing between legal or contractual reasons and voluntary restrictions.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Wenn nicht, gib bitte zwei, drei Stichpunkte warum nicht und unterscheide dabei zwischen rechtlichen oder vertraglichen Gründen und freiwilligen Einschränkungen.</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication/conditions">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>conditions</key>
<path>mathplus/data-usage/data-sharing-and-re-use-publication/conditions</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sharing/conditions"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/data-sharing-and-re-use-publication"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>6</order>
<help lang="en">In the sciences, attribution has always been a matter of course. The choices here are based on licences in the <a href="http://de.creativecommons.org/" target=_blank">Creative Commons family</a>, where this would correspond to CC BY.</help>
<text lang="en">If yes, under which terms of use or license will the dataset be published or shared?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Im Wissenschaftsbereich ist schon immer die Namensnennung selbstverständlich. Die Auswahlmöglichkeiten orientieren sich hier an Lizenzen der <a href="http://de.creativecommons.org/" target=_blank">Creative-Commons-Familie</a>, wo das dem CC BY entsprechen würde.</help>
<text lang="de">Wenn ja, unter welchen Nutzungsbedingungen oder welcher Lizenz sollen die Daten veröffentlicht bzw. geteilt werden?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/dataset_license_types"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/costs_matter">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>costs_matter</key>
<path>mathplus/data-usage/costs_matter</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/costs"/>
<section dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage"/>
<questionset/>
<is_collection>False</is_collection>
<order>60</order>
<title lang="en">Costs for data handling</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Kosten für Datenhandhabung</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/costs_matter/costs_relevant">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>costs_relevant</key>
<path>mathplus/data-usage/costs_matter/costs_relevant</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/costs"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/costs_matter"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en">If this is an initial proposal or your working group is responsible or any costs you create by handling your data, you should choose "Yes" and answer the following questions. If money is of no concern in your project hit "No" and the questionaire will skip the money part.</help>
<text lang="en">Does it matter if the data of your project handling induces costs?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Bei einem Erstantrag oder wenn Eure AG verantwortlich ist für Kosten, die möglicherweise im Zuge des Forschungsdatenmanagements entstehen, solltest Du "Ja" wählen und die dann folgenden Fragen dieses Abschnitts beantworten. Falls Geld für Datenhandhabung keine Rolle spielt, einfach "Nein" anklicken. Das Interview springt dann zum nächsten Abschnitt.</help>
<text lang="de">Spielen die möglicherweise entstehenden Kosten bei der Datenhandhabung eine Rolle?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>yesno</widget_type>
<value_type>boolean</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/yes_with_text_no"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/costs-dataset">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>costs-dataset</key>
<path>mathplus/data-usage/costs-dataset</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage"/>
<questionset/>
<is_collection>False</is_collection>
<order>70</order>
<title lang="en">Costs</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Kosten</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions>
<condition dc:uri="https://rdmorganiser.github.io/terms/conditions/costs_relevant"/>
</conditions>
</questionset>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/costs-dataset/creation_personnel">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>creation_personnel</key>
<path>mathplus/data-usage/costs-dataset/creation_personnel</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/costs/creation/personnel"/>
<questionset dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/costs-dataset"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en">Please estimate the effort in person months.</help>
<text lang="en">What are the personnel costs for data management associated with the creation or acquisition of data in the project?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Bitte schätzen sie den Aufwand in Personenmonaten ( 1 PM = Monatsarbeitszeit eines Vollzeitbeschäftigten).</help>
<text lang="de">Welcher Personalaufwand für das Datenmanagement entsteht im Rahmen der Erhebung, Erstellung oder Akquise der Daten im Projekt?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>range</widget_type>
<value_type>float</value_type>
<maximum>12.0</maximum>
<minimum>0.0</minimum>
<step>0.1</step>
<unit>PM</unit>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://rdmo.mathplus.de/terms/questions/mathplus/data-usage/costs-dataset/creation_non_personnel">
<uri_prefix>https://rdmo.mathplus.de/terms</uri_prefix>
<key>creation_non_personnel</key>
<path>mathplus/data-usage/costs-dataset/creation_non_personnel</path>
<dc:comment/>