uc3-dmp-id 0.0.1

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,1375 @@
1
+ {
2
+ "$id": "https://github.com/CDLUC3/dmp-hub-sam/layer/ruby/config/schemas/author.json",
3
+ "title": "Data Management Plan (DMP)",
4
+ "description": "JSON Schema for a Data Management Plan (DMP)",
5
+ "type": "object",
6
+ "properties": {
7
+ "dmp": {
8
+ "$id": "#/properties/dmp",
9
+ "type": "object",
10
+ "title": "The DMP Schema",
11
+ "properties": {
12
+ "contact": {
13
+ "$id": "#/properties/dmp/properties/contact",
14
+ "type": "object",
15
+ "title": "The DMP Contact Schema",
16
+ "properties": {
17
+ "contact_id": {
18
+ "$id": "#/properties/dmp/properties/contact/properties/contact_id",
19
+ "type": "object",
20
+ "title": "The Contact ID Schema",
21
+ "properties": {
22
+ "identifier": {
23
+ "$id": "#/properties/dmp/properties/contact/properties/contact_id/properties/identifier",
24
+ "type": "string",
25
+ "title": "The DMP Contact Identifier Schema",
26
+ "examples": ["https://orcid.org/0000-0000-0000-0000"]
27
+ },
28
+ "type": {
29
+ "$id": "#/properties/dmp/properties/contact/properties/contact_id/properties/type",
30
+ "type": "string",
31
+ "enum": [
32
+ "orcid",
33
+ "isni",
34
+ "openid",
35
+ "other"
36
+ ],
37
+ "title": "The DMP Contact Identifier Type Schema",
38
+ "description": "Identifier type. Allowed values: orcid, isni, openid, other",
39
+ "examples": ["orcid"]
40
+ }
41
+ },
42
+ "required": [
43
+ "identifier",
44
+ "type"
45
+ ]
46
+ },
47
+ "dmproadmap_affiliation": {
48
+ "$id": "#/properties/dmp/properties/contact/properties/dmproadmap_affiliation",
49
+ "type": "object",
50
+ "title": "The contact's affiliation",
51
+ "properties": {
52
+ "affiliation_id": {
53
+ "$id": "#/properties/dmp/properties/contact/properties/dmproadmap_affiliation/properties/affiliation_id",
54
+ "type": "object",
55
+ "title": "The unique ID of the affiliation",
56
+ "description": "The affiliation's ROR, Crossref funder ID or URL",
57
+ "properties": {
58
+ "identifier": {
59
+ "$id": "#/properties/dmp/properties/contact/properties/dmproadmap_affiliation/properties/affiliation_id/properties/identifier",
60
+ "type": "string",
61
+ "title": "The affiliation ID",
62
+ "description": "ROR ID, Crossref funder ID or URL. Recommended to use Research Organization Registry (ROR). See: https://ror.org",
63
+ "examples": ["https://ror.org/03yrm5c26", "http://dx.doi.org/10.13039/100005595", "http://www.cdlib.org/"]
64
+ },
65
+ "type": {
66
+ "$id": "#/properties/dmp/properties/contact/properties/dmproadmap_affiliation/properties/affiliation_id/properties/type",
67
+ "type": "string",
68
+ "enum": [
69
+ "doi",
70
+ "ror",
71
+ "url"
72
+ ],
73
+ "title": "The affiliation ID type schema",
74
+ "description": "Identifier type. Allowed values: doi, ror, url",
75
+ "examples": ["ror"]
76
+ }
77
+ },
78
+ "required": [
79
+ "identifier",
80
+ "type"
81
+ ]
82
+ },
83
+ "name": {
84
+ "$id": "#/properties/dmp/properties/contact/properties/dmproadmap_affiliation/properties/name",
85
+ "type": "string",
86
+ "title": "Name of the instituion/organization",
87
+ "description": "Official institution/organization name",
88
+ "examples": ["Example University"]
89
+ }
90
+ }
91
+ },
92
+ "mbox": {
93
+ "$id": "#/properties/dmp/properties/contact/properties/mbox",
94
+ "type": "string",
95
+ "format": "email",
96
+ "title": "The Mailbox Schema",
97
+ "description": "Contact Person's E-mail address",
98
+ "examples": ["cc@example.com"]
99
+ },
100
+ "name": {
101
+ "$id": "#/properties/dmp/properties/contact/properties/name",
102
+ "type": "string",
103
+ "title": "The Name Schema",
104
+ "description": "Name of the contact person as Last, First (e.g. 'Doe PhD., Jane A.' or 'Doe, Jane')",
105
+ "examples": ["Doe, Jane"]
106
+ }
107
+ },
108
+ "required": [
109
+ "contact_id",
110
+ "mbox",
111
+ "name"
112
+ ]
113
+ },
114
+ "contributor": {
115
+ "$id": "#/properties/dmp/properties/contributor",
116
+ "type": "array",
117
+ "title": "The Contributor Schema",
118
+ "items": {
119
+ "$id": "#/properties/dmp/properties/contributor/items",
120
+ "type": "object",
121
+ "title": "The Contributor Items Schema",
122
+ "properties": {
123
+ "contributor_id": {
124
+ "$id": "#/properties/dmp/properties/contributor/items/properties/contributor_id",
125
+ "type": "object",
126
+ "title": "The Contributor_id Schema",
127
+ "properties": {
128
+ "identifier": {
129
+ "$id": "#/properties/dmp/properties/contributor/items/properties/contributor_id/properties/identifier",
130
+ "type": "string",
131
+ "title": "The Contributor Identifier Schema",
132
+ "description": "Identifier for a contact person",
133
+ "examples": ["http://orcid.org/0000-0000-0000-0000"]
134
+ },
135
+ "type": {
136
+ "$id": "#/properties/dmp/properties/contributor/items/properties/contributor_id/properties/type",
137
+ "type": "string",
138
+ "enum": [
139
+ "orcid",
140
+ "isni",
141
+ "openid",
142
+ "other"
143
+ ],
144
+ "title": "The Contributor Identifier Type Schema",
145
+ "description": "Identifier type. Allowed values: orcid, isni, openid, other",
146
+ "examples": ["orcid"]
147
+ }
148
+ },
149
+ "required": [
150
+ "identifier",
151
+ "type"
152
+ ]
153
+ },
154
+ "dmproadmap_affiliation": {
155
+ "$id": "#/properties/dmp/properties/contributor/items/properties/dmproadmap_affiliation",
156
+ "type": "object",
157
+ "title": "The contributor's affiliation",
158
+ "properties": {
159
+ "affiliation_id": {
160
+ "$id": "#/properties/dmp/properties/contributor/items/properties/dmproadmap_affiliation/properties/affiliation_id",
161
+ "type": "object",
162
+ "title": "The unique ID of the affiliation",
163
+ "description": "The affiliation's ROR, Crossref funder ID or URL",
164
+ "properties": {
165
+ "identifier": {
166
+ "$id": "#/properties/dmp/properties/contributor/items/properties/dmproadmap_affiliation/properties/affiliation_id/properties/identifier",
167
+ "type": "string",
168
+ "title": "The affiliation ID",
169
+ "description": "ROR ID, Crossref funder ID or URL. Recommended to use Research Organization Registry (ROR). See: https://ror.org",
170
+ "examples": ["https://ror.org/03yrm5c26", "http://dx.doi.org/10.13039/100005595", "http://www.cdlib.org/"]
171
+ },
172
+ "type": {
173
+ "$id": "#/properties/dmp/properties/contributor/items/properties/dmproadmap_affiliation/properties/affiliation_id/properties/type",
174
+ "type": "string",
175
+ "enum": [
176
+ "doi",
177
+ "ror",
178
+ "url"
179
+ ],
180
+ "title": "The affiliation ID type schema",
181
+ "description": "Identifier type. Allowed values: doi, ror, url",
182
+ "examples": ["ror"]
183
+ }
184
+ },
185
+ "required": [
186
+ "identifier",
187
+ "type"
188
+ ]
189
+ },
190
+ "name": {
191
+ "$id": "#/properties/dmp/properties/contributor/items/properties/dmproadmap_affiliation/properties/name",
192
+ "type": "string",
193
+ "title": "Name of the instituion/organization",
194
+ "description": "Official institution/organization name",
195
+ "examples": ["Example University"]
196
+ }
197
+ }
198
+ },
199
+ "mbox": {
200
+ "$id": "#/properties/dmp/properties/contributor/items/properties/mbox",
201
+ "type": "string",
202
+ "title": "The Contributor Mailbox Schema",
203
+ "description": "Contributor Mail address",
204
+ "examples": ["john@smith.com"],
205
+ "format": "email"
206
+ },
207
+ "name": {
208
+ "$id": "#/properties/dmp/properties/contributor/items/properties/name",
209
+ "type": "string",
210
+ "title": "The Name Schema",
211
+ "description": "Name of the contributor as Last, First (e.g. 'Doe PhD., Jane A.' or 'Doe, Jane')",
212
+ "examples": ["Smith, John"]
213
+ },
214
+ "role": {
215
+ "$id": "#/properties/dmp/properties/contributor/items/properties/role",
216
+ "type": "array",
217
+ "title": "The Role Schema",
218
+ "description": "Type of contributor",
219
+ "items": {
220
+ "$id": "#/properties/dmp/properties/contributor/items/properties/role/items",
221
+ "type": "string",
222
+ "title": "The Contributor Role(s) Items Schema",
223
+ "examples": ["Data Steward"]
224
+ },
225
+ "uniqueItems": true
226
+ }
227
+ },
228
+ "required": [
229
+ "name",
230
+ "role"
231
+ ]
232
+ }
233
+ },
234
+ "cost": {
235
+ "$id": "#/properties/dmp/properties/cost",
236
+ "type": "array",
237
+ "title": "The Cost Schema",
238
+ "items": {
239
+ "$id": "#/properties/dmp/properties/cost/items",
240
+ "type": "object",
241
+ "title": "The Cost Items Schema",
242
+ "properties": {
243
+ "currency_code": {
244
+ "$id": "#/properties/dmp/properties/cost/items/properties/currency_code",
245
+ "type": "string",
246
+ "enum": [
247
+ "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN",
248
+ "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL",
249
+ "BSD", "BTN", "BWP", "BYN", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY",
250
+ "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD",
251
+ "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS",
252
+ "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF",
253
+ "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD",
254
+ "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT",
255
+ "LAK", "LBP", "LKR", "LRD", "LSL", "LYD", "MAD", "MDL", "MGA", "MKD",
256
+ "MMK", "MNT", "MOP", "MRU", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN",
257
+ "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK",
258
+ "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR",
259
+ "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL*","SRD",
260
+ "STN", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY",
261
+ "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF",
262
+ "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR",
263
+ "ZMW", "ZWD"
264
+ ],
265
+ "title": "The Cost Currency Code Schema",
266
+ "description": "Allowed values defined by ISO 4217",
267
+ "examples": ["EUR"]
268
+ },
269
+ "description": {
270
+ "$id": "#/properties/dmp/properties/cost/items/properties/description",
271
+ "type": "string",
272
+ "title": "The Cost Description Schema",
273
+ "description": "Cost(s) Description",
274
+ "examples": ["Costs for maintaining..."]
275
+ },
276
+ "title": {
277
+ "$id": "#/properties/dmp/properties/cost/items/properties/title",
278
+ "type": "string",
279
+ "title": "The Cost Title Schema",
280
+ "description": "Title",
281
+ "examples": ["Storage and Backup"]
282
+ },
283
+ "value": {
284
+ "$id": "#/properties/dmp/properties/cost/items/properties/value",
285
+ "type": "number",
286
+ "title": "The Cost Value Schema",
287
+ "description": "Value",
288
+ "examples": [1000]
289
+ }
290
+ },
291
+ "required": ["title"]
292
+ }
293
+ },
294
+ "created": {
295
+ "$id": "#/properties/dmp/properties/created",
296
+ "type": "string",
297
+ "format": "date-time",
298
+ "title": "The DMP Creation Schema",
299
+ "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 compliant string",
300
+ "examples": ["2019-03-13T13:13:00+00:00"]
301
+ },
302
+ "dataset": {
303
+ "$id": "#/properties/dmp/properties/dataset",
304
+ "type": "array",
305
+ "title": "The Dataset Schema",
306
+ "items": {
307
+ "$id": "#/properties/dmp/properties/dataset/items",
308
+ "type": "object",
309
+ "title": "The Dataset Items Schema",
310
+ "properties": {
311
+ "data_quality_assurance": {
312
+ "$id": "#/properties/dmp/properties/dataset/items/properties/data_quality_assurance",
313
+ "type": "array",
314
+ "title": "The Data Quality Assurance Schema",
315
+ "description": "Data Quality Assurance",
316
+ "items": {
317
+ "$id": "#/properties/dmp/properties/dataset/items/properties/data_quality_assurance/items",
318
+ "type": "string",
319
+ "title": "The Data Quality Assurance Schema",
320
+ "examples": ["We use file naming convention..."]
321
+ }
322
+ },
323
+ "dataset_id": {
324
+ "$id": "#/properties/dmp/properties/dataset/items/properties/dataset_id",
325
+ "type": "object",
326
+ "title": "The Dataset ID Schema",
327
+ "description": "Dataset ID",
328
+ "properties": {
329
+ "identifier": {
330
+ "$id": "#/properties/dmp/properties/dataset/items/properties/dataset_id/properties/identifier",
331
+ "type": "string",
332
+ "title": "The Dataset Identifier Schema",
333
+ "description": "Identifier for a dataset",
334
+ "examples": ["https://hdl.handle.net/11353/10.923628"]
335
+ },
336
+ "type": {
337
+ "$id": "#/properties/dmp/properties/dataset/items/properties/dataset_id/properties/type",
338
+ "type": "string",
339
+ "enum": [
340
+ "handle",
341
+ "doi",
342
+ "ark",
343
+ "url",
344
+ "other"
345
+ ],
346
+ "title": "The Dataset Identifier Type Schema",
347
+ "description": "Dataset identifier type. Allowed values: handle, doi, ark, url, other",
348
+ "examples": ["handle"]
349
+ }
350
+ },
351
+ "required": [
352
+ "identifier",
353
+ "type"
354
+ ]
355
+ },
356
+ "description": {
357
+ "$id": "#/properties/dmp/properties/dataset/items/properties/description",
358
+ "type": "string",
359
+ "title": "The Dataset Description Schema",
360
+ "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.",
361
+ "examples": ["Field observation"]
362
+ },
363
+ "distribution": {
364
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution",
365
+ "type": "array",
366
+ "title": "The Dataset Distribution Schema",
367
+ "description": "To provide technical information on a specific instance of data.",
368
+ "items": {
369
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items",
370
+ "type": "object",
371
+ "title": "The Dataset Distribution Items Schema",
372
+ "properties": {
373
+ "access_url": {
374
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/access_url",
375
+ "type": "string",
376
+ "title": "The Dataset Distribution Access URL Schema",
377
+ "description": "A URL of the resource that gives access to a distribution of the dataset. e.g. landing page.",
378
+ "examples": ["http://some.repo"]
379
+ },
380
+ "available_until": {
381
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/available_until",
382
+ "type": "string",
383
+ "format": "date",
384
+ "title": "The Dataset Distribution Available Until Schema",
385
+ "description": "Indicates how long this distribution will be/ should be available. Encoded using the relevant ISO 8601 Date and Time compliant string.",
386
+ "examples": ["2030-06-30"]
387
+ },
388
+ "byte_size": {
389
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/byte_size",
390
+ "type": "integer",
391
+ "title": "The Dataset Distribution Byte Size Schema",
392
+ "description": "Size in bytes.",
393
+ "examples": [690000]
394
+ },
395
+ "data_access": {
396
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/data_access",
397
+ "type": "string",
398
+ "enum": [
399
+ "open",
400
+ "shared",
401
+ "closed"
402
+ ],
403
+ "title": "The Dataset Distribution Data Access Schema",
404
+ "description": "Indicates access mode for data. Allowed values: open, shared, closed",
405
+ "examples": ["open"]
406
+ },
407
+ "description": {
408
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/description",
409
+ "type": "string",
410
+ "title": "The Dataset Distribution Description Schema",
411
+ "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.",
412
+ "examples": ["Best quality data before resizing"]
413
+ },
414
+ "download_url": {
415
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/download_url",
416
+ "type": "string",
417
+ "format": "uri",
418
+ "title": "The Dataset Distribution Download URL Schema",
419
+ "description": "The URL of the downloadable file in a given format. E.g. CSV file or RDF file.",
420
+ "examples": ["http://example.com/download/abc123/download"]
421
+ },
422
+ "format": {
423
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/format",
424
+ "type": "array",
425
+ "title": "The Dataset Distribution Format Schema",
426
+ "description": "Format according to: https://www.iana.org/assignments/media-types/media-types.xhtml if appropriate, otherwise use the common name for this format.",
427
+ "items": {
428
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/format/items",
429
+ "type": "string",
430
+ "title": "The Dataset Distribution Format Items Schema",
431
+ "examples": ["image/tiff"]
432
+ }
433
+ },
434
+ "host": {
435
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host",
436
+ "type": "object",
437
+ "title": "The Dataset Distribution Host Schema",
438
+ "description": "To provide information on quality of service provided by infrastructure (e.g. repository) where data is stored.",
439
+ "properties": {
440
+ "availability": {
441
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/availability",
442
+ "type": "string",
443
+ "title": "The Dataset Distribution Host Availability Schema",
444
+ "description": "Availability",
445
+ "examples": ["99,5"]
446
+ },
447
+ "backup_frequency": {
448
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/backup_frequency",
449
+ "type": "string",
450
+ "title": "The Dataset Distribution Host Backup Frequency Schema",
451
+ "description": "Backup Frequency",
452
+ "examples": ["weekly"]
453
+ },
454
+ "backup_type": {
455
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/backup_type",
456
+ "type": "string",
457
+ "title": "The Dataset Distribution Host Backup Type Schema",
458
+ "description": "Backup Type",
459
+ "examples": ["tapes"]
460
+ },
461
+ "certified_with": {
462
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/certified_with",
463
+ "type": "string",
464
+ "enum": [
465
+ "din31644",
466
+ "dini-zertifikat",
467
+ "dsa",
468
+ "iso16363",
469
+ "iso16919",
470
+ "trac",
471
+ "wds",
472
+ "coretrustseal"
473
+ ],
474
+ "title": "The Dataset Distribution Host Certification Type Schema",
475
+ "description": "Repository certified to a recognised standard. Allowed values: din31644, dini-zertifikat, dsa, iso16363, iso16919, trac, wds, coretrustseal",
476
+ "examples": ["coretrustseal"]
477
+ },
478
+ "description": {
479
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/description",
480
+ "type": "string",
481
+ "title": "The Dataset Distribution Host Description Schema",
482
+ "description": "Description",
483
+ "examples": ["Repository hosted by..."]
484
+ },
485
+ "dmproadmap_host_id": {
486
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/host_id",
487
+ "type": "object",
488
+ "title": "The Host ID",
489
+ "description": "The unique identifier or URL for the host",
490
+ "properties": {
491
+ "identifier": {
492
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/host_id/properties/identifier",
493
+ "type": "string",
494
+ "title": "The Host Identifier",
495
+ "description": "The Host URL or identifier",
496
+ "examples": ["https://www.re3data.org/repository/r3d100000044", "https://example.host.org"]
497
+ },
498
+ "type": {
499
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/host_id/properties/type",
500
+ "type": "string",
501
+ "enum": [
502
+ "handle",
503
+ "doi",
504
+ "ark",
505
+ "url"
506
+ ],
507
+ "title": "The Host Identifier Type Schema",
508
+ "description": "Host identifier type. Allowed values: handle, doi, ark, url",
509
+ "examples": ["url"]
510
+ }
511
+ },
512
+ "required": [
513
+ "identifier",
514
+ "type"
515
+ ]
516
+ },
517
+ "geo_location": {
518
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/geo_location",
519
+ "type": "string",
520
+ "enum": [
521
+ "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA",
522
+ "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV",
523
+ "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU",
524
+ "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES",
525
+ "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM",
526
+ "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE",
527
+ "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM",
528
+ "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY",
529
+ "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT",
530
+ "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU",
531
+ "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA",
532
+ "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM",
533
+ "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL",
534
+ "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE",
535
+ "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW"
536
+ ],
537
+ "title": "The Dataset Distribution Host Geographical Location Schema",
538
+ "description": "Physical location of the data expressed using ISO 3166-1 country code.",
539
+ "examples": ["AT"]
540
+ },
541
+ "pid_system": {
542
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/pid_system",
543
+ "type": "array",
544
+ "title": "The Dataset Distribution Host PID System Schema",
545
+ "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",
546
+ "items": {
547
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/pid_system/items",
548
+ "type": "string",
549
+ "title": "The Dataset Distribution Host PID System Items Schema",
550
+ "enum": [
551
+ "ark",
552
+ "arxiv",
553
+ "bibcode",
554
+ "doi",
555
+ "ean13",
556
+ "eissn",
557
+ "handle",
558
+ "igsn",
559
+ "isbn",
560
+ "issn",
561
+ "istc",
562
+ "lissn",
563
+ "lsid",
564
+ "pmid",
565
+ "purl",
566
+ "upc",
567
+ "url",
568
+ "urn",
569
+ "other"
570
+ ],
571
+ "examples": ["doi"]
572
+ }
573
+ },
574
+ "storage_type": {
575
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/storage_type",
576
+ "type": "string",
577
+ "title": "The Dataset Distribution Host Storage Type Schema",
578
+ "description": "The type of storage required",
579
+ "examples": ["External Hard Drive"]
580
+ },
581
+ "support_versioning": {
582
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/support_versioning",
583
+ "type": "string",
584
+ "enum": [
585
+ "yes",
586
+ "no",
587
+ "unknown"
588
+ ],
589
+ "title": "The Dataset Distribution Host Support Versioning Schema",
590
+ "description": "If host supports versioning. Allowed values: yes, no, unknown",
591
+ "examples": ["yes"]
592
+ },
593
+ "title": {
594
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/title",
595
+ "type": "string",
596
+ "title": "The Dataset Distribution Host Title Schema",
597
+ "description": "Title",
598
+ "examples": ["Super Repository"]
599
+ },
600
+ "url": {
601
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/host/properties/url",
602
+ "type": "string",
603
+ "format": "uri",
604
+ "title": "The Dataset Distribution Host Title Schema",
605
+ "description": "The URL of the system hosting a distribution of a dataset",
606
+ "examples": ["https://zenodo.org"]
607
+ }
608
+ },
609
+ "required": [
610
+ "title",
611
+ "url"
612
+ ]
613
+ },
614
+ "license": {
615
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/license",
616
+ "type": "array",
617
+ "title": "The Dataset Distribution License(s) Schema",
618
+ "description": "To list all licenses applied to a specific distribution of data.",
619
+ "items": {
620
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/license/items",
621
+ "type": "object",
622
+ "title": "The Dataset Distribution License Items",
623
+ "properties": {
624
+ "license_ref": {
625
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/license/items/properties/license_ref",
626
+ "type": "string",
627
+ "format": "uri",
628
+ "title": "The Dataset Distribution License Reference Schema",
629
+ "description": "Link to license document.",
630
+ "examples": ["https://creativecommons.org/licenses/by/4.0/"]
631
+ },
632
+ "start_date": {
633
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/license/items/properties/start_date",
634
+ "type": "string",
635
+ "format": "date",
636
+ "title": "The Dataset Distribution License Start Date Schema",
637
+ "description": "If date is set in the future, it indicates embargo period. Encoded using the relevant ISO 8601 Date and Time compliant string.",
638
+ "examples": ["2019-06-30"]
639
+ }
640
+ },
641
+ "required": [
642
+ "license_ref",
643
+ "start_date"
644
+ ]
645
+ }
646
+ },
647
+ "title": {
648
+ "$id": "#/properties/dmp/properties/dataset/items/properties/distribution/items/properties/title",
649
+ "type": "string",
650
+ "title": "The Dataset Distribution Title Schema",
651
+ "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.",
652
+ "examples": ["Full resolution images"]
653
+ }
654
+ },
655
+ "required": [
656
+ "data_access",
657
+ "title"
658
+ ]
659
+ }
660
+ },
661
+ "issued": {
662
+ "$id": "#/properties/dmp/properties/dataset/items/properties/issued",
663
+ "type": "string",
664
+ "format": "date",
665
+ "title": "The Dataset Date of Issue Schema",
666
+ "description": "Issued. Encoded using the relevant ISO 8601 Date and Time compliant string.",
667
+ "examples": ["2019-06-30"]
668
+ },
669
+ "keyword": {
670
+ "$id": "#/properties/dmp/properties/dataset/items/properties/keyword",
671
+ "type": "array",
672
+ "title": "The Dataset Keyword(s) Schema",
673
+ "description": "Keywords",
674
+ "items": {
675
+ "$id": "#/properties/dmp/properties/dataset/items/properties/keyword/items",
676
+ "type": "string",
677
+ "title": "The Dataset Keyword Items Schema",
678
+ "examples": ["keyword 1, keyword 2"]
679
+ }
680
+ },
681
+ "language": {
682
+ "$id": "#/properties/dmp/properties/dataset/items/properties/language",
683
+ "type": "string",
684
+ "enum": [
685
+ "aar", "abk", "afr", "aka", "amh", "ara", "arg", "asm", "ava", "ave", "aym", "aze", "bak", "bam", "bel", "ben", "bih", "bis", "bod", "bos",
686
+ "bre", "bul", "cat", "ces", "cha", "che", "chu", "chv", "cor", "cos", "cre", "cym", "dan", "deu", "div", "dzo", "ell", "eng", "epo", "est",
687
+ "eus", "ewe", "fao", "fas", "fij", "fin", "fra", "fry", "ful", "gla", "gle", "glg", "glv", "grn", "guj", "hat", "hau", "hbs", "heb", "her",
688
+ "hin", "hmo", "hrv", "hun", "hye", "ibo", "ido", "iii", "iku", "ile", "ina", "ind", "ipk", "isl", "ita", "jav", "jpn", "kal", "kan", "kas",
689
+ "kat", "kau", "kaz", "khm", "kik", "kin", "kir", "kom", "kon", "kor", "kua", "kur", "lao", "lat", "lav", "lim", "lin", "lit", "ltz", "lub",
690
+ "lug", "mah", "mal", "mar", "mkd", "mlg", "mlt", "mon", "mri", "msa", "mya", "nau", "nav", "nbl", "nde", "ndo", "nep", "nld", "nno", "nob",
691
+ "nor", "nya", "oci", "oji", "ori", "orm", "oss", "pan", "pli", "pol", "por", "pus", "que", "roh", "ron", "run", "rus", "sag", "san", "sin",
692
+ "slk", "slv", "sme", "smo", "sna", "snd", "som", "sot", "spa", "sqi", "srd", "srp", "ssw", "sun", "swa", "swe", "tah", "tam", "tat", "tel",
693
+ "tgk", "tgl", "tha", "tir", "ton", "tsn", "tso", "tuk", "tur", "twi", "uig", "ukr", "urd", "uzb", "ven", "vie", "vol", "wln", "wol", "xho",
694
+ "yid", "yor", "zha", "zho", "zul"
695
+ ],
696
+ "title": "The Dataset Language Schema",
697
+ "description": "Language of the dataset expressed using ISO 639-3.",
698
+ "examples": ["eng"]
699
+ },
700
+ "metadata": {
701
+ "$id": "#/properties/dmp/properties/dataset/items/properties/metadata",
702
+ "type": "array",
703
+ "title": "The Dataset Metadata Schema",
704
+ "description": "To describe metadata standards used.",
705
+ "items": {
706
+ "$id": "#/properties/dmp/properties/dataset/items/properties/metadata/items",
707
+ "type": "object",
708
+ "title": "The Dataset Metadata Items Schema",
709
+ "properties": {
710
+ "description": {
711
+ "$id": "#/properties/dmp/properties/dataset/items/properties/metadata/items/properties/description",
712
+ "type": "string",
713
+ "title": "The Dataset Metadata Description Schema",
714
+ "description": "Description",
715
+ "examples": ["Provides taxonomy for..."]
716
+ },
717
+ "language": {
718
+ "$id": "#/properties/dmp/properties/dataset/items/properties/metadata/items/properties/language",
719
+ "type": "string",
720
+ "enum": [
721
+ "aar", "abk", "afr", "aka", "amh", "ara", "arg", "asm", "ava", "ave", "aym", "aze", "bak", "bam", "bel", "ben", "bih", "bis", "bod", "bos",
722
+ "bre", "bul", "cat", "ces", "cha", "che", "chu", "chv", "cor", "cos", "cre", "cym", "dan", "deu", "div", "dzo", "ell", "eng", "epo", "est",
723
+ "eus", "ewe", "fao", "fas", "fij", "fin", "fra", "fry", "ful", "gla", "gle", "glg", "glv", "grn", "guj", "hat", "hau", "hbs", "heb", "her",
724
+ "hin", "hmo", "hrv", "hun", "hye", "ibo", "ido", "iii", "iku", "ile", "ina", "ind", "ipk", "isl", "ita", "jav", "jpn", "kal", "kan", "kas",
725
+ "kat", "kau", "kaz", "khm", "kik", "kin", "kir", "kom", "kon", "kor", "kua", "kur", "lao", "lat", "lav", "lim", "lin", "lit", "ltz", "lub",
726
+ "lug", "mah", "mal", "mar", "mkd", "mlg", "mlt", "mon", "mri", "msa", "mya", "nau", "nav", "nbl", "nde", "ndo", "nep", "nld", "nno", "nob",
727
+ "nor", "nya", "oci", "oji", "ori", "orm", "oss", "pan", "pli", "pol", "por", "pus", "que", "roh", "ron", "run", "rus", "sag", "san", "sin",
728
+ "slk", "slv", "sme", "smo", "sna", "snd", "som", "sot", "spa", "sqi", "srd", "srp", "ssw", "sun", "swa", "swe", "tah", "tam", "tat", "tel",
729
+ "tgk", "tgl", "tha", "tir", "ton", "tsn", "tso", "tuk", "tur", "twi", "uig", "ukr", "urd", "uzb", "ven", "vie", "vol", "wln", "wol", "xho",
730
+ "yid", "yor", "zha", "zho", "zul"
731
+ ],
732
+ "title": "The Dataset Metadata Language Schema",
733
+ "description": "Language of the metadata expressed using ISO 639-3.",
734
+ "examples": ["eng"]
735
+ },
736
+ "metadata_standard_id" : {
737
+ "$id": "#/properties/dmp/properties/dataset/items/properties/metadata/items/properties/metadata_standard_id",
738
+ "type": "object",
739
+ "title": "The Dataset Metadata Standard ID Schema",
740
+ "properties": {
741
+ "identifier": {
742
+ "$id": "#/properties/dmp/properties/dataset/items/properties/metadata/items/properties/metadata_standard_id/identifier",
743
+ "type": "string",
744
+ "title": "The Dataset Metadata Standard Identifier Value Schema",
745
+ "description": "Identifier for the metadata standard used.",
746
+ "examples": ["http://www.dublincore.org/specifications/dublin-core/dcmi-terms/"]
747
+ },
748
+ "type": {
749
+ "$id": "#/properties/dmp/properties/dataset/items/properties/metadata/items/properties/metadata_standard_id/type",
750
+ "type": "string",
751
+ "enum": [
752
+ "url",
753
+ "other"
754
+ ],
755
+ "title": "The Dataset Metadata Standard Identifier Type Schema",
756
+ "description": "Identifier type. Allowed values: url, other",
757
+ "examples": ["url"]
758
+ }
759
+ },
760
+ "required": [
761
+ "identifier",
762
+ "type"
763
+ ]
764
+ }
765
+ },
766
+ "required": [
767
+ "metadata_standard_id"
768
+ ]
769
+ }
770
+ },
771
+ "personal_data": {
772
+ "$id": "#/properties/dmp/properties/dataset/items/properties/personal_data",
773
+ "type": "string",
774
+ "enum": [
775
+ "yes",
776
+ "no",
777
+ "unknown"
778
+ ],
779
+ "title": "The Dataset Personal Data Schema",
780
+ "description": "If any personal data is contained. Allowed values: yes, no, unknown",
781
+ "examples": ["unknown"]
782
+ },
783
+ "preservation_statement": {
784
+ "$id": "#/properties/dmp/properties/dataset/items/properties/preservation_statement",
785
+ "type": "string",
786
+ "title": "The Dataset Preservation Statement Schema",
787
+ "description": "Preservation Statement",
788
+ "examples": ["Must be preserved to enable..."]
789
+ },
790
+ "security_and_privacy": {
791
+ "$id": "#/properties/dmp/properties/dataset/items/properties/security_and_privacy",
792
+ "type": "array",
793
+ "title": "The Dataset Security and Policy Schema",
794
+ "description": "To list all issues and requirements related to security and privacy",
795
+ "items": {
796
+ "$id": "#/properties/dmp/properties/dataset/items/properties/security_and_privacy/items",
797
+ "type": "object",
798
+ "title": "The Dataset Security & Policy Items Schema",
799
+ "properties": {
800
+ "description": {
801
+ "$id": "#/properties/dmp/properties/dataset/items/properties/security_and_privacy/items/properties/description",
802
+ "type": "string",
803
+ "title": "The Dataset Security & Policy Description Schema",
804
+ "description": "Description",
805
+ "examples": ["Server with data must be kept in a locked room"]
806
+ },
807
+ "title": {
808
+ "$id": "#/properties/dmp/properties/dataset/items/properties/security_and_privacy/items/properties/title",
809
+ "type": "string",
810
+ "title": "The Dataset Security & Policy Title Schema",
811
+ "description": "Title",
812
+ "examples": ["Physical access control"]
813
+ }
814
+ },
815
+ "required": ["title"]
816
+ }
817
+ },
818
+ "sensitive_data": {
819
+ "$id": "#/properties/dmp/properties/dataset/items/properties/sensitive_data",
820
+ "type": "string",
821
+ "enum": [
822
+ "yes",
823
+ "no",
824
+ "unknown"
825
+ ],
826
+ "title": "The Dataset Sensitive Data Schema",
827
+ "description": "If any sensitive data is contained. Allowed values: yes, no, unknown",
828
+ "examples": ["unknown"]
829
+ },
830
+ "technical_resource": {
831
+ "$id": "#/properties/dmp/properties/dataset/items/properties/technical_resource",
832
+ "type": "array",
833
+ "title": "The Dataset Technical Resource Schema",
834
+ "description": "To list all technical resources needed to implement a DMP",
835
+ "items": {
836
+ "$id": "#/properties/dmp/properties/dataset/items/properties/technical_resource/items",
837
+ "type": "object",
838
+ "title": "The Dataset Technical Resource Items Schema",
839
+ "properties": {
840
+ "description": {
841
+ "$id": "#/properties/dmp/properties/dataset/items/properties/technical_resource/items/description",
842
+ "type": "string",
843
+ "title": "The Dataset Technical Resource Description Schema",
844
+ "description": "Description of the technical resource",
845
+ "examples": ["Device needed to collect field data..."]
846
+ },
847
+ "dmproadmap_technical_resource_id" : {
848
+ "$id": "#/properties/dmp/properties/dataset/items/properties/technical_resource/items/dmproadmap_technical_resource_id",
849
+ "type": "object",
850
+ "title": "The Dataset Metadata Standard ID Schema",
851
+ "properties": {
852
+ "identifier": {
853
+ "$id": "#/properties/dmp/properties/dataset/items/properties/technical_resource/items/dmproadmap_technical_resource_id/identifier",
854
+ "type": "string",
855
+ "title": "The Technical Resource Identifier Value Schema",
856
+ "description": "Identifier for the metadata standard used.",
857
+ "examples": ["http://www.dublincore.org/specifications/dublin-core/dcmi-terms/"]
858
+ },
859
+ "type": {
860
+ "$id": "#/properties/dmp/properties/dataset/items/properties/technical_resource/items/dmproadmap_technical_resource_id/type",
861
+ "type": "string",
862
+ "enum": [
863
+ "ark",
864
+ "doi",
865
+ "handle",
866
+ "rrid",
867
+ "url",
868
+ "other"
869
+ ],
870
+ "title": "The Technical Resource Identifier Type Schema",
871
+ "description": "Identifier type. Allowed values: url, other",
872
+ "examples": ["url"]
873
+ }
874
+ }
875
+ },
876
+ "name": {
877
+ "$id": "#/properties/dmp/properties/dataset/items/properties/technical_resource/items/name",
878
+ "type": "string",
879
+ "title": "The Dataset Technical Resource Name Schema",
880
+ "description": "Name of the technical resource",
881
+ "examples": ["123/45/43/AT"]
882
+ }
883
+ },
884
+ "required": ["name"]
885
+ }
886
+ },
887
+ "title": {
888
+ "$id": "#/properties/dmp/properties/dataset/items/properties/title",
889
+ "type": "string",
890
+ "title": "The Dataset Title Schema",
891
+ "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.",
892
+ "examples": ["Fast car images"]
893
+ },
894
+ "type": {
895
+ "$id": "#/properties/dmp/properties/dataset/items/properties/type",
896
+ "type": "string",
897
+ "title": "The Dataset Type Schema",
898
+ "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",
899
+ "examples": ["image"]
900
+ }
901
+ },
902
+ "required": [
903
+ "title"
904
+ ]
905
+ }
906
+ },
907
+ "description": {
908
+ "$id": "#/properties/dmp/properties/description",
909
+ "type": "string",
910
+ "title": "The DMP Description Schema",
911
+ "description": "To provide any free-form text information on a DMP",
912
+ "examples": ["This DMP is for our new project"]
913
+ },
914
+ "dmp_id": {
915
+ "$id": "#/properties/dmp/properties/dmp_id",
916
+ "type": "object",
917
+ "title": "The DMP Identifier Schema",
918
+ "description": "Identifier for the DMP itself",
919
+ "properties": {
920
+ "identifier": {
921
+ "$id": "#/properties/dmp/properties/dmp_id/properties/identifier",
922
+ "type": "string",
923
+ "title": "The DMP Identifier Value Schema",
924
+ "description": "Identifier for a DMP",
925
+ "examples": ["https://doi.org/10.1371/journal.pcbi.1006750"]
926
+ },
927
+ "type": {
928
+ "$id": "#/properties/dmp/properties/dmp_id/properties/type",
929
+ "type": "string",
930
+ "enum": [
931
+ "handle",
932
+ "doi",
933
+ "ark",
934
+ "url",
935
+ "other",
936
+ "file"
937
+ ],
938
+ "title": "The DMP Identifier Type Schema",
939
+ "description": "The DMP Identifier Type. Allowed values: handle, doi, ark, url, other, file (note: file is used by DMPHub to handle new PDF uploads)",
940
+ "examples": ["doi"]
941
+ }
942
+ },
943
+ "required": [
944
+ "identifier",
945
+ "type"
946
+ ]
947
+ },
948
+ "dmproadmap_related_identifiers": {
949
+ "$id": "#/properties/dmp/properties/dmproadmap_related_identifiers",
950
+ "type": "array",
951
+ "title": "Related identifiers for the DMP",
952
+ "description": "Identifiers for objects related to the DMP (e.g. datasets, publications, etc.)",
953
+ "items": {
954
+ "$id": "#/properties/dmp/properties/dmproadmap_related_identifiers/items",
955
+ "type": "object",
956
+ "title": "A related identifier",
957
+ "properties": {
958
+ "descriptor": {
959
+ "$id": "#/properties/dmp/properties/dmproadmap_related_identifiers/items/properties/descriptor",
960
+ "type": "string",
961
+ "enum": [
962
+ "is_cited_by",
963
+ "cites",
964
+ "is_supplement_to",
965
+ "is_supplemented_by",
966
+ "is_described_by",
967
+ "describes",
968
+ "has_metadata",
969
+ "is_metadata_for",
970
+ "is_part_of",
971
+ "has_part",
972
+ "is_referenced_by",
973
+ "references",
974
+ "is_documented_by",
975
+ "documents",
976
+ "is_new_version_of",
977
+ "is_previous_version_of"
978
+ ]
979
+ },
980
+ "identifier": {
981
+ "$id": "#/properties/dmp/properties/dmproadmap_related_identifiers/items/properties/identifier",
982
+ "type": "string",
983
+ "title": "A unique identifier for the item",
984
+ "description": "Identifier for a DMP",
985
+ "examples": ["https://doi.org/10.1371/journal.pcbi.1006750"]
986
+ },
987
+ "type": {
988
+ "$id": "#/properties/dmp/properties/dmproadmap_related_identifiers/items/properties/type",
989
+ "type": "string",
990
+ "enum": [
991
+ "handle",
992
+ "doi",
993
+ "ark",
994
+ "url",
995
+ "other"
996
+ ]
997
+ },
998
+ "work_type": {
999
+ "$id": "#/properties/dmp/properties/dmproadmap_related_identifiers/items/properties/work_type",
1000
+ "type": "string",
1001
+ "enum": [
1002
+ "article",
1003
+ "book",
1004
+ "dataset",
1005
+ "metadata_template",
1006
+ "other",
1007
+ "output_management_plan",
1008
+ "paper",
1009
+ "preprint",
1010
+ "preregistration",
1011
+ "protocol",
1012
+ "software",
1013
+ "supplemental_information"
1014
+ ]
1015
+ }
1016
+ },
1017
+ "required": [
1018
+ "descriptor",
1019
+ "identifier",
1020
+ "type",
1021
+ "work_type"
1022
+ ]
1023
+ }
1024
+ },
1025
+ "dmproadmap_research_facilities": {
1026
+ "$id": "#/properties/dmp/properties/dmproadmap_research_facilities",
1027
+ "type": "array",
1028
+ "title": "Facilities",
1029
+ "description": "Facilities (e.g. labs and research stations) that will be used to collect/process research data",
1030
+ "items": {
1031
+ "$id": "#/properties/dmp/properties/dmproadmap_research_facilities/items",
1032
+ "type": "object",
1033
+ "title": "A research facility",
1034
+ "properties": {
1035
+ "facility_id": {
1036
+ "$id": "#/properties/dmp/properties/dmproadmap_research_facilities/items/properties/facility_id",
1037
+ "type": "object",
1038
+ "title": "The unique ID of the facility",
1039
+ "description": "The facility's ROR, DOI or URL",
1040
+ "properties": {
1041
+ "identifier": {
1042
+ "$id": "#/properties/dmp/properties/dmproadmap_research_facilities/items/properties/facility_id/properties/identifier",
1043
+ "type": "string",
1044
+ "title": "The facility ID",
1045
+ "description": "ROR ID, DOI or URL. Recommended to use Research Organization Registry (ROR) or DOI when available. See: https://ror.org",
1046
+ "examples": ["https://ror.org/03yrm5c26", "http://doi.org/10.13039/100005595", "http://www.cdlib.org/"]
1047
+ },
1048
+ "type": {
1049
+ "$id": "#/properties/dmp/properties/dmproadmap_research_facilities/items/properties/facility_id/properties/type",
1050
+ "type": "string",
1051
+ "enum": [
1052
+ "doi",
1053
+ "ror",
1054
+ "url"
1055
+ ],
1056
+ "title": "The facility ID type schema",
1057
+ "description": "Identifier type. Allowed values: doi, ror, url",
1058
+ "examples": ["ror"]
1059
+ }
1060
+ },
1061
+ "required": [
1062
+ "identifier",
1063
+ "type"
1064
+ ]
1065
+ },
1066
+ "name": {
1067
+ "$id": "#/properties/dmp/properties/dmproadmap_research_facilities/items/properties/name",
1068
+ "type": "string",
1069
+ "title": "Name of the facility",
1070
+ "description": "Official facility name",
1071
+ "examples": ["Example Research Lab"]
1072
+ },
1073
+ "type": {
1074
+ "$id": "#/properties/dmp/properties/dmproadmap_research_facilities/items/properties/type",
1075
+ "type": "string",
1076
+ "enum": [
1077
+ "field_station",
1078
+ "laboratory"
1079
+ ],
1080
+ "title": "The type of facility",
1081
+ "examples": ["field_station"]
1082
+ }
1083
+ },
1084
+ "required": [
1085
+ "name",
1086
+ "type"
1087
+ ]
1088
+ }
1089
+ },
1090
+ "ethical_issues_description": {
1091
+ "$id": "#/properties/dmp/properties/ethical_issues_description",
1092
+ "type": "string",
1093
+ "title": "The DMP Ethical Issues Description Schema",
1094
+ "description": "To describe ethical issues directly in a DMP",
1095
+ "examples": ["There are ethical issues, because..."]
1096
+ },
1097
+ "ethical_issues_exist": {
1098
+ "$id": "#/properties/dmp/properties/ethical_issues_exist",
1099
+ "type": "string",
1100
+ "enum": [
1101
+ "yes",
1102
+ "no",
1103
+ "unknown"
1104
+ ],
1105
+ "title": "The DMP Ethical Issues Exist Schema",
1106
+ "description": "To indicate whether there are ethical issues related to data that this DMP describes. Allowed values: yes, no, unknown",
1107
+ "examples": ["yes"]
1108
+ },
1109
+ "ethical_issues_report": {
1110
+ "$id": "#/properties/dmp/properties/ethical_issues_report",
1111
+ "type": "string",
1112
+ "format": "uri",
1113
+ "title": "The DMP Ethical Issues Report Schema",
1114
+ "description": "To indicate where a protocol from a meeting with an ethical commitee can be found",
1115
+ "examples": ["http://report.location"]
1116
+ },
1117
+ "language": {
1118
+ "$id": "#/properties/dmp/properties/language",
1119
+ "type": "string",
1120
+ "enum": [
1121
+ "aar", "abk", "afr", "aka", "amh", "ara", "arg", "asm", "ava", "ave", "aym", "aze", "bak", "bam", "bel", "ben", "bih", "bis", "bod", "bos",
1122
+ "bre", "bul", "cat", "ces", "cha", "che", "chu", "chv", "cor", "cos", "cre", "cym", "dan", "deu", "div", "dzo", "ell", "eng", "epo", "est",
1123
+ "eus", "ewe", "fao", "fas", "fij", "fin", "fra", "fry", "ful", "gla", "gle", "glg", "glv", "grn", "guj", "hat", "hau", "hbs", "heb", "her",
1124
+ "hin", "hmo", "hrv", "hun", "hye", "ibo", "ido", "iii", "iku", "ile", "ina", "ind", "ipk", "isl", "ita", "jav", "jpn", "kal", "kan", "kas",
1125
+ "kat", "kau", "kaz", "khm", "kik", "kin", "kir", "kom", "kon", "kor", "kua", "kur", "lao", "lat", "lav", "lim", "lin", "lit", "ltz", "lub",
1126
+ "lug", "mah", "mal", "mar", "mkd", "mlg", "mlt", "mon", "mri", "msa", "mya", "nau", "nav", "nbl", "nde", "ndo", "nep", "nld", "nno", "nob",
1127
+ "nor", "nya", "oci", "oji", "ori", "orm", "oss", "pan", "pli", "pol", "por", "pus", "que", "roh", "ron", "run", "rus", "sag", "san", "sin",
1128
+ "slk", "slv", "sme", "smo", "sna", "snd", "som", "sot", "spa", "sqi", "srd", "srp", "ssw", "sun", "swa", "swe", "tah", "tam", "tat", "tel",
1129
+ "tgk", "tgl", "tha", "tir", "ton", "tsn", "tso", "tuk", "tur", "twi", "uig", "ukr", "urd", "uzb", "ven", "vie", "vol", "wln", "wol", "xho",
1130
+ "yid", "yor", "zha", "zho", "zul"
1131
+ ],
1132
+ "title": "The DMP Language Schema",
1133
+ "description": "Language of the DMP expressed using ISO 639-3.",
1134
+ "examples": ["eng"]
1135
+ },
1136
+ "modified": {
1137
+ "$id": "#/properties/dmp/properties/modified",
1138
+ "type": "string",
1139
+ "format": "date-time",
1140
+ "title": "The DMP Modification Schema",
1141
+ "description": "Must be set each time DMP is modified. Indicates DMP version. Encoded using the relevant ISO 8601 Date and Time compliant string.",
1142
+ "examples": ["2020-03-14T10:53:49+00:00"]
1143
+ },
1144
+ "project": {
1145
+ "$id": "#/properties/dmp/properties/project",
1146
+ "type": "array",
1147
+ "title": "The DMP Project Schema",
1148
+ "description": "Project related to a DMP",
1149
+ "items": {
1150
+ "$id": "#/properties/dmp/properties/project/items",
1151
+ "type": "object",
1152
+ "title": "The DMP Project Items Schema",
1153
+ "properties": {
1154
+ "description": {
1155
+ "$id": "#/properties/dmp/properties/project/items/properties/description",
1156
+ "type": "string",
1157
+ "title": "The DMP Project Description Schema",
1158
+ "description": "Project description",
1159
+ "examples": ["Project develops novel..."]
1160
+ },
1161
+ "end": {
1162
+ "$id": "#/properties/dmp/properties/project/items/properties/end",
1163
+ "type": "string",
1164
+ "format": "date",
1165
+ "title": "The DMP Project End Date Schema",
1166
+ "description": "Project end date. Encoded using the relevant ISO 8601 Date and Time compliant string.",
1167
+ "examples": ["2020-03-31"]
1168
+ },
1169
+ "funding": {
1170
+ "$id": "#/properties/dmp/properties/project/items/properties/funding",
1171
+ "type": "array",
1172
+ "title": "The DMP Project Funding Schema",
1173
+ "description": "Funding related with a project",
1174
+ "items": {
1175
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/items",
1176
+ "type": "object",
1177
+ "title": "The DMP Project Funding Items Schema",
1178
+ "properties": {
1179
+ "dmproadmap_funded_affiliations": {
1180
+ "$id": "#/properties/dmp/properties/project/items/properties/funding//items/properties/dmproadmap_funded_affiliations",
1181
+ "type": "array",
1182
+ "title": "Institutions named on the grant",
1183
+ "description": "The institutions who received the funding",
1184
+ "items": {
1185
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/items/properties/dmproadmap_funded_affiliations/items",
1186
+ "type": "object",
1187
+ "title": "An institution that received funding",
1188
+ "properties": {
1189
+ "affiliation_id": {
1190
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/items/properties/dmproadmap_funded_affiliations/items/properties/affiliation_id",
1191
+ "type": "object",
1192
+ "title": "The funded affiliation's ID",
1193
+ "description": "Affiliation ID of the associated project",
1194
+ "properties": {
1195
+ "identifier": {
1196
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/items/properties/dmproadmap_funded_affiliations/items/properties/affiliation_id/properties/identifier",
1197
+ "type": "string",
1198
+ "title": "The affiliation ID",
1199
+ "description": "ROR ID or URL. Recommended to use Research Organization Registry (ROR). See: https://ror.org",
1200
+ "examples": ["https://ror.org/00pjdza24", "https://cdlib.org"]
1201
+ },
1202
+ "type": {
1203
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/items/properties/dmproadmap_funded_affiliations/items/properties/affiliation_id/properties/type",
1204
+ "type": "string",
1205
+ "enum": [
1206
+ "doi",
1207
+ "ror",
1208
+ "url"
1209
+ ],
1210
+ "title": "The affiliation ID Type Schema",
1211
+ "description": "Identifier type. Allowed values: doi, ror, url",
1212
+ "examples": ["ror"]
1213
+ }
1214
+ },
1215
+ "required": [
1216
+ "identifier",
1217
+ "type"
1218
+ ]
1219
+ },
1220
+ "name": {
1221
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/items/properties/dmproadmap_funded_affiliations/items/properties/name",
1222
+ "type": "string",
1223
+ "title": "The name of the instituion / organization",
1224
+ "description": "Project title",
1225
+ "examples": ["Our New Project"]
1226
+ }
1227
+ }
1228
+ }
1229
+ },
1230
+ "dmproadmap_opportunity_number": {
1231
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/properties/dmproadmap_opportunity_number",
1232
+ "type": "string",
1233
+ "title": "The funder's opportunity / award number",
1234
+ "description": "The funder's number used to identify the award or call for submissions",
1235
+ "examples": ["Award-123"]
1236
+ },
1237
+ "dmproadmap_project_number": {
1238
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/properties/dmproadmap_project_number",
1239
+ "type": "string",
1240
+ "title": "The funder's identifier for the research project",
1241
+ "description": "The funder's identifier used to identify the research project",
1242
+ "examples": ["prj-XYZ987-UCB"]
1243
+ },
1244
+ "funder_id": {
1245
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/properties/funder_id",
1246
+ "type": "object",
1247
+ "title": "The Funder ID Schema",
1248
+ "description": "Funder ID of the associated project",
1249
+ "properties": {
1250
+ "identifier": {
1251
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/properties/funder_id/properties/identifier",
1252
+ "type": "string",
1253
+ "title": "The Funder ID Value Schema",
1254
+ "description": "Funder ID, recommended to use CrossRef Funder Registry. See: https://www.crossref.org/services/funder-registry/",
1255
+ "examples": ["501100002428"]
1256
+ },
1257
+ "type": {
1258
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/properties/funder_id/properties/type",
1259
+ "type": "string",
1260
+ "enum": [
1261
+ "fundref",
1262
+ "ror",
1263
+ "url",
1264
+ "other"
1265
+ ],
1266
+ "title": "The Funder ID Type Schema",
1267
+ "description": "Identifier type. Allowed values: fundref, url, other",
1268
+ "examples": ["fundref"]
1269
+ }
1270
+ },
1271
+ "required": [
1272
+ "identifier",
1273
+ "type"
1274
+ ]
1275
+ },
1276
+ "funding_status": {
1277
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/properties/funding_status",
1278
+ "type": "string",
1279
+ "enum": [
1280
+ "planned",
1281
+ "applied",
1282
+ "granted",
1283
+ "rejected"
1284
+ ],
1285
+ "title": "The Funding Status Schema",
1286
+ "description": "To express different phases of project lifecycle. Allowed values: planned, applied, granted, rejected",
1287
+ "examples": ["granted"]
1288
+ },
1289
+ "grant_id": {
1290
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/properties/grant_id",
1291
+ "type": "object",
1292
+ "title": "The Funding Grant ID Schema",
1293
+ "description": "Grant ID of the associated project",
1294
+ "properties": {
1295
+ "identifier": {
1296
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/properties/grant_id/properties/identifier",
1297
+ "type": "string",
1298
+ "title": "The Funding Grant ID Value Schema",
1299
+ "description": "Grant ID",
1300
+ "examples": ["776242"]
1301
+ },
1302
+ "type": {
1303
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/properties/grant_id/properties/type",
1304
+ "type": "string",
1305
+ "title": "The Funding Grant ID Type Schema",
1306
+ "enum": [
1307
+ "url",
1308
+ "other"
1309
+ ],
1310
+ "description": "Identifier type. Allowed values: url, other",
1311
+ "examples": ["other"]
1312
+ }
1313
+ },
1314
+ "required": [
1315
+ "identifier",
1316
+ "type"
1317
+ ]
1318
+ },
1319
+ "name": {
1320
+ "$id": "#/properties/dmp/properties/project/items/properties/funding/properties/name",
1321
+ "type": "string",
1322
+ "title": "The name of the funding instituion / organization",
1323
+ "description": "Name",
1324
+ "examples": ["National Science Foundation"]
1325
+ }
1326
+ },
1327
+ "required": [
1328
+ "funding_status",
1329
+ "name"
1330
+ ]
1331
+ }
1332
+ },
1333
+ "start": {
1334
+ "$id": "#/properties/dmp/properties/project/items/properties/start",
1335
+ "type": "string",
1336
+ "format": "date",
1337
+ "title": "The DMP Project Start Date Schema",
1338
+ "description": "Project start date. Encoded using the relevant ISO 8601 Date and Time compliant string.",
1339
+ "examples": ["2019-04-01"]
1340
+ },
1341
+ "title": {
1342
+ "$id": "#/properties/dmp/properties/project/items/properties/title",
1343
+ "type": "string",
1344
+ "title": "The DMP Project Title Schema",
1345
+ "description": "Project title",
1346
+ "examples": ["Our New Project"]
1347
+ }
1348
+ },
1349
+ "required": [
1350
+ "title"
1351
+ ]
1352
+ }
1353
+ },
1354
+ "title": {
1355
+ "$id": "#/properties/dmp/properties/title",
1356
+ "type": "string",
1357
+ "title": "The DMP Title Schema",
1358
+ "description": "Title of a DMP",
1359
+ "examples": ["DMP for our new project"]
1360
+ }
1361
+ },
1362
+ "required": [
1363
+ "contact",
1364
+ "created",
1365
+ "dataset",
1366
+ "dmp_id",
1367
+ "modified",
1368
+ "project",
1369
+ "title"
1370
+ ]
1371
+ }
1372
+ },
1373
+ "additionalProperties": false,
1374
+ "required": ["dmp"]
1375
+ }