@dmptool/types 3.1.3 → 3.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4556 @@
1
+ {
2
+ "$id": "https://github.com/CDLUC3/dmptool-types/blob/main/schemas/dmptoolDmp.schema.json",
3
+ "title": "RDA DMP Common Standard for machine-actionable DMPs with extensions for the DMP Tool system",
4
+ "description": "This is a metadata application profile to provide basic interoperability between systems producing or consuming machine-actionable data management plans (maDMPS) with the DMP Tool.\n\nThis application profile is intended to cover a wide range of use cases and does not set any business (e.g. funder specific) requirements. It represents information over the whole DMP lifecycle.",
5
+ "$defs": {
6
+ "DMPData": {
7
+ "type": "object",
8
+ "title": "DMP",
9
+ "description": "Provides high level information about the DMP, e.g. its title, modification date, etc. It is the root of this application profile. The majority of its fields are mandatory.",
10
+ "properties": {
11
+ "alternate_identifier": {
12
+ "type": "array",
13
+ "items": {
14
+ "$ref": "#/$defs/AlternateIdentifier"
15
+ },
16
+ "minItems": 0
17
+ },
18
+ "contact": {
19
+ "$ref": "#/$defs/Contact"
20
+ },
21
+ "contributor": {
22
+ "$ref": "#/$defs/Contributors"
23
+ },
24
+ "cost": {
25
+ "$ref": "#/$defs/Costs"
26
+ },
27
+ "created": {
28
+ "type": "string",
29
+ "format": "date-time",
30
+ "title": "Created",
31
+ "description": "Date and time of the first version of a DMP. Must not be changed in subsequent DMPs. Encoded using the relevant ISO 8601 Date and Time (with timezone) compliant string.",
32
+ "examples": [
33
+ "2019-03-13T13:13:00Z"
34
+ ]
35
+ },
36
+ "dataset": {
37
+ "$ref": "#/$defs/Datasets"
38
+ },
39
+ "description": {
40
+ "type": "string",
41
+ "title": "Description",
42
+ "description": "Any text related to this DMP, optionally describing the project. It can include important information that doesn't fit elsewhere.",
43
+ "examples": [
44
+ "This DMP is for our new project"
45
+ ]
46
+ },
47
+ "dmp_id": {
48
+ "$ref": "#/$defs/DMPID"
49
+ },
50
+ "ethical_issues_description": {
51
+ "type": "string",
52
+ "title": "Ethical Issues Description",
53
+ "description": "To describe considerations that require compliance with laws and regulations (e.g. GDPR, animal welfare) due to the involvement of humans, animals, or sensitive information. This includes ensuring informed consent from participants, protecting privacy and confidentiality, and adhering to applicable legal and ethical standards throughout the research.",
54
+ "examples": [
55
+ "There are ethical issues, because..."
56
+ ]
57
+ },
58
+ "ethical_issues_exist": {
59
+ "$ref": "#/$defs/Booleanish"
60
+ },
61
+ "ethical_issues_report": {
62
+ "type": "string",
63
+ "title": "Ethical Issues Report",
64
+ "description": "To indicate where a report/document that details all identified ethical issues (might be for example emit from a meeting with an ethical committee), preferably in URL format",
65
+ "examples": [
66
+ "http://report.location"
67
+ ]
68
+ },
69
+ "language": {
70
+ "$ref": "#/$defs/LanguageCode"
71
+ },
72
+ "modified": {
73
+ "type": "string",
74
+ "format": "date-time",
75
+ "title": "Modified",
76
+ "description": "Must be set each time DMP is modified. Indicates a DMP version. Encoded using the relevant ISO 8601 Date and Time (with timezone) compliant string.",
77
+ "examples": [
78
+ "2020-03-14T10:53:49Z"
79
+ ]
80
+ },
81
+ "project": {
82
+ "type": "array",
83
+ "title": "Projects",
84
+ "description": "Projects related to a DMP",
85
+ "items": {
86
+ "$ref": "#/$defs/Project"
87
+ }
88
+ },
89
+ "related_identifier": {
90
+ "type": "array",
91
+ "items": {
92
+ "$ref": "#/$defs/RelatedIdentifier"
93
+ },
94
+ "minItems": 0
95
+ },
96
+ "title": {
97
+ "type": "string",
98
+ "title": "Title",
99
+ "description": "Title of a DMP",
100
+ "examples": [
101
+ "DMP for our new project"
102
+ ]
103
+ }
104
+ },
105
+ "required": [
106
+ "contact",
107
+ "created",
108
+ "dataset",
109
+ "dmp_id",
110
+ "ethical_issues_exist",
111
+ "language",
112
+ "modified",
113
+ "title"
114
+ ]
115
+ },
116
+ "Affiliation": {
117
+ "type": "object",
118
+ "title": "Affiliation",
119
+ "properties": {
120
+ "affiliation_id": {
121
+ "$ref": "#/$defs/AffiliationID"
122
+ },
123
+ "name": {
124
+ "type": "string",
125
+ "title": "Name",
126
+ "description": "Name of the affiliation",
127
+ "examples": [
128
+ "Some University"
129
+ ]
130
+ }
131
+ },
132
+ "required": [
133
+ "affiliation_id",
134
+ "name"
135
+ ]
136
+ },
137
+ "AffiliationID": {
138
+ "type": "object",
139
+ "title": "Affiliation ID",
140
+ "properties": {
141
+ "identifier": {
142
+ "type": "string",
143
+ "title": "Identifier",
144
+ "examples": [
145
+ "03yrm5c26"
146
+ ]
147
+ },
148
+ "type": {
149
+ "type": "string",
150
+ "title": "Type",
151
+ "description": "Identifier type. Suggested Values: ror, grid, isni, other",
152
+ "examples": [
153
+ "ror"
154
+ ]
155
+ }
156
+ },
157
+ "required": [
158
+ "identifier",
159
+ "type"
160
+ ]
161
+ },
162
+ "AlternateIdentifier": {
163
+ "type": "object",
164
+ "title": "Alternate Identifier",
165
+ "properties": {
166
+ "identifier": {
167
+ "type": "string",
168
+ "title": "Identifier",
169
+ "description": "Alternate identifier value",
170
+ "examples": [
171
+ "E-GEOD-34814"
172
+ ]
173
+ },
174
+ "type": {
175
+ "type": "string",
176
+ "title": "Type",
177
+ "description": "Type of alternate identifier",
178
+ "examples": [
179
+ "accession number",
180
+ "doi"
181
+ ]
182
+ }
183
+ },
184
+ "required": [
185
+ "identifier",
186
+ "type"
187
+ ]
188
+ },
189
+ "Booleanish": {
190
+ "type": "string",
191
+ "enum": [
192
+ "yes",
193
+ "no",
194
+ "unknown"
195
+ ],
196
+ "title": "Booleanish",
197
+ "description": "To indicate whether there are ethical issues related to data that this DMP describes. Allowed values: yes, no, unknown",
198
+ "examples": [
199
+ "yes"
200
+ ]
201
+ },
202
+ "Certification": {
203
+ "type": "string",
204
+ "enum": [
205
+ "din31644",
206
+ "dini-zertifikat",
207
+ "dsa",
208
+ "iso16363",
209
+ "iso16919",
210
+ "trac",
211
+ "wds",
212
+ "coretrustseal"
213
+ ],
214
+ "title": "Certification",
215
+ "description": "Repository certified to a recognised standard. Allowed values: din31644, dini-zertifikat, dsa, iso16363, iso16919, trac, wds, coretrustseal",
216
+ "examples": [
217
+ "coretrustseal"
218
+ ]
219
+ },
220
+ "Contact": {
221
+ "type": "object",
222
+ "title": "Contact",
223
+ "description": "Specifies the party which can provide any information on the DMP. This is not necessarily the DMP creator, and can be a person or an organisation.",
224
+ "properties": {
225
+ "affiliation": {
226
+ "type": "array",
227
+ "title": "Affiliations",
228
+ "description": "Affiliation(s) of the contact",
229
+ "items": {
230
+ "$ref": "#/$defs/Affiliation"
231
+ }
232
+ },
233
+ "contact_id": {
234
+ "oneOf": [
235
+ {
236
+ "$ref": "#/$defs/ContactID"
237
+ },
238
+ {
239
+ "type": "array",
240
+ "items": {
241
+ "$ref": "#/$defs/ContactID"
242
+ },
243
+ "minItems": 1
244
+ }
245
+ ]
246
+ },
247
+ "mbox": {
248
+ "type": "string",
249
+ "format": "email",
250
+ "title": "Mailbox",
251
+ "description": "Contact Person's E-mail address",
252
+ "examples": [
253
+ "cc@example.com"
254
+ ]
255
+ },
256
+ "name": {
257
+ "type": "string",
258
+ "title": "Name",
259
+ "description": "Name of the contact person",
260
+ "examples": [
261
+ "Charlie Chaplin"
262
+ ]
263
+ }
264
+ },
265
+ "required": [
266
+ "contact_id",
267
+ "mbox",
268
+ "name"
269
+ ]
270
+ },
271
+ "ContactID": {
272
+ "type": "object",
273
+ "title": "Contact ID",
274
+ "properties": {
275
+ "identifier": {
276
+ "type": "string",
277
+ "title": "Identifier",
278
+ "examples": [
279
+ "0000-0003-0644-4174"
280
+ ]
281
+ },
282
+ "type": {
283
+ "type": "string",
284
+ "title": "Type",
285
+ "description": "Identifier type. Suggested values: orcid, isni, openid",
286
+ "examples": [
287
+ "orcid"
288
+ ]
289
+ }
290
+ },
291
+ "required": [
292
+ "identifier",
293
+ "type"
294
+ ]
295
+ },
296
+ "Contributor": {
297
+ "type": "object",
298
+ "title": "Contributor",
299
+ "properties": {
300
+ "affiliation": {
301
+ "type": "array",
302
+ "title": "Affiliations",
303
+ "description": "Affiliation(s) of the contributor",
304
+ "items": {
305
+ "$ref": "#/$defs/Affiliation"
306
+ }
307
+ },
308
+ "contributor_id": {
309
+ "oneOf": [
310
+ {
311
+ "$ref": "#/$defs/ContributorID"
312
+ },
313
+ {
314
+ "type": "array",
315
+ "items": {
316
+ "$ref": "#/$defs/ContributorID"
317
+ },
318
+ "minItems": 0
319
+ }
320
+ ]
321
+ },
322
+ "mbox": {
323
+ "type": "string",
324
+ "title": "Mailbox",
325
+ "description": "E-mail address for a contributor",
326
+ "examples": [
327
+ "john@smith.com"
328
+ ],
329
+ "format": "email"
330
+ },
331
+ "name": {
332
+ "type": "string",
333
+ "title": "Name",
334
+ "description": "Name of the contributor",
335
+ "examples": [
336
+ "John Smith"
337
+ ]
338
+ },
339
+ "role": {
340
+ "$ref": "#/$defs/ContributorRoles"
341
+ }
342
+ },
343
+ "required": [
344
+ "contributor_id",
345
+ "name",
346
+ "role"
347
+ ]
348
+ },
349
+ "ContributorID": {
350
+ "type": "object",
351
+ "title": "Contributor ID",
352
+ "properties": {
353
+ "identifier": {
354
+ "type": "string",
355
+ "title": "Identifier",
356
+ "examples": [
357
+ "0000-0003-0644-4174"
358
+ ]
359
+ },
360
+ "type": {
361
+ "type": "string",
362
+ "title": "Type",
363
+ "description": "Identifier type. Suggested values: orcid, isni, openid",
364
+ "examples": [
365
+ "orcid"
366
+ ]
367
+ }
368
+ },
369
+ "required": [
370
+ "identifier",
371
+ "type"
372
+ ]
373
+ },
374
+ "ContributorRole": {
375
+ "type": "string",
376
+ "title": "Contributor Role",
377
+ "description": "Contributors role(s) within the process of data management (incl. planning). It is recommended to use contributor types of DataCite Metadata Schema (https://datacite-metadata-schema.readthedocs.io/en/4.5/appendices/appendix-1/contributorType/).",
378
+ "examples": [
379
+ "DataManager",
380
+ "Researcher"
381
+ ]
382
+ },
383
+ "ContributorRoles": {
384
+ "type": "array",
385
+ "title": "Contributor Roles",
386
+ "description": "Type of contributor",
387
+ "items": {
388
+ "$ref": "#/$defs/ContributorRole"
389
+ },
390
+ "uniqueItems": true
391
+ },
392
+ "Contributors": {
393
+ "type": "array",
394
+ "title": "The Contributor Schema",
395
+ "items": {
396
+ "$ref": "#/$defs/Contributor"
397
+ }
398
+ },
399
+ "Cost": {
400
+ "type": "object",
401
+ "title": "Cost",
402
+ "properties": {
403
+ "currency_code": {
404
+ "$ref": "#/$defs/CurrencyCode"
405
+ },
406
+ "description": {
407
+ "type": "string",
408
+ "title": "Description",
409
+ "description": "To provide additional details about a cost, including specifying which activities or resources it relates to, such as making data FAIR, ensuring data accessibility, or enhancing its reusability.",
410
+ "examples": [
411
+ "Storage and backup costs are calculated based on a 12-month storage period, daily incremental and weekly full backups, and a frequency of 4 restores per month, as outlined in the evaluation table at www.example-storagecostevaluation.com."
412
+ ]
413
+ },
414
+ "title": {
415
+ "type": "string",
416
+ "title": "Title",
417
+ "description": "Title of a cost",
418
+ "examples": [
419
+ "Storage and Backup"
420
+ ]
421
+ },
422
+ "value": {
423
+ "type": "number",
424
+ "title": "Value",
425
+ "description": "Cost value in the specified currency",
426
+ "examples": [
427
+ 1000
428
+ ]
429
+ }
430
+ },
431
+ "required": [
432
+ "title"
433
+ ]
434
+ },
435
+ "Costs": {
436
+ "type": "array",
437
+ "title": "Costs",
438
+ "items": {
439
+ "$ref": "#/$defs/Cost"
440
+ }
441
+ },
442
+ "Creator": {
443
+ "type": "object",
444
+ "title": "Creator",
445
+ "properties": {
446
+ "affiliation": {
447
+ "type": "array",
448
+ "title": "Affiliations",
449
+ "description": "Affiliation(s) of the creator",
450
+ "items": {
451
+ "$ref": "#/$defs/Affiliation"
452
+ }
453
+ },
454
+ "creator_id": {
455
+ "oneOf": [
456
+ {
457
+ "$ref": "#/$defs/CreatorID"
458
+ },
459
+ {
460
+ "type": "array",
461
+ "items": {
462
+ "$ref": "#/$defs/CreatorID"
463
+ },
464
+ "minItems": 0
465
+ }
466
+ ]
467
+ },
468
+ "mbox": {
469
+ "type": "string",
470
+ "title": "Mailbox",
471
+ "description": "Creator Mail address",
472
+ "examples": [
473
+ "john.doe@example.com"
474
+ ],
475
+ "format": "email"
476
+ },
477
+ "name": {
478
+ "type": "string",
479
+ "title": "Name",
480
+ "description": "Name of the creator",
481
+ "examples": [
482
+ "John Doe"
483
+ ]
484
+ }
485
+ },
486
+ "required": [
487
+ "creator_id",
488
+ "name"
489
+ ]
490
+ },
491
+ "CreatorID": {
492
+ "type": "object",
493
+ "title": "Creator ID",
494
+ "properties": {
495
+ "identifier": {
496
+ "type": "string",
497
+ "title": "Identifier",
498
+ "examples": [
499
+ "0000-0003-0644-4174"
500
+ ]
501
+ },
502
+ "type": {
503
+ "type": "string",
504
+ "title": "Type",
505
+ "description": "Identifier type. Suggested values: orcid, isni, openid",
506
+ "examples": [
507
+ "orcid"
508
+ ]
509
+ }
510
+ },
511
+ "required": [
512
+ "identifier",
513
+ "type"
514
+ ]
515
+ },
516
+ "CurrencyCode": {
517
+ "type": "string",
518
+ "enum": [
519
+ "AED",
520
+ "AFN",
521
+ "ALL",
522
+ "AMD",
523
+ "ANG",
524
+ "AOA",
525
+ "ARS",
526
+ "AUD",
527
+ "AWG",
528
+ "AZN",
529
+ "BAM",
530
+ "BBD",
531
+ "BDT",
532
+ "BGN",
533
+ "BHD",
534
+ "BIF",
535
+ "BMD",
536
+ "BND",
537
+ "BOB",
538
+ "BRL",
539
+ "BSD",
540
+ "BTN",
541
+ "BWP",
542
+ "BYN",
543
+ "BZD",
544
+ "CAD",
545
+ "CDF",
546
+ "CHF",
547
+ "CLP",
548
+ "CNY",
549
+ "COP",
550
+ "CRC",
551
+ "CUC",
552
+ "CUP",
553
+ "CVE",
554
+ "CZK",
555
+ "DJF",
556
+ "DKK",
557
+ "DOP",
558
+ "DZD",
559
+ "EGP",
560
+ "ERN",
561
+ "ETB",
562
+ "EUR",
563
+ "FJD",
564
+ "FKP",
565
+ "GBP",
566
+ "GEL",
567
+ "GGP",
568
+ "GHS",
569
+ "GIP",
570
+ "GMD",
571
+ "GNF",
572
+ "GTQ",
573
+ "GYD",
574
+ "HKD",
575
+ "HNL",
576
+ "HRK",
577
+ "HTG",
578
+ "HUF",
579
+ "IDR",
580
+ "ILS",
581
+ "IMP",
582
+ "INR",
583
+ "IQD",
584
+ "IRR",
585
+ "ISK",
586
+ "JEP",
587
+ "JMD",
588
+ "JOD",
589
+ "JPY",
590
+ "KES",
591
+ "KGS",
592
+ "KHR",
593
+ "KMF",
594
+ "KPW",
595
+ "KRW",
596
+ "KWD",
597
+ "KYD",
598
+ "KZT",
599
+ "LAK",
600
+ "LBP",
601
+ "LKR",
602
+ "LRD",
603
+ "LSL",
604
+ "LYD",
605
+ "MAD",
606
+ "MDL",
607
+ "MGA",
608
+ "MKD",
609
+ "MMK",
610
+ "MNT",
611
+ "MOP",
612
+ "MRU",
613
+ "MUR",
614
+ "MVR",
615
+ "MWK",
616
+ "MXN",
617
+ "MYR",
618
+ "MZN",
619
+ "NAD",
620
+ "NGN",
621
+ "NIO",
622
+ "NOK",
623
+ "NPR",
624
+ "NZD",
625
+ "OMR",
626
+ "PAB",
627
+ "PEN",
628
+ "PGK",
629
+ "PHP",
630
+ "PKR",
631
+ "PLN",
632
+ "PYG",
633
+ "QAR",
634
+ "RON",
635
+ "RSD",
636
+ "RUB",
637
+ "RWF",
638
+ "SAR",
639
+ "SBD",
640
+ "SCR",
641
+ "SDG",
642
+ "SEK",
643
+ "SGD",
644
+ "SHP",
645
+ "SLL",
646
+ "SOS",
647
+ "SPL*",
648
+ "SRD",
649
+ "STN",
650
+ "SVC",
651
+ "SYP",
652
+ "SZL",
653
+ "THB",
654
+ "TJS",
655
+ "TMT",
656
+ "TND",
657
+ "TOP",
658
+ "TRY",
659
+ "TTD",
660
+ "TVD",
661
+ "TWD",
662
+ "TZS",
663
+ "UAH",
664
+ "UGX",
665
+ "USD",
666
+ "UYU",
667
+ "UZS",
668
+ "VEF",
669
+ "VND",
670
+ "VUV",
671
+ "WST",
672
+ "XAF",
673
+ "XCD",
674
+ "XDR",
675
+ "XOF",
676
+ "XPF",
677
+ "YER",
678
+ "ZAR",
679
+ "ZMW",
680
+ "ZWD"
681
+ ],
682
+ "title": "Currency Code",
683
+ "description": "Allowed values defined by ISO 4217",
684
+ "examples": [
685
+ "EUR"
686
+ ]
687
+ },
688
+ "CountryCode": {
689
+ "type": "string",
690
+ "enum": [
691
+ "AD",
692
+ "AE",
693
+ "AF",
694
+ "AG",
695
+ "AI",
696
+ "AL",
697
+ "AM",
698
+ "AO",
699
+ "AQ",
700
+ "AR",
701
+ "AS",
702
+ "AT",
703
+ "AU",
704
+ "AW",
705
+ "AX",
706
+ "AZ",
707
+ "BA",
708
+ "BB",
709
+ "BD",
710
+ "BE",
711
+ "BF",
712
+ "BG",
713
+ "BH",
714
+ "BI",
715
+ "BJ",
716
+ "BL",
717
+ "BM",
718
+ "BN",
719
+ "BO",
720
+ "BQ",
721
+ "BR",
722
+ "BS",
723
+ "BT",
724
+ "BV",
725
+ "BW",
726
+ "BY",
727
+ "BZ",
728
+ "CA",
729
+ "CC",
730
+ "CD",
731
+ "CF",
732
+ "CG",
733
+ "CH",
734
+ "CI",
735
+ "CK",
736
+ "CL",
737
+ "CM",
738
+ "CN",
739
+ "CO",
740
+ "CR",
741
+ "CU",
742
+ "CV",
743
+ "CW",
744
+ "CX",
745
+ "CY",
746
+ "CZ",
747
+ "DE",
748
+ "DJ",
749
+ "DK",
750
+ "DM",
751
+ "DO",
752
+ "DZ",
753
+ "EC",
754
+ "EE",
755
+ "EG",
756
+ "EH",
757
+ "ER",
758
+ "ES",
759
+ "ET",
760
+ "FI",
761
+ "FJ",
762
+ "FK",
763
+ "FM",
764
+ "FO",
765
+ "FR",
766
+ "GA",
767
+ "GB",
768
+ "GD",
769
+ "GE",
770
+ "GF",
771
+ "GG",
772
+ "GH",
773
+ "GI",
774
+ "GL",
775
+ "GM",
776
+ "GN",
777
+ "GP",
778
+ "GQ",
779
+ "GR",
780
+ "GS",
781
+ "GT",
782
+ "GU",
783
+ "GW",
784
+ "GY",
785
+ "HK",
786
+ "HM",
787
+ "HN",
788
+ "HR",
789
+ "HT",
790
+ "HU",
791
+ "ID",
792
+ "IE",
793
+ "IL",
794
+ "IM",
795
+ "IN",
796
+ "IO",
797
+ "IQ",
798
+ "IR",
799
+ "IS",
800
+ "IT",
801
+ "JE",
802
+ "JM",
803
+ "JO",
804
+ "JP",
805
+ "KE",
806
+ "KG",
807
+ "KH",
808
+ "KI",
809
+ "KM",
810
+ "KN",
811
+ "KP",
812
+ "KR",
813
+ "KW",
814
+ "KY",
815
+ "KZ",
816
+ "LA",
817
+ "LB",
818
+ "LC",
819
+ "LI",
820
+ "LK",
821
+ "LR",
822
+ "LS",
823
+ "LT",
824
+ "LU",
825
+ "LV",
826
+ "LY",
827
+ "MA",
828
+ "MC",
829
+ "MD",
830
+ "ME",
831
+ "MF",
832
+ "MG",
833
+ "MH",
834
+ "MK",
835
+ "ML",
836
+ "MM",
837
+ "MN",
838
+ "MO",
839
+ "MP",
840
+ "MQ",
841
+ "MR",
842
+ "MS",
843
+ "MT",
844
+ "MU",
845
+ "MV",
846
+ "MW",
847
+ "MX",
848
+ "MY",
849
+ "MZ",
850
+ "NA",
851
+ "NC",
852
+ "NE",
853
+ "NF",
854
+ "NG",
855
+ "NI",
856
+ "NL",
857
+ "NO",
858
+ "NP",
859
+ "NR",
860
+ "NU",
861
+ "NZ",
862
+ "OM",
863
+ "PA",
864
+ "PE",
865
+ "PF",
866
+ "PG",
867
+ "PH",
868
+ "PK",
869
+ "PL",
870
+ "PM",
871
+ "PN",
872
+ "PR",
873
+ "PS",
874
+ "PT",
875
+ "PW",
876
+ "PY",
877
+ "QA",
878
+ "RE",
879
+ "RO",
880
+ "RS",
881
+ "RU",
882
+ "RW",
883
+ "SA",
884
+ "SB",
885
+ "SC",
886
+ "SD",
887
+ "SE",
888
+ "SG",
889
+ "SH",
890
+ "SI",
891
+ "SJ",
892
+ "SK",
893
+ "SL",
894
+ "SM",
895
+ "SN",
896
+ "SO",
897
+ "SR",
898
+ "SS",
899
+ "ST",
900
+ "SV",
901
+ "SX",
902
+ "SY",
903
+ "SZ",
904
+ "TC",
905
+ "TD",
906
+ "TF",
907
+ "TG",
908
+ "TH",
909
+ "TJ",
910
+ "TK",
911
+ "TL",
912
+ "TM",
913
+ "TN",
914
+ "TO",
915
+ "TR",
916
+ "TT",
917
+ "TV",
918
+ "TW",
919
+ "TZ",
920
+ "UA",
921
+ "UG",
922
+ "UM",
923
+ "US",
924
+ "UY",
925
+ "UZ",
926
+ "VA",
927
+ "VC",
928
+ "VE",
929
+ "VG",
930
+ "VI",
931
+ "VN",
932
+ "VU",
933
+ "WF",
934
+ "WS",
935
+ "YE",
936
+ "YT",
937
+ "ZA",
938
+ "ZM",
939
+ "ZW"
940
+ ],
941
+ "title": "Country Code",
942
+ "description": "Physical location of the data expressed using ISO 3166-1 country code.",
943
+ "examples": [
944
+ "AT"
945
+ ]
946
+ },
947
+ "DataAccess": {
948
+ "type": "string",
949
+ "enum": [
950
+ "open",
951
+ "shared",
952
+ "closed"
953
+ ],
954
+ "title": "Data Access",
955
+ "description": "Indicates access mode for data. Allowed values: open, shared, closed",
956
+ "examples": [
957
+ "open"
958
+ ]
959
+ },
960
+ "Dataset": {
961
+ "type": "object",
962
+ "title": "Dataset",
963
+ "properties": {
964
+ "alternate_identifier": {
965
+ "type": "array",
966
+ "items": {
967
+ "$ref": "#/$defs/AlternateIdentifier"
968
+ },
969
+ "minItems": 0
970
+ },
971
+ "creator": {
972
+ "type": "array",
973
+ "title": "Creators",
974
+ "items": {
975
+ "$ref": "#/$defs/Creator"
976
+ }
977
+ },
978
+ "data_quality_assurance": {
979
+ "type": "array",
980
+ "title": "Data Quality Assurance",
981
+ "description": "To describe any quality assurance processes applied to a dataset, such as, to ensure its accuracy, reliability, consistency, and usability for its intended purposes. This includes systematic practices, procedures, and policies designed to maintain high data quality throughout its lifecycle.",
982
+ "items": {
983
+ "type": "string",
984
+ "examples": [
985
+ "We calibrate measuring equipment daily, run repeat samples to monitor consistency in measurements and results, and cross-check collected data with at least two colleagues for accuracy."
986
+ ]
987
+ }
988
+ },
989
+ "dataset_id": {
990
+ "$ref": "#/$defs/DatasetID"
991
+ },
992
+ "description": {
993
+ "type": "string",
994
+ "title": "Description",
995
+ "description": "Description is a property in both Dataset and Distribution, in compliance with W3C DCAT. In some cases these might be identical, but in most cases the Dataset represents a more abstract concept, while the distribution can point to a specific file.",
996
+ "examples": [
997
+ "The dataset includes detailed measurements of temperature, humidity, and soil moisture levels collected at various time intervals (every 30 minutes) across multiple locations. The dataset will also include metadata such as GPS coordinates, sensor calibration data, and environmental conditions. The primary objective of this dataset is to analyze the correlation between these variables and their impact on plant growth patterns over a 6-month period."
998
+ ]
999
+ },
1000
+ "distribution": {
1001
+ "type": "array",
1002
+ "title": "Distributions",
1003
+ "description": "To provide technical information on a specific instance of data.",
1004
+ "items": {
1005
+ "$ref": "#/$defs/Distribution"
1006
+ }
1007
+ },
1008
+ "is_reused": {
1009
+ "type": "boolean",
1010
+ "title": "The Dataset Is Reused Schema",
1011
+ "description": "Indicates if the dataset is reused, i.e., not produced in project(s) covered by this DMP.",
1012
+ "examples": [
1013
+ true
1014
+ ]
1015
+ },
1016
+ "issued": {
1017
+ "type": "string",
1018
+ "format": "date",
1019
+ "title": "Issued",
1020
+ "description": "To indicate a date when a dataset was published or released. Encoded using the relevant ISO 8601 Date compliant string.",
1021
+ "examples": [
1022
+ "2019-06-30"
1023
+ ]
1024
+ },
1025
+ "keyword": {
1026
+ "type": "array",
1027
+ "title": "Keywords",
1028
+ "items": {
1029
+ "type": "string",
1030
+ "title": "Keyword",
1031
+ "examples": [
1032
+ "keyword 1",
1033
+ "keyword 2"
1034
+ ]
1035
+ }
1036
+ },
1037
+ "language": {
1038
+ "$ref": "#/$defs/LanguageCode"
1039
+ },
1040
+ "metadata": {
1041
+ "type": "array",
1042
+ "title": "Metadata",
1043
+ "description": "To describe metadata standards used.",
1044
+ "items": {
1045
+ "$ref": "#/$defs/Metadata"
1046
+ }
1047
+ },
1048
+ "personal_data": {
1049
+ "type": "string",
1050
+ "enum": [
1051
+ "yes",
1052
+ "no",
1053
+ "unknown"
1054
+ ],
1055
+ "title": "Personal Data",
1056
+ "description": "To indicate whether a dataset contains personal data. Personal data refers to any data that can identify an individual (e.g. name, birthdate, address, voice recordings, etc.). Allowed values: yes, no, unknown",
1057
+ "examples": [
1058
+ "unknown"
1059
+ ]
1060
+ },
1061
+ "preservation_statement": {
1062
+ "type": "string",
1063
+ "title": "Preservation Statement",
1064
+ "description": "To outline a plan for how and why a dataset will be preserved for long-term access, including for example storage redundancy, integrity checks (checksums, fixity checks), format migration, and a sustainability plan ensuring institutional commitment and funding.",
1065
+ "examples": [
1066
+ "All research data will be stored in the university's secure data repository, backed up daily to ensure redundancy and prevent data loss. The dataset will be preserved in a standardized format (e.g. CSV, JSON) and will include detailed metadata for clarity. It will be accessible to the public via the university’s open-access platform three months after the completion of the project, with ongoing access ensured for a minimum of 5 years. Regular checks will be performed every 6 months to confirm the integrity and readability of the data."
1067
+ ]
1068
+ },
1069
+ "rights": {
1070
+ "type": "string",
1071
+ "title": "Rights",
1072
+ "description": "A statement that concerns all rights not addressed with license, such as copyright statements.",
1073
+ "examples": [
1074
+ "This dataset incorporates third-party materials that are subject to additional rights and restrictions. Users must obtain permission from the original rights holders before reuse."
1075
+ ]
1076
+ },
1077
+ "related_identifier": {
1078
+ "type": "array",
1079
+ "items": {
1080
+ "$ref": "#/$defs/RelatedIdentifier"
1081
+ },
1082
+ "minItems": 0
1083
+ },
1084
+ "security_and_privacy": {
1085
+ "$ref": "#/$defs/SecurityAndPrivacyItems"
1086
+ },
1087
+ "sensitive_data": {
1088
+ "type": "string",
1089
+ "enum": [
1090
+ "yes",
1091
+ "no",
1092
+ "unknown"
1093
+ ],
1094
+ "title": "Sensitive Data",
1095
+ "description": "To indicate whether a dataset contains sensitive data. Sensitive data refers to information that could pose risks to individuals or organizations for example financial information, medical records, passwords and social security numbers. Allowed values: yes, no, unknown",
1096
+ "examples": [
1097
+ "unknown"
1098
+ ]
1099
+ },
1100
+ "technical_resource": {
1101
+ "$ref": "#/$defs/TechnicalResources"
1102
+ },
1103
+ "title": {
1104
+ "type": "string",
1105
+ "title": "Title",
1106
+ "description": "Title is a property in both Dataset and Distribution, in compliance with W3C DCAT. In some cases these might be identical, but in most cases the Dataset represents a more abstract concept, while the distribution can point to a specific file.",
1107
+ "examples": [
1108
+ "Fast car images"
1109
+ ]
1110
+ },
1111
+ "type": {
1112
+ "type": "string",
1113
+ "title": "Type",
1114
+ "description": "If appropriate, type according to: DataCite and/or COAR dictionary. Otherwise use the common name for the type, e.g. raw data, software, survey, etc. https://schema.datacite.org/meta/kernel-4.1/doc/DataCite-MetadataKernel_v4.1.pdf http://vocabularies.coar-repositories.org/pubby/resource_type.html",
1115
+ "examples": [
1116
+ "image"
1117
+ ]
1118
+ }
1119
+ },
1120
+ "required": [
1121
+ "dataset_id",
1122
+ "personal_data",
1123
+ "sensitive_data",
1124
+ "title"
1125
+ ]
1126
+ },
1127
+ "DatasetID": {
1128
+ "type": "object",
1129
+ "title": "Dataset ID",
1130
+ "properties": {
1131
+ "identifier": {
1132
+ "type": "string",
1133
+ "title": "Identifier",
1134
+ "examples": [
1135
+ "11353/10.923628"
1136
+ ]
1137
+ },
1138
+ "type": {
1139
+ "type": "string",
1140
+ "title": "Type",
1141
+ "description": "Dataset identifier type. Suggested values: handle, doi, ark, url",
1142
+ "examples": [
1143
+ "handle"
1144
+ ]
1145
+ }
1146
+ },
1147
+ "required": [
1148
+ "identifier",
1149
+ "type"
1150
+ ]
1151
+ },
1152
+ "Datasets": {
1153
+ "type": "array",
1154
+ "title": "Datasets",
1155
+ "items": {
1156
+ "$ref": "#/$defs/Dataset"
1157
+ }
1158
+ },
1159
+ "DMPID": {
1160
+ "type": "object",
1161
+ "title": "DMP ID",
1162
+ "description": "Identifier for the DMP itself",
1163
+ "properties": {
1164
+ "identifier": {
1165
+ "type": "string",
1166
+ "title": "Identifier",
1167
+ "examples": [
1168
+ "10.1371/journal.pcbi.1006750"
1169
+ ]
1170
+ },
1171
+ "type": {
1172
+ "type": "string",
1173
+ "title": "Type",
1174
+ "description": "The DMP Identifier Type. Suggested values: handle, doi, ark, url",
1175
+ "examples": [
1176
+ "doi"
1177
+ ]
1178
+ }
1179
+ },
1180
+ "required": [
1181
+ "identifier",
1182
+ "type"
1183
+ ]
1184
+ },
1185
+ "Distribution": {
1186
+ "type": "object",
1187
+ "title": "Distribution",
1188
+ "properties": {
1189
+ "access_url": {
1190
+ "type": "string",
1191
+ "title": "Access URL",
1192
+ "description": "A URL of the resource that gives access to a distribution of the dataset. e.g. landing page.",
1193
+ "examples": [
1194
+ "http://some.repo"
1195
+ ]
1196
+ },
1197
+ "available_until": {
1198
+ "type": "string",
1199
+ "format": "date",
1200
+ "title": "Available Until",
1201
+ "description": "Indicates how long this distribution will be/ should be available. Encoded using the relevant ISO 8601 Date compliant string.",
1202
+ "examples": [
1203
+ "2030-06-30"
1204
+ ]
1205
+ },
1206
+ "byte_size": {
1207
+ "type": "integer",
1208
+ "title": "Byte Size",
1209
+ "description": "Size in bytes.",
1210
+ "examples": [
1211
+ 690000
1212
+ ]
1213
+ },
1214
+ "data_access": {
1215
+ "$ref": "#/$defs/DataAccess"
1216
+ },
1217
+ "description": {
1218
+ "type": "string",
1219
+ "title": "Description",
1220
+ "description": "Description is a property in both Dataset and Distribution, in compliance with W3C DCAT. In some cases these might be identical, but in most cases the Dataset represents a more abstract concept, while the distribution can point to a specific file.",
1221
+ "examples": [
1222
+ "Best quality data before resizing"
1223
+ ]
1224
+ },
1225
+ "download_url": {
1226
+ "type": "string",
1227
+ "format": "url",
1228
+ "title": "Download URL",
1229
+ "description": "The URL of the downloadable file in a given format. E.g. CSV file or RDF file.",
1230
+ "examples": [
1231
+ "http://some.repo.../download/..."
1232
+ ]
1233
+ },
1234
+ "format": {
1235
+ "type": "array",
1236
+ "title": "Format",
1237
+ "description": "Format according to: https://www.iana.org/assignments/media-types/media-types.xhtml if appropriate, otherwise use the common name for this format.",
1238
+ "items": {
1239
+ "$ref": "#/$defs/MIMEType"
1240
+ }
1241
+ },
1242
+ "host": {
1243
+ "$ref": "#/$defs/Host"
1244
+ },
1245
+ "issued": {
1246
+ "type": "string",
1247
+ "format": "date",
1248
+ "title": "Issued",
1249
+ "description": "To indicate a date when a distribution was published or released. Encoded using the relevant ISO 8601 Date compliant string.",
1250
+ "examples": [
1251
+ "2019-06-30"
1252
+ ]
1253
+ },
1254
+ "license": {
1255
+ "$ref": "#/$defs/Licenses"
1256
+ },
1257
+ "title": {
1258
+ "type": "string",
1259
+ "title": "Title",
1260
+ "description": "Title is a property in both Dataset and Distribution, in compliance with W3C DCAT. In some cases these might be identical, but in most cases the Dataset represents a more abstract concept, while the distribution can point to a specific file.",
1261
+ "examples": [
1262
+ "Full resolution images"
1263
+ ]
1264
+ }
1265
+ },
1266
+ "required": [
1267
+ "data_access",
1268
+ "title"
1269
+ ]
1270
+ },
1271
+ "FunderID": {
1272
+ "type": "object",
1273
+ "title": "Funder ID",
1274
+ "description": "Funder ID of the associated project",
1275
+ "properties": {
1276
+ "identifier": {
1277
+ "type": "string",
1278
+ "title": "Identifier",
1279
+ "description": "Funder ID, recommended to use CrossRef Funder Registry. See: https://www.crossref.org/services/funder-registry/",
1280
+ "examples": [
1281
+ "501100002428"
1282
+ ]
1283
+ },
1284
+ "type": {
1285
+ "type": "string",
1286
+ "title": "Type",
1287
+ "description": "Identifier type. Suggested values: fundref, url",
1288
+ "examples": [
1289
+ "fundref"
1290
+ ]
1291
+ }
1292
+ },
1293
+ "required": [
1294
+ "identifier",
1295
+ "type"
1296
+ ]
1297
+ },
1298
+ "Funding": {
1299
+ "type": "object",
1300
+ "title": "Funding",
1301
+ "properties": {
1302
+ "funder_id": {
1303
+ "$ref": "#/$defs/FunderID"
1304
+ },
1305
+ "funding_status": {
1306
+ "$ref": "#/$defs/FundingStatus"
1307
+ },
1308
+ "grant_id": {
1309
+ "$ref": "#/$defs/GrantID"
1310
+ }
1311
+ },
1312
+ "required": [
1313
+ "funder_id"
1314
+ ]
1315
+ },
1316
+ "Fundings": {
1317
+ "type": "array",
1318
+ "title": "Fundings",
1319
+ "description": "Funding related with a project",
1320
+ "items": {
1321
+ "$ref": "#/$defs/Funding"
1322
+ }
1323
+ },
1324
+ "FundingStatus": {
1325
+ "type": "string",
1326
+ "enum": [
1327
+ "planned",
1328
+ "applied",
1329
+ "granted",
1330
+ "rejected"
1331
+ ],
1332
+ "title": "Funding Status",
1333
+ "description": "To express different phases of project lifecycle. Allowed values: planned, applied, granted, rejected",
1334
+ "examples": [
1335
+ "granted"
1336
+ ]
1337
+ },
1338
+ "GrantID": {
1339
+ "type": "object",
1340
+ "title": "Grant ID",
1341
+ "description": "Grant ID of the associated project",
1342
+ "properties": {
1343
+ "identifier": {
1344
+ "type": "string",
1345
+ "title": "Identifier",
1346
+ "examples": [
1347
+ "http://example.org/grants/776242"
1348
+ ]
1349
+ },
1350
+ "type": {
1351
+ "type": "string",
1352
+ "title": "Type",
1353
+ "description": "Identifier type. Suggested values: url",
1354
+ "examples": [
1355
+ "url"
1356
+ ]
1357
+ }
1358
+ },
1359
+ "required": [
1360
+ "identifier",
1361
+ "type"
1362
+ ]
1363
+ },
1364
+ "Host": {
1365
+ "type": "object",
1366
+ "title": "Host",
1367
+ "description": "To provide information on quality of service provided by infrastructure (e.g. repository) where data is stored.",
1368
+ "properties": {
1369
+ "availability": {
1370
+ "type": "string",
1371
+ "title": "Availability",
1372
+ "description": "Availability of a host (preferably as a percentage)",
1373
+ "examples": [
1374
+ "99,5"
1375
+ ]
1376
+ },
1377
+ "backup_frequency": {
1378
+ "type": "string",
1379
+ "title": "Backup Frequency",
1380
+ "description": "Frequency of backups provided by a host",
1381
+ "examples": [
1382
+ "weekly"
1383
+ ]
1384
+ },
1385
+ "backup_type": {
1386
+ "type": "string",
1387
+ "title": "Backup Type",
1388
+ "description": "Location and/or type of the backup provided by a host",
1389
+ "examples": [
1390
+ "tapes"
1391
+ ]
1392
+ },
1393
+ "certified_with": {
1394
+ "$ref": "#/$defs/Certification"
1395
+ },
1396
+ "description": {
1397
+ "type": "string",
1398
+ "title": "Description",
1399
+ "examples": [
1400
+ "Repository hosted by..."
1401
+ ]
1402
+ },
1403
+ "geo_location": {
1404
+ "$ref": "#/$defs/CountryCode"
1405
+ },
1406
+ "host_id": {
1407
+ "type": "array",
1408
+ "items": {
1409
+ "$ref": "#/$defs/HostID"
1410
+ },
1411
+ "minItems": 0
1412
+ },
1413
+ "pid_system": {
1414
+ "$ref": "#/$defs/PIDSystems"
1415
+ },
1416
+ "storage_type": {
1417
+ "type": "string",
1418
+ "title": "Storage Type",
1419
+ "description": "To indicate whether a host supports versioning of data distributions.",
1420
+ "examples": [
1421
+ "External Hard Drive"
1422
+ ]
1423
+ },
1424
+ "support_versioning": {
1425
+ "$ref": "#/$defs/Booleanish"
1426
+ },
1427
+ "title": {
1428
+ "type": "string",
1429
+ "title": "Title",
1430
+ "examples": [
1431
+ "Super Repository"
1432
+ ]
1433
+ },
1434
+ "url": {
1435
+ "type": "string",
1436
+ "format": "url",
1437
+ "title": "URL",
1438
+ "description": "A URL of an infrastructure hosting a distribution of a dataset",
1439
+ "examples": [
1440
+ "https://zenodo.org"
1441
+ ]
1442
+ }
1443
+ },
1444
+ "required": [
1445
+ "title",
1446
+ "url"
1447
+ ]
1448
+ },
1449
+ "HostID": {
1450
+ "type": "object",
1451
+ "title": "Host ID",
1452
+ "properties": {
1453
+ "identifier": {
1454
+ "type": "string",
1455
+ "title": "Identifier",
1456
+ "examples": [
1457
+ "http://example.org/repo"
1458
+ ]
1459
+ },
1460
+ "type": {
1461
+ "type": "string",
1462
+ "title": "Type",
1463
+ "description": "Identifier type. Suggested values: url",
1464
+ "examples": [
1465
+ "url"
1466
+ ]
1467
+ }
1468
+ },
1469
+ "required": [
1470
+ "identifier",
1471
+ "type"
1472
+ ]
1473
+ },
1474
+ "MIMEType": {
1475
+ "type": "string",
1476
+ "title": "Format MIME Type",
1477
+ "examples": [
1478
+ "image/tiff"
1479
+ ]
1480
+ },
1481
+ "LanguageCode": {
1482
+ "type": "string",
1483
+ "enum": [
1484
+ "aar",
1485
+ "abk",
1486
+ "afr",
1487
+ "aka",
1488
+ "amh",
1489
+ "ara",
1490
+ "arg",
1491
+ "asm",
1492
+ "ava",
1493
+ "ave",
1494
+ "aym",
1495
+ "aze",
1496
+ "bak",
1497
+ "bam",
1498
+ "bel",
1499
+ "ben",
1500
+ "bih",
1501
+ "bis",
1502
+ "bod",
1503
+ "bos",
1504
+ "bre",
1505
+ "bul",
1506
+ "cat",
1507
+ "ces",
1508
+ "cha",
1509
+ "che",
1510
+ "chu",
1511
+ "chv",
1512
+ "cor",
1513
+ "cos",
1514
+ "cre",
1515
+ "cym",
1516
+ "dan",
1517
+ "deu",
1518
+ "div",
1519
+ "dzo",
1520
+ "ell",
1521
+ "eng",
1522
+ "epo",
1523
+ "est",
1524
+ "eus",
1525
+ "ewe",
1526
+ "fao",
1527
+ "fas",
1528
+ "fij",
1529
+ "fin",
1530
+ "fra",
1531
+ "fry",
1532
+ "ful",
1533
+ "gla",
1534
+ "gle",
1535
+ "glg",
1536
+ "glv",
1537
+ "grn",
1538
+ "guj",
1539
+ "hat",
1540
+ "hau",
1541
+ "hbs",
1542
+ "heb",
1543
+ "her",
1544
+ "hin",
1545
+ "hmo",
1546
+ "hrv",
1547
+ "hun",
1548
+ "hye",
1549
+ "ibo",
1550
+ "ido",
1551
+ "iii",
1552
+ "iku",
1553
+ "ile",
1554
+ "ina",
1555
+ "ind",
1556
+ "ipk",
1557
+ "isl",
1558
+ "ita",
1559
+ "jav",
1560
+ "jpn",
1561
+ "kal",
1562
+ "kan",
1563
+ "kas",
1564
+ "kat",
1565
+ "kau",
1566
+ "kaz",
1567
+ "khm",
1568
+ "kik",
1569
+ "kin",
1570
+ "kir",
1571
+ "kom",
1572
+ "kon",
1573
+ "kor",
1574
+ "kua",
1575
+ "kur",
1576
+ "lao",
1577
+ "lat",
1578
+ "lav",
1579
+ "lim",
1580
+ "lin",
1581
+ "lit",
1582
+ "ltz",
1583
+ "lub",
1584
+ "lug",
1585
+ "mah",
1586
+ "mal",
1587
+ "mar",
1588
+ "mkd",
1589
+ "mlg",
1590
+ "mlt",
1591
+ "mon",
1592
+ "mri",
1593
+ "msa",
1594
+ "mya",
1595
+ "nau",
1596
+ "nav",
1597
+ "nbl",
1598
+ "nde",
1599
+ "ndo",
1600
+ "nep",
1601
+ "nld",
1602
+ "nno",
1603
+ "nob",
1604
+ "nor",
1605
+ "nya",
1606
+ "oci",
1607
+ "oji",
1608
+ "ori",
1609
+ "orm",
1610
+ "oss",
1611
+ "pan",
1612
+ "pli",
1613
+ "pol",
1614
+ "por",
1615
+ "pus",
1616
+ "que",
1617
+ "roh",
1618
+ "ron",
1619
+ "run",
1620
+ "rus",
1621
+ "sag",
1622
+ "san",
1623
+ "sin",
1624
+ "slk",
1625
+ "slv",
1626
+ "sme",
1627
+ "smo",
1628
+ "sna",
1629
+ "snd",
1630
+ "som",
1631
+ "sot",
1632
+ "spa",
1633
+ "sqi",
1634
+ "srd",
1635
+ "srp",
1636
+ "ssw",
1637
+ "sun",
1638
+ "swa",
1639
+ "swe",
1640
+ "tah",
1641
+ "tam",
1642
+ "tat",
1643
+ "tel",
1644
+ "tgk",
1645
+ "tgl",
1646
+ "tha",
1647
+ "tir",
1648
+ "ton",
1649
+ "tsn",
1650
+ "tso",
1651
+ "tuk",
1652
+ "tur",
1653
+ "twi",
1654
+ "uig",
1655
+ "ukr",
1656
+ "urd",
1657
+ "uzb",
1658
+ "ven",
1659
+ "vie",
1660
+ "vol",
1661
+ "wln",
1662
+ "wol",
1663
+ "xho",
1664
+ "yid",
1665
+ "yor",
1666
+ "zha",
1667
+ "zho",
1668
+ "zul"
1669
+ ],
1670
+ "title": "Language",
1671
+ "description": "Language of the metadata expressed using ISO 639-3.",
1672
+ "examples": [
1673
+ "eng"
1674
+ ]
1675
+ },
1676
+ "License": {
1677
+ "type": "object",
1678
+ "title": "License",
1679
+ "properties": {
1680
+ "license_ref": {
1681
+ "type": "string",
1682
+ "format": "url",
1683
+ "title": "License Reference",
1684
+ "description": "Link to license document.",
1685
+ "examples": [
1686
+ "https://creativecommons.org/licenses/by/4.0/"
1687
+ ]
1688
+ },
1689
+ "start_date": {
1690
+ "type": "string",
1691
+ "format": "date",
1692
+ "title": "Start Date",
1693
+ "description": "If date is set in the future, it indicates embargo period. Encoded using the relevant ISO 8601 Date compliant string.",
1694
+ "examples": [
1695
+ "2019-06-30"
1696
+ ]
1697
+ }
1698
+ },
1699
+ "required": [
1700
+ "license_ref",
1701
+ "start_date"
1702
+ ]
1703
+ },
1704
+ "Licenses": {
1705
+ "type": "array",
1706
+ "title": "Licenses",
1707
+ "description": "To list all licenses applied to a specific distribution of data.",
1708
+ "items": {
1709
+ "$ref": "#/$defs/License"
1710
+ }
1711
+ },
1712
+ "Metadata": {
1713
+ "type": "object",
1714
+ "title": "Metadata",
1715
+ "properties": {
1716
+ "description": {
1717
+ "type": "string",
1718
+ "title": "Description",
1719
+ "description": "To provide any details on the choice of the metadata standard",
1720
+ "examples": [
1721
+ "The ISO 19115 Metadata Standard is applied to describe each geospatial dataset. Metadata includes the satellite's sensor type (e.g. Landsat 8 OLI), acquisition date, spatial resolution (30m), and cloud cover percentage."
1722
+ ]
1723
+ },
1724
+ "language": {
1725
+ "$ref": "#/$defs/LanguageCode"
1726
+ },
1727
+ "metadata_standard_id": {
1728
+ "oneOf": [
1729
+ {
1730
+ "$ref": "#/$defs/MetadataStandardID"
1731
+ },
1732
+ {
1733
+ "type": "array",
1734
+ "items": {
1735
+ "$ref": "#/$defs/MetadataStandardID"
1736
+ },
1737
+ "minItems": 1
1738
+ }
1739
+ ]
1740
+ }
1741
+ },
1742
+ "required": [
1743
+ "language",
1744
+ "metadata_standard_id"
1745
+ ]
1746
+ },
1747
+ "MetadataStandardID": {
1748
+ "type": "object",
1749
+ "title": "Metadata Standard ID",
1750
+ "properties": {
1751
+ "identifier": {
1752
+ "type": "string",
1753
+ "title": "Identifier",
1754
+ "examples": [
1755
+ "http://www.dublincore.org/specifications/dublin-core/dcmi-terms/"
1756
+ ]
1757
+ },
1758
+ "type": {
1759
+ "type": "string",
1760
+ "enum": [
1761
+ "url",
1762
+ "other"
1763
+ ],
1764
+ "title": "Type",
1765
+ "description": "Identifier type. Suggested values: url",
1766
+ "examples": [
1767
+ "url"
1768
+ ]
1769
+ }
1770
+ },
1771
+ "required": [
1772
+ "identifier",
1773
+ "type"
1774
+ ]
1775
+ },
1776
+ "PIDSystems": {
1777
+ "type": "array",
1778
+ "title": "PID System",
1779
+ "description": "PID system(s). Allowed values: ark, arxiv, bibcode, doi, ean13, eissn, handle, igsn, isbn, issn, istc, lissn, lsid, pmid, purl, upc, url, urn, other",
1780
+ "items": {
1781
+ "$ref": "#/$defs/PIDSystemType"
1782
+ }
1783
+ },
1784
+ "PIDSystemType": {
1785
+ "type": "string",
1786
+ "title": "PID System Type",
1787
+ "enum": [
1788
+ "ark",
1789
+ "arxiv",
1790
+ "bibcode",
1791
+ "doi",
1792
+ "ean13",
1793
+ "eissn",
1794
+ "handle",
1795
+ "igsn",
1796
+ "isbn",
1797
+ "issn",
1798
+ "istc",
1799
+ "lissn",
1800
+ "lsid",
1801
+ "pmid",
1802
+ "purl",
1803
+ "upc",
1804
+ "url",
1805
+ "urn",
1806
+ "other"
1807
+ ],
1808
+ "examples": [
1809
+ "doi"
1810
+ ]
1811
+ },
1812
+ "Project": {
1813
+ "type": "object",
1814
+ "title": "Project",
1815
+ "properties": {
1816
+ "description": {
1817
+ "type": "string",
1818
+ "title": "Description",
1819
+ "description": "Project abstract providing an overview of the project's goals and scope",
1820
+ "examples": [
1821
+ "This project aims to analyze the impact of urbanization on local biodiversity by collecting and assessing environmental data from multiple urban centers. Using remote sensing, field observations, and statistical modeling, the study will identify key factors influencing species diversity and habitat loss. The findings will support sustainable urban planning initiatives and inform conservation strategies."
1822
+ ]
1823
+ },
1824
+ "end": {
1825
+ "type": "string",
1826
+ "format": "date",
1827
+ "title": "End",
1828
+ "description": "Project end date. Encoded using the relevant ISO 8601 Date compliant string",
1829
+ "examples": [
1830
+ "2020-03-31"
1831
+ ]
1832
+ },
1833
+ "funding": {
1834
+ "$ref": "#/$defs/Fundings"
1835
+ },
1836
+ "project_id": {
1837
+ "type": "array",
1838
+ "items": {
1839
+ "$ref": "#/$defs/ProjectID"
1840
+ },
1841
+ "minItems": 0
1842
+ },
1843
+ "start": {
1844
+ "type": "string",
1845
+ "format": "date",
1846
+ "title": "Start",
1847
+ "description": "Project start date. Encoded using the relevant ISO 8601 Date compliant string",
1848
+ "examples": [
1849
+ "2019-04-01"
1850
+ ]
1851
+ },
1852
+ "title": {
1853
+ "type": "string",
1854
+ "title": "Title",
1855
+ "description": "Project title",
1856
+ "examples": [
1857
+ "Our New Project"
1858
+ ]
1859
+ }
1860
+ },
1861
+ "required": [
1862
+ "title"
1863
+ ]
1864
+ },
1865
+ "ProjectID": {
1866
+ "type": "object",
1867
+ "title": "Project ID",
1868
+ "properties": {
1869
+ "identifier": {
1870
+ "type": "string",
1871
+ "title": "Identifier",
1872
+ "examples": [
1873
+ "https://example.org/project"
1874
+ ]
1875
+ },
1876
+ "type": {
1877
+ "type": "string",
1878
+ "title": "Type",
1879
+ "description": "Identifier type. Suggested values: doi, raid, url",
1880
+ "examples": [
1881
+ "url",
1882
+ "doi",
1883
+ "raid"
1884
+ ]
1885
+ }
1886
+ },
1887
+ "required": [
1888
+ "identifier",
1889
+ "type"
1890
+ ]
1891
+ },
1892
+ "RelatedIdentifier": {
1893
+ "type": "object",
1894
+ "title": "Related Identifier",
1895
+ "properties": {
1896
+ "identifier": {
1897
+ "type": "string",
1898
+ "title": "Identifier",
1899
+ "examples": [
1900
+ "https://example.com/"
1901
+ ]
1902
+ },
1903
+ "metadata_scheme": {
1904
+ "type": "string",
1905
+ "title": "Metadata Scheme",
1906
+ "description": "Name of the related metadata schema (if applicable)",
1907
+ "examples": [
1908
+ "DDI-L"
1909
+ ]
1910
+ },
1911
+ "relation_type": {
1912
+ "type": "string",
1913
+ "title": "Relation Type",
1914
+ "description": "Type of relation between the resource and the related resource, suggested values from DataCite relationType: https://datacite-metadata-schema.readthedocs.io/en/4.5/appendices/appendix-1/relationType/",
1915
+ "examples": [
1916
+ "HasMetadata"
1917
+ ]
1918
+ },
1919
+ "resource_type": {
1920
+ "type": "string",
1921
+ "title": "Resource Type",
1922
+ "description": "Type of the related resource, suggested values from DataCite resourceTypeGeneral: https://datacite-metadata-schema.readthedocs.io/en/4.5/appendices/appendix-1/resourceTypeGeneral/",
1923
+ "examples": [
1924
+ "Model"
1925
+ ]
1926
+ },
1927
+ "scheme_type": {
1928
+ "type": "string",
1929
+ "title": "Scheme Type",
1930
+ "description": "Type of the related metadata scheme linked with scheme URI (if applicable)",
1931
+ "examples": [
1932
+ "XSD"
1933
+ ]
1934
+ },
1935
+ "scheme_uri": {
1936
+ "type": "string",
1937
+ "format": "uri",
1938
+ "title": "Scheme URI",
1939
+ "description": "Link to the scheme of the identifier (if applicable)",
1940
+ "examples": [
1941
+ "http://www.ddialliance.org/Specification/DDI-Lifecycle/3.1/XMLSchema/instance.xsd"
1942
+ ]
1943
+ },
1944
+ "type": {
1945
+ "type": "string",
1946
+ "title": "Type",
1947
+ "description": "Type of the identifier, suggested values from DataCite relatedIdentifierType: https://datacite-metadata-schema.readthedocs.io/en/4.5/appendices/appendix-1/relatedIdentifierType/",
1948
+ "examples": [
1949
+ "url"
1950
+ ]
1951
+ }
1952
+ },
1953
+ "required": [
1954
+ "identifier",
1955
+ "type",
1956
+ "relation_type"
1957
+ ]
1958
+ },
1959
+ "SecurityAndPrivacyItem": {
1960
+ "type": "object",
1961
+ "title": "Security and Policy",
1962
+ "properties": {
1963
+ "description": {
1964
+ "type": "string",
1965
+ "title": "Description",
1966
+ "description": "Describe a security and privacy measure applied to a dataset to protect sensitive information",
1967
+ "examples": [
1968
+ "The dataset undergoes anonymization by applying data masking techniques. Names, addresses, and phone numbers are replaced with pseudonyms or randomly generated identifiers. Specific details, such as exact birthdates, are generalized into age ranges."
1969
+ ]
1970
+ },
1971
+ "title": {
1972
+ "type": "string",
1973
+ "title": "Title",
1974
+ "description": "Title a measure applied to a dataset",
1975
+ "examples": [
1976
+ "Anonymization of Personally Identifiable Data"
1977
+ ]
1978
+ }
1979
+ },
1980
+ "required": [
1981
+ "title"
1982
+ ]
1983
+ },
1984
+ "SecurityAndPrivacyItems": {
1985
+ "type": "array",
1986
+ "title": "Security and Policy Items",
1987
+ "description": "To list all issues and requirements related to security and privacy",
1988
+ "items": {
1989
+ "$ref": "#/$defs/SecurityAndPrivacyItem"
1990
+ }
1991
+ },
1992
+ "TechnicalResource": {
1993
+ "type": "object",
1994
+ "title": "Technical Resource",
1995
+ "properties": {
1996
+ "description": {
1997
+ "type": "string",
1998
+ "title": "Description",
1999
+ "description": "Describe a technical resource (e.g. tools or software) required for any stage of a dataset lifecycle (e.g. microscopes, sensors, Jupyter Notebook, Galaxy workflows, measuring devices)",
2000
+ "examples": [
2001
+ "The Celestron 44102 Inverted Biological Microscope was used to examine biological samples, such as cells and microorganisms, with high-resolution optics."
2002
+ ]
2003
+ },
2004
+ "name": {
2005
+ "type": "string",
2006
+ "title": "Name",
2007
+ "description": "Name a resource applied to a dataset",
2008
+ "examples": [
2009
+ "Celestron Microscope"
2010
+ ]
2011
+ },
2012
+ "technical_resource_id": {
2013
+ "type": "array",
2014
+ "items": {
2015
+ "$ref": "#/$defs/TechnicalResourceID"
2016
+ },
2017
+ "minItems": 0
2018
+ }
2019
+ },
2020
+ "required": [
2021
+ "name"
2022
+ ]
2023
+ },
2024
+ "TechnicalResourceID": {
2025
+ "type": "object",
2026
+ "title": "Technical Resource ID",
2027
+ "properties": {
2028
+ "identifier": {
2029
+ "type": "string",
2030
+ "title": "Identifier",
2031
+ "examples": [
2032
+ "https://example.org/resource"
2033
+ ]
2034
+ },
2035
+ "type": {
2036
+ "type": "string",
2037
+ "title": "Type",
2038
+ "description": "Identifier type. Suggested values: url",
2039
+ "examples": [
2040
+ "url",
2041
+ "doi",
2042
+ "other"
2043
+ ]
2044
+ }
2045
+ },
2046
+ "required": [
2047
+ "identifier",
2048
+ "type"
2049
+ ]
2050
+ },
2051
+ "TechnicalResources": {
2052
+ "type": "array",
2053
+ "title": "Technical Resources",
2054
+ "description": "To list all technical resources needed to implement a DMP",
2055
+ "items": {
2056
+ "$ref": "#/$defs/TechnicalResource"
2057
+ }
2058
+ },
2059
+ "DMPToolExtension": {
2060
+ "type": "object",
2061
+ "properties": {
2062
+ "rda_schema_version": {
2063
+ "default": "1.2",
2064
+ "type": "string"
2065
+ },
2066
+ "provenance": {
2067
+ "type": "string"
2068
+ },
2069
+ "status": {
2070
+ "default": "draft",
2071
+ "type": "string",
2072
+ "enum": [
2073
+ "archived",
2074
+ "draft",
2075
+ "complete"
2076
+ ]
2077
+ },
2078
+ "privacy": {
2079
+ "default": "private",
2080
+ "type": "string",
2081
+ "enum": [
2082
+ "public",
2083
+ "private",
2084
+ "embargoed"
2085
+ ]
2086
+ },
2087
+ "featured": {
2088
+ "default": "no",
2089
+ "type": "string",
2090
+ "enum": [
2091
+ "yes",
2092
+ "no"
2093
+ ]
2094
+ },
2095
+ "registered": {
2096
+ "type": "string",
2097
+ "format": "date-time",
2098
+ "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$"
2099
+ },
2100
+ "tombstoned": {
2101
+ "type": "string",
2102
+ "format": "date-time",
2103
+ "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$"
2104
+ },
2105
+ "narrative": {
2106
+ "type": "object",
2107
+ "properties": {
2108
+ "download_url": {
2109
+ "type": "string"
2110
+ },
2111
+ "template": {
2112
+ "type": "object",
2113
+ "properties": {
2114
+ "id": {
2115
+ "type": "number"
2116
+ },
2117
+ "title": {
2118
+ "type": "string"
2119
+ },
2120
+ "description": {
2121
+ "type": "string"
2122
+ },
2123
+ "version": {
2124
+ "type": "string"
2125
+ },
2126
+ "section": {
2127
+ "type": "array",
2128
+ "items": {
2129
+ "type": "object",
2130
+ "properties": {
2131
+ "id": {
2132
+ "type": "number"
2133
+ },
2134
+ "order": {
2135
+ "type": "number"
2136
+ },
2137
+ "title": {
2138
+ "type": "string"
2139
+ },
2140
+ "description": {
2141
+ "type": "string"
2142
+ },
2143
+ "question": {
2144
+ "type": "array",
2145
+ "items": {
2146
+ "type": "object",
2147
+ "properties": {
2148
+ "id": {
2149
+ "type": "number"
2150
+ },
2151
+ "order": {
2152
+ "type": "number"
2153
+ },
2154
+ "text": {
2155
+ "type": "string"
2156
+ },
2157
+ "answer": {
2158
+ "type": "object",
2159
+ "properties": {
2160
+ "id": {
2161
+ "type": "number"
2162
+ },
2163
+ "json": {
2164
+ "oneOf": [
2165
+ {
2166
+ "type": "object",
2167
+ "properties": {
2168
+ "type": {
2169
+ "type": "string",
2170
+ "const": "affiliationSearch"
2171
+ },
2172
+ "meta": {
2173
+ "type": "object",
2174
+ "properties": {
2175
+ "schemaVersion": {
2176
+ "default": "1.0",
2177
+ "type": "string"
2178
+ }
2179
+ },
2180
+ "required": [
2181
+ "schemaVersion"
2182
+ ],
2183
+ "additionalProperties": false
2184
+ },
2185
+ "comment": {
2186
+ "type": "string"
2187
+ },
2188
+ "answer": {
2189
+ "type": "object",
2190
+ "properties": {
2191
+ "affiliationId": {
2192
+ "default": "",
2193
+ "type": "string"
2194
+ },
2195
+ "affiliationName": {
2196
+ "default": "",
2197
+ "type": "string"
2198
+ }
2199
+ },
2200
+ "required": [
2201
+ "affiliationId",
2202
+ "affiliationName"
2203
+ ],
2204
+ "additionalProperties": false
2205
+ }
2206
+ },
2207
+ "required": [
2208
+ "type",
2209
+ "meta",
2210
+ "answer"
2211
+ ],
2212
+ "additionalProperties": false
2213
+ },
2214
+ {
2215
+ "type": "object",
2216
+ "properties": {
2217
+ "type": {
2218
+ "type": "string",
2219
+ "const": "boolean"
2220
+ },
2221
+ "meta": {
2222
+ "type": "object",
2223
+ "properties": {
2224
+ "schemaVersion": {
2225
+ "default": "1.0",
2226
+ "type": "string"
2227
+ }
2228
+ },
2229
+ "required": [
2230
+ "schemaVersion"
2231
+ ],
2232
+ "additionalProperties": false
2233
+ },
2234
+ "comment": {
2235
+ "type": "string"
2236
+ },
2237
+ "answer": {
2238
+ "default": false,
2239
+ "type": "boolean"
2240
+ }
2241
+ },
2242
+ "required": [
2243
+ "type",
2244
+ "meta",
2245
+ "answer"
2246
+ ],
2247
+ "additionalProperties": false
2248
+ },
2249
+ {
2250
+ "type": "object",
2251
+ "properties": {
2252
+ "type": {
2253
+ "type": "string",
2254
+ "const": "checkBoxes"
2255
+ },
2256
+ "meta": {
2257
+ "type": "object",
2258
+ "properties": {
2259
+ "schemaVersion": {
2260
+ "default": "1.0",
2261
+ "type": "string"
2262
+ }
2263
+ },
2264
+ "required": [
2265
+ "schemaVersion"
2266
+ ],
2267
+ "additionalProperties": false
2268
+ },
2269
+ "comment": {
2270
+ "type": "string"
2271
+ },
2272
+ "answer": {
2273
+ "default": [
2274
+ ""
2275
+ ],
2276
+ "type": "array",
2277
+ "items": {
2278
+ "type": "string"
2279
+ }
2280
+ }
2281
+ },
2282
+ "required": [
2283
+ "type",
2284
+ "meta",
2285
+ "answer"
2286
+ ],
2287
+ "additionalProperties": false
2288
+ },
2289
+ {
2290
+ "type": "object",
2291
+ "properties": {
2292
+ "type": {
2293
+ "type": "string",
2294
+ "const": "currency"
2295
+ },
2296
+ "meta": {
2297
+ "type": "object",
2298
+ "properties": {
2299
+ "schemaVersion": {
2300
+ "default": "1.0",
2301
+ "type": "string"
2302
+ }
2303
+ },
2304
+ "required": [
2305
+ "schemaVersion"
2306
+ ],
2307
+ "additionalProperties": false
2308
+ },
2309
+ "comment": {
2310
+ "type": "string"
2311
+ },
2312
+ "answer": {
2313
+ "default": 0,
2314
+ "type": "number"
2315
+ }
2316
+ },
2317
+ "required": [
2318
+ "type",
2319
+ "meta",
2320
+ "answer"
2321
+ ],
2322
+ "additionalProperties": false
2323
+ },
2324
+ {
2325
+ "type": "object",
2326
+ "properties": {
2327
+ "type": {
2328
+ "type": "string",
2329
+ "const": "date"
2330
+ },
2331
+ "meta": {
2332
+ "type": "object",
2333
+ "properties": {
2334
+ "schemaVersion": {
2335
+ "default": "1.0",
2336
+ "type": "string"
2337
+ }
2338
+ },
2339
+ "required": [
2340
+ "schemaVersion"
2341
+ ],
2342
+ "additionalProperties": false
2343
+ },
2344
+ "comment": {
2345
+ "type": "string"
2346
+ },
2347
+ "answer": {
2348
+ "default": "",
2349
+ "type": "string"
2350
+ }
2351
+ },
2352
+ "required": [
2353
+ "type",
2354
+ "meta",
2355
+ "answer"
2356
+ ],
2357
+ "additionalProperties": false
2358
+ },
2359
+ {
2360
+ "type": "object",
2361
+ "properties": {
2362
+ "type": {
2363
+ "type": "string",
2364
+ "const": "dateRange"
2365
+ },
2366
+ "meta": {
2367
+ "type": "object",
2368
+ "properties": {
2369
+ "schemaVersion": {
2370
+ "default": "1.0",
2371
+ "type": "string"
2372
+ }
2373
+ },
2374
+ "required": [
2375
+ "schemaVersion"
2376
+ ],
2377
+ "additionalProperties": false
2378
+ },
2379
+ "comment": {
2380
+ "type": "string"
2381
+ },
2382
+ "answer": {
2383
+ "type": "object",
2384
+ "properties": {
2385
+ "start": {
2386
+ "default": "",
2387
+ "type": "string"
2388
+ },
2389
+ "end": {
2390
+ "default": "",
2391
+ "type": "string"
2392
+ }
2393
+ },
2394
+ "required": [
2395
+ "start",
2396
+ "end"
2397
+ ],
2398
+ "additionalProperties": false
2399
+ }
2400
+ },
2401
+ "required": [
2402
+ "type",
2403
+ "meta",
2404
+ "answer"
2405
+ ],
2406
+ "additionalProperties": false
2407
+ },
2408
+ {
2409
+ "type": "object",
2410
+ "properties": {
2411
+ "type": {
2412
+ "type": "string",
2413
+ "const": "email"
2414
+ },
2415
+ "meta": {
2416
+ "type": "object",
2417
+ "properties": {
2418
+ "schemaVersion": {
2419
+ "default": "1.0",
2420
+ "type": "string"
2421
+ }
2422
+ },
2423
+ "required": [
2424
+ "schemaVersion"
2425
+ ],
2426
+ "additionalProperties": false
2427
+ },
2428
+ "comment": {
2429
+ "type": "string"
2430
+ },
2431
+ "answer": {
2432
+ "default": "",
2433
+ "type": "string"
2434
+ }
2435
+ },
2436
+ "required": [
2437
+ "type",
2438
+ "meta",
2439
+ "answer"
2440
+ ],
2441
+ "additionalProperties": false
2442
+ },
2443
+ {
2444
+ "type": "object",
2445
+ "properties": {
2446
+ "type": {
2447
+ "type": "string",
2448
+ "const": "licenseSearch"
2449
+ },
2450
+ "meta": {
2451
+ "type": "object",
2452
+ "properties": {
2453
+ "schemaVersion": {
2454
+ "default": "1.0",
2455
+ "type": "string"
2456
+ }
2457
+ },
2458
+ "required": [
2459
+ "schemaVersion"
2460
+ ],
2461
+ "additionalProperties": false
2462
+ },
2463
+ "comment": {
2464
+ "type": "string"
2465
+ },
2466
+ "answer": {
2467
+ "default": [],
2468
+ "type": "array",
2469
+ "items": {
2470
+ "type": "object",
2471
+ "properties": {
2472
+ "licenseId": {
2473
+ "default": "",
2474
+ "type": "string"
2475
+ },
2476
+ "licenseName": {
2477
+ "default": "",
2478
+ "type": "string"
2479
+ }
2480
+ },
2481
+ "required": [
2482
+ "licenseId",
2483
+ "licenseName"
2484
+ ],
2485
+ "additionalProperties": false
2486
+ }
2487
+ }
2488
+ },
2489
+ "required": [
2490
+ "type",
2491
+ "meta",
2492
+ "answer"
2493
+ ],
2494
+ "additionalProperties": false
2495
+ },
2496
+ {
2497
+ "type": "object",
2498
+ "properties": {
2499
+ "type": {
2500
+ "type": "string",
2501
+ "const": "metadataStandardSearch"
2502
+ },
2503
+ "meta": {
2504
+ "type": "object",
2505
+ "properties": {
2506
+ "schemaVersion": {
2507
+ "default": "1.0",
2508
+ "type": "string"
2509
+ }
2510
+ },
2511
+ "required": [
2512
+ "schemaVersion"
2513
+ ],
2514
+ "additionalProperties": false
2515
+ },
2516
+ "comment": {
2517
+ "type": "string"
2518
+ },
2519
+ "answer": {
2520
+ "default": [],
2521
+ "type": "array",
2522
+ "items": {
2523
+ "type": "object",
2524
+ "properties": {
2525
+ "metadataStandardId": {
2526
+ "default": "",
2527
+ "type": "string"
2528
+ },
2529
+ "metadataStandardName": {
2530
+ "default": "",
2531
+ "type": "string"
2532
+ }
2533
+ },
2534
+ "required": [
2535
+ "metadataStandardId",
2536
+ "metadataStandardName"
2537
+ ],
2538
+ "additionalProperties": false
2539
+ }
2540
+ }
2541
+ },
2542
+ "required": [
2543
+ "type",
2544
+ "meta",
2545
+ "answer"
2546
+ ],
2547
+ "additionalProperties": false
2548
+ },
2549
+ {
2550
+ "type": "object",
2551
+ "properties": {
2552
+ "type": {
2553
+ "type": "string",
2554
+ "const": "multiselectBox"
2555
+ },
2556
+ "meta": {
2557
+ "type": "object",
2558
+ "properties": {
2559
+ "schemaVersion": {
2560
+ "default": "1.0",
2561
+ "type": "string"
2562
+ }
2563
+ },
2564
+ "required": [
2565
+ "schemaVersion"
2566
+ ],
2567
+ "additionalProperties": false
2568
+ },
2569
+ "comment": {
2570
+ "type": "string"
2571
+ },
2572
+ "answer": {
2573
+ "default": [
2574
+ ""
2575
+ ],
2576
+ "type": "array",
2577
+ "items": {
2578
+ "type": "string"
2579
+ }
2580
+ }
2581
+ },
2582
+ "required": [
2583
+ "type",
2584
+ "meta",
2585
+ "answer"
2586
+ ],
2587
+ "additionalProperties": false
2588
+ },
2589
+ {
2590
+ "type": "object",
2591
+ "properties": {
2592
+ "type": {
2593
+ "type": "string",
2594
+ "const": "number"
2595
+ },
2596
+ "meta": {
2597
+ "type": "object",
2598
+ "properties": {
2599
+ "schemaVersion": {
2600
+ "default": "1.0",
2601
+ "type": "string"
2602
+ }
2603
+ },
2604
+ "required": [
2605
+ "schemaVersion"
2606
+ ],
2607
+ "additionalProperties": false
2608
+ },
2609
+ "comment": {
2610
+ "type": "string"
2611
+ },
2612
+ "answer": {
2613
+ "default": 0,
2614
+ "type": "number"
2615
+ }
2616
+ },
2617
+ "required": [
2618
+ "type",
2619
+ "meta",
2620
+ "answer"
2621
+ ],
2622
+ "additionalProperties": false
2623
+ },
2624
+ {
2625
+ "type": "object",
2626
+ "properties": {
2627
+ "type": {
2628
+ "type": "string",
2629
+ "const": "numberRange"
2630
+ },
2631
+ "meta": {
2632
+ "type": "object",
2633
+ "properties": {
2634
+ "schemaVersion": {
2635
+ "default": "1.0",
2636
+ "type": "string"
2637
+ }
2638
+ },
2639
+ "required": [
2640
+ "schemaVersion"
2641
+ ],
2642
+ "additionalProperties": false
2643
+ },
2644
+ "comment": {
2645
+ "type": "string"
2646
+ },
2647
+ "answer": {
2648
+ "type": "object",
2649
+ "properties": {
2650
+ "start": {
2651
+ "default": 0,
2652
+ "type": "number"
2653
+ },
2654
+ "end": {
2655
+ "default": 0,
2656
+ "type": "number"
2657
+ }
2658
+ },
2659
+ "required": [
2660
+ "start",
2661
+ "end"
2662
+ ],
2663
+ "additionalProperties": false
2664
+ }
2665
+ },
2666
+ "required": [
2667
+ "type",
2668
+ "meta",
2669
+ "answer"
2670
+ ],
2671
+ "additionalProperties": false
2672
+ },
2673
+ {
2674
+ "type": "object",
2675
+ "properties": {
2676
+ "type": {
2677
+ "type": "string",
2678
+ "const": "radioButtons"
2679
+ },
2680
+ "meta": {
2681
+ "type": "object",
2682
+ "properties": {
2683
+ "schemaVersion": {
2684
+ "default": "1.0",
2685
+ "type": "string"
2686
+ }
2687
+ },
2688
+ "required": [
2689
+ "schemaVersion"
2690
+ ],
2691
+ "additionalProperties": false
2692
+ },
2693
+ "comment": {
2694
+ "type": "string"
2695
+ },
2696
+ "answer": {
2697
+ "default": "",
2698
+ "type": "string"
2699
+ }
2700
+ },
2701
+ "required": [
2702
+ "type",
2703
+ "meta",
2704
+ "answer"
2705
+ ],
2706
+ "additionalProperties": false
2707
+ },
2708
+ {
2709
+ "type": "object",
2710
+ "properties": {
2711
+ "type": {
2712
+ "type": "string",
2713
+ "const": "repositorySearch"
2714
+ },
2715
+ "meta": {
2716
+ "type": "object",
2717
+ "properties": {
2718
+ "schemaVersion": {
2719
+ "default": "1.0",
2720
+ "type": "string"
2721
+ }
2722
+ },
2723
+ "required": [
2724
+ "schemaVersion"
2725
+ ],
2726
+ "additionalProperties": false
2727
+ },
2728
+ "comment": {
2729
+ "type": "string"
2730
+ },
2731
+ "answer": {
2732
+ "default": [],
2733
+ "type": "array",
2734
+ "items": {
2735
+ "type": "object",
2736
+ "properties": {
2737
+ "repositoryId": {
2738
+ "default": "",
2739
+ "type": "string"
2740
+ },
2741
+ "repositoryName": {
2742
+ "default": "",
2743
+ "type": "string"
2744
+ }
2745
+ },
2746
+ "required": [
2747
+ "repositoryId",
2748
+ "repositoryName"
2749
+ ],
2750
+ "additionalProperties": false
2751
+ }
2752
+ }
2753
+ },
2754
+ "required": [
2755
+ "type",
2756
+ "meta",
2757
+ "answer"
2758
+ ],
2759
+ "additionalProperties": false
2760
+ },
2761
+ {
2762
+ "type": "object",
2763
+ "properties": {
2764
+ "type": {
2765
+ "type": "string",
2766
+ "const": "researchOutputTable"
2767
+ },
2768
+ "meta": {
2769
+ "type": "object",
2770
+ "properties": {
2771
+ "schemaVersion": {
2772
+ "default": "1.0",
2773
+ "type": "string"
2774
+ }
2775
+ },
2776
+ "required": [
2777
+ "schemaVersion"
2778
+ ],
2779
+ "additionalProperties": false
2780
+ },
2781
+ "comment": {
2782
+ "type": "string"
2783
+ },
2784
+ "columnHeadings": {
2785
+ "default": [
2786
+ "Title",
2787
+ "Type"
2788
+ ],
2789
+ "type": "array",
2790
+ "items": {
2791
+ "type": "string"
2792
+ }
2793
+ },
2794
+ "answer": {
2795
+ "type": "array",
2796
+ "items": {
2797
+ "type": "object",
2798
+ "properties": {
2799
+ "columns": {
2800
+ "type": "array",
2801
+ "items": {
2802
+ "oneOf": [
2803
+ {
2804
+ "type": "object",
2805
+ "properties": {
2806
+ "type": {
2807
+ "type": "string",
2808
+ "const": "checkBoxes"
2809
+ },
2810
+ "meta": {
2811
+ "type": "object",
2812
+ "properties": {
2813
+ "schemaVersion": {
2814
+ "default": "1.0",
2815
+ "type": "string"
2816
+ }
2817
+ },
2818
+ "required": [
2819
+ "schemaVersion"
2820
+ ],
2821
+ "additionalProperties": false
2822
+ },
2823
+ "comment": {
2824
+ "type": "string"
2825
+ },
2826
+ "answer": {
2827
+ "default": [
2828
+ ""
2829
+ ],
2830
+ "type": "array",
2831
+ "items": {
2832
+ "type": "string"
2833
+ }
2834
+ },
2835
+ "commonStandardId": {
2836
+ "type": "string"
2837
+ }
2838
+ },
2839
+ "required": [
2840
+ "type",
2841
+ "meta",
2842
+ "answer"
2843
+ ],
2844
+ "additionalProperties": false
2845
+ },
2846
+ {
2847
+ "type": "object",
2848
+ "properties": {
2849
+ "type": {
2850
+ "type": "string",
2851
+ "const": "date"
2852
+ },
2853
+ "meta": {
2854
+ "type": "object",
2855
+ "properties": {
2856
+ "schemaVersion": {
2857
+ "default": "1.0",
2858
+ "type": "string"
2859
+ }
2860
+ },
2861
+ "required": [
2862
+ "schemaVersion"
2863
+ ],
2864
+ "additionalProperties": false
2865
+ },
2866
+ "comment": {
2867
+ "type": "string"
2868
+ },
2869
+ "answer": {
2870
+ "default": "",
2871
+ "type": "string"
2872
+ },
2873
+ "commonStandardId": {
2874
+ "type": "string"
2875
+ }
2876
+ },
2877
+ "required": [
2878
+ "type",
2879
+ "meta",
2880
+ "answer"
2881
+ ],
2882
+ "additionalProperties": false
2883
+ },
2884
+ {
2885
+ "type": "object",
2886
+ "properties": {
2887
+ "type": {
2888
+ "type": "string",
2889
+ "const": "licenseSearch"
2890
+ },
2891
+ "meta": {
2892
+ "type": "object",
2893
+ "properties": {
2894
+ "schemaVersion": {
2895
+ "default": "1.0",
2896
+ "type": "string"
2897
+ }
2898
+ },
2899
+ "required": [
2900
+ "schemaVersion"
2901
+ ],
2902
+ "additionalProperties": false
2903
+ },
2904
+ "comment": {
2905
+ "type": "string"
2906
+ },
2907
+ "answer": {
2908
+ "default": [],
2909
+ "type": "array",
2910
+ "items": {
2911
+ "type": "object",
2912
+ "properties": {
2913
+ "licenseId": {
2914
+ "default": "",
2915
+ "type": "string"
2916
+ },
2917
+ "licenseName": {
2918
+ "default": "",
2919
+ "type": "string"
2920
+ }
2921
+ },
2922
+ "required": [
2923
+ "licenseId",
2924
+ "licenseName"
2925
+ ],
2926
+ "additionalProperties": false
2927
+ }
2928
+ },
2929
+ "commonStandardId": {
2930
+ "type": "string"
2931
+ }
2932
+ },
2933
+ "required": [
2934
+ "type",
2935
+ "meta",
2936
+ "answer"
2937
+ ],
2938
+ "additionalProperties": false
2939
+ },
2940
+ {
2941
+ "type": "object",
2942
+ "properties": {
2943
+ "type": {
2944
+ "type": "string",
2945
+ "const": "metadataStandardSearch"
2946
+ },
2947
+ "meta": {
2948
+ "type": "object",
2949
+ "properties": {
2950
+ "schemaVersion": {
2951
+ "default": "1.0",
2952
+ "type": "string"
2953
+ }
2954
+ },
2955
+ "required": [
2956
+ "schemaVersion"
2957
+ ],
2958
+ "additionalProperties": false
2959
+ },
2960
+ "comment": {
2961
+ "type": "string"
2962
+ },
2963
+ "answer": {
2964
+ "default": [],
2965
+ "type": "array",
2966
+ "items": {
2967
+ "type": "object",
2968
+ "properties": {
2969
+ "metadataStandardId": {
2970
+ "default": "",
2971
+ "type": "string"
2972
+ },
2973
+ "metadataStandardName": {
2974
+ "default": "",
2975
+ "type": "string"
2976
+ }
2977
+ },
2978
+ "required": [
2979
+ "metadataStandardId",
2980
+ "metadataStandardName"
2981
+ ],
2982
+ "additionalProperties": false
2983
+ }
2984
+ },
2985
+ "commonStandardId": {
2986
+ "type": "string"
2987
+ }
2988
+ },
2989
+ "required": [
2990
+ "type",
2991
+ "meta",
2992
+ "answer"
2993
+ ],
2994
+ "additionalProperties": false
2995
+ },
2996
+ {
2997
+ "type": "object",
2998
+ "properties": {
2999
+ "type": {
3000
+ "type": "string",
3001
+ "const": "numberWithContext"
3002
+ },
3003
+ "meta": {
3004
+ "type": "object",
3005
+ "properties": {
3006
+ "schemaVersion": {
3007
+ "default": "1.0",
3008
+ "type": "string"
3009
+ }
3010
+ },
3011
+ "required": [
3012
+ "schemaVersion"
3013
+ ],
3014
+ "additionalProperties": false
3015
+ },
3016
+ "comment": {
3017
+ "type": "string"
3018
+ },
3019
+ "answer": {
3020
+ "type": "object",
3021
+ "properties": {
3022
+ "value": {
3023
+ "default": 0,
3024
+ "type": "number"
3025
+ },
3026
+ "context": {
3027
+ "default": "",
3028
+ "type": "string"
3029
+ }
3030
+ },
3031
+ "required": [
3032
+ "value",
3033
+ "context"
3034
+ ],
3035
+ "additionalProperties": false
3036
+ },
3037
+ "commonStandardId": {
3038
+ "type": "string"
3039
+ }
3040
+ },
3041
+ "required": [
3042
+ "type",
3043
+ "meta",
3044
+ "answer"
3045
+ ],
3046
+ "additionalProperties": false
3047
+ },
3048
+ {
3049
+ "type": "object",
3050
+ "properties": {
3051
+ "type": {
3052
+ "type": "string",
3053
+ "const": "radioButtons"
3054
+ },
3055
+ "meta": {
3056
+ "type": "object",
3057
+ "properties": {
3058
+ "schemaVersion": {
3059
+ "default": "1.0",
3060
+ "type": "string"
3061
+ }
3062
+ },
3063
+ "required": [
3064
+ "schemaVersion"
3065
+ ],
3066
+ "additionalProperties": false
3067
+ },
3068
+ "comment": {
3069
+ "type": "string"
3070
+ },
3071
+ "answer": {
3072
+ "default": "",
3073
+ "type": "string"
3074
+ },
3075
+ "commonStandardId": {
3076
+ "type": "string"
3077
+ }
3078
+ },
3079
+ "required": [
3080
+ "type",
3081
+ "meta",
3082
+ "answer"
3083
+ ],
3084
+ "additionalProperties": false
3085
+ },
3086
+ {
3087
+ "type": "object",
3088
+ "properties": {
3089
+ "type": {
3090
+ "type": "string",
3091
+ "const": "repositorySearch"
3092
+ },
3093
+ "meta": {
3094
+ "type": "object",
3095
+ "properties": {
3096
+ "schemaVersion": {
3097
+ "default": "1.0",
3098
+ "type": "string"
3099
+ }
3100
+ },
3101
+ "required": [
3102
+ "schemaVersion"
3103
+ ],
3104
+ "additionalProperties": false
3105
+ },
3106
+ "comment": {
3107
+ "type": "string"
3108
+ },
3109
+ "answer": {
3110
+ "default": [],
3111
+ "type": "array",
3112
+ "items": {
3113
+ "type": "object",
3114
+ "properties": {
3115
+ "repositoryId": {
3116
+ "default": "",
3117
+ "type": "string"
3118
+ },
3119
+ "repositoryName": {
3120
+ "default": "",
3121
+ "type": "string"
3122
+ }
3123
+ },
3124
+ "required": [
3125
+ "repositoryId",
3126
+ "repositoryName"
3127
+ ],
3128
+ "additionalProperties": false
3129
+ }
3130
+ },
3131
+ "commonStandardId": {
3132
+ "type": "string"
3133
+ }
3134
+ },
3135
+ "required": [
3136
+ "type",
3137
+ "meta",
3138
+ "answer"
3139
+ ],
3140
+ "additionalProperties": false
3141
+ },
3142
+ {
3143
+ "type": "object",
3144
+ "properties": {
3145
+ "type": {
3146
+ "type": "string",
3147
+ "const": "selectBox"
3148
+ },
3149
+ "meta": {
3150
+ "type": "object",
3151
+ "properties": {
3152
+ "schemaVersion": {
3153
+ "default": "1.0",
3154
+ "type": "string"
3155
+ }
3156
+ },
3157
+ "required": [
3158
+ "schemaVersion"
3159
+ ],
3160
+ "additionalProperties": false
3161
+ },
3162
+ "comment": {
3163
+ "type": "string"
3164
+ },
3165
+ "answer": {
3166
+ "default": "",
3167
+ "type": "string"
3168
+ },
3169
+ "commonStandardId": {
3170
+ "type": "string"
3171
+ }
3172
+ },
3173
+ "required": [
3174
+ "type",
3175
+ "meta",
3176
+ "answer"
3177
+ ],
3178
+ "additionalProperties": false
3179
+ },
3180
+ {
3181
+ "type": "object",
3182
+ "properties": {
3183
+ "type": {
3184
+ "type": "string",
3185
+ "const": "text"
3186
+ },
3187
+ "meta": {
3188
+ "type": "object",
3189
+ "properties": {
3190
+ "schemaVersion": {
3191
+ "default": "1.0",
3192
+ "type": "string"
3193
+ }
3194
+ },
3195
+ "required": [
3196
+ "schemaVersion"
3197
+ ],
3198
+ "additionalProperties": false
3199
+ },
3200
+ "comment": {
3201
+ "type": "string"
3202
+ },
3203
+ "answer": {
3204
+ "default": "",
3205
+ "type": "string"
3206
+ },
3207
+ "commonStandardId": {
3208
+ "type": "string"
3209
+ }
3210
+ },
3211
+ "required": [
3212
+ "type",
3213
+ "meta",
3214
+ "answer"
3215
+ ],
3216
+ "additionalProperties": false
3217
+ },
3218
+ {
3219
+ "type": "object",
3220
+ "properties": {
3221
+ "type": {
3222
+ "type": "string",
3223
+ "const": "textArea"
3224
+ },
3225
+ "meta": {
3226
+ "type": "object",
3227
+ "properties": {
3228
+ "schemaVersion": {
3229
+ "default": "1.0",
3230
+ "type": "string"
3231
+ }
3232
+ },
3233
+ "required": [
3234
+ "schemaVersion"
3235
+ ],
3236
+ "additionalProperties": false
3237
+ },
3238
+ "comment": {
3239
+ "type": "string"
3240
+ },
3241
+ "answer": {
3242
+ "default": "",
3243
+ "type": "string"
3244
+ },
3245
+ "commonStandardId": {
3246
+ "type": "string"
3247
+ }
3248
+ },
3249
+ "required": [
3250
+ "type",
3251
+ "meta",
3252
+ "answer"
3253
+ ],
3254
+ "additionalProperties": false
3255
+ }
3256
+ ]
3257
+ }
3258
+ }
3259
+ },
3260
+ "required": [
3261
+ "columns"
3262
+ ],
3263
+ "additionalProperties": false
3264
+ }
3265
+ }
3266
+ },
3267
+ "required": [
3268
+ "type",
3269
+ "meta",
3270
+ "columnHeadings",
3271
+ "answer"
3272
+ ],
3273
+ "additionalProperties": false
3274
+ },
3275
+ {
3276
+ "type": "object",
3277
+ "properties": {
3278
+ "type": {
3279
+ "type": "string",
3280
+ "const": "selectBox"
3281
+ },
3282
+ "meta": {
3283
+ "type": "object",
3284
+ "properties": {
3285
+ "schemaVersion": {
3286
+ "default": "1.0",
3287
+ "type": "string"
3288
+ }
3289
+ },
3290
+ "required": [
3291
+ "schemaVersion"
3292
+ ],
3293
+ "additionalProperties": false
3294
+ },
3295
+ "comment": {
3296
+ "type": "string"
3297
+ },
3298
+ "answer": {
3299
+ "default": "",
3300
+ "type": "string"
3301
+ }
3302
+ },
3303
+ "required": [
3304
+ "type",
3305
+ "meta",
3306
+ "answer"
3307
+ ],
3308
+ "additionalProperties": false
3309
+ },
3310
+ {
3311
+ "type": "object",
3312
+ "properties": {
3313
+ "type": {
3314
+ "type": "string",
3315
+ "const": "table"
3316
+ },
3317
+ "meta": {
3318
+ "type": "object",
3319
+ "properties": {
3320
+ "schemaVersion": {
3321
+ "default": "1.0",
3322
+ "type": "string"
3323
+ }
3324
+ },
3325
+ "required": [
3326
+ "schemaVersion"
3327
+ ],
3328
+ "additionalProperties": false
3329
+ },
3330
+ "comment": {
3331
+ "type": "string"
3332
+ },
3333
+ "columnHeadings": {
3334
+ "default": [
3335
+ "Column A"
3336
+ ],
3337
+ "type": "array",
3338
+ "items": {
3339
+ "type": "string"
3340
+ }
3341
+ },
3342
+ "answer": {
3343
+ "type": "array",
3344
+ "items": {
3345
+ "type": "object",
3346
+ "properties": {
3347
+ "columns": {
3348
+ "type": "array",
3349
+ "items": {
3350
+ "oneOf": [
3351
+ {
3352
+ "type": "object",
3353
+ "properties": {
3354
+ "type": {
3355
+ "type": "string",
3356
+ "const": "affiliationSearch"
3357
+ },
3358
+ "meta": {
3359
+ "type": "object",
3360
+ "properties": {
3361
+ "schemaVersion": {
3362
+ "default": "1.0",
3363
+ "type": "string"
3364
+ }
3365
+ },
3366
+ "required": [
3367
+ "schemaVersion"
3368
+ ],
3369
+ "additionalProperties": false
3370
+ },
3371
+ "comment": {
3372
+ "type": "string"
3373
+ },
3374
+ "answer": {
3375
+ "type": "object",
3376
+ "properties": {
3377
+ "affiliationId": {
3378
+ "default": "",
3379
+ "type": "string"
3380
+ },
3381
+ "affiliationName": {
3382
+ "default": "",
3383
+ "type": "string"
3384
+ }
3385
+ },
3386
+ "required": [
3387
+ "affiliationId",
3388
+ "affiliationName"
3389
+ ],
3390
+ "additionalProperties": false
3391
+ }
3392
+ },
3393
+ "required": [
3394
+ "type",
3395
+ "meta",
3396
+ "answer"
3397
+ ],
3398
+ "additionalProperties": false
3399
+ },
3400
+ {
3401
+ "type": "object",
3402
+ "properties": {
3403
+ "type": {
3404
+ "type": "string",
3405
+ "const": "boolean"
3406
+ },
3407
+ "meta": {
3408
+ "type": "object",
3409
+ "properties": {
3410
+ "schemaVersion": {
3411
+ "default": "1.0",
3412
+ "type": "string"
3413
+ }
3414
+ },
3415
+ "required": [
3416
+ "schemaVersion"
3417
+ ],
3418
+ "additionalProperties": false
3419
+ },
3420
+ "comment": {
3421
+ "type": "string"
3422
+ },
3423
+ "answer": {
3424
+ "default": false,
3425
+ "type": "boolean"
3426
+ }
3427
+ },
3428
+ "required": [
3429
+ "type",
3430
+ "meta",
3431
+ "answer"
3432
+ ],
3433
+ "additionalProperties": false
3434
+ },
3435
+ {
3436
+ "type": "object",
3437
+ "properties": {
3438
+ "type": {
3439
+ "type": "string",
3440
+ "const": "checkBoxes"
3441
+ },
3442
+ "meta": {
3443
+ "type": "object",
3444
+ "properties": {
3445
+ "schemaVersion": {
3446
+ "default": "1.0",
3447
+ "type": "string"
3448
+ }
3449
+ },
3450
+ "required": [
3451
+ "schemaVersion"
3452
+ ],
3453
+ "additionalProperties": false
3454
+ },
3455
+ "comment": {
3456
+ "type": "string"
3457
+ },
3458
+ "answer": {
3459
+ "default": [
3460
+ ""
3461
+ ],
3462
+ "type": "array",
3463
+ "items": {
3464
+ "type": "string"
3465
+ }
3466
+ }
3467
+ },
3468
+ "required": [
3469
+ "type",
3470
+ "meta",
3471
+ "answer"
3472
+ ],
3473
+ "additionalProperties": false
3474
+ },
3475
+ {
3476
+ "type": "object",
3477
+ "properties": {
3478
+ "type": {
3479
+ "type": "string",
3480
+ "const": "currency"
3481
+ },
3482
+ "meta": {
3483
+ "type": "object",
3484
+ "properties": {
3485
+ "schemaVersion": {
3486
+ "default": "1.0",
3487
+ "type": "string"
3488
+ }
3489
+ },
3490
+ "required": [
3491
+ "schemaVersion"
3492
+ ],
3493
+ "additionalProperties": false
3494
+ },
3495
+ "comment": {
3496
+ "type": "string"
3497
+ },
3498
+ "answer": {
3499
+ "default": 0,
3500
+ "type": "number"
3501
+ }
3502
+ },
3503
+ "required": [
3504
+ "type",
3505
+ "meta",
3506
+ "answer"
3507
+ ],
3508
+ "additionalProperties": false
3509
+ },
3510
+ {
3511
+ "type": "object",
3512
+ "properties": {
3513
+ "type": {
3514
+ "type": "string",
3515
+ "const": "date"
3516
+ },
3517
+ "meta": {
3518
+ "type": "object",
3519
+ "properties": {
3520
+ "schemaVersion": {
3521
+ "default": "1.0",
3522
+ "type": "string"
3523
+ }
3524
+ },
3525
+ "required": [
3526
+ "schemaVersion"
3527
+ ],
3528
+ "additionalProperties": false
3529
+ },
3530
+ "comment": {
3531
+ "type": "string"
3532
+ },
3533
+ "answer": {
3534
+ "default": "",
3535
+ "type": "string"
3536
+ }
3537
+ },
3538
+ "required": [
3539
+ "type",
3540
+ "meta",
3541
+ "answer"
3542
+ ],
3543
+ "additionalProperties": false
3544
+ },
3545
+ {
3546
+ "type": "object",
3547
+ "properties": {
3548
+ "type": {
3549
+ "type": "string",
3550
+ "const": "dateRange"
3551
+ },
3552
+ "meta": {
3553
+ "type": "object",
3554
+ "properties": {
3555
+ "schemaVersion": {
3556
+ "default": "1.0",
3557
+ "type": "string"
3558
+ }
3559
+ },
3560
+ "required": [
3561
+ "schemaVersion"
3562
+ ],
3563
+ "additionalProperties": false
3564
+ },
3565
+ "comment": {
3566
+ "type": "string"
3567
+ },
3568
+ "answer": {
3569
+ "type": "object",
3570
+ "properties": {
3571
+ "start": {
3572
+ "default": "",
3573
+ "type": "string"
3574
+ },
3575
+ "end": {
3576
+ "default": "",
3577
+ "type": "string"
3578
+ }
3579
+ },
3580
+ "required": [
3581
+ "start",
3582
+ "end"
3583
+ ],
3584
+ "additionalProperties": false
3585
+ }
3586
+ },
3587
+ "required": [
3588
+ "type",
3589
+ "meta",
3590
+ "answer"
3591
+ ],
3592
+ "additionalProperties": false
3593
+ },
3594
+ {
3595
+ "type": "object",
3596
+ "properties": {
3597
+ "type": {
3598
+ "type": "string",
3599
+ "const": "email"
3600
+ },
3601
+ "meta": {
3602
+ "type": "object",
3603
+ "properties": {
3604
+ "schemaVersion": {
3605
+ "default": "1.0",
3606
+ "type": "string"
3607
+ }
3608
+ },
3609
+ "required": [
3610
+ "schemaVersion"
3611
+ ],
3612
+ "additionalProperties": false
3613
+ },
3614
+ "comment": {
3615
+ "type": "string"
3616
+ },
3617
+ "answer": {
3618
+ "default": "",
3619
+ "type": "string"
3620
+ }
3621
+ },
3622
+ "required": [
3623
+ "type",
3624
+ "meta",
3625
+ "answer"
3626
+ ],
3627
+ "additionalProperties": false
3628
+ },
3629
+ {
3630
+ "type": "object",
3631
+ "properties": {
3632
+ "type": {
3633
+ "type": "string",
3634
+ "const": "licenseSearch"
3635
+ },
3636
+ "meta": {
3637
+ "type": "object",
3638
+ "properties": {
3639
+ "schemaVersion": {
3640
+ "default": "1.0",
3641
+ "type": "string"
3642
+ }
3643
+ },
3644
+ "required": [
3645
+ "schemaVersion"
3646
+ ],
3647
+ "additionalProperties": false
3648
+ },
3649
+ "comment": {
3650
+ "type": "string"
3651
+ },
3652
+ "answer": {
3653
+ "default": [],
3654
+ "type": "array",
3655
+ "items": {
3656
+ "type": "object",
3657
+ "properties": {
3658
+ "licenseId": {
3659
+ "default": "",
3660
+ "type": "string"
3661
+ },
3662
+ "licenseName": {
3663
+ "default": "",
3664
+ "type": "string"
3665
+ }
3666
+ },
3667
+ "required": [
3668
+ "licenseId",
3669
+ "licenseName"
3670
+ ],
3671
+ "additionalProperties": false
3672
+ }
3673
+ }
3674
+ },
3675
+ "required": [
3676
+ "type",
3677
+ "meta",
3678
+ "answer"
3679
+ ],
3680
+ "additionalProperties": false
3681
+ },
3682
+ {
3683
+ "type": "object",
3684
+ "properties": {
3685
+ "type": {
3686
+ "type": "string",
3687
+ "const": "metadataStandardSearch"
3688
+ },
3689
+ "meta": {
3690
+ "type": "object",
3691
+ "properties": {
3692
+ "schemaVersion": {
3693
+ "default": "1.0",
3694
+ "type": "string"
3695
+ }
3696
+ },
3697
+ "required": [
3698
+ "schemaVersion"
3699
+ ],
3700
+ "additionalProperties": false
3701
+ },
3702
+ "comment": {
3703
+ "type": "string"
3704
+ },
3705
+ "answer": {
3706
+ "default": [],
3707
+ "type": "array",
3708
+ "items": {
3709
+ "type": "object",
3710
+ "properties": {
3711
+ "metadataStandardId": {
3712
+ "default": "",
3713
+ "type": "string"
3714
+ },
3715
+ "metadataStandardName": {
3716
+ "default": "",
3717
+ "type": "string"
3718
+ }
3719
+ },
3720
+ "required": [
3721
+ "metadataStandardId",
3722
+ "metadataStandardName"
3723
+ ],
3724
+ "additionalProperties": false
3725
+ }
3726
+ }
3727
+ },
3728
+ "required": [
3729
+ "type",
3730
+ "meta",
3731
+ "answer"
3732
+ ],
3733
+ "additionalProperties": false
3734
+ },
3735
+ {
3736
+ "type": "object",
3737
+ "properties": {
3738
+ "type": {
3739
+ "type": "string",
3740
+ "const": "multiselectBox"
3741
+ },
3742
+ "meta": {
3743
+ "type": "object",
3744
+ "properties": {
3745
+ "schemaVersion": {
3746
+ "default": "1.0",
3747
+ "type": "string"
3748
+ }
3749
+ },
3750
+ "required": [
3751
+ "schemaVersion"
3752
+ ],
3753
+ "additionalProperties": false
3754
+ },
3755
+ "comment": {
3756
+ "type": "string"
3757
+ },
3758
+ "answer": {
3759
+ "default": [
3760
+ ""
3761
+ ],
3762
+ "type": "array",
3763
+ "items": {
3764
+ "type": "string"
3765
+ }
3766
+ }
3767
+ },
3768
+ "required": [
3769
+ "type",
3770
+ "meta",
3771
+ "answer"
3772
+ ],
3773
+ "additionalProperties": false
3774
+ },
3775
+ {
3776
+ "type": "object",
3777
+ "properties": {
3778
+ "type": {
3779
+ "type": "string",
3780
+ "const": "number"
3781
+ },
3782
+ "meta": {
3783
+ "type": "object",
3784
+ "properties": {
3785
+ "schemaVersion": {
3786
+ "default": "1.0",
3787
+ "type": "string"
3788
+ }
3789
+ },
3790
+ "required": [
3791
+ "schemaVersion"
3792
+ ],
3793
+ "additionalProperties": false
3794
+ },
3795
+ "comment": {
3796
+ "type": "string"
3797
+ },
3798
+ "answer": {
3799
+ "default": 0,
3800
+ "type": "number"
3801
+ }
3802
+ },
3803
+ "required": [
3804
+ "type",
3805
+ "meta",
3806
+ "answer"
3807
+ ],
3808
+ "additionalProperties": false
3809
+ },
3810
+ {
3811
+ "type": "object",
3812
+ "properties": {
3813
+ "type": {
3814
+ "type": "string",
3815
+ "const": "numberWithContext"
3816
+ },
3817
+ "meta": {
3818
+ "type": "object",
3819
+ "properties": {
3820
+ "schemaVersion": {
3821
+ "default": "1.0",
3822
+ "type": "string"
3823
+ }
3824
+ },
3825
+ "required": [
3826
+ "schemaVersion"
3827
+ ],
3828
+ "additionalProperties": false
3829
+ },
3830
+ "comment": {
3831
+ "type": "string"
3832
+ },
3833
+ "answer": {
3834
+ "type": "object",
3835
+ "properties": {
3836
+ "value": {
3837
+ "default": 0,
3838
+ "type": "number"
3839
+ },
3840
+ "context": {
3841
+ "default": "",
3842
+ "type": "string"
3843
+ }
3844
+ },
3845
+ "required": [
3846
+ "value",
3847
+ "context"
3848
+ ],
3849
+ "additionalProperties": false
3850
+ }
3851
+ },
3852
+ "required": [
3853
+ "type",
3854
+ "meta",
3855
+ "answer"
3856
+ ],
3857
+ "additionalProperties": false
3858
+ },
3859
+ {
3860
+ "type": "object",
3861
+ "properties": {
3862
+ "type": {
3863
+ "type": "string",
3864
+ "const": "radioButtons"
3865
+ },
3866
+ "meta": {
3867
+ "type": "object",
3868
+ "properties": {
3869
+ "schemaVersion": {
3870
+ "default": "1.0",
3871
+ "type": "string"
3872
+ }
3873
+ },
3874
+ "required": [
3875
+ "schemaVersion"
3876
+ ],
3877
+ "additionalProperties": false
3878
+ },
3879
+ "comment": {
3880
+ "type": "string"
3881
+ },
3882
+ "answer": {
3883
+ "default": "",
3884
+ "type": "string"
3885
+ }
3886
+ },
3887
+ "required": [
3888
+ "type",
3889
+ "meta",
3890
+ "answer"
3891
+ ],
3892
+ "additionalProperties": false
3893
+ },
3894
+ {
3895
+ "type": "object",
3896
+ "properties": {
3897
+ "type": {
3898
+ "type": "string",
3899
+ "const": "repositorySearch"
3900
+ },
3901
+ "meta": {
3902
+ "type": "object",
3903
+ "properties": {
3904
+ "schemaVersion": {
3905
+ "default": "1.0",
3906
+ "type": "string"
3907
+ }
3908
+ },
3909
+ "required": [
3910
+ "schemaVersion"
3911
+ ],
3912
+ "additionalProperties": false
3913
+ },
3914
+ "comment": {
3915
+ "type": "string"
3916
+ },
3917
+ "answer": {
3918
+ "default": [],
3919
+ "type": "array",
3920
+ "items": {
3921
+ "type": "object",
3922
+ "properties": {
3923
+ "repositoryId": {
3924
+ "default": "",
3925
+ "type": "string"
3926
+ },
3927
+ "repositoryName": {
3928
+ "default": "",
3929
+ "type": "string"
3930
+ }
3931
+ },
3932
+ "required": [
3933
+ "repositoryId",
3934
+ "repositoryName"
3935
+ ],
3936
+ "additionalProperties": false
3937
+ }
3938
+ }
3939
+ },
3940
+ "required": [
3941
+ "type",
3942
+ "meta",
3943
+ "answer"
3944
+ ],
3945
+ "additionalProperties": false
3946
+ },
3947
+ {
3948
+ "type": "object",
3949
+ "properties": {
3950
+ "type": {
3951
+ "type": "string",
3952
+ "const": "selectBox"
3953
+ },
3954
+ "meta": {
3955
+ "type": "object",
3956
+ "properties": {
3957
+ "schemaVersion": {
3958
+ "default": "1.0",
3959
+ "type": "string"
3960
+ }
3961
+ },
3962
+ "required": [
3963
+ "schemaVersion"
3964
+ ],
3965
+ "additionalProperties": false
3966
+ },
3967
+ "comment": {
3968
+ "type": "string"
3969
+ },
3970
+ "answer": {
3971
+ "default": "",
3972
+ "type": "string"
3973
+ }
3974
+ },
3975
+ "required": [
3976
+ "type",
3977
+ "meta",
3978
+ "answer"
3979
+ ],
3980
+ "additionalProperties": false
3981
+ },
3982
+ {
3983
+ "type": "object",
3984
+ "properties": {
3985
+ "type": {
3986
+ "type": "string",
3987
+ "const": "text"
3988
+ },
3989
+ "meta": {
3990
+ "type": "object",
3991
+ "properties": {
3992
+ "schemaVersion": {
3993
+ "default": "1.0",
3994
+ "type": "string"
3995
+ }
3996
+ },
3997
+ "required": [
3998
+ "schemaVersion"
3999
+ ],
4000
+ "additionalProperties": false
4001
+ },
4002
+ "comment": {
4003
+ "type": "string"
4004
+ },
4005
+ "answer": {
4006
+ "default": "",
4007
+ "type": "string"
4008
+ }
4009
+ },
4010
+ "required": [
4011
+ "type",
4012
+ "meta",
4013
+ "answer"
4014
+ ],
4015
+ "additionalProperties": false
4016
+ },
4017
+ {
4018
+ "type": "object",
4019
+ "properties": {
4020
+ "type": {
4021
+ "type": "string",
4022
+ "const": "textArea"
4023
+ },
4024
+ "meta": {
4025
+ "type": "object",
4026
+ "properties": {
4027
+ "schemaVersion": {
4028
+ "default": "1.0",
4029
+ "type": "string"
4030
+ }
4031
+ },
4032
+ "required": [
4033
+ "schemaVersion"
4034
+ ],
4035
+ "additionalProperties": false
4036
+ },
4037
+ "comment": {
4038
+ "type": "string"
4039
+ },
4040
+ "answer": {
4041
+ "default": "",
4042
+ "type": "string"
4043
+ }
4044
+ },
4045
+ "required": [
4046
+ "type",
4047
+ "meta",
4048
+ "answer"
4049
+ ],
4050
+ "additionalProperties": false
4051
+ },
4052
+ {
4053
+ "type": "object",
4054
+ "properties": {
4055
+ "type": {
4056
+ "type": "string",
4057
+ "const": "url"
4058
+ },
4059
+ "meta": {
4060
+ "type": "object",
4061
+ "properties": {
4062
+ "schemaVersion": {
4063
+ "default": "1.0",
4064
+ "type": "string"
4065
+ }
4066
+ },
4067
+ "required": [
4068
+ "schemaVersion"
4069
+ ],
4070
+ "additionalProperties": false
4071
+ },
4072
+ "comment": {
4073
+ "type": "string"
4074
+ },
4075
+ "answer": {
4076
+ "default": "",
4077
+ "type": "string"
4078
+ }
4079
+ },
4080
+ "required": [
4081
+ "type",
4082
+ "meta",
4083
+ "answer"
4084
+ ],
4085
+ "additionalProperties": false
4086
+ }
4087
+ ]
4088
+ }
4089
+ }
4090
+ },
4091
+ "required": [
4092
+ "columns"
4093
+ ],
4094
+ "additionalProperties": false
4095
+ }
4096
+ }
4097
+ },
4098
+ "required": [
4099
+ "type",
4100
+ "meta",
4101
+ "columnHeadings",
4102
+ "answer"
4103
+ ],
4104
+ "additionalProperties": false
4105
+ },
4106
+ {
4107
+ "type": "object",
4108
+ "properties": {
4109
+ "type": {
4110
+ "type": "string",
4111
+ "const": "text"
4112
+ },
4113
+ "meta": {
4114
+ "type": "object",
4115
+ "properties": {
4116
+ "schemaVersion": {
4117
+ "default": "1.0",
4118
+ "type": "string"
4119
+ }
4120
+ },
4121
+ "required": [
4122
+ "schemaVersion"
4123
+ ],
4124
+ "additionalProperties": false
4125
+ },
4126
+ "comment": {
4127
+ "type": "string"
4128
+ },
4129
+ "answer": {
4130
+ "default": "",
4131
+ "type": "string"
4132
+ }
4133
+ },
4134
+ "required": [
4135
+ "type",
4136
+ "meta",
4137
+ "answer"
4138
+ ],
4139
+ "additionalProperties": false
4140
+ },
4141
+ {
4142
+ "type": "object",
4143
+ "properties": {
4144
+ "type": {
4145
+ "type": "string",
4146
+ "const": "textArea"
4147
+ },
4148
+ "meta": {
4149
+ "type": "object",
4150
+ "properties": {
4151
+ "schemaVersion": {
4152
+ "default": "1.0",
4153
+ "type": "string"
4154
+ }
4155
+ },
4156
+ "required": [
4157
+ "schemaVersion"
4158
+ ],
4159
+ "additionalProperties": false
4160
+ },
4161
+ "comment": {
4162
+ "type": "string"
4163
+ },
4164
+ "answer": {
4165
+ "default": "",
4166
+ "type": "string"
4167
+ }
4168
+ },
4169
+ "required": [
4170
+ "type",
4171
+ "meta",
4172
+ "answer"
4173
+ ],
4174
+ "additionalProperties": false
4175
+ },
4176
+ {
4177
+ "type": "object",
4178
+ "properties": {
4179
+ "type": {
4180
+ "type": "string",
4181
+ "const": "url"
4182
+ },
4183
+ "meta": {
4184
+ "type": "object",
4185
+ "properties": {
4186
+ "schemaVersion": {
4187
+ "default": "1.0",
4188
+ "type": "string"
4189
+ }
4190
+ },
4191
+ "required": [
4192
+ "schemaVersion"
4193
+ ],
4194
+ "additionalProperties": false
4195
+ },
4196
+ "comment": {
4197
+ "type": "string"
4198
+ },
4199
+ "answer": {
4200
+ "default": "",
4201
+ "type": "string"
4202
+ }
4203
+ },
4204
+ "required": [
4205
+ "type",
4206
+ "meta",
4207
+ "answer"
4208
+ ],
4209
+ "additionalProperties": false
4210
+ }
4211
+ ]
4212
+ }
4213
+ },
4214
+ "required": [
4215
+ "id",
4216
+ "json"
4217
+ ],
4218
+ "additionalProperties": false
4219
+ }
4220
+ },
4221
+ "required": [
4222
+ "id",
4223
+ "order",
4224
+ "text"
4225
+ ],
4226
+ "additionalProperties": false
4227
+ }
4228
+ }
4229
+ },
4230
+ "required": [
4231
+ "id",
4232
+ "order",
4233
+ "title",
4234
+ "question"
4235
+ ],
4236
+ "additionalProperties": false
4237
+ }
4238
+ }
4239
+ },
4240
+ "required": [
4241
+ "id",
4242
+ "title",
4243
+ "section"
4244
+ ],
4245
+ "additionalProperties": false
4246
+ }
4247
+ },
4248
+ "additionalProperties": false
4249
+ },
4250
+ "research_domain": {
4251
+ "type": "object",
4252
+ "properties": {
4253
+ "name": {
4254
+ "type": "string"
4255
+ },
4256
+ "research_domain_identifier": {
4257
+ "type": "object",
4258
+ "properties": {
4259
+ "identifier": {
4260
+ "type": "string"
4261
+ },
4262
+ "type": {
4263
+ "type": "string",
4264
+ "enum": [
4265
+ "ark",
4266
+ "doi",
4267
+ "handle",
4268
+ "ror",
4269
+ "url",
4270
+ "other"
4271
+ ]
4272
+ }
4273
+ },
4274
+ "required": [
4275
+ "identifier",
4276
+ "type"
4277
+ ],
4278
+ "additionalProperties": false
4279
+ }
4280
+ },
4281
+ "required": [
4282
+ "name"
4283
+ ],
4284
+ "additionalProperties": false
4285
+ },
4286
+ "research_facility": {
4287
+ "type": "array",
4288
+ "items": {
4289
+ "type": "object",
4290
+ "properties": {
4291
+ "name": {
4292
+ "type": "string"
4293
+ },
4294
+ "type": {
4295
+ "type": "string",
4296
+ "enum": [
4297
+ "data_center",
4298
+ "field_station",
4299
+ "laboratory",
4300
+ "observatory",
4301
+ "other"
4302
+ ]
4303
+ },
4304
+ "research_facility_identifier": {
4305
+ "type": "object",
4306
+ "properties": {
4307
+ "identifier": {
4308
+ "type": "string"
4309
+ },
4310
+ "type": {
4311
+ "type": "string",
4312
+ "enum": [
4313
+ "ark",
4314
+ "doi",
4315
+ "handle",
4316
+ "ror",
4317
+ "url",
4318
+ "other"
4319
+ ]
4320
+ }
4321
+ },
4322
+ "required": [
4323
+ "identifier",
4324
+ "type"
4325
+ ],
4326
+ "additionalProperties": false
4327
+ }
4328
+ },
4329
+ "required": [
4330
+ "name",
4331
+ "type"
4332
+ ],
4333
+ "additionalProperties": false
4334
+ }
4335
+ },
4336
+ "version": {
4337
+ "type": "array",
4338
+ "items": {
4339
+ "type": "object",
4340
+ "properties": {
4341
+ "access_url": {
4342
+ "type": "string"
4343
+ },
4344
+ "version": {
4345
+ "type": "string",
4346
+ "format": "date-time",
4347
+ "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$"
4348
+ }
4349
+ },
4350
+ "required": [
4351
+ "access_url",
4352
+ "version"
4353
+ ],
4354
+ "additionalProperties": false
4355
+ }
4356
+ },
4357
+ "funding_opportunity": {
4358
+ "type": "array",
4359
+ "items": {
4360
+ "type": "object",
4361
+ "properties": {
4362
+ "project_id": {
4363
+ "type": "object",
4364
+ "properties": {
4365
+ "identifier": {
4366
+ "type": "string"
4367
+ },
4368
+ "type": {
4369
+ "type": "string",
4370
+ "enum": [
4371
+ "ark",
4372
+ "doi",
4373
+ "handle",
4374
+ "ror",
4375
+ "url",
4376
+ "other"
4377
+ ]
4378
+ }
4379
+ },
4380
+ "required": [
4381
+ "identifier",
4382
+ "type"
4383
+ ],
4384
+ "additionalProperties": false
4385
+ },
4386
+ "funder_id": {
4387
+ "type": "object",
4388
+ "properties": {
4389
+ "identifier": {
4390
+ "type": "string"
4391
+ },
4392
+ "type": {
4393
+ "type": "string",
4394
+ "enum": [
4395
+ "ark",
4396
+ "doi",
4397
+ "handle",
4398
+ "ror",
4399
+ "url",
4400
+ "other"
4401
+ ]
4402
+ }
4403
+ },
4404
+ "required": [
4405
+ "identifier",
4406
+ "type"
4407
+ ],
4408
+ "additionalProperties": false
4409
+ },
4410
+ "opportunity_identifier": {
4411
+ "type": "object",
4412
+ "properties": {
4413
+ "identifier": {
4414
+ "type": "string"
4415
+ },
4416
+ "type": {
4417
+ "type": "string",
4418
+ "enum": [
4419
+ "ark",
4420
+ "doi",
4421
+ "handle",
4422
+ "ror",
4423
+ "url",
4424
+ "other"
4425
+ ]
4426
+ }
4427
+ },
4428
+ "required": [
4429
+ "identifier",
4430
+ "type"
4431
+ ],
4432
+ "additionalProperties": false
4433
+ }
4434
+ },
4435
+ "required": [
4436
+ "project_id",
4437
+ "funder_id",
4438
+ "opportunity_identifier"
4439
+ ],
4440
+ "additionalProperties": false
4441
+ }
4442
+ },
4443
+ "funding_project": {
4444
+ "type": "array",
4445
+ "items": {
4446
+ "type": "object",
4447
+ "properties": {
4448
+ "project_id": {
4449
+ "type": "object",
4450
+ "properties": {
4451
+ "identifier": {
4452
+ "type": "string"
4453
+ },
4454
+ "type": {
4455
+ "type": "string",
4456
+ "enum": [
4457
+ "ark",
4458
+ "doi",
4459
+ "handle",
4460
+ "ror",
4461
+ "url",
4462
+ "other"
4463
+ ]
4464
+ }
4465
+ },
4466
+ "required": [
4467
+ "identifier",
4468
+ "type"
4469
+ ],
4470
+ "additionalProperties": false
4471
+ },
4472
+ "funder_id": {
4473
+ "type": "object",
4474
+ "properties": {
4475
+ "identifier": {
4476
+ "type": "string"
4477
+ },
4478
+ "type": {
4479
+ "type": "string",
4480
+ "enum": [
4481
+ "ark",
4482
+ "doi",
4483
+ "handle",
4484
+ "ror",
4485
+ "url",
4486
+ "other"
4487
+ ]
4488
+ }
4489
+ },
4490
+ "required": [
4491
+ "identifier",
4492
+ "type"
4493
+ ],
4494
+ "additionalProperties": false
4495
+ },
4496
+ "project_identifier": {
4497
+ "type": "object",
4498
+ "properties": {
4499
+ "identifier": {
4500
+ "type": "string"
4501
+ },
4502
+ "type": {
4503
+ "type": "string",
4504
+ "enum": [
4505
+ "ark",
4506
+ "doi",
4507
+ "handle",
4508
+ "ror",
4509
+ "url",
4510
+ "other"
4511
+ ]
4512
+ }
4513
+ },
4514
+ "required": [
4515
+ "identifier",
4516
+ "type"
4517
+ ],
4518
+ "additionalProperties": false
4519
+ }
4520
+ },
4521
+ "required": [
4522
+ "project_id",
4523
+ "funder_id",
4524
+ "project_identifier"
4525
+ ],
4526
+ "additionalProperties": false
4527
+ }
4528
+ }
4529
+ },
4530
+ "required": [
4531
+ "rda_schema_version",
4532
+ "provenance",
4533
+ "status",
4534
+ "privacy",
4535
+ "featured"
4536
+ ],
4537
+ "additionalProperties": false
4538
+ }
4539
+ },
4540
+ "type": "object",
4541
+ "required": [
4542
+ "dmp"
4543
+ ],
4544
+ "properties": {
4545
+ "dmp": {
4546
+ "allOf": [
4547
+ {
4548
+ "$ref": "#/$defs/DMPData"
4549
+ },
4550
+ {
4551
+ "$ref": "#/$defs/DMPToolExtension"
4552
+ }
4553
+ ]
4554
+ }
4555
+ }
4556
+ }