forked from rdmorganiser/rdmo-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathble_questions_1.0.xml
2272 lines (2218 loc) · 102 KB
/
ble_questions_1.0.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="2023-10-16T14:20:41.555074+02:00">
<catalog dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>ble</key>
<dc:comment/>
<order>0</order>
<title lang="en">Data Management - Questionnaire</title>
<help lang="en">This questionnaire developed at JKI covers all relevant questions regarding data management and can be completed in German and English. It is suitable for creating the following data management plans:<br>
<b> <font color=#088A4B>
&#9733; Funder-independent data management plan<br>
&#9733; BLE data management plan<br>
&#9733; JKI-IT-specific data management plan
</b></font></help>
<title lang="de">Datenmanagement - Fragebogen</title>
<help lang="de">Dieser am JKI entwickelte Fragebogen deckt alle relevanten Fragen des Datenmanagements ab und ist in den Sprachen Deutsch und Englisch ausfüllbar. Er eignet sich für die Erstellung folgender Datenmanagementpläne<br>
<b> <font color=#088A4B>
&#9733; Fördergeberunabhängiger Datenmanagementplan<br>
&#9733; BLE Datenmanagementplan<br>
&#9733; JKI-DV-spezifischer Datenmanagementplan
</b></font></help>
</catalog>
<section dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/administrative">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>administrative</key>
<path>ble/administrative</path>
<dc:comment>Administrative Angaben</dc:comment>
<catalog dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble"/>
<order>0</order>
<title lang="en">General Project Information</title>
<title lang="de">Allgemeine Projektangaben</title>
</section>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/administrative/ble_general">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>ble_general</key>
<path>ble/administrative/ble_general</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project"/>
<section dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/administrative"/>
<questionset/>
<is_collection>False</is_collection>
<order>0</order>
<title lang="en">Administrative Details</title>
<help lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<title lang="de">Administrative Angaben</title>
<help lang="de"/>
<verbose_name lang="de"/>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/administrative/ble_general/title_project">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>title_project</key>
<path>ble/administrative/ble_general/title_project</path>
<dc:comment>Titel des geplanten Forschungsprojekts</dc:comment>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/research_question/title"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/administrative/ble_general"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en"><small>
(Project title written out)
</small></help>
<text lang="en">Project Title</text>
<default_text lang="en"/>
<verbose_name lang="en">Project Title</verbose_name>
<verbose_name_plural lang="en"/>
<help lang="de"><small>
(Ausgeschriebener Projekttitel)
</small></help>
<text lang="de">Projekttitel</text>
<default_text lang="de"/>
<verbose_name lang="de">Projekttitel</verbose_name>
<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.julius-kuehn.de/terms/questions/ble/administrative/ble_general/acronym">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>acronym</key>
<path>ble/administrative/ble_general/acronym</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/research_question/acronym"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/administrative/ble_general"/>
<is_collection>False</is_collection>
<is_optional>True</is_optional>
<order>1</order>
<help lang="en"/>
<text lang="en">Project Acronym</text>
<default_text lang="en"/>
<verbose_name lang="en">Project Acronym</verbose_name>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Projektakronym</text>
<default_text lang="de"/>
<verbose_name lang="de">Prokektakronym</verbose_name>
<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.julius-kuehn.de/terms/questions/ble/administrative/ble_general/contact">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>contact</key>
<path>ble/administrative/ble_general/contact</path>
<dc:comment>Wer reicht die Skizze ein?</dc:comment>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/partner/contact_person/name"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/administrative/ble_general"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en"><small>
(Given Name Last Name, Institution, City, Country)
</small></help>
<text lang="en">Submitting Person</text>
<default_text lang="en"/>
<verbose_name lang="en">Submitting Person</verbose_name>
<verbose_name_plural lang="en"/>
<help lang="de"><small>
(Vorname Name, Institution, Stadt, Land)
</small></help>
<text lang="de">Skizzeneinreicher*in</text>
<default_text lang="de"/>
<verbose_name lang="de">Skizzeneinreicher*in</verbose_name>
<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.julius-kuehn.de/terms/questions/ble/administrative/ble_general/name">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>name</key>
<path>ble/administrative/ble_general/name</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/partner/name"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/administrative/ble_general"/>
<is_collection>True</is_collection>
<is_optional>True</is_optional>
<order>3</order>
<help lang="en"></small>
(Given Name Last Name, Institution, City, Country)
</small></help>
<text lang="en">Project Partner</text>
<default_text lang="en"/>
<verbose_name lang="en">Project Partner</verbose_name>
<verbose_name_plural lang="en">Project Partners</verbose_name_plural>
<help lang="de"><small>
(Vorname Name, Institution, Stadt, Land)
</small></help>
<text lang="de">Projekt-/Verbundpartner</text>
<default_text lang="de"/>
<verbose_name lang="de">Projekt-/Verbundpartner</verbose_name>
<verbose_name_plural lang="de">Projekt-/Verbundpartner</verbose_name_plural>
<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.julius-kuehn.de/terms/questions/ble/administrative/ble_general/title_funder_programme">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>title_funder_programme</key>
<path>ble/administrative/ble_general/title_funder_programme</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/funder/programme/title"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/administrative/ble_general"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>4</order>
<help lang="en"><small>
Example: "Innovation Promotion Programme of the Federal Ministry of Food and Agriculture"
</small></help>
<text lang="en">Funding Programme</text>
<default_text lang="en"/>
<verbose_name lang="en">Funding programme</verbose_name>
<verbose_name_plural lang="en"/>
<help lang="de"><small>
Beispiel: "Programm zur Innovationsförderung des Bundesministeriums für Ernährung und Landwirtschaft"
</small></help>
<text lang="de">Förderprogramm</text>
<default_text lang="de"/>
<verbose_name lang="de">Förderprogramm</verbose_name>
<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.julius-kuehn.de/terms/questions/ble/administrative/ble_general/announcement">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>announcement</key>
<path>ble/administrative/ble_general/announcement</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/funder/programme/announcement"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/administrative/ble_general"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>5</order>
<help lang="en"><small>
Example: "Announcement on the promotion of innovations for the breeding of climate-adapted varieties and crops as part of the innovation promotion program"
</small></help>
<text lang="en">Announcement</text>
<default_text lang="en"/>
<verbose_name lang="en">Announcement</verbose_name>
<verbose_name_plural lang="en"/>
<help lang="de"><small>
Beispiel: "Bekanntmachung über die Förderung von Innovationen zur Züchtung von klimaangepassten Sorten und Kulturpflanzen im Rahmen des Programms zur Innovationsförderung"
</small></help>
<text lang="de">Bekanntmachung</text>
<default_text lang="de"/>
<verbose_name lang="de">Bekanntmachung</verbose_name>
<verbose_name_plural lang="de">Bekanntmachungen</verbose_name_plural>
<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.julius-kuehn.de/terms/questions/ble/administrative/ble_general/project_status">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>project_status</key>
<path>ble/administrative/ble_general/project_status</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/status"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/administrative/ble_general"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>6</order>
<help lang="en"/>
<text lang="en">What is the project status?</text>
<default_text lang="en"/>
<verbose_name lang="en">Project status</verbose_name>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Wie lautet der Projektstatus?</text>
<default_text lang="de"/>
<verbose_name lang="de">Projektstatus</verbose_name>
<verbose_name_plural lang="de"/>
<default_option/>
<default_external_id/>
<widget_type>select</widget_type>
<value_type>option</value_type>
<maximum/>
<minimum/>
<step/>
<unit/>
<width/>
<optionsets>
<optionset dc:uri="https://rdmo.julius-kuehn.de/terms/options/project_status_option"/>
</optionsets>
<conditions/>
</question>
<section dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/project-content">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>project-content</key>
<path>ble/project-content</path>
<dc:comment/>
<catalog dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble"/>
<order>1</order>
<title lang="en">Project Content Information</title>
<title lang="de">Inhaltliche Angaben</title>
</section>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/project-content/project-description">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>project-description</key>
<path>ble/project-content/project-description</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/project-content"/>
<questionset/>
<is_collection>False</is_collection>
<order>0</order>
<title lang="en">Project Description</title>
<help lang="en"/>
<verbose_name lang="en">Project Description</verbose_name>
<verbose_name_plural lang="en">Project Description</verbose_name_plural>
<title lang="de">Projekt-Beschreibung</title>
<help lang="de"/>
<verbose_name lang="de">Projekt-Beschreibung</verbose_name>
<verbose_name_plural lang="de">Projekt-Beschreibung</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/project-content/project-description/research_question">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>research_question</key>
<path>ble/project-content/project-description/research_question</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/research_question"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/project-content/project-description"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en"><small>
The focus should be on the framework in which research data are collected or (re-)used.
Example: "In this project, species diversity and population dynamics of winged aphids will be assessed and analyzed using quantitative methods at three sites."
</small></help>
<text lang="en">Briefly describe the research project</text>
<default_text lang="en"/>
<verbose_name lang="en">Describe in one sentence the research project</verbose_name>
<verbose_name_plural lang="en">Describe in one sentence the research project</verbose_name_plural>
<help lang="de"><small>
Der Fokus sollte dabei auf dem Rahmen, in welchem Forschungsdaten erzeugt oder genutzt werden, liegen.
Beispiel: "In diesem Projekt werden Artenspektrum und Populationsdynamiken geflügelter Blattläuse mittels quantitativer Methoden an drei Standorten erfasst und analysiert."
</small></help>
<text lang="de">Beschreiben Sie kurz und knapp das Forschungsvorhaben</text>
<default_text lang="de"/>
<verbose_name lang="de">Beschreiben Sie in einem Satz das Forschungsvorhaben</verbose_name>
<verbose_name_plural lang="de">Beschreiben Sie in einem Satz das Forschungsvorhaben</verbose_name_plural>
<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.julius-kuehn.de/terms/questions/ble/project-content/project-description/keywords">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>keywords</key>
<path>ble/project-content/project-description/keywords</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/research_question/keywords"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/project-content/project-description"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en"><small>
Keywords that can be used to paraphrase the project, e.g., epidemiology, resistance, wheat, barley
</small></help>
<text lang="en">Keywords</text>
<default_text lang="en"/>
<verbose_name lang="en">keyword</verbose_name>
<verbose_name_plural lang="en">keywords</verbose_name_plural>
<help lang="de"><small>
Schlagworte mit denen das Projekt umschrieben werden kann, z. B. Epidemiologie, Resistenz, Weizen, Gerste
</small></help>
<text lang="de">Schlagworte</text>
<default_text lang="de"/>
<verbose_name lang="de">Schlagwort</verbose_name>
<verbose_name_plural lang="de">Schlagwörter</verbose_name_plural>
<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.julius-kuehn.de/terms/questions/ble/project-content/project-description/reuse_scenario">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>reuse_scenario</key>
<path>ble/project-content/project-description/reuse_scenario</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/reuse_scenario"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/project-content/project-description"/>
<is_collection>False</is_collection>
<is_optional>True</is_optional>
<order>2</order>
<help lang="en"><small>
Please formulate full sentences.
</small></help>
<text lang="en">For which individuals, groups, or institutions and why might the data from this project be of interest (for reuse)?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"><small>
Bitte formulieren Sie ganze Sätze.
</small></help>
<text lang="de">Für welche Personen, Gruppen oder Institutionen und warum könnten die Daten aus diesem Projekt (für die Nachnutzung) von Interesse sein?</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>
<section dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>content-classification</key>
<path>ble/content-classification</path>
<dc:comment/>
<catalog dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble"/>
<order>2</order>
<title lang="en">Research Data Management in the Project</title>
<title lang="de">Forschungdatenmanagement im Projekt</title>
</section>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification/rdm_responsibility">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>rdm_responsibility</key>
<path>ble/content-classification/rdm_responsibility</path>
<dc:comment/>
<attribute/>
<section dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification"/>
<questionset/>
<is_collection>False</is_collection>
<order>0</order>
<title lang="en">Research Data Management</title>
<help lang="en"/>
<verbose_name lang="en">Person</verbose_name>
<verbose_name_plural lang="en">Persons</verbose_name_plural>
<title lang="de">Kosten/Aufwände</title>
<help lang="de"/>
<verbose_name lang="de">Kosten/Aufwände</verbose_name>
<verbose_name_plural lang="de">Personen</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification/rdm_responsibility/special_costs">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>special_costs</key>
<path>ble/content-classification/rdm_responsibility/special_costs</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/costs/rdm/special_costs"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification/rdm_responsibility"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en"/>
<text lang="en">Does the project require any special personnel or material costs for data management?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"/>
<text lang="de">Entstehen im Rahmen des Projekts ein besonderer Personalaufwand oder Sachkosten für das Datenmanagement?</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://rdmo.julius-kuehn.de/terms/options/rdm_special_costs"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification/rdm_responsibility/rdm_cost_level">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>rdm_cost_level</key>
<path>ble/content-classification/rdm_responsibility/rdm_cost_level</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/costs/rdm/rdm_cost_level"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification/rdm_responsibility"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en">Example: "This project will incur costs of approximately 500€ for the storage of the research data."</help>
<text lang="en">Please describe in complete sentences why and in what amount</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Beispiel: "Im Rahmen dieses Projektes entstehen Kosten in Höhe von ca. 500€ für die Aufbewahrung der Forschungsdaten."</help>
<text lang="de">Bitte beschreiben Sie in vollständigen Sätzen wieso und in welcher Höhe</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>
<condition dc:uri="https://rdmo.julius-kuehn.de/terms/conditions/rdm_cost_yes_no"/>
</conditions>
</question>
<question dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification/rdm_responsibility/rdm_costs_payment">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>rdm_costs_payment</key>
<path>ble/content-classification/rdm_responsibility/rdm_costs_payment</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/costs/rdm/rdm_costs_payment"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification/rdm_responsibility"/>
<is_collection>True</is_collection>
<is_optional>True</is_optional>
<order>2</order>
<help lang="en">Examples include data publication, data archiving, hardware, training costs, and the like.</help>
<text lang="en">By whom are the costs/efforts for research data management paid?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de">Beispiele hierfür sind Datenpublikation, Datenarchivierung, Hardware, Weiterbildungskosten, o.ä.</help>
<text lang="de">Von wem werden die Kosten/Aufwände für das Forschungsdatenmanagement getragen?</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>12</width>
<optionsets>
<optionset dc:uri="https://rdmo.julius-kuehn.de/terms/options/rdm_costs_payment"/>
</optionsets>
<conditions>
<condition dc:uri="https://rdmo.julius-kuehn.de/terms/conditions/rdm_cost_yes_no"/>
</conditions>
</question>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification/contact_person">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>contact_person</key>
<path>ble/content-classification/contact_person</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/coordination/contact-person"/>
<section dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification"/>
<questionset/>
<is_collection>True</is_collection>
<order>1</order>
<title lang="en">Contact / Responsible Person</title>
<help lang="en">Clearly defined contact persons and responsibilities within the project facilitate the daily research routine and the management of the data later on. If you have not already done so, please define them before the start of the project.
<font color="red">When creating a new person, you will be asked for a "Title". Enter a meaningful title for the person, such as "Data Steward", "FDM Manager", "Project Manager" or similar.</font></help>
<verbose_name lang="en">Person</verbose_name>
<verbose_name_plural lang="en">Persons</verbose_name_plural>
<title lang="de">Ansprechpartner*innen / Verantwortliche Personen</title>
<help lang="de">Klar definierte Ansprechpartner*innen und Verantwortlichkeiten innerhalb des Projekts erleichtern später den Forschungsalltag und das Management der Daten. Falls noch nicht bereits geschehen, legen Sie diese bitte vor Projektbeginn fest.
<font color="red">Beim Anlegen einer neuen Person werden Sie nach einem "Titel" gefragt. Geben Sie dort der Person einen aussagekräftigen Titel wie zum Beispiel "Data Steward", "FDM-Verantwortliche*r", "Projektleitung" oder ähnlich an.</font></help>
<verbose_name lang="de">Person</verbose_name>
<verbose_name_plural lang="de">Einträge</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification/contact_person/rdm_contact_name">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>rdm_contact_name</key>
<path>ble/content-classification/contact_person/rdm_contact_name</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/rdm/contact_person/name"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification/contact_person"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en"><font color="red">(First name, Last name)</font></help>
<text lang="en">Name</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"><font color="red">(Vorname Name)</font></help>
<text lang="de">Name</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.julius-kuehn.de/terms/questions/ble/content-classification/contact_person/rdm_responsibility_mail">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>rdm_responsibility_mail</key>
<path>ble/content-classification/contact_person/rdm_responsibility_mail</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/rdm/contact_person/mail"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification/contact_person"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en">([email protected])</help>
<text lang="en">E-Mail</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"><font color="red">([email protected])</font></help>
<text lang="de">E-Mail</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.julius-kuehn.de/terms/questions/ble/content-classification/contact_person/rdm_responsibility_topic">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>rdm_responsibility_topic</key>
<path>ble/content-classification/contact_person/rdm_responsibility_topic</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/rdm/contact_person/rdm_topics"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/content-classification/contact_person"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en"><font color="red">
Please check all that apply.
</font></help>
<text lang="en">Topics</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"><font color="red">
Alles zutreffende bitte ankreuzen.
</font></help>
<text lang="de">Themen</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.julius-kuehn.de/terms/options/rdm_topics"/>
</optionsets>
<conditions/>
</question>
<section dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>data</key>
<path>ble/data</path>
<dc:comment/>
<catalog dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble"/>
<order>3</order>
<title lang="en">Research Data in the Project</title>
<title lang="de">Daten-Erhebung, -Abruf und Dokumentation</title>
</section>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data_description">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>data_description</key>
<path>ble/data/data_description</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data"/>
<questionset/>
<is_collection>True</is_collection>
<order>0</order>
<title lang="en">Data Content Description</title>
<help lang="en">The following questions deal with the content of the generated or reused research data in the project and describe their management.
If the research data in this project differ, for example, in terms of their context, collection, source, storage, documentation or subsequent use, please use different "data categories". Assign a meaningful name for the respective "data category" with reference to the research question, e.g. field data, experimental data, population data, resistance data, yield data, mapping data etc. (the assigned name will then appear in a separate tab). Then classify the each data category and describe its management.</help>
<verbose_name lang="en">Data Category</verbose_name>
<verbose_name_plural lang="en"/>
<title lang="de">Inhaltliche Beschreibung</title>
<help lang="de">Die folgenden Fragen beschäftigen sich mit der inhaltlichen Einordnung und der Beschreibung des Managements der erzeugten oder nachgenutzten Forschungsdaten im Projekt.
Unterscheiden sich die Forschungsdaten in diesem Projekt zum Beispiel in Bezug auf ihre thematische Einordnung, Erhebung, Quelle, Ablage, Dokumentation oder Nachnutzung, verwenden Sie hierfür bitte unterschiedliche "Datenkategorien". Vergeben Sie einen aussagekräftigen Namen für die jeweilige "Datenkategorie" mit Bezug zur Forschungsfrage, z.B. Felddaten, Versuchsdaten, Populationsdaten, Resistenzdaten, Ertragsdaten, Kartierungsdaten etc. (der vergebene Name erscheint dann in einem seperaten Reiter). Ordnen Sie anschließend jede Datenkategorie inhaltlich ein und beschreiben Sie deren Management.</help>
<verbose_name lang="de">Datenkategorie</verbose_name>
<verbose_name_plural lang="de"/>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data_description/nature_of_data">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>nature_of_data</key>
<path>ble/data/data_description/nature_of_data</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/dataset/nature_of_data"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data_description"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>0</order>
<help lang="en"><small>
<font color="red">
Please check all that apply.
</font>
</small></help>
<text lang="en">Please specify the subject of the data category</text>
<default_text lang="en"/>
<verbose_name lang="en">Subject Type</verbose_name>
<verbose_name_plural lang="en"/>
<help lang="de"><small>
<font color="red">
Alles zutreffende bitte ankreuzen.
</font>
</small></help>
<text lang="de">Bitte geben Sie die Art der Datenkategorie an</text>
<default_text lang="de"/>
<verbose_name lang="de">Datenkategorie</verbose_name>
<verbose_name_plural lang="de">Datenkategorien</verbose_name_plural>
<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.julius-kuehn.de/terms/options/nature_of_data_options"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data_description/technical_structure">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>technical_structure</key>
<path>ble/data/data_description/technical_structure</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/dataset/technical_structure"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data_description"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>1</order>
<help lang="en"><small>
<font color="red">
Please check all that apply.
</font>
</small></help>
<text lang="en">Please specify technical structure / Organisation of the data from this data category</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"><small>
<font color="red">
Alles zutreffende bitte ankreuzen.
</font>
</small></help>
<text lang="de">Bitte geben Sie die technische Struktur / Organisation der Daten aus dieser Datenkategorie an</text>
<default_text lang="de"/>
<verbose_name lang="de">tech. Struktur</verbose_name>
<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.julius-kuehn.de/terms/options/technical_data_format"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data_description/sensitive_data">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>sensitive_data</key>
<path>ble/data/data_description/sensitive_data</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/sensitive_data/other/yesno"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data_description"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en"><small>
<font color="red">
e.g. data personal data or company secrets. It should be noted that a reference to a person does not always have to be obvious. For example, a geo-reference together with a legitimate interest may be sufficient to query the landowner in the land registry.
</font>
</small></help>
<text lang="en">Is the data in this data category sensitive data?</text>
<default_text lang="en"/>
<verbose_name lang="en"/>
<verbose_name_plural lang="en"/>
<help lang="de"><small>
<font color="red">
z.B. Daten mit Personenbezug oder Betriebsgeheimnisse. Es gilt zu beachten, dass ein Personenbezug nicht immer offensichtlich sein muss. So kann eine Georeferenz zusammen mit einem berechtigtem Interesse schon ausreichen, um den Landbesitzer im Grundbuchamt zu erfragen.
</font>
</small></help>
<text lang="de">Handelt es sich bei den Daten dieser Datenkategorie um sensible Daten?</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://rdmo.julius-kuehn.de/terms/options/sensitive_data_yes_no_option"/>
</optionsets>
<conditions/>
</question>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data-collection">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>data-collection</key>
<path>ble/data/data-collection</path>
<dc:comment/>
<attribute dc:uri="https://rdmorganiser.github.io/terms/domain/project/dataset/id"/>
<section dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data"/>
<questionset/>
<is_collection>True</is_collection>
<order>1</order>
<title lang="en">Data Collection</title>
<help lang="en"/>
<verbose_name lang="en">Data Collection</verbose_name>
<verbose_name_plural lang="en">Data Collection</verbose_name_plural>
<title lang="de">Datenerhebung / Datenabruf</title>
<help lang="de"/>
<verbose_name lang="de">Datenkategorie</verbose_name>
<verbose_name_plural lang="de">Datenkategorien</verbose_name_plural>
<conditions/>
</questionset>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data-collection/source">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>source</key>
<path>ble/data/data-collection/source</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/dataset/data_sources"/>
<section dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data-collection"/>
<is_collection>True</is_collection>
<order>2</order>
<title lang="en">Please indicate the source(s) of the (raw) data.</title>
<help lang="en">Please distinguish between internal (at own institution) and external data collection or data sources (e.g. DOI, URL, repository or similar) in case of subsequent use.
<small>
Examples of internal and external locations/sources of data collection:
<table>
<tr>
<th>Internal</th>
<th>External</th>
</tr>
<tr>
<td>Experimental Field, Dahnsdorf, Germany</td>
<td>Exampleinstitut, Neustadt, Germany</td>
</tr>
<tr>
<td>Institut für Strategien und Folgenabschätzung, Kleinmachnow, Deutschland &nbsp &nbsp &nbsp </td>
<td>BonaRes Repository (www.Bonares.de)</td>
</tr>
<tr>
<td>http://drosomon.julius-kuehn.de</td>
<td>DOI: 10.5073/20211013-105447</td>
</tr>
<tr>
<td>Webservice -> https://synops.julius-kuehn.de/emra/xy/{lat}/{lon}/{date1}/{date2}</td>
</tr>
</table>
</small></help>
<verbose_name lang="en">Source</verbose_name>
<verbose_name_plural lang="en">Sources</verbose_name_plural>
<title lang="de">Bitte geben Sie die Quelle(n) der (Roh-)Daten an.</title>
<help lang="de">Dabei unterscheiden Sie bitte zwischen interner (eigene Institution) und externer Datenerhebung bzw. Datenquellen (z.B. DOI, URL, Repositorium o.ä.) im Falle einer Nachnutzung.
<small>
Beispiele für interne und externe Orte/Quellen der Datenerhebung:
<table>
<tr>
<th>Intern</th>
<th>Extern</th>
</tr>
<tr>
<td>Versuchsflächen, Dahnsdorf, Deutschland</td>
<td>Musterinstitut, Neustadt, Deutschland</td>
</tr>
<tr>
<td>Institut für Strategien und Folgenabschätzung, Kleinmachnow, Deutschland &nbsp &nbsp &nbsp </td>
<td>BonaRes Repository (www.Bonares.de)</td>
</tr>
<tr>
<td>http://drosomon.julius-kuehn.de</td>
<td>DOI: 10.5073/20211013-105447</td>
</tr>
<tr>
<td>Webservice -> https://synops.julius-kuehn.de/emra/xy/{lat}/{lon}/{date1}/{date2}</td>
</tr>
</table>
</small></help>
<verbose_name lang="de">Quellenangabe</verbose_name>
<verbose_name_plural lang="de">Quellenangaben</verbose_name_plural>
<conditions/>
</questionset>
<question dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data-collection/source/intern_extern">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>intern_extern</key>
<path>ble/data/data-collection/source/intern_extern</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/dataset/data_sources/internal_external"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data-collection/source"/>
<is_collection>False</is_collection>
<is_optional>False</is_optional>
<order>2</order>
<help lang="en"/>
<text lang="en">Internal or external data collection/source?</text>
<default_text lang="en"/>
<verbose_name lang="en">Internal or external data collection/source</verbose_name>
<verbose_name_plural lang="en">Internal or external data collection/sources</verbose_name_plural>
<help lang="de"/>
<text lang="de">Interne oder externe Datenerhebung/Datenquelle?</text>
<default_text lang="de"/>
<verbose_name lang="de">Interne oder externe Datenerhebung/Quelle</verbose_name>
<verbose_name_plural lang="de">Interne oder externe Datenerhebungen/Quellen</verbose_name_plural>
<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://rdmo.julius-kuehn.de/terms/options/internal_external_data_sources"/>
</optionsets>
<conditions/>
</question>
<question dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data-collection/source/data_origin">
<uri_prefix>https://rdmo.julius-kuehn.de/terms</uri_prefix>
<key>data_origin</key>
<path>ble/data/data-collection/source/data_origin</path>
<dc:comment/>
<attribute dc:uri="https://rdmo.julius-kuehn.de/terms/domain/project/dataset/data_sources/origin"/>
<questionset dc:uri="https://rdmo.julius-kuehn.de/terms/questions/ble/data/data-collection/source"/>
<is_collection>True</is_collection>
<is_optional>False</is_optional>
<order>3</order>
<help lang="en"/>
<text lang="en">Location / Source</text>
<default_text lang="en"/>