-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathepm-questions.xml
More file actions
2963 lines (2912 loc) · 159 KB
/
Copy pathepm-questions.xml
File metadata and controls
2963 lines (2912 loc) · 159 KB
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="2025-07-01T15:27:11.509595+02:00" required="2.1.0" version="2.3.1">
<catalog dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm</uri_path>
<dc:comment/>
<order>5</order>
<title lang="en">European Partnership on Metrology</title>
<help lang="en"/>
<title lang="de">Europäische Partnerschaft für Metrologie</title>
<help lang="de"/>
<sections>
<section dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general" order="0"/>
<section dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary" order="1"/>
<section dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing" order="2"/>
<section dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/preservation" order="3"/>
<section dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/documentation" order="4"/>
<section dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/resources" order="5"/>
<section dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/ethics" order="6"/>
<section dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/other_research_outputs" order="7"/>
</sections>
</catalog>
<section dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/general</uri_path>
<dc:comment/>
<title lang="en">General</title>
<short_title lang="en"/>
<title lang="de">Allgemeines</title>
<short_title lang="de"/>
<pages>
<page dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general/general" order="1"/>
</pages>
</section>
<page dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general/general">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/general/general</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project"/>
<is_collection>False</is_collection>
<title lang="en">Basic information on the project</title>
<short_title lang="en"/>
<help lang="en">This questionnaire is intended for research projects funded by the European commission through the metrology-specific funding program "European Partnership on Metrology", based on Horizon Europe. It is compiled according to the <a href="http://metpart.eu/component/edocman/reporting-guide-part2/download.html?Itemid=0" "target=_blank">Data Management Plan guidelines</a> and the <a href="http://metpart.eu/component/edocman/reporting-template2/download.html?Itemid=0" target="_blank">Data Management Plan Template</a>, Version 1.1 from August 2023. The questions are formulated by the European Commission; the sample answers are written by the MSU of EURAMET. For a non-initial DMP, some questions must be answered on a dataset-specific basis.
The present platform MetRDMO guides project coordinators and their partners in the compilation of a data management plan by breaking down the EC questions down into sub-questions and providing controlled answer options and help texts.
At the end of the procedure the platform produces an export ("view") of the data management plan, compliant to the deliverable form desired by the EC and the MSU, which uses the original EU questions and completes the users' answers text with introductory text and cross-references among related or similar questions. For that purpose, proceed as follows:
- Click "Back to the project"
- Scroll down to the "Views". Select "European Partnership on Metrology"
- Scroll right to "Export". Select "Microsoft Office"
- Copy-and-paste the exported document (which possibly misses titlepage, headers, footers) into the MSU template.</help>
<verbose_name lang="en"/>
<title lang="de">Eckdaten zum Projekt</title>
<short_title lang="de"/>
<help lang="de">Dieser Fragenkatalog ist für Forschungsprojekte gedacht, die durch EU Horizont Europa gefördert werden. Er ist nach dem <a href="https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/horizon/temp-form/report/data-management-plan_he_en.docx" target=_blank>Data Management Plan Template, Version 1.0 vom 5. Mai 2021</a>, zusammengestellt. Einige der EU-Fragen sind in Teilfragen aufgegliedert. Außerdem besteht bei vielen Fragen die Möglichkeit, die Frage datensatzspezifisch zu beantworten. Für die Ausgabe des Datenmanagementplans gibt es eine passende Ansicht, die
- den Datenmanagementplan in der von der EU gewünschte Deliverable-Form ausgibt
- die originalen EU-Fragen einsetzt
- automatisch Verweise auf Fragen einfügt, die in ähnlicher Form schon einmal gestellt worden sind</help>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general/general/grant_nr" order="1"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general/general/project_name" order="2"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general/general/acronym" order="3"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general/general/dmp_version" order="4"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general/general/last_update" order="5"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general/general/other_regulations" order="6"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/general/general/GArequirements" order="7"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general/general/grant_nr">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/general/general/grant_nr</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/funder/grant_nr"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en">With which grant number was the funding awarded?</help>
<text lang="en">Project reference number:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Wie lautet das Förderkennzeichen dieser Förderung?</help>
<text lang="de">Projektnummer:</text>
<default_text lang="de"/>
<verbose_name 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://dmp.metrology-rdm.eu/terms/questions/epm/general/general/project_name">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/general/general/project_name</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/title"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en">Full title of the project</help>
<text lang="en">Project title:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Titel des Projektes</help>
<text lang="de">Projekttitel:</text>
<default_text lang="de"/>
<verbose_name 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://dmp.metrology-rdm.eu/terms/questions/epm/general/general/acronym">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/general/general/acronym</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/acronym"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en">Short title / acronym of the project</help>
<text lang="en">Project acronym:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Kurztitel / Akronym des Projekts</help>
<text lang="de">Projektakronym:</text>
<default_text lang="de"/>
<verbose_name 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://dmp.metrology-rdm.eu/terms/questions/epm/general/general/dmp_version">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/general/general/dmp_version</uri_path>
<dc:comment>Optionset</dc:comment>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dmp/dmp_version"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en">Which version of the data management plan is this?</help>
<text lang="en">DMP version:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Um welche Version des Datenmanagementplans handelt es sich hier?</help>
<text lang="de">DMP-Version:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>radio</widget_type>
<value_type>text</value_type>
<maximum>3.0</maximum>
<minimum>1.0</minimum>
<step>1.0</step>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://dmp.metrology-rdm.eu/terms/options/DMP_version"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general/general/last_update">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/general/general/last_update</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dmp/dmp_date"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en">Date of delivery of the DMP</help>
<text lang="en">Date:</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Abgabedatum des DMPs</help>
<text lang="de">Datum:</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>date</widget_type>
<value_type>datetime</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions/>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/general/general/other_regulations">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/general/general/other_regulations</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/additional_rdm_policy/requirements"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en">This question focuses on the specific project you are working on. It asks if there are any guidelines set internally for organizing data within this particular project and where they are documented. Please add references where space is provided.</help>
<text lang="en">What RDM regulations are relevant for this project?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de"/>
<default_text lang="de"/>
<verbose_name 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://dmp.metrology-rdm.eu/terms/options/other_rdm_requirements"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/general/general/GArequirements">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>general/general/GArequirements</uri_path>
<dc:comment/>
<attribute dc:uri="https://dmp.metrology-rdm.eu/terms/domain/project/GArequirements"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en">By delivering the DMP, it is compulsory to commit to the requirements stated in the project’s <a htef="https://research-and-innovation.ec.europa.eu/system/files/2022-12/Metrology%20MGA%20v.7.pdf" target="_blank">Grant Agreement</a> and Consortium Agreement (<a href="https://metpart.eu/component/edocman/epm-model-consortium-agreement-with-associated-partners/download.html?Itemid=0" target="_blank">with</a> or <a href="https://metpart.eu/component/edocman/epm-model-consortium-agreement-with-no-associated-partners/download.html?Itemid=0" target="_blank">without</a> associated partners) with respect to open science and research data management.
(This commitment is represented as a checkbox in the last page of the original DMP template.)</help>
<text lang="en">Do all participants adhere to the requirements of the project’s GA and CA with respect to open science and research data management (GA Article 17 and its Annex 5)?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de"/>
<default_text lang="de"/>
<verbose_name 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://dmp.metrology-rdm.eu/terms/questions/epm/data_summary">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary</uri_path>
<dc:comment/>
<title lang="en">Data summary</title>
<short_title lang="en"/>
<title lang="de">Inhaltliche und technische Einordnung</title>
<short_title lang="de"/>
<pages>
<page dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_general" order="1"/>
<page dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups" order="2"/>
<page dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/data_summary" order="3"/>
</pages>
</section>
<page dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_general">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_general</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset"/>
<is_collection>False</is_collection>
<title lang="en">Initial DMP: origin of the data (dataset-independent answers)</title>
<short_title lang="en">Data origin (general)</short_title>
<help lang="en">In the initial DMP a number of details may not yet be known (such as persistent identifiers). However, the plans and intentions should be considered and explained in the following questions.</help>
<verbose_name lang="en">dataset group</verbose_name>
<title lang="de"/>
<short_title lang="de"/>
<help lang="de"/>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_general/generation" order="0"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_general/usage_objectives" order="1"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_general/provenance" order="2"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_general/usage_description" order="3"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_general/existing" order="4"/>
</questions>
<conditions>
<condition dc:uri="https://dmp.metrology-rdm.eu/terms/conditions/dmp_initial"/>
<condition dc:uri="https://dmp.metrology-rdm.eu/terms/conditions/dmp_midterm"/>
</conditions>
</page>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_general/generation">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_general/generation</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/creation_methods"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en">The way in which data are generated in your project depends on the disciplines involved - for example, it can be 3D modelling, the synthesis of a molecule, self-developed software, an online quantitative survey, etc.
Please select the methodology used to generate the data.</help>
<text lang="en">How does your project generate new data?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Diese Informationen sind für alle Arten von Daten relevant, um deren Genese nachvollziehen zu können.
Die Art und Weise, wie Daten in Ihrem Projekt entstehen, hängt von den beteiligten Disziplinen ab – beispielsweise kann es sich um eine 3D-Modellierung, die Synthese eines Moleküls, eine selbst entwickelte Software, eine quantitative Online-Befragung, usw. handeln.
Bitte wählen Sie aus, mit welcher Methodik die Daten generiert werden.</help>
<text lang="de">Auf welche Weise entstehen neue Daten?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/dfg_new_data"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_general/usage_objectives">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_general/usage_objectives</uri_path>
<dc:comment/>
<attribute dc:uri="https://dmp.metrology-rdm.eu/terms/domain/project/dataset/usage_objectives"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">How will the generated data be used to meet the objectives of the project?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Wozu / wie werden die generierten Daten genutzt, im Bezug auf die Ziele des Projekts?</text>
<default_text lang="de"/>
<verbose_name 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://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_general/provenance">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_general/provenance</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/provenance/content"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">What data will the project reuse and where do they come from?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">In das Textfeld kann die Entstehungsgeschichte (Provenienz) der Daten und sogar - falls für das Forschungsdatenmanagement relevant - die Entstehungsgeschichte der den Daten zugrunde liegenden physischen Objekte eingetragen werden. Sie können das Textfeld aber auch nutzen, um die Nachbehandlung der Daten einheitlich festzulegen, sobald solche Details feststehen. Dazu können beispielsweise Aggregationsschritte, Einheitenkonversionen und Formatumwandlungen gehören.</help>
<text lang="de">Wie sind die Daten entstanden?</text>
<default_text lang="de"/>
<verbose_name 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://dmp.metrology-rdm.eu/terms/options/dataset_origin_reused"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_general/usage_description">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_general/usage_description</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/usage_description"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">How will already existing data be used to meet the objectives of the project?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Wozu / wie werden die bereits existierenden Daten genutzt, im Bezug auf die Ziele des Projekts?</text>
<default_text lang="de"/>
<verbose_name 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://dmp.metrology-rdm.eu/terms/options/reuse_existing_objectives"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_general/existing">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_general/existing</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/reuse_existing"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Are research data, similar to the expected outcomes of the project, available but not reused? Why is their use not possible or useful here?</text>
<default_text lang="en">No similar datasets are known to the project partners.</default_text>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Wenn selbst erzeugt, sind bereits existierende, ähnliche Forschungsdaten verfügbar und warum ist deren Nachnutzung hier nicht möglich bzw. sinnvoll?</text>
<default_text lang="de"/>
<verbose_name 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>
<page dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_groups</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset"/>
<is_collection>True</is_collection>
<title lang="en">Midterm or final DMP: origin of the data (dataset-specific answers)</title>
<short_title lang="en">Data origin (dataset-specific)</short_title>
<help lang="en">This is the version of the questionnaire being used for a midterm or final DMP. Contrary to the initial DMP, it is required to answer some questions for single datasets, or for groups of similar datasets.
List the datasets that your project will generate or use. We recommend grouping together data that are "managed" similarly, e.g. published together, shared with the same restriction on reuse, sharing the same security issues, labelled by the same keywords, etc.
The datasets and the group they belong to should be given succinct, descriptive names. The list of datasets can be updated during the project.</help>
<verbose_name lang="en">dataset group</verbose_name>
<title lang="de"/>
<short_title lang="de"/>
<help lang="de">Dies ist die Version des Fragebogens, die für ein mittelfristiges oder endgültiges DMP verwendet wird. Im Gegensatz zum ersten DMP müssen hier einige Fragen für einzelne Datensätze oder für Gruppen ähnlicher Datensätze beantwortet werden.
Listen Sie die Datensätze auf, die Ihr Projekt erzeugen oder verwenden wird. Wir empfehlen, Daten zu gruppieren, die ähnlich verwaltet werden, z. B. gemeinsam veröffentlicht werden, mit denselben Einschränkungen für die Wiederverwendung gemeinsam genutzt werden, dieselben Sicherheitsprobleme aufweisen, mit denselben Schlüsselwörtern gekennzeichnet sind usw.
Die Datensätze und die Gruppe, zu der sie gehören, sollten prägnante, beschreibende Namen erhalten. Die Liste der Datensätze kann während des Projekts aktualisiert werden.</help>
<verbose_name lang="de"/>
<questionsets/>
<questions>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/dataset" order="1"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/origin" order="2"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/generation" order="3"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/provenance" order="4"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/uri" order="5"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/usage_description" order="6"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/existing" order="7"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/usage_objectives" order="8"/>
</questions>
<conditions>
<condition dc:uri="https://dmp.metrology-rdm.eu/terms/conditions/dmp_not_initial"/>
</conditions>
</page>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/dataset">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_groups/dataset</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/title"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Please list all datasets belonging to this group.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de"/>
<default_text lang="de"/>
<verbose_name 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://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/origin">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_groups/origin</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/origin"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en">Before data are newly created, it is advisable to check if there are existing data that could be re-used. This way, redundant collection or creation of research data is prevented. This saves efforts and costs.</help>
<text lang="en">Are the datasets in this group being created or re-used?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Vor der Erzeugung von Daten empfiehlt es sich zu prüfen, ob bereits vorhandene Daten nachgenutzt werden können. Die Vermeidung doppelter Erhebungen spart Aufwand und Kosten.
Die <a href="https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/horizon/temp-form/report/data-management-plan_he_en.docx" target=_blank>Teilfrage</a> <i>"and what will you re-use it for?"</i> wird im Unterabschnitt "Zweckbestimmung" noch einmal in ganz ähnlicher Form gestellt und kann dort beantwortet werden. Wenn Sie die Ansicht Horizon Europe für die Ausgabe dieses Datenmanagementplans (DMP) nutzen, wird an dieser Stelle automatisch ein Verweis auf die spätere Frage platziert. So verfährt die Ansicht bei allen doppelt vorhandenen Fragen, die im <a href="https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/horizon/temp-form/report/data-management-plan_he_en.docx" target=_blank>Horizon Europe Data Management Plan Template</a> enthalten sind. Außerdem bringt die Ansicht den DMP in die von Horizon Europe gewünschte Deliverable-Form.</help>
<text lang="de">Wird der Datensatz selbst erzeugt oder nachgenutzt?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option dc:uri="https://rdmorganiser.github.io/terms/options/dataset_origin_options/148"/>
<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://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/generation">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_groups/generation</uri_path>
<dc:comment/>
<attribute dc:uri="https://dmp.metrology-rdm.eu/terms/domain/project/dataset/creation_methods_multiple"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en">This information is relevant for all types of data in order to be able to understand their genesis.
The way in which data are generated in your project depends on the disciplines involved - for example, it can be 3D modelling, the synthesis of a molecule, self-developed software, an online quantitative survey, etc.
Please select the methodology used to generate the data.</help>
<text lang="en">How will the datasets in this group be generated?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Diese Informationen sind für alle Arten von Daten relevant, um deren Genese nachvollziehen zu können.
Die Art und Weise, wie Daten in Ihrem Projekt entstehen, hängt von den beteiligten Disziplinen ab – beispielsweise kann es sich um eine 3D-Modellierung, die Synthese eines Moleküls, eine selbst entwickelte Software, eine quantitative Online-Befragung, usw. handeln.
Bitte wählen Sie aus, mit welcher Methodik die Daten generiert werden.</help>
<text lang="de">Auf welche Weise entstehen neue Daten?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>checkbox</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/dfg_new_data"/>
</optionsets>
<conditions>
<condition dc:uri="https://dmp.metrology-rdm.eu/terms/conditions/dataset_created"/>
</conditions>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/provenance">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_groups/provenance</uri_path>
<dc:comment/>
<attribute dc:uri="https://dmp.metrology-rdm.eu/terms/domain/project/dataset/provenance/content_multiple"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en">The history of origin (provenance) of the data and even, if relevant for research data management, the provenance of the physical objects on which the data is based can be entered in this text area. However, you can also use the text area to uniformly define the post-processing of the data as soon as such details have been determined. This can include, for example, aggregation steps, unit conversions and format conversions.</help>
<text lang="en">Where do the data come from?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">In das Textfeld kann die Entstehungsgeschichte (Provenienz) der Daten und sogar - falls für das Forschungsdatenmanagement relevant - die Entstehungsgeschichte der den Daten zugrunde liegenden physischen Objekte eingetragen werden. Sie können das Textfeld aber auch nutzen, um die Nachbehandlung der Daten einheitlich festzulegen, sobald solche Details feststehen. Dazu können beispielsweise Aggregationsschritte, Einheitenkonversionen und Formatumwandlungen gehören.</help>
<text lang="de">Wie sind die Daten entstanden?</text>
<default_text lang="de"/>
<verbose_name 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://dmp.metrology-rdm.eu/terms/options/dataset_origin_reused"/>
</optionsets>
<conditions>
<condition dc:uri="https://dmp.metrology-rdm.eu/terms/conditions/dataset_reused"/>
</conditions>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/uri">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_groups/uri</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/uri"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en">[PREVIOUS TEXT: If re-used, under which address, PID or URL can the dataset be found?]</help>
<text lang="en">If the datasets in this group have persistent identifiers (such as a DOI) please list them here:</text>
<default_text lang="en"/>
<verbose_name 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"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions>
<condition dc:uri="https://dmp.metrology-rdm.eu/terms/conditions/dataset_reused"/>
</conditions>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/usage_description">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_groups/usage_description</uri_path>
<dc:comment/>
<attribute dc:uri="https://dmp.metrology-rdm.eu/terms/domain/project/dataset/usage_description_multiple"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en">Explain briefly how the datasets aid in the reaching the project objectives.</help>
<text lang="en">How will these data be used during the project?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Wozu / wie wird dieser Datensatz während des Projektes genutzt?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmorganiser.github.io/terms/options/dfg_reuse"/>
</optionsets>
<conditions>
<condition dc:uri="https://dmp.metrology-rdm.eu/terms/conditions/dataset_reused"/>
</conditions>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/existing">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_groups/existing</uri_path>
<dc:comment/>
<attribute dc:uri="https://dmp.metrology-rdm.eu/terms/domain/project/dataset/reuse_existing_multiple"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Are research data, similar to the outcome of the project, available, which are not reused? Why is their use not possible or useful here?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Wenn selbst erzeugt, sind bereits existierende, ähnliche Forschungsdaten verfügbar und warum ist deren Nachnutzung hier nicht möglich bzw. sinnvoll?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions>
<condition dc:uri="https://dmp.metrology-rdm.eu/terms/conditions/dataset_created"/>
</conditions>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/datasets_groups/usage_objectives">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/datasets_groups/usage_objectives</uri_path>
<dc:comment/>
<attribute dc:uri="https://dmp.metrology-rdm.eu/terms/domain/project/dataset/usage_objectives_multiple"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">How will the data in this dataset group help in fulfilling the project objectives?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Wozu / wie wird dieser Datensatz während des Projektes genutzt?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>textarea</widget_type>
<value_type>text</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets/>
<conditions>
<condition dc:uri="https://dmp.metrology-rdm.eu/terms/conditions/dataset_created"/>
</conditions>
</question>
<page dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/data_summary">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/data_summary</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<is_collection>False</is_collection>
<title lang="en">Size, format</title>
<short_title lang="en"/>
<help lang="en"><a href="https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/horizon/temp-form/report/data-management-plan_he_en.docx" target=_blank>Original question:</a> <i>What types and formats of data will the project generate or re-use?</i></help>
<verbose_name lang="en">dataset</verbose_name>
<title lang="de">Datentyp</title>
<short_title lang="de"/>
<help lang="de"><a href="https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/horizon/temp-form/report/data-management-plan_he_en.docx" target=_blank>Originalfrage:</a> <i>What types and formats of data will the project generate or re-use?</i></help>
<verbose_name lang="de">Datensatz</verbose_name>
<questionsets/>
<questions>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/data_summary/data_format" order="4"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/data_summary/data_volume" order="6"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/data_summary/data_format">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/data_summary/data_format</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/format"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en">Please list the formats used as: type (format). Exemples: "table (TSV)".
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. Recommendations can be found in <a href="https://www.howtofair.dk/how-to-fair/file-formats/" target="_blank">How to FAIR</a>, for example.</help>
<text lang="en">Which file formats are used?</text>
<default_text lang="en"/>
<verbose_name 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. Empfehlungen sind z. B. unter <a href="https://www.forschungsdaten.info/themen/veroeffentlichen-und-archivieren/formate-erhalten/" target="_blank">forschungsdaten.info</a> zu finden.</help>
<text lang="de">In welchen Formaten liegen die Daten vor?</text>
<default_text lang="de"/>
<verbose_name 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://dmp.metrology-rdm.eu/terms/questions/epm/data_summary/data_summary/data_volume">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/data_summary/data_summary/data_volume</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/size/volume"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en">If large amounts of data are involved, financial resources for the provision of the infrastructure should be considered (see also section "Funding").</help>
<text lang="en">What is the actual or expected size of the dataset?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Wenn große Datenmengen anfallen, sollten finanzielle Mittel zur Bereitstellung der Infrastruktur berücksichtigt werden (siehe auch Abschnitt „Förderung“).</help>
<text lang="de">Was ist die tatsächliche oder erwartete Größe des Datensatzes?</text>
<default_text lang="de"/>
<verbose_name 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>
<section dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/sharing</uri_path>
<dc:comment/>
<title lang="en">Sharing data</title>
<short_title lang="en"/>
<title lang="de">Daten teilen</title>
<short_title lang="de"/>
<pages>
<page dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons" order="1"/>
<page dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/access" order="2"/>
</pages>
</section>
<page dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/sharing/reasons</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<is_collection>False</is_collection>
<title lang="en">Reasons to share or not to share data</title>
<short_title lang="en">Motivation for/against sharing</short_title>
<help lang="en"/>
<verbose_name lang="en">dataset</verbose_name>
<title lang="de">Gründe, um Daten zu teilen oder nicht zu teilen</title>
<short_title lang="de"/>
<help lang="de"/>
<verbose_name lang="de">Datensatz</verbose_name>
<questionsets/>
<questions>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons/reuse_scenario" order="0"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons/sharing_explanation" order="1"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons/sharing_embargo_why" order="2"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons/sharing_embargo_length" order="3"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons/reuse_scenario">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/sharing/reasons/reuse_scenario</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/reuse_scenario"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Which individuals, groups or institutions could be interested in re-using these data?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de">Wichtig ist die grundsätzliche Weichenstellung, ob die Daten zur Nachnutzung zugelassen werden oder nicht. Selbstverständlich kann das Nachnutzungspotential dabei nicht alleiniges Entscheidungskriterium sein, sondern rechtliche Hinderungsgründe, wie z.B. Datenschutz, Urheberrecht und die Wahrung von Geschäftsgeheimnissen, müssen berücksichtigt werden. Wägen Sie ansonsten das Nachnutzungspotential gegen die Nachteile ab, beispielsweise gegen ein Absinken der Teilnahmebereitschaft und den zu erwartenden Mehraufwand einer Datenveröffentlichung.</help>
<text lang="de">Für welche Personen, Gruppen oder Institutionen könnte dieser Datensatz (für die Nachnutzung) von Interesse sein?</text>
<default_text lang="de"/>
<verbose_name 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://dmp.metrology-rdm.eu/terms/options/data_utility"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons/sharing_explanation">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/sharing/reasons/sharing_explanation</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sharing/explanation"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Are there any reasons not to share these data? Please differentiate between legal and contractual reasons and voluntary restrictions.</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Wenn nicht, begründen Sie dies bitte und unterscheiden Sie dabei zwischen rechtlichen und/oder vertraglichen Gründen und freiwilligen Einschränkungen.</text>
<default_text lang="de"/>
<verbose_name 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_sharing_restrictions"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons/sharing_embargo_why">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/sharing/reasons/sharing_embargo_why</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/preservation/embargo_period"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">Are there any reasons to set an embargo period before the data are made available?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Gibt es Gründe, um die Daten erst nach Ablauf einer Sperrfrist zugänglich zu machen?</text>
<default_text lang="de"/>
<verbose_name 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/embargo_why"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons/sharing_embargo_length">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/sharing/reasons/sharing_embargo_length</uri_path>
<dc:comment/>
<attribute dc:uri="https://dmp.metrology-rdm.eu/terms/domain/project/dataset/preservation/embargo_length"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<help lang="en"/>
<text lang="en">How long should the embargo period be? (in months)</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<help lang="de"/>
<text lang="de">Gibt es Gründe, um die Daten erst nach Ablauf einer Sperrfrist zugänglich zu machen?</text>
<default_text lang="de"/>
<verbose_name lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>text</widget_type>
<value_type>integer</value_type>
<maximum>60.0</maximum>
<minimum>0.0</minimum>
<step>1.0</step>
<unit>months</unit>
<width/>
<optionsets/>
<conditions/>
</question>
<page dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/access">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/sharing/access</uri_path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<is_collection>False</is_collection>
<title lang="en">Managing access rights</title>
<short_title lang="en"/>
<help lang="en">From the <a href="https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/horizon/guidance/programme-guide_horizon_en.pdf" target=_blank>Horizon Europe Programme Guide</a>:
_Beneficiaries of Horizon Europe have to ensure open access to research data generated in their projects under the principle "as open as possible and as closed as necessary". This means that data are in principle open, unless beneficiaries decide to restrict access to some or all their research data for legitimate reasons._</help>
<verbose_name lang="en">dataset</verbose_name>
<title lang="de">Zugängsrechte und Identifizierung</title>
<short_title lang="de"/>
<help lang="de">Aus dem <a href="https://ec.europa.eu/info/funding-tenders/opportunities/docs/2021-2027/horizon/guidance/programme-guide_horizon_en.pdf" target=_blank>Horizon Europe Programme Guide (englisch)</a>:
_Begünstigte von Horizon Europe müssen einen offenen Zugang zu Forschungsdaten, die in ihren Projekten generiert werden, nach dem Prinzip "so offen wie möglich und so geschlossen wie nötig" gewährleisten. Dies bedeutet, dass Daten grundsätzlich offen sind, es sei denn, Begünstigte entscheiden sich aus legitimen Gründen dafür, den Zugang zu einigen oder allen ihrer Forschungsdaten einzuschränken._</help>
<verbose_name lang="de">Datensatz</verbose_name>
<questionsets/>
<questions>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons/sharing_yesno" order="0"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons/third-parties" order="1"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/access/access_restrictions_explanation" order="2"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/access/access_authentication" order="3"/>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/access/access_committee" order="4"/>
</questions>
<conditions/>
</page>
<question dc:uri="https://dmp.metrology-rdm.eu/terms/questions/epm/sharing/reasons/sharing_yesno">
<uri_prefix>https://dmp.metrology-rdm.eu/terms</uri_prefix>
<uri_path>epm/sharing/reasons/sharing_yesno</uri_path>
<dc:comment/>