@dmptool/types 2.0.0 → 2.1.0
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.
- package/dist/dmp/__tests__/commonStandard.spec.d.ts +1 -0
- package/dist/dmp/__tests__/commonStandard.spec.js +210 -0
- package/dist/dmp/__tests__/extensions.spec.d.ts +1 -0
- package/dist/dmp/__tests__/extensions.spec.js +99 -0
- package/dist/dmp/extension.d.ts +1006 -0
- package/dist/dmp/extension.js +234 -0
- package/dist/dmp/index.d.ts +9 -0
- package/dist/dmp/index.js +23 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/questions/index.d.ts +2 -22
- package/dist/questions/tableQuestions.d.ts +323 -25
- package/dist/questions/tableQuestions.js +3 -2
- package/dist/schemas/affiliationSearchAnswer.schema.json +47 -0
- package/dist/schemas/affiliationSearchQuestion.schema.json +142 -0
- package/dist/schemas/anyAnswer.schema.json +1426 -0
- package/dist/schemas/anyQuestion.schema.json +4744 -0
- package/dist/schemas/anyTableColumnAnswer.schema.json +687 -0
- package/dist/schemas/anyTableColumnQuestion.schema.json +1527 -0
- package/dist/schemas/booleanAnswer.schema.json +33 -0
- package/dist/schemas/booleanQuestion.schema.json +52 -0
- package/dist/schemas/checkboxesAnswer.schema.json +38 -0
- package/dist/schemas/checkboxesQuestion.schema.json +77 -0
- package/dist/schemas/currencyAnswer.schema.json +33 -0
- package/dist/schemas/currencyQuestion.schema.json +70 -0
- package/dist/schemas/dateAnswer.schema.json +33 -0
- package/dist/schemas/datePickerAnswer.schema.json +37 -0
- package/dist/schemas/datePickerQuestion.schema.json +52 -0
- package/dist/schemas/dateQuestion.schema.json +63 -0
- package/dist/schemas/dateRangeAnswer.schema.json +47 -0
- package/dist/schemas/dateRangeQuestion.schema.json +121 -0
- package/dist/schemas/dmp.schema.json +2070 -0
- package/dist/schemas/dmpExtension.schema.json +1874 -0
- package/dist/schemas/emailAnswer.schema.json +33 -0
- package/dist/schemas/emailQuestion.schema.json +68 -0
- package/dist/schemas/filteredSearchAnswer.schema.json +40 -0
- package/dist/schemas/filteredSearchQuestion.schema.json +130 -0
- package/dist/schemas/licenseSearchAnswer.schema.json +51 -0
- package/dist/schemas/licenseSearchQuestion.schema.json +140 -0
- package/dist/schemas/metadataStandardSearchAnswer.schema.json +51 -0
- package/dist/schemas/metadataStandardSearchQuestion.schema.json +141 -0
- package/dist/schemas/multiselectBoxAnswer.schema.json +38 -0
- package/dist/schemas/multiselectBoxQuestion.schema.json +84 -0
- package/dist/schemas/numberAnswer.schema.json +33 -0
- package/dist/schemas/numberQuestion.schema.json +65 -0
- package/dist/schemas/numberRangeAnswer.schema.json +47 -0
- package/dist/schemas/numberRangeQuestion.schema.json +125 -0
- package/dist/schemas/numberWithContextAnswer.schema.json +47 -0
- package/dist/schemas/numberWithContextQuestion.schema.json +95 -0
- package/dist/schemas/radioButtonsAnswer.schema.json +33 -0
- package/dist/schemas/radioButtonsQuestion.schema.json +77 -0
- package/dist/schemas/repositorySearchAnswer.schema.json +51 -0
- package/dist/schemas/repositorySearchQuestion.schema.json +140 -0
- package/dist/schemas/researchOutputTableAnswer.schema.json +16730 -0
- package/dist/schemas/researchOutputTableQuestion.schema.json +140 -0
- package/dist/schemas/selectBoxAnswer.schema.json +33 -0
- package/dist/schemas/selectBoxQuestion.schema.json +84 -0
- package/dist/schemas/tableAnswer.schema.json +740 -0
- package/dist/schemas/tableQuestion.schema.json +1629 -0
- package/dist/schemas/textAnswer.schema.json +33 -0
- package/dist/schemas/textAreaAnswer.schema.json +33 -0
- package/dist/schemas/textAreaQuestion.schema.json +78 -0
- package/dist/schemas/textQuestion.schema.json +63 -0
- package/dist/schemas/typeaheadSearchAnswer.schema.json +37 -0
- package/dist/schemas/typeaheadSearchQuestion.schema.json +120 -0
- package/dist/schemas/urlAnswer.schema.json +33 -0
- package/dist/schemas/urlQuestion.schema.json +63 -0
- package/package.json +5 -2
|
@@ -0,0 +1,2070 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://github.com/RDA-DMP-Common/RDA-DMP-Common-Standard/tree/master/examples/JSON/JSON-schema/1.2",
|
|
4
|
+
"title": "RDA DMP Common Standard for machine-actionable Data Management Plans",
|
|
5
|
+
"description": "This is a metadata application profile to provide basic interoperability between systems producing or consuming machine-actionable data management plans (maDMPS). Further fields can be added in specific deployments, but they do not guarantee interoperability. DMP tools can use any other fields in their internal data models.\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.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"dmp": {
|
|
9
|
+
"$ref": "#/$defs/DMPData"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"required": [
|
|
13
|
+
"dmp"
|
|
14
|
+
],
|
|
15
|
+
"$defs": {
|
|
16
|
+
"Affiliation": {
|
|
17
|
+
"type": "object",
|
|
18
|
+
"title": "Affiliation",
|
|
19
|
+
"properties": {
|
|
20
|
+
"affiliation_id": {
|
|
21
|
+
"$ref": "#/$defs/AffiliationID"
|
|
22
|
+
},
|
|
23
|
+
"name": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"title": "Name",
|
|
26
|
+
"description": "Name of the affiliation",
|
|
27
|
+
"examples": [
|
|
28
|
+
"Some University"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"required": [
|
|
33
|
+
"affiliation_id",
|
|
34
|
+
"name"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"AffiliationID": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"title": "Affiliation ID",
|
|
40
|
+
"properties": {
|
|
41
|
+
"identifier": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"title": "Identifier",
|
|
44
|
+
"examples": [
|
|
45
|
+
"03yrm5c26"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
"type": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"title": "Type",
|
|
51
|
+
"description": "Identifier type. Suggested Values: ror, grid, isni, other",
|
|
52
|
+
"examples": [
|
|
53
|
+
"ror"
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"required": [
|
|
58
|
+
"identifier",
|
|
59
|
+
"type"
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"AlternateIdentifier": {
|
|
63
|
+
"type": "object",
|
|
64
|
+
"title": "Alternate Identifier",
|
|
65
|
+
"properties": {
|
|
66
|
+
"identifier": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"title": "Identifier",
|
|
69
|
+
"description": "Alternate identifier value",
|
|
70
|
+
"examples": [
|
|
71
|
+
"E-GEOD-34814"
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
"type": {
|
|
75
|
+
"type": "string",
|
|
76
|
+
"title": "Type",
|
|
77
|
+
"description": "Type of alternate identifier",
|
|
78
|
+
"examples": [
|
|
79
|
+
"accession number",
|
|
80
|
+
"doi"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"required": [
|
|
85
|
+
"identifier",
|
|
86
|
+
"type"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
"Booleanish": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"enum": [
|
|
92
|
+
"yes",
|
|
93
|
+
"no",
|
|
94
|
+
"unknown"
|
|
95
|
+
],
|
|
96
|
+
"title": "Booleanish",
|
|
97
|
+
"description": "To indicate whether there are ethical issues related to data that this DMP describes. Allowed values: yes, no, unknown",
|
|
98
|
+
"examples": [
|
|
99
|
+
"yes"
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
"Certification": {
|
|
103
|
+
"type": "string",
|
|
104
|
+
"enum": [
|
|
105
|
+
"din31644",
|
|
106
|
+
"dini-zertifikat",
|
|
107
|
+
"dsa",
|
|
108
|
+
"iso16363",
|
|
109
|
+
"iso16919",
|
|
110
|
+
"trac",
|
|
111
|
+
"wds",
|
|
112
|
+
"coretrustseal"
|
|
113
|
+
],
|
|
114
|
+
"title": "Certification",
|
|
115
|
+
"description": "Repository certified to a recognised standard. Allowed values: din31644, dini-zertifikat, dsa, iso16363, iso16919, trac, wds, coretrustseal",
|
|
116
|
+
"examples": [
|
|
117
|
+
"coretrustseal"
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
"Contact": {
|
|
121
|
+
"type": "object",
|
|
122
|
+
"title": "Contact",
|
|
123
|
+
"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.",
|
|
124
|
+
"properties": {
|
|
125
|
+
"affiliation": {
|
|
126
|
+
"type": "array",
|
|
127
|
+
"title": "Affiliations",
|
|
128
|
+
"description": "Affiliation(s) of the contact",
|
|
129
|
+
"items": {
|
|
130
|
+
"$ref": "#/$defs/Affiliation"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"contact_id": {
|
|
134
|
+
"oneOf": [
|
|
135
|
+
{
|
|
136
|
+
"$ref": "#/$defs/ContactID"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"type": "array",
|
|
140
|
+
"items": {
|
|
141
|
+
"$ref": "#/$defs/ContactID"
|
|
142
|
+
},
|
|
143
|
+
"minItems": 1
|
|
144
|
+
}
|
|
145
|
+
]
|
|
146
|
+
},
|
|
147
|
+
"mbox": {
|
|
148
|
+
"type": "string",
|
|
149
|
+
"format": "email",
|
|
150
|
+
"title": "Mailbox",
|
|
151
|
+
"description": "Contact Person's E-mail address",
|
|
152
|
+
"examples": [
|
|
153
|
+
"cc@example.com"
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
"name": {
|
|
157
|
+
"type": "string",
|
|
158
|
+
"title": "Name",
|
|
159
|
+
"description": "Name of the contact person",
|
|
160
|
+
"examples": [
|
|
161
|
+
"Charlie Chaplin"
|
|
162
|
+
]
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"required": [
|
|
166
|
+
"contact_id",
|
|
167
|
+
"mbox",
|
|
168
|
+
"name"
|
|
169
|
+
]
|
|
170
|
+
},
|
|
171
|
+
"ContactID": {
|
|
172
|
+
"type": "object",
|
|
173
|
+
"title": "Contact ID",
|
|
174
|
+
"properties": {
|
|
175
|
+
"identifier": {
|
|
176
|
+
"type": "string",
|
|
177
|
+
"title": "Identifier",
|
|
178
|
+
"examples": [
|
|
179
|
+
"0000-0003-0644-4174"
|
|
180
|
+
]
|
|
181
|
+
},
|
|
182
|
+
"type": {
|
|
183
|
+
"type": "string",
|
|
184
|
+
"title": "Type",
|
|
185
|
+
"description": "Identifier type. Suggested values: orcid, isni, openid",
|
|
186
|
+
"examples": [
|
|
187
|
+
"orcid"
|
|
188
|
+
]
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"required": [
|
|
192
|
+
"identifier",
|
|
193
|
+
"type"
|
|
194
|
+
]
|
|
195
|
+
},
|
|
196
|
+
"Contributor": {
|
|
197
|
+
"type": "object",
|
|
198
|
+
"title": "Contributor",
|
|
199
|
+
"properties": {
|
|
200
|
+
"affiliation": {
|
|
201
|
+
"type": "array",
|
|
202
|
+
"title": "Affiliations",
|
|
203
|
+
"description": "Affiliation(s) of the contributor",
|
|
204
|
+
"items": {
|
|
205
|
+
"$ref": "#/$defs/Affiliation"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"contributor_id": {
|
|
209
|
+
"oneOf": [
|
|
210
|
+
{
|
|
211
|
+
"$ref": "#/$defs/ContributorID"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"type": "array",
|
|
215
|
+
"items": {
|
|
216
|
+
"$ref": "#/$defs/ContributorID"
|
|
217
|
+
},
|
|
218
|
+
"minItems": 0
|
|
219
|
+
}
|
|
220
|
+
]
|
|
221
|
+
},
|
|
222
|
+
"mbox": {
|
|
223
|
+
"type": "string",
|
|
224
|
+
"title": "Mailbox",
|
|
225
|
+
"description": "E-mail address for a contributor",
|
|
226
|
+
"examples": [
|
|
227
|
+
"john@smith.com"
|
|
228
|
+
],
|
|
229
|
+
"format": "email"
|
|
230
|
+
},
|
|
231
|
+
"name": {
|
|
232
|
+
"type": "string",
|
|
233
|
+
"title": "Name",
|
|
234
|
+
"description": "Name of the contributor",
|
|
235
|
+
"examples": [
|
|
236
|
+
"John Smith"
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
"role": {
|
|
240
|
+
"$ref": "#/$defs/ContributorRoles"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"required": [
|
|
244
|
+
"contributor_id",
|
|
245
|
+
"name",
|
|
246
|
+
"role"
|
|
247
|
+
]
|
|
248
|
+
},
|
|
249
|
+
"ContributorID": {
|
|
250
|
+
"type": "object",
|
|
251
|
+
"title": "Contributor ID",
|
|
252
|
+
"properties": {
|
|
253
|
+
"identifier": {
|
|
254
|
+
"type": "string",
|
|
255
|
+
"title": "Identifier",
|
|
256
|
+
"examples": [
|
|
257
|
+
"0000-0003-0644-4174"
|
|
258
|
+
]
|
|
259
|
+
},
|
|
260
|
+
"type": {
|
|
261
|
+
"type": "string",
|
|
262
|
+
"title": "Type",
|
|
263
|
+
"description": "Identifier type. Suggested values: orcid, isni, openid",
|
|
264
|
+
"examples": [
|
|
265
|
+
"orcid"
|
|
266
|
+
]
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
"required": [
|
|
270
|
+
"identifier",
|
|
271
|
+
"type"
|
|
272
|
+
]
|
|
273
|
+
},
|
|
274
|
+
"ContributorRole": {
|
|
275
|
+
"type": "string",
|
|
276
|
+
"title": "Contributor Role",
|
|
277
|
+
"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/).",
|
|
278
|
+
"examples": [
|
|
279
|
+
"DataManager",
|
|
280
|
+
"Researcher"
|
|
281
|
+
]
|
|
282
|
+
},
|
|
283
|
+
"ContributorRoles": {
|
|
284
|
+
"type": "array",
|
|
285
|
+
"title": "Contributor Roles",
|
|
286
|
+
"description": "Type of contributor",
|
|
287
|
+
"items": {
|
|
288
|
+
"$ref": "#/$defs/ContributorRole"
|
|
289
|
+
},
|
|
290
|
+
"uniqueItems": true
|
|
291
|
+
},
|
|
292
|
+
"Contributors": {
|
|
293
|
+
"type": "array",
|
|
294
|
+
"title": "The Contributor Schema",
|
|
295
|
+
"items": {
|
|
296
|
+
"$ref": "#/$defs/Contributor"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
"Cost": {
|
|
300
|
+
"type": "object",
|
|
301
|
+
"title": "Cost",
|
|
302
|
+
"properties": {
|
|
303
|
+
"currency_code": {
|
|
304
|
+
"$ref": "#/$defs/CurrencyCode"
|
|
305
|
+
},
|
|
306
|
+
"description": {
|
|
307
|
+
"type": "string",
|
|
308
|
+
"title": "Description",
|
|
309
|
+
"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.",
|
|
310
|
+
"examples": [
|
|
311
|
+
"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."
|
|
312
|
+
]
|
|
313
|
+
},
|
|
314
|
+
"title": {
|
|
315
|
+
"type": "string",
|
|
316
|
+
"title": "Title",
|
|
317
|
+
"description": "Title of a cost",
|
|
318
|
+
"examples": [
|
|
319
|
+
"Storage and Backup"
|
|
320
|
+
]
|
|
321
|
+
},
|
|
322
|
+
"value": {
|
|
323
|
+
"type": "number",
|
|
324
|
+
"title": "Value",
|
|
325
|
+
"description": "Cost value in the specified currency",
|
|
326
|
+
"examples": [
|
|
327
|
+
1000
|
|
328
|
+
]
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"required": [
|
|
332
|
+
"title"
|
|
333
|
+
]
|
|
334
|
+
},
|
|
335
|
+
"Costs": {
|
|
336
|
+
"type": "array",
|
|
337
|
+
"title": "Costs",
|
|
338
|
+
"items": {
|
|
339
|
+
"$ref": "#/$defs/Cost"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
"Creator": {
|
|
343
|
+
"type": "object",
|
|
344
|
+
"title": "Creator",
|
|
345
|
+
"properties": {
|
|
346
|
+
"affiliation": {
|
|
347
|
+
"type": "array",
|
|
348
|
+
"title": "Affiliations",
|
|
349
|
+
"description": "Affiliation(s) of the creator",
|
|
350
|
+
"items": {
|
|
351
|
+
"$ref": "#/$defs/Affiliation"
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
"creator_id": {
|
|
355
|
+
"oneOf": [
|
|
356
|
+
{
|
|
357
|
+
"$ref": "#/$defs/CreatorID"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"type": "array",
|
|
361
|
+
"items": {
|
|
362
|
+
"$ref": "#/$defs/CreatorID"
|
|
363
|
+
},
|
|
364
|
+
"minItems": 0
|
|
365
|
+
}
|
|
366
|
+
]
|
|
367
|
+
},
|
|
368
|
+
"mbox": {
|
|
369
|
+
"type": "string",
|
|
370
|
+
"title": "Mailbox",
|
|
371
|
+
"description": "Creator Mail address",
|
|
372
|
+
"examples": [
|
|
373
|
+
"john.doe@example.com"
|
|
374
|
+
],
|
|
375
|
+
"format": "email"
|
|
376
|
+
},
|
|
377
|
+
"name": {
|
|
378
|
+
"type": "string",
|
|
379
|
+
"title": "Name",
|
|
380
|
+
"description": "Name of the creator",
|
|
381
|
+
"examples": [
|
|
382
|
+
"John Doe"
|
|
383
|
+
]
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
"required": [
|
|
387
|
+
"creator_id",
|
|
388
|
+
"name"
|
|
389
|
+
]
|
|
390
|
+
},
|
|
391
|
+
"CreatorID": {
|
|
392
|
+
"type": "object",
|
|
393
|
+
"title": "Creator ID",
|
|
394
|
+
"properties": {
|
|
395
|
+
"identifier": {
|
|
396
|
+
"type": "string",
|
|
397
|
+
"title": "Identifier",
|
|
398
|
+
"examples": [
|
|
399
|
+
"0000-0003-0644-4174"
|
|
400
|
+
]
|
|
401
|
+
},
|
|
402
|
+
"type": {
|
|
403
|
+
"type": "string",
|
|
404
|
+
"title": "Type",
|
|
405
|
+
"description": "Identifier type. Suggested values: orcid, isni, openid",
|
|
406
|
+
"examples": [
|
|
407
|
+
"orcid"
|
|
408
|
+
]
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
"required": [
|
|
412
|
+
"identifier",
|
|
413
|
+
"type"
|
|
414
|
+
]
|
|
415
|
+
},
|
|
416
|
+
"CurrencyCode": {
|
|
417
|
+
"type": "string",
|
|
418
|
+
"enum": [
|
|
419
|
+
"AED",
|
|
420
|
+
"AFN",
|
|
421
|
+
"ALL",
|
|
422
|
+
"AMD",
|
|
423
|
+
"ANG",
|
|
424
|
+
"AOA",
|
|
425
|
+
"ARS",
|
|
426
|
+
"AUD",
|
|
427
|
+
"AWG",
|
|
428
|
+
"AZN",
|
|
429
|
+
"BAM",
|
|
430
|
+
"BBD",
|
|
431
|
+
"BDT",
|
|
432
|
+
"BGN",
|
|
433
|
+
"BHD",
|
|
434
|
+
"BIF",
|
|
435
|
+
"BMD",
|
|
436
|
+
"BND",
|
|
437
|
+
"BOB",
|
|
438
|
+
"BRL",
|
|
439
|
+
"BSD",
|
|
440
|
+
"BTN",
|
|
441
|
+
"BWP",
|
|
442
|
+
"BYN",
|
|
443
|
+
"BZD",
|
|
444
|
+
"CAD",
|
|
445
|
+
"CDF",
|
|
446
|
+
"CHF",
|
|
447
|
+
"CLP",
|
|
448
|
+
"CNY",
|
|
449
|
+
"COP",
|
|
450
|
+
"CRC",
|
|
451
|
+
"CUC",
|
|
452
|
+
"CUP",
|
|
453
|
+
"CVE",
|
|
454
|
+
"CZK",
|
|
455
|
+
"DJF",
|
|
456
|
+
"DKK",
|
|
457
|
+
"DOP",
|
|
458
|
+
"DZD",
|
|
459
|
+
"EGP",
|
|
460
|
+
"ERN",
|
|
461
|
+
"ETB",
|
|
462
|
+
"EUR",
|
|
463
|
+
"FJD",
|
|
464
|
+
"FKP",
|
|
465
|
+
"GBP",
|
|
466
|
+
"GEL",
|
|
467
|
+
"GGP",
|
|
468
|
+
"GHS",
|
|
469
|
+
"GIP",
|
|
470
|
+
"GMD",
|
|
471
|
+
"GNF",
|
|
472
|
+
"GTQ",
|
|
473
|
+
"GYD",
|
|
474
|
+
"HKD",
|
|
475
|
+
"HNL",
|
|
476
|
+
"HRK",
|
|
477
|
+
"HTG",
|
|
478
|
+
"HUF",
|
|
479
|
+
"IDR",
|
|
480
|
+
"ILS",
|
|
481
|
+
"IMP",
|
|
482
|
+
"INR",
|
|
483
|
+
"IQD",
|
|
484
|
+
"IRR",
|
|
485
|
+
"ISK",
|
|
486
|
+
"JEP",
|
|
487
|
+
"JMD",
|
|
488
|
+
"JOD",
|
|
489
|
+
"JPY",
|
|
490
|
+
"KES",
|
|
491
|
+
"KGS",
|
|
492
|
+
"KHR",
|
|
493
|
+
"KMF",
|
|
494
|
+
"KPW",
|
|
495
|
+
"KRW",
|
|
496
|
+
"KWD",
|
|
497
|
+
"KYD",
|
|
498
|
+
"KZT",
|
|
499
|
+
"LAK",
|
|
500
|
+
"LBP",
|
|
501
|
+
"LKR",
|
|
502
|
+
"LRD",
|
|
503
|
+
"LSL",
|
|
504
|
+
"LYD",
|
|
505
|
+
"MAD",
|
|
506
|
+
"MDL",
|
|
507
|
+
"MGA",
|
|
508
|
+
"MKD",
|
|
509
|
+
"MMK",
|
|
510
|
+
"MNT",
|
|
511
|
+
"MOP",
|
|
512
|
+
"MRU",
|
|
513
|
+
"MUR",
|
|
514
|
+
"MVR",
|
|
515
|
+
"MWK",
|
|
516
|
+
"MXN",
|
|
517
|
+
"MYR",
|
|
518
|
+
"MZN",
|
|
519
|
+
"NAD",
|
|
520
|
+
"NGN",
|
|
521
|
+
"NIO",
|
|
522
|
+
"NOK",
|
|
523
|
+
"NPR",
|
|
524
|
+
"NZD",
|
|
525
|
+
"OMR",
|
|
526
|
+
"PAB",
|
|
527
|
+
"PEN",
|
|
528
|
+
"PGK",
|
|
529
|
+
"PHP",
|
|
530
|
+
"PKR",
|
|
531
|
+
"PLN",
|
|
532
|
+
"PYG",
|
|
533
|
+
"QAR",
|
|
534
|
+
"RON",
|
|
535
|
+
"RSD",
|
|
536
|
+
"RUB",
|
|
537
|
+
"RWF",
|
|
538
|
+
"SAR",
|
|
539
|
+
"SBD",
|
|
540
|
+
"SCR",
|
|
541
|
+
"SDG",
|
|
542
|
+
"SEK",
|
|
543
|
+
"SGD",
|
|
544
|
+
"SHP",
|
|
545
|
+
"SLL",
|
|
546
|
+
"SOS",
|
|
547
|
+
"SPL*",
|
|
548
|
+
"SRD",
|
|
549
|
+
"STN",
|
|
550
|
+
"SVC",
|
|
551
|
+
"SYP",
|
|
552
|
+
"SZL",
|
|
553
|
+
"THB",
|
|
554
|
+
"TJS",
|
|
555
|
+
"TMT",
|
|
556
|
+
"TND",
|
|
557
|
+
"TOP",
|
|
558
|
+
"TRY",
|
|
559
|
+
"TTD",
|
|
560
|
+
"TVD",
|
|
561
|
+
"TWD",
|
|
562
|
+
"TZS",
|
|
563
|
+
"UAH",
|
|
564
|
+
"UGX",
|
|
565
|
+
"USD",
|
|
566
|
+
"UYU",
|
|
567
|
+
"UZS",
|
|
568
|
+
"VEF",
|
|
569
|
+
"VND",
|
|
570
|
+
"VUV",
|
|
571
|
+
"WST",
|
|
572
|
+
"XAF",
|
|
573
|
+
"XCD",
|
|
574
|
+
"XDR",
|
|
575
|
+
"XOF",
|
|
576
|
+
"XPF",
|
|
577
|
+
"YER",
|
|
578
|
+
"ZAR",
|
|
579
|
+
"ZMW",
|
|
580
|
+
"ZWD"
|
|
581
|
+
],
|
|
582
|
+
"title": "Currency Code",
|
|
583
|
+
"description": "Allowed values defined by ISO 4217",
|
|
584
|
+
"examples": [
|
|
585
|
+
"EUR"
|
|
586
|
+
]
|
|
587
|
+
},
|
|
588
|
+
"CountryCode": {
|
|
589
|
+
"type": "string",
|
|
590
|
+
"enum": [
|
|
591
|
+
"AD",
|
|
592
|
+
"AE",
|
|
593
|
+
"AF",
|
|
594
|
+
"AG",
|
|
595
|
+
"AI",
|
|
596
|
+
"AL",
|
|
597
|
+
"AM",
|
|
598
|
+
"AO",
|
|
599
|
+
"AQ",
|
|
600
|
+
"AR",
|
|
601
|
+
"AS",
|
|
602
|
+
"AT",
|
|
603
|
+
"AU",
|
|
604
|
+
"AW",
|
|
605
|
+
"AX",
|
|
606
|
+
"AZ",
|
|
607
|
+
"BA",
|
|
608
|
+
"BB",
|
|
609
|
+
"BD",
|
|
610
|
+
"BE",
|
|
611
|
+
"BF",
|
|
612
|
+
"BG",
|
|
613
|
+
"BH",
|
|
614
|
+
"BI",
|
|
615
|
+
"BJ",
|
|
616
|
+
"BL",
|
|
617
|
+
"BM",
|
|
618
|
+
"BN",
|
|
619
|
+
"BO",
|
|
620
|
+
"BQ",
|
|
621
|
+
"BR",
|
|
622
|
+
"BS",
|
|
623
|
+
"BT",
|
|
624
|
+
"BV",
|
|
625
|
+
"BW",
|
|
626
|
+
"BY",
|
|
627
|
+
"BZ",
|
|
628
|
+
"CA",
|
|
629
|
+
"CC",
|
|
630
|
+
"CD",
|
|
631
|
+
"CF",
|
|
632
|
+
"CG",
|
|
633
|
+
"CH",
|
|
634
|
+
"CI",
|
|
635
|
+
"CK",
|
|
636
|
+
"CL",
|
|
637
|
+
"CM",
|
|
638
|
+
"CN",
|
|
639
|
+
"CO",
|
|
640
|
+
"CR",
|
|
641
|
+
"CU",
|
|
642
|
+
"CV",
|
|
643
|
+
"CW",
|
|
644
|
+
"CX",
|
|
645
|
+
"CY",
|
|
646
|
+
"CZ",
|
|
647
|
+
"DE",
|
|
648
|
+
"DJ",
|
|
649
|
+
"DK",
|
|
650
|
+
"DM",
|
|
651
|
+
"DO",
|
|
652
|
+
"DZ",
|
|
653
|
+
"EC",
|
|
654
|
+
"EE",
|
|
655
|
+
"EG",
|
|
656
|
+
"EH",
|
|
657
|
+
"ER",
|
|
658
|
+
"ES",
|
|
659
|
+
"ET",
|
|
660
|
+
"FI",
|
|
661
|
+
"FJ",
|
|
662
|
+
"FK",
|
|
663
|
+
"FM",
|
|
664
|
+
"FO",
|
|
665
|
+
"FR",
|
|
666
|
+
"GA",
|
|
667
|
+
"GB",
|
|
668
|
+
"GD",
|
|
669
|
+
"GE",
|
|
670
|
+
"GF",
|
|
671
|
+
"GG",
|
|
672
|
+
"GH",
|
|
673
|
+
"GI",
|
|
674
|
+
"GL",
|
|
675
|
+
"GM",
|
|
676
|
+
"GN",
|
|
677
|
+
"GP",
|
|
678
|
+
"GQ",
|
|
679
|
+
"GR",
|
|
680
|
+
"GS",
|
|
681
|
+
"GT",
|
|
682
|
+
"GU",
|
|
683
|
+
"GW",
|
|
684
|
+
"GY",
|
|
685
|
+
"HK",
|
|
686
|
+
"HM",
|
|
687
|
+
"HN",
|
|
688
|
+
"HR",
|
|
689
|
+
"HT",
|
|
690
|
+
"HU",
|
|
691
|
+
"ID",
|
|
692
|
+
"IE",
|
|
693
|
+
"IL",
|
|
694
|
+
"IM",
|
|
695
|
+
"IN",
|
|
696
|
+
"IO",
|
|
697
|
+
"IQ",
|
|
698
|
+
"IR",
|
|
699
|
+
"IS",
|
|
700
|
+
"IT",
|
|
701
|
+
"JE",
|
|
702
|
+
"JM",
|
|
703
|
+
"JO",
|
|
704
|
+
"JP",
|
|
705
|
+
"KE",
|
|
706
|
+
"KG",
|
|
707
|
+
"KH",
|
|
708
|
+
"KI",
|
|
709
|
+
"KM",
|
|
710
|
+
"KN",
|
|
711
|
+
"KP",
|
|
712
|
+
"KR",
|
|
713
|
+
"KW",
|
|
714
|
+
"KY",
|
|
715
|
+
"KZ",
|
|
716
|
+
"LA",
|
|
717
|
+
"LB",
|
|
718
|
+
"LC",
|
|
719
|
+
"LI",
|
|
720
|
+
"LK",
|
|
721
|
+
"LR",
|
|
722
|
+
"LS",
|
|
723
|
+
"LT",
|
|
724
|
+
"LU",
|
|
725
|
+
"LV",
|
|
726
|
+
"LY",
|
|
727
|
+
"MA",
|
|
728
|
+
"MC",
|
|
729
|
+
"MD",
|
|
730
|
+
"ME",
|
|
731
|
+
"MF",
|
|
732
|
+
"MG",
|
|
733
|
+
"MH",
|
|
734
|
+
"MK",
|
|
735
|
+
"ML",
|
|
736
|
+
"MM",
|
|
737
|
+
"MN",
|
|
738
|
+
"MO",
|
|
739
|
+
"MP",
|
|
740
|
+
"MQ",
|
|
741
|
+
"MR",
|
|
742
|
+
"MS",
|
|
743
|
+
"MT",
|
|
744
|
+
"MU",
|
|
745
|
+
"MV",
|
|
746
|
+
"MW",
|
|
747
|
+
"MX",
|
|
748
|
+
"MY",
|
|
749
|
+
"MZ",
|
|
750
|
+
"NA",
|
|
751
|
+
"NC",
|
|
752
|
+
"NE",
|
|
753
|
+
"NF",
|
|
754
|
+
"NG",
|
|
755
|
+
"NI",
|
|
756
|
+
"NL",
|
|
757
|
+
"NO",
|
|
758
|
+
"NP",
|
|
759
|
+
"NR",
|
|
760
|
+
"NU",
|
|
761
|
+
"NZ",
|
|
762
|
+
"OM",
|
|
763
|
+
"PA",
|
|
764
|
+
"PE",
|
|
765
|
+
"PF",
|
|
766
|
+
"PG",
|
|
767
|
+
"PH",
|
|
768
|
+
"PK",
|
|
769
|
+
"PL",
|
|
770
|
+
"PM",
|
|
771
|
+
"PN",
|
|
772
|
+
"PR",
|
|
773
|
+
"PS",
|
|
774
|
+
"PT",
|
|
775
|
+
"PW",
|
|
776
|
+
"PY",
|
|
777
|
+
"QA",
|
|
778
|
+
"RE",
|
|
779
|
+
"RO",
|
|
780
|
+
"RS",
|
|
781
|
+
"RU",
|
|
782
|
+
"RW",
|
|
783
|
+
"SA",
|
|
784
|
+
"SB",
|
|
785
|
+
"SC",
|
|
786
|
+
"SD",
|
|
787
|
+
"SE",
|
|
788
|
+
"SG",
|
|
789
|
+
"SH",
|
|
790
|
+
"SI",
|
|
791
|
+
"SJ",
|
|
792
|
+
"SK",
|
|
793
|
+
"SL",
|
|
794
|
+
"SM",
|
|
795
|
+
"SN",
|
|
796
|
+
"SO",
|
|
797
|
+
"SR",
|
|
798
|
+
"SS",
|
|
799
|
+
"ST",
|
|
800
|
+
"SV",
|
|
801
|
+
"SX",
|
|
802
|
+
"SY",
|
|
803
|
+
"SZ",
|
|
804
|
+
"TC",
|
|
805
|
+
"TD",
|
|
806
|
+
"TF",
|
|
807
|
+
"TG",
|
|
808
|
+
"TH",
|
|
809
|
+
"TJ",
|
|
810
|
+
"TK",
|
|
811
|
+
"TL",
|
|
812
|
+
"TM",
|
|
813
|
+
"TN",
|
|
814
|
+
"TO",
|
|
815
|
+
"TR",
|
|
816
|
+
"TT",
|
|
817
|
+
"TV",
|
|
818
|
+
"TW",
|
|
819
|
+
"TZ",
|
|
820
|
+
"UA",
|
|
821
|
+
"UG",
|
|
822
|
+
"UM",
|
|
823
|
+
"US",
|
|
824
|
+
"UY",
|
|
825
|
+
"UZ",
|
|
826
|
+
"VA",
|
|
827
|
+
"VC",
|
|
828
|
+
"VE",
|
|
829
|
+
"VG",
|
|
830
|
+
"VI",
|
|
831
|
+
"VN",
|
|
832
|
+
"VU",
|
|
833
|
+
"WF",
|
|
834
|
+
"WS",
|
|
835
|
+
"YE",
|
|
836
|
+
"YT",
|
|
837
|
+
"ZA",
|
|
838
|
+
"ZM",
|
|
839
|
+
"ZW"
|
|
840
|
+
],
|
|
841
|
+
"title": "Country Code",
|
|
842
|
+
"description": "Physical location of the data expressed using ISO 3166-1 country code.",
|
|
843
|
+
"examples": [
|
|
844
|
+
"AT"
|
|
845
|
+
]
|
|
846
|
+
},
|
|
847
|
+
"DataAccess": {
|
|
848
|
+
"type": "string",
|
|
849
|
+
"enum": [
|
|
850
|
+
"open",
|
|
851
|
+
"shared",
|
|
852
|
+
"closed"
|
|
853
|
+
],
|
|
854
|
+
"title": "Data Access",
|
|
855
|
+
"description": "Indicates access mode for data. Allowed values: open, shared, closed",
|
|
856
|
+
"examples": [
|
|
857
|
+
"open"
|
|
858
|
+
]
|
|
859
|
+
},
|
|
860
|
+
"Dataset": {
|
|
861
|
+
"type": "object",
|
|
862
|
+
"title": "Dataset",
|
|
863
|
+
"properties": {
|
|
864
|
+
"alternate_identifier": {
|
|
865
|
+
"type": "array",
|
|
866
|
+
"items": {
|
|
867
|
+
"$ref": "#/$defs/AlternateIdentifier"
|
|
868
|
+
},
|
|
869
|
+
"minItems": 0
|
|
870
|
+
},
|
|
871
|
+
"creator": {
|
|
872
|
+
"type": "array",
|
|
873
|
+
"title": "Creators",
|
|
874
|
+
"items": {
|
|
875
|
+
"$ref": "#/$defs/Creator"
|
|
876
|
+
}
|
|
877
|
+
},
|
|
878
|
+
"data_quality_assurance": {
|
|
879
|
+
"type": "array",
|
|
880
|
+
"title": "Data Quality Assurance",
|
|
881
|
+
"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.",
|
|
882
|
+
"items": {
|
|
883
|
+
"type": "string",
|
|
884
|
+
"examples": [
|
|
885
|
+
"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."
|
|
886
|
+
]
|
|
887
|
+
}
|
|
888
|
+
},
|
|
889
|
+
"dataset_id": {
|
|
890
|
+
"$ref": "#/$defs/DatasetID"
|
|
891
|
+
},
|
|
892
|
+
"description": {
|
|
893
|
+
"type": "string",
|
|
894
|
+
"title": "Description",
|
|
895
|
+
"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.",
|
|
896
|
+
"examples": [
|
|
897
|
+
"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."
|
|
898
|
+
]
|
|
899
|
+
},
|
|
900
|
+
"distribution": {
|
|
901
|
+
"type": "array",
|
|
902
|
+
"title": "Distributions",
|
|
903
|
+
"description": "To provide technical information on a specific instance of data.",
|
|
904
|
+
"items": {
|
|
905
|
+
"$ref": "#/$defs/Distribution"
|
|
906
|
+
}
|
|
907
|
+
},
|
|
908
|
+
"is_reused": {
|
|
909
|
+
"type": "boolean",
|
|
910
|
+
"title": "The Dataset Is Reused Schema",
|
|
911
|
+
"description": "Indicates if the dataset is reused, i.e., not produced in project(s) covered by this DMP.",
|
|
912
|
+
"examples": [
|
|
913
|
+
true
|
|
914
|
+
]
|
|
915
|
+
},
|
|
916
|
+
"issued": {
|
|
917
|
+
"type": "string",
|
|
918
|
+
"format": "date",
|
|
919
|
+
"title": "Issued",
|
|
920
|
+
"description": "To indicate a date when a dataset was published or released. Encoded using the relevant ISO 8601 Date compliant string.",
|
|
921
|
+
"examples": [
|
|
922
|
+
"2019-06-30"
|
|
923
|
+
]
|
|
924
|
+
},
|
|
925
|
+
"keyword": {
|
|
926
|
+
"type": "array",
|
|
927
|
+
"title": "Keywords",
|
|
928
|
+
"items": {
|
|
929
|
+
"type": "string",
|
|
930
|
+
"title": "Keyword",
|
|
931
|
+
"examples": [
|
|
932
|
+
"keyword 1",
|
|
933
|
+
"keyword 2"
|
|
934
|
+
]
|
|
935
|
+
}
|
|
936
|
+
},
|
|
937
|
+
"language": {
|
|
938
|
+
"$ref": "#/$defs/LanguageCode"
|
|
939
|
+
},
|
|
940
|
+
"metadata": {
|
|
941
|
+
"type": "array",
|
|
942
|
+
"title": "Metadata",
|
|
943
|
+
"description": "To describe metadata standards used.",
|
|
944
|
+
"items": {
|
|
945
|
+
"$ref": "#/$defs/Metadata"
|
|
946
|
+
}
|
|
947
|
+
},
|
|
948
|
+
"personal_data": {
|
|
949
|
+
"type": "string",
|
|
950
|
+
"enum": [
|
|
951
|
+
"yes",
|
|
952
|
+
"no",
|
|
953
|
+
"unknown"
|
|
954
|
+
],
|
|
955
|
+
"title": "Personal Data",
|
|
956
|
+
"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",
|
|
957
|
+
"examples": [
|
|
958
|
+
"unknown"
|
|
959
|
+
]
|
|
960
|
+
},
|
|
961
|
+
"preservation_statement": {
|
|
962
|
+
"type": "string",
|
|
963
|
+
"title": "Preservation Statement",
|
|
964
|
+
"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.",
|
|
965
|
+
"examples": [
|
|
966
|
+
"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."
|
|
967
|
+
]
|
|
968
|
+
},
|
|
969
|
+
"rights": {
|
|
970
|
+
"type": "string",
|
|
971
|
+
"title": "Rights",
|
|
972
|
+
"description": "A statement that concerns all rights not addressed with license, such as copyright statements.",
|
|
973
|
+
"examples": [
|
|
974
|
+
"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."
|
|
975
|
+
]
|
|
976
|
+
},
|
|
977
|
+
"related_identifier": {
|
|
978
|
+
"type": "array",
|
|
979
|
+
"items": {
|
|
980
|
+
"$ref": "#/$defs/RelatedIdentifier"
|
|
981
|
+
},
|
|
982
|
+
"minItems": 0
|
|
983
|
+
},
|
|
984
|
+
"security_and_privacy": {
|
|
985
|
+
"$ref": "#/$defs/SecurityAndPrivacyItems"
|
|
986
|
+
},
|
|
987
|
+
"sensitive_data": {
|
|
988
|
+
"type": "string",
|
|
989
|
+
"enum": [
|
|
990
|
+
"yes",
|
|
991
|
+
"no",
|
|
992
|
+
"unknown"
|
|
993
|
+
],
|
|
994
|
+
"title": "Sensitive Data",
|
|
995
|
+
"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",
|
|
996
|
+
"examples": [
|
|
997
|
+
"unknown"
|
|
998
|
+
]
|
|
999
|
+
},
|
|
1000
|
+
"technical_resource": {
|
|
1001
|
+
"$ref": "#/$defs/TechnicalResources"
|
|
1002
|
+
},
|
|
1003
|
+
"title": {
|
|
1004
|
+
"type": "string",
|
|
1005
|
+
"title": "Title",
|
|
1006
|
+
"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.",
|
|
1007
|
+
"examples": [
|
|
1008
|
+
"Fast car images"
|
|
1009
|
+
]
|
|
1010
|
+
},
|
|
1011
|
+
"type": {
|
|
1012
|
+
"type": "string",
|
|
1013
|
+
"title": "Type",
|
|
1014
|
+
"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",
|
|
1015
|
+
"examples": [
|
|
1016
|
+
"image"
|
|
1017
|
+
]
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
"required": [
|
|
1021
|
+
"dataset_id",
|
|
1022
|
+
"personal_data",
|
|
1023
|
+
"sensitive_data",
|
|
1024
|
+
"title"
|
|
1025
|
+
]
|
|
1026
|
+
},
|
|
1027
|
+
"DatasetID": {
|
|
1028
|
+
"type": "object",
|
|
1029
|
+
"title": "Dataset ID",
|
|
1030
|
+
"properties": {
|
|
1031
|
+
"identifier": {
|
|
1032
|
+
"type": "string",
|
|
1033
|
+
"title": "Identifier",
|
|
1034
|
+
"examples": [
|
|
1035
|
+
"11353/10.923628"
|
|
1036
|
+
]
|
|
1037
|
+
},
|
|
1038
|
+
"type": {
|
|
1039
|
+
"type": "string",
|
|
1040
|
+
"title": "Type",
|
|
1041
|
+
"description": "Dataset identifier type. Suggested values: handle, doi, ark, url",
|
|
1042
|
+
"examples": [
|
|
1043
|
+
"handle"
|
|
1044
|
+
]
|
|
1045
|
+
}
|
|
1046
|
+
},
|
|
1047
|
+
"required": [
|
|
1048
|
+
"identifier",
|
|
1049
|
+
"type"
|
|
1050
|
+
]
|
|
1051
|
+
},
|
|
1052
|
+
"Datasets": {
|
|
1053
|
+
"type": "array",
|
|
1054
|
+
"title": "Datasets",
|
|
1055
|
+
"items": {
|
|
1056
|
+
"$ref": "#/$defs/Dataset"
|
|
1057
|
+
}
|
|
1058
|
+
},
|
|
1059
|
+
"DMPData": {
|
|
1060
|
+
"type": "object",
|
|
1061
|
+
"title": "DMP",
|
|
1062
|
+
"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.",
|
|
1063
|
+
"properties": {
|
|
1064
|
+
"alternate_identifier": {
|
|
1065
|
+
"type": "array",
|
|
1066
|
+
"items": {
|
|
1067
|
+
"$ref": "#/$defs/AlternateIdentifier"
|
|
1068
|
+
},
|
|
1069
|
+
"minItems": 0
|
|
1070
|
+
},
|
|
1071
|
+
"contact": {
|
|
1072
|
+
"$ref": "#/$defs/Contact"
|
|
1073
|
+
},
|
|
1074
|
+
"contributor": {
|
|
1075
|
+
"$ref": "#/$defs/Contributors"
|
|
1076
|
+
},
|
|
1077
|
+
"cost": {
|
|
1078
|
+
"$ref": "#/$defs/Costs"
|
|
1079
|
+
},
|
|
1080
|
+
"created": {
|
|
1081
|
+
"type": "string",
|
|
1082
|
+
"format": "date-time",
|
|
1083
|
+
"title": "Created",
|
|
1084
|
+
"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.",
|
|
1085
|
+
"examples": [
|
|
1086
|
+
"2019-03-13T13:13:00Z"
|
|
1087
|
+
]
|
|
1088
|
+
},
|
|
1089
|
+
"dataset": {
|
|
1090
|
+
"$ref": "#/$defs/Datasets"
|
|
1091
|
+
},
|
|
1092
|
+
"description": {
|
|
1093
|
+
"type": "string",
|
|
1094
|
+
"title": "Description",
|
|
1095
|
+
"description": "Any text related to this DMP, optionally describing the project. It can include important information that doesn't fit elsewhere.",
|
|
1096
|
+
"examples": [
|
|
1097
|
+
"This DMP is for our new project"
|
|
1098
|
+
]
|
|
1099
|
+
},
|
|
1100
|
+
"dmp_id": {
|
|
1101
|
+
"$ref": "#/$defs/DMPID"
|
|
1102
|
+
},
|
|
1103
|
+
"ethical_issues_description": {
|
|
1104
|
+
"type": "string",
|
|
1105
|
+
"title": "Ethical Issues Description",
|
|
1106
|
+
"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.",
|
|
1107
|
+
"examples": [
|
|
1108
|
+
"There are ethical issues, because..."
|
|
1109
|
+
]
|
|
1110
|
+
},
|
|
1111
|
+
"ethical_issues_exist": {
|
|
1112
|
+
"$ref": "#/$defs/Booleanish"
|
|
1113
|
+
},
|
|
1114
|
+
"ethical_issues_report": {
|
|
1115
|
+
"type": "string",
|
|
1116
|
+
"title": "Ethical Issues Report",
|
|
1117
|
+
"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",
|
|
1118
|
+
"examples": [
|
|
1119
|
+
"http://report.location"
|
|
1120
|
+
]
|
|
1121
|
+
},
|
|
1122
|
+
"language": {
|
|
1123
|
+
"$ref": "#/$defs/LanguageCode"
|
|
1124
|
+
},
|
|
1125
|
+
"modified": {
|
|
1126
|
+
"type": "string",
|
|
1127
|
+
"format": "date-time",
|
|
1128
|
+
"title": "Modified",
|
|
1129
|
+
"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.",
|
|
1130
|
+
"examples": [
|
|
1131
|
+
"2020-03-14T10:53:49Z"
|
|
1132
|
+
]
|
|
1133
|
+
},
|
|
1134
|
+
"project": {
|
|
1135
|
+
"type": "array",
|
|
1136
|
+
"title": "Projects",
|
|
1137
|
+
"description": "Projects related to a DMP",
|
|
1138
|
+
"items": {
|
|
1139
|
+
"$ref": "#/$defs/Project"
|
|
1140
|
+
}
|
|
1141
|
+
},
|
|
1142
|
+
"related_identifier": {
|
|
1143
|
+
"type": "array",
|
|
1144
|
+
"items": {
|
|
1145
|
+
"$ref": "#/$defs/RelatedIdentifier"
|
|
1146
|
+
},
|
|
1147
|
+
"minItems": 0
|
|
1148
|
+
},
|
|
1149
|
+
"title": {
|
|
1150
|
+
"type": "string",
|
|
1151
|
+
"title": "Title",
|
|
1152
|
+
"description": "Title of a DMP",
|
|
1153
|
+
"examples": [
|
|
1154
|
+
"DMP for our new project"
|
|
1155
|
+
]
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
"required": [
|
|
1159
|
+
"contact",
|
|
1160
|
+
"created",
|
|
1161
|
+
"dataset",
|
|
1162
|
+
"dmp_id",
|
|
1163
|
+
"ethical_issues_exist",
|
|
1164
|
+
"language",
|
|
1165
|
+
"modified",
|
|
1166
|
+
"title"
|
|
1167
|
+
]
|
|
1168
|
+
},
|
|
1169
|
+
"DMPID": {
|
|
1170
|
+
"type": "object",
|
|
1171
|
+
"title": "DMP ID",
|
|
1172
|
+
"description": "Identifier for the DMP itself",
|
|
1173
|
+
"properties": {
|
|
1174
|
+
"identifier": {
|
|
1175
|
+
"type": "string",
|
|
1176
|
+
"title": "Identifier",
|
|
1177
|
+
"examples": [
|
|
1178
|
+
"10.1371/journal.pcbi.1006750"
|
|
1179
|
+
]
|
|
1180
|
+
},
|
|
1181
|
+
"type": {
|
|
1182
|
+
"type": "string",
|
|
1183
|
+
"title": "Type",
|
|
1184
|
+
"description": "The DMP Identifier Type. Suggested values: handle, doi, ark, url",
|
|
1185
|
+
"examples": [
|
|
1186
|
+
"doi"
|
|
1187
|
+
]
|
|
1188
|
+
}
|
|
1189
|
+
},
|
|
1190
|
+
"required": [
|
|
1191
|
+
"identifier",
|
|
1192
|
+
"type"
|
|
1193
|
+
]
|
|
1194
|
+
},
|
|
1195
|
+
"Distribution": {
|
|
1196
|
+
"type": "object",
|
|
1197
|
+
"title": "Distribution",
|
|
1198
|
+
"properties": {
|
|
1199
|
+
"access_url": {
|
|
1200
|
+
"type": "string",
|
|
1201
|
+
"title": "Access URL",
|
|
1202
|
+
"description": "A URL of the resource that gives access to a distribution of the dataset. e.g. landing page.",
|
|
1203
|
+
"examples": [
|
|
1204
|
+
"http://some.repo"
|
|
1205
|
+
]
|
|
1206
|
+
},
|
|
1207
|
+
"available_until": {
|
|
1208
|
+
"type": "string",
|
|
1209
|
+
"format": "date",
|
|
1210
|
+
"title": "Available Until",
|
|
1211
|
+
"description": "Indicates how long this distribution will be/ should be available. Encoded using the relevant ISO 8601 Date compliant string.",
|
|
1212
|
+
"examples": [
|
|
1213
|
+
"2030-06-30"
|
|
1214
|
+
]
|
|
1215
|
+
},
|
|
1216
|
+
"byte_size": {
|
|
1217
|
+
"type": "integer",
|
|
1218
|
+
"title": "Byte Size",
|
|
1219
|
+
"description": "Size in bytes.",
|
|
1220
|
+
"examples": [
|
|
1221
|
+
690000
|
|
1222
|
+
]
|
|
1223
|
+
},
|
|
1224
|
+
"data_access": {
|
|
1225
|
+
"$ref": "#/$defs/DataAccess"
|
|
1226
|
+
},
|
|
1227
|
+
"description": {
|
|
1228
|
+
"type": "string",
|
|
1229
|
+
"title": "Description",
|
|
1230
|
+
"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.",
|
|
1231
|
+
"examples": [
|
|
1232
|
+
"Best quality data before resizing"
|
|
1233
|
+
]
|
|
1234
|
+
},
|
|
1235
|
+
"download_url": {
|
|
1236
|
+
"type": "string",
|
|
1237
|
+
"format": "url",
|
|
1238
|
+
"title": "Download URL",
|
|
1239
|
+
"description": "The URL of the downloadable file in a given format. E.g. CSV file or RDF file.",
|
|
1240
|
+
"examples": [
|
|
1241
|
+
"http://some.repo.../download/..."
|
|
1242
|
+
]
|
|
1243
|
+
},
|
|
1244
|
+
"format": {
|
|
1245
|
+
"type": "array",
|
|
1246
|
+
"title": "Format",
|
|
1247
|
+
"description": "Format according to: https://www.iana.org/assignments/media-types/media-types.xhtml if appropriate, otherwise use the common name for this format.",
|
|
1248
|
+
"items": {
|
|
1249
|
+
"$ref": "#/$defs/MIMEType"
|
|
1250
|
+
}
|
|
1251
|
+
},
|
|
1252
|
+
"host": {
|
|
1253
|
+
"$ref": "#/$defs/Host"
|
|
1254
|
+
},
|
|
1255
|
+
"issued": {
|
|
1256
|
+
"type": "string",
|
|
1257
|
+
"format": "date",
|
|
1258
|
+
"title": "Issued",
|
|
1259
|
+
"description": "To indicate a date when a distribution was published or released. Encoded using the relevant ISO 8601 Date compliant string.",
|
|
1260
|
+
"examples": [
|
|
1261
|
+
"2019-06-30"
|
|
1262
|
+
]
|
|
1263
|
+
},
|
|
1264
|
+
"license": {
|
|
1265
|
+
"$ref": "#/$defs/Licenses"
|
|
1266
|
+
},
|
|
1267
|
+
"title": {
|
|
1268
|
+
"type": "string",
|
|
1269
|
+
"title": "Title",
|
|
1270
|
+
"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.",
|
|
1271
|
+
"examples": [
|
|
1272
|
+
"Full resolution images"
|
|
1273
|
+
]
|
|
1274
|
+
}
|
|
1275
|
+
},
|
|
1276
|
+
"required": [
|
|
1277
|
+
"data_access",
|
|
1278
|
+
"title"
|
|
1279
|
+
]
|
|
1280
|
+
},
|
|
1281
|
+
"FunderID": {
|
|
1282
|
+
"type": "object",
|
|
1283
|
+
"title": "Funder ID",
|
|
1284
|
+
"description": "Funder ID of the associated project",
|
|
1285
|
+
"properties": {
|
|
1286
|
+
"identifier": {
|
|
1287
|
+
"type": "string",
|
|
1288
|
+
"title": "Identifier",
|
|
1289
|
+
"description": "Funder ID, recommended to use CrossRef Funder Registry. See: https://www.crossref.org/services/funder-registry/",
|
|
1290
|
+
"examples": [
|
|
1291
|
+
"501100002428"
|
|
1292
|
+
]
|
|
1293
|
+
},
|
|
1294
|
+
"type": {
|
|
1295
|
+
"type": "string",
|
|
1296
|
+
"title": "Type",
|
|
1297
|
+
"description": "Identifier type. Suggested values: fundref, url",
|
|
1298
|
+
"examples": [
|
|
1299
|
+
"fundref"
|
|
1300
|
+
]
|
|
1301
|
+
}
|
|
1302
|
+
},
|
|
1303
|
+
"required": [
|
|
1304
|
+
"identifier",
|
|
1305
|
+
"type"
|
|
1306
|
+
]
|
|
1307
|
+
},
|
|
1308
|
+
"Funding": {
|
|
1309
|
+
"type": "object",
|
|
1310
|
+
"title": "Funding",
|
|
1311
|
+
"properties": {
|
|
1312
|
+
"funder_id": {
|
|
1313
|
+
"$ref": "#/$defs/FunderID"
|
|
1314
|
+
},
|
|
1315
|
+
"funding_status": {
|
|
1316
|
+
"$ref": "#/$defs/FundingStatus"
|
|
1317
|
+
},
|
|
1318
|
+
"grant_id": {
|
|
1319
|
+
"$ref": "#/$defs/GrantID"
|
|
1320
|
+
}
|
|
1321
|
+
},
|
|
1322
|
+
"required": [
|
|
1323
|
+
"funder_id"
|
|
1324
|
+
]
|
|
1325
|
+
},
|
|
1326
|
+
"Fundings": {
|
|
1327
|
+
"type": "array",
|
|
1328
|
+
"title": "Fundings",
|
|
1329
|
+
"description": "Funding related with a project",
|
|
1330
|
+
"items": {
|
|
1331
|
+
"$ref": "#/$defs/Funding"
|
|
1332
|
+
}
|
|
1333
|
+
},
|
|
1334
|
+
"FundingStatus": {
|
|
1335
|
+
"type": "string",
|
|
1336
|
+
"enum": [
|
|
1337
|
+
"planned",
|
|
1338
|
+
"applied",
|
|
1339
|
+
"granted",
|
|
1340
|
+
"rejected"
|
|
1341
|
+
],
|
|
1342
|
+
"title": "Funding Status",
|
|
1343
|
+
"description": "To express different phases of project lifecycle. Allowed values: planned, applied, granted, rejected",
|
|
1344
|
+
"examples": [
|
|
1345
|
+
"granted"
|
|
1346
|
+
]
|
|
1347
|
+
},
|
|
1348
|
+
"GrantID": {
|
|
1349
|
+
"type": "object",
|
|
1350
|
+
"title": "Grant ID",
|
|
1351
|
+
"description": "Grant ID of the associated project",
|
|
1352
|
+
"properties": {
|
|
1353
|
+
"identifier": {
|
|
1354
|
+
"type": "string",
|
|
1355
|
+
"title": "Identifier",
|
|
1356
|
+
"examples": [
|
|
1357
|
+
"http://example.org/grants/776242"
|
|
1358
|
+
]
|
|
1359
|
+
},
|
|
1360
|
+
"type": {
|
|
1361
|
+
"type": "string",
|
|
1362
|
+
"title": "Type",
|
|
1363
|
+
"description": "Identifier type. Suggested values: url",
|
|
1364
|
+
"examples": [
|
|
1365
|
+
"url"
|
|
1366
|
+
]
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
"required": [
|
|
1370
|
+
"identifier",
|
|
1371
|
+
"type"
|
|
1372
|
+
]
|
|
1373
|
+
},
|
|
1374
|
+
"Host": {
|
|
1375
|
+
"type": "object",
|
|
1376
|
+
"title": "Host",
|
|
1377
|
+
"description": "To provide information on quality of service provided by infrastructure (e.g. repository) where data is stored.",
|
|
1378
|
+
"properties": {
|
|
1379
|
+
"availability": {
|
|
1380
|
+
"type": "string",
|
|
1381
|
+
"title": "Availability",
|
|
1382
|
+
"description": "Availability of a host (preferably as a percentage)",
|
|
1383
|
+
"examples": [
|
|
1384
|
+
"99,5"
|
|
1385
|
+
]
|
|
1386
|
+
},
|
|
1387
|
+
"backup_frequency": {
|
|
1388
|
+
"type": "string",
|
|
1389
|
+
"title": "Backup Frequency",
|
|
1390
|
+
"description": "Frequency of backups provided by a host",
|
|
1391
|
+
"examples": [
|
|
1392
|
+
"weekly"
|
|
1393
|
+
]
|
|
1394
|
+
},
|
|
1395
|
+
"backup_type": {
|
|
1396
|
+
"type": "string",
|
|
1397
|
+
"title": "Backup Type",
|
|
1398
|
+
"description": "Location and/or type of the backup provided by a host",
|
|
1399
|
+
"examples": [
|
|
1400
|
+
"tapes"
|
|
1401
|
+
]
|
|
1402
|
+
},
|
|
1403
|
+
"certified_with": {
|
|
1404
|
+
"$ref": "#/$defs/Certification"
|
|
1405
|
+
},
|
|
1406
|
+
"description": {
|
|
1407
|
+
"type": "string",
|
|
1408
|
+
"title": "Description",
|
|
1409
|
+
"examples": [
|
|
1410
|
+
"Repository hosted by..."
|
|
1411
|
+
]
|
|
1412
|
+
},
|
|
1413
|
+
"geo_location": {
|
|
1414
|
+
"$ref": "#/$defs/CountryCode"
|
|
1415
|
+
},
|
|
1416
|
+
"host_id": {
|
|
1417
|
+
"type": "array",
|
|
1418
|
+
"items": {
|
|
1419
|
+
"$ref": "#/$defs/HostID"
|
|
1420
|
+
},
|
|
1421
|
+
"minItems": 0
|
|
1422
|
+
},
|
|
1423
|
+
"pid_system": {
|
|
1424
|
+
"$ref": "#/$defs/PIDSystems"
|
|
1425
|
+
},
|
|
1426
|
+
"storage_type": {
|
|
1427
|
+
"type": "string",
|
|
1428
|
+
"title": "Storage Type",
|
|
1429
|
+
"description": "To indicate whether a host supports versioning of data distributions.",
|
|
1430
|
+
"examples": [
|
|
1431
|
+
"External Hard Drive"
|
|
1432
|
+
]
|
|
1433
|
+
},
|
|
1434
|
+
"support_versioning": {
|
|
1435
|
+
"$ref": "#/$defs/Booleanish"
|
|
1436
|
+
},
|
|
1437
|
+
"title": {
|
|
1438
|
+
"type": "string",
|
|
1439
|
+
"title": "Title",
|
|
1440
|
+
"examples": [
|
|
1441
|
+
"Super Repository"
|
|
1442
|
+
]
|
|
1443
|
+
},
|
|
1444
|
+
"url": {
|
|
1445
|
+
"type": "string",
|
|
1446
|
+
"format": "url",
|
|
1447
|
+
"title": "URL",
|
|
1448
|
+
"description": "A URL of an infrastructure hosting a distribution of a dataset",
|
|
1449
|
+
"examples": [
|
|
1450
|
+
"https://zenodo.org"
|
|
1451
|
+
]
|
|
1452
|
+
}
|
|
1453
|
+
},
|
|
1454
|
+
"required": [
|
|
1455
|
+
"title",
|
|
1456
|
+
"url"
|
|
1457
|
+
]
|
|
1458
|
+
},
|
|
1459
|
+
"HostID": {
|
|
1460
|
+
"type": "object",
|
|
1461
|
+
"title": "Host ID",
|
|
1462
|
+
"properties": {
|
|
1463
|
+
"identifier": {
|
|
1464
|
+
"type": "string",
|
|
1465
|
+
"title": "Identifier",
|
|
1466
|
+
"examples": [
|
|
1467
|
+
"http://example.org/repo"
|
|
1468
|
+
]
|
|
1469
|
+
},
|
|
1470
|
+
"type": {
|
|
1471
|
+
"type": "string",
|
|
1472
|
+
"title": "Type",
|
|
1473
|
+
"description": "Identifier type. Suggested values: url",
|
|
1474
|
+
"examples": [
|
|
1475
|
+
"url"
|
|
1476
|
+
]
|
|
1477
|
+
}
|
|
1478
|
+
},
|
|
1479
|
+
"required": [
|
|
1480
|
+
"identifier",
|
|
1481
|
+
"type"
|
|
1482
|
+
]
|
|
1483
|
+
},
|
|
1484
|
+
"MIMEType": {
|
|
1485
|
+
"type": "string",
|
|
1486
|
+
"title": "Format MIME Type",
|
|
1487
|
+
"examples": [
|
|
1488
|
+
"image/tiff"
|
|
1489
|
+
]
|
|
1490
|
+
},
|
|
1491
|
+
"LanguageCode": {
|
|
1492
|
+
"type": "string",
|
|
1493
|
+
"enum": [
|
|
1494
|
+
"aar",
|
|
1495
|
+
"abk",
|
|
1496
|
+
"afr",
|
|
1497
|
+
"aka",
|
|
1498
|
+
"amh",
|
|
1499
|
+
"ara",
|
|
1500
|
+
"arg",
|
|
1501
|
+
"asm",
|
|
1502
|
+
"ava",
|
|
1503
|
+
"ave",
|
|
1504
|
+
"aym",
|
|
1505
|
+
"aze",
|
|
1506
|
+
"bak",
|
|
1507
|
+
"bam",
|
|
1508
|
+
"bel",
|
|
1509
|
+
"ben",
|
|
1510
|
+
"bih",
|
|
1511
|
+
"bis",
|
|
1512
|
+
"bod",
|
|
1513
|
+
"bos",
|
|
1514
|
+
"bre",
|
|
1515
|
+
"bul",
|
|
1516
|
+
"cat",
|
|
1517
|
+
"ces",
|
|
1518
|
+
"cha",
|
|
1519
|
+
"che",
|
|
1520
|
+
"chu",
|
|
1521
|
+
"chv",
|
|
1522
|
+
"cor",
|
|
1523
|
+
"cos",
|
|
1524
|
+
"cre",
|
|
1525
|
+
"cym",
|
|
1526
|
+
"dan",
|
|
1527
|
+
"deu",
|
|
1528
|
+
"div",
|
|
1529
|
+
"dzo",
|
|
1530
|
+
"ell",
|
|
1531
|
+
"eng",
|
|
1532
|
+
"epo",
|
|
1533
|
+
"est",
|
|
1534
|
+
"eus",
|
|
1535
|
+
"ewe",
|
|
1536
|
+
"fao",
|
|
1537
|
+
"fas",
|
|
1538
|
+
"fij",
|
|
1539
|
+
"fin",
|
|
1540
|
+
"fra",
|
|
1541
|
+
"fry",
|
|
1542
|
+
"ful",
|
|
1543
|
+
"gla",
|
|
1544
|
+
"gle",
|
|
1545
|
+
"glg",
|
|
1546
|
+
"glv",
|
|
1547
|
+
"grn",
|
|
1548
|
+
"guj",
|
|
1549
|
+
"hat",
|
|
1550
|
+
"hau",
|
|
1551
|
+
"hbs",
|
|
1552
|
+
"heb",
|
|
1553
|
+
"her",
|
|
1554
|
+
"hin",
|
|
1555
|
+
"hmo",
|
|
1556
|
+
"hrv",
|
|
1557
|
+
"hun",
|
|
1558
|
+
"hye",
|
|
1559
|
+
"ibo",
|
|
1560
|
+
"ido",
|
|
1561
|
+
"iii",
|
|
1562
|
+
"iku",
|
|
1563
|
+
"ile",
|
|
1564
|
+
"ina",
|
|
1565
|
+
"ind",
|
|
1566
|
+
"ipk",
|
|
1567
|
+
"isl",
|
|
1568
|
+
"ita",
|
|
1569
|
+
"jav",
|
|
1570
|
+
"jpn",
|
|
1571
|
+
"kal",
|
|
1572
|
+
"kan",
|
|
1573
|
+
"kas",
|
|
1574
|
+
"kat",
|
|
1575
|
+
"kau",
|
|
1576
|
+
"kaz",
|
|
1577
|
+
"khm",
|
|
1578
|
+
"kik",
|
|
1579
|
+
"kin",
|
|
1580
|
+
"kir",
|
|
1581
|
+
"kom",
|
|
1582
|
+
"kon",
|
|
1583
|
+
"kor",
|
|
1584
|
+
"kua",
|
|
1585
|
+
"kur",
|
|
1586
|
+
"lao",
|
|
1587
|
+
"lat",
|
|
1588
|
+
"lav",
|
|
1589
|
+
"lim",
|
|
1590
|
+
"lin",
|
|
1591
|
+
"lit",
|
|
1592
|
+
"ltz",
|
|
1593
|
+
"lub",
|
|
1594
|
+
"lug",
|
|
1595
|
+
"mah",
|
|
1596
|
+
"mal",
|
|
1597
|
+
"mar",
|
|
1598
|
+
"mkd",
|
|
1599
|
+
"mlg",
|
|
1600
|
+
"mlt",
|
|
1601
|
+
"mon",
|
|
1602
|
+
"mri",
|
|
1603
|
+
"msa",
|
|
1604
|
+
"mya",
|
|
1605
|
+
"nau",
|
|
1606
|
+
"nav",
|
|
1607
|
+
"nbl",
|
|
1608
|
+
"nde",
|
|
1609
|
+
"ndo",
|
|
1610
|
+
"nep",
|
|
1611
|
+
"nld",
|
|
1612
|
+
"nno",
|
|
1613
|
+
"nob",
|
|
1614
|
+
"nor",
|
|
1615
|
+
"nya",
|
|
1616
|
+
"oci",
|
|
1617
|
+
"oji",
|
|
1618
|
+
"ori",
|
|
1619
|
+
"orm",
|
|
1620
|
+
"oss",
|
|
1621
|
+
"pan",
|
|
1622
|
+
"pli",
|
|
1623
|
+
"pol",
|
|
1624
|
+
"por",
|
|
1625
|
+
"pus",
|
|
1626
|
+
"que",
|
|
1627
|
+
"roh",
|
|
1628
|
+
"ron",
|
|
1629
|
+
"run",
|
|
1630
|
+
"rus",
|
|
1631
|
+
"sag",
|
|
1632
|
+
"san",
|
|
1633
|
+
"sin",
|
|
1634
|
+
"slk",
|
|
1635
|
+
"slv",
|
|
1636
|
+
"sme",
|
|
1637
|
+
"smo",
|
|
1638
|
+
"sna",
|
|
1639
|
+
"snd",
|
|
1640
|
+
"som",
|
|
1641
|
+
"sot",
|
|
1642
|
+
"spa",
|
|
1643
|
+
"sqi",
|
|
1644
|
+
"srd",
|
|
1645
|
+
"srp",
|
|
1646
|
+
"ssw",
|
|
1647
|
+
"sun",
|
|
1648
|
+
"swa",
|
|
1649
|
+
"swe",
|
|
1650
|
+
"tah",
|
|
1651
|
+
"tam",
|
|
1652
|
+
"tat",
|
|
1653
|
+
"tel",
|
|
1654
|
+
"tgk",
|
|
1655
|
+
"tgl",
|
|
1656
|
+
"tha",
|
|
1657
|
+
"tir",
|
|
1658
|
+
"ton",
|
|
1659
|
+
"tsn",
|
|
1660
|
+
"tso",
|
|
1661
|
+
"tuk",
|
|
1662
|
+
"tur",
|
|
1663
|
+
"twi",
|
|
1664
|
+
"uig",
|
|
1665
|
+
"ukr",
|
|
1666
|
+
"urd",
|
|
1667
|
+
"uzb",
|
|
1668
|
+
"ven",
|
|
1669
|
+
"vie",
|
|
1670
|
+
"vol",
|
|
1671
|
+
"wln",
|
|
1672
|
+
"wol",
|
|
1673
|
+
"xho",
|
|
1674
|
+
"yid",
|
|
1675
|
+
"yor",
|
|
1676
|
+
"zha",
|
|
1677
|
+
"zho",
|
|
1678
|
+
"zul"
|
|
1679
|
+
],
|
|
1680
|
+
"title": "Language",
|
|
1681
|
+
"description": "Language of the metadata expressed using ISO 639-3.",
|
|
1682
|
+
"examples": [
|
|
1683
|
+
"eng"
|
|
1684
|
+
]
|
|
1685
|
+
},
|
|
1686
|
+
"License": {
|
|
1687
|
+
"type": "object",
|
|
1688
|
+
"title": "License",
|
|
1689
|
+
"properties": {
|
|
1690
|
+
"license_ref": {
|
|
1691
|
+
"type": "string",
|
|
1692
|
+
"format": "url",
|
|
1693
|
+
"title": "License Reference",
|
|
1694
|
+
"description": "Link to license document.",
|
|
1695
|
+
"examples": [
|
|
1696
|
+
"https://creativecommons.org/licenses/by/4.0/"
|
|
1697
|
+
]
|
|
1698
|
+
},
|
|
1699
|
+
"start_date": {
|
|
1700
|
+
"type": "string",
|
|
1701
|
+
"format": "date",
|
|
1702
|
+
"title": "Start Date",
|
|
1703
|
+
"description": "If date is set in the future, it indicates embargo period. Encoded using the relevant ISO 8601 Date compliant string.",
|
|
1704
|
+
"examples": [
|
|
1705
|
+
"2019-06-30"
|
|
1706
|
+
]
|
|
1707
|
+
}
|
|
1708
|
+
},
|
|
1709
|
+
"required": [
|
|
1710
|
+
"license_ref",
|
|
1711
|
+
"start_date"
|
|
1712
|
+
]
|
|
1713
|
+
},
|
|
1714
|
+
"Licenses": {
|
|
1715
|
+
"type": "array",
|
|
1716
|
+
"title": "Licenses",
|
|
1717
|
+
"description": "To list all licenses applied to a specific distribution of data.",
|
|
1718
|
+
"items": {
|
|
1719
|
+
"$ref": "#/$defs/License"
|
|
1720
|
+
}
|
|
1721
|
+
},
|
|
1722
|
+
"Metadata": {
|
|
1723
|
+
"type": "object",
|
|
1724
|
+
"title": "Metadata",
|
|
1725
|
+
"properties": {
|
|
1726
|
+
"description": {
|
|
1727
|
+
"type": "string",
|
|
1728
|
+
"title": "Description",
|
|
1729
|
+
"description": "To provide any details on the choice of the metadata standard",
|
|
1730
|
+
"examples": [
|
|
1731
|
+
"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."
|
|
1732
|
+
]
|
|
1733
|
+
},
|
|
1734
|
+
"language": {
|
|
1735
|
+
"$ref": "#/$defs/LanguageCode"
|
|
1736
|
+
},
|
|
1737
|
+
"metadata_standard_id": {
|
|
1738
|
+
"oneOf": [
|
|
1739
|
+
{
|
|
1740
|
+
"$ref": "#/$defs/MetadataStandardID"
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
"type": "array",
|
|
1744
|
+
"items": {
|
|
1745
|
+
"$ref": "#/$defs/MetadataStandardID"
|
|
1746
|
+
},
|
|
1747
|
+
"minItems": 1
|
|
1748
|
+
}
|
|
1749
|
+
]
|
|
1750
|
+
}
|
|
1751
|
+
},
|
|
1752
|
+
"required": [
|
|
1753
|
+
"language",
|
|
1754
|
+
"metadata_standard_id"
|
|
1755
|
+
]
|
|
1756
|
+
},
|
|
1757
|
+
"MetadataStandardID": {
|
|
1758
|
+
"type": "object",
|
|
1759
|
+
"title": "Metadata Standard ID",
|
|
1760
|
+
"properties": {
|
|
1761
|
+
"identifier": {
|
|
1762
|
+
"type": "string",
|
|
1763
|
+
"title": "Identifier",
|
|
1764
|
+
"examples": [
|
|
1765
|
+
"http://www.dublincore.org/specifications/dublin-core/dcmi-terms/"
|
|
1766
|
+
]
|
|
1767
|
+
},
|
|
1768
|
+
"type": {
|
|
1769
|
+
"type": "string",
|
|
1770
|
+
"enum": [
|
|
1771
|
+
"url",
|
|
1772
|
+
"other"
|
|
1773
|
+
],
|
|
1774
|
+
"title": "Type",
|
|
1775
|
+
"description": "Identifier type. Suggested values: url",
|
|
1776
|
+
"examples": [
|
|
1777
|
+
"url"
|
|
1778
|
+
]
|
|
1779
|
+
}
|
|
1780
|
+
},
|
|
1781
|
+
"required": [
|
|
1782
|
+
"identifier",
|
|
1783
|
+
"type"
|
|
1784
|
+
]
|
|
1785
|
+
},
|
|
1786
|
+
"PIDSystems": {
|
|
1787
|
+
"type": "array",
|
|
1788
|
+
"title": "PID System",
|
|
1789
|
+
"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",
|
|
1790
|
+
"items": {
|
|
1791
|
+
"$ref": "#/$defs/PIDSystemType"
|
|
1792
|
+
}
|
|
1793
|
+
},
|
|
1794
|
+
"PIDSystemType": {
|
|
1795
|
+
"type": "string",
|
|
1796
|
+
"title": "PID System Type",
|
|
1797
|
+
"enum": [
|
|
1798
|
+
"ark",
|
|
1799
|
+
"arxiv",
|
|
1800
|
+
"bibcode",
|
|
1801
|
+
"doi",
|
|
1802
|
+
"ean13",
|
|
1803
|
+
"eissn",
|
|
1804
|
+
"handle",
|
|
1805
|
+
"igsn",
|
|
1806
|
+
"isbn",
|
|
1807
|
+
"issn",
|
|
1808
|
+
"istc",
|
|
1809
|
+
"lissn",
|
|
1810
|
+
"lsid",
|
|
1811
|
+
"pmid",
|
|
1812
|
+
"purl",
|
|
1813
|
+
"upc",
|
|
1814
|
+
"url",
|
|
1815
|
+
"urn",
|
|
1816
|
+
"other"
|
|
1817
|
+
],
|
|
1818
|
+
"examples": [
|
|
1819
|
+
"doi"
|
|
1820
|
+
]
|
|
1821
|
+
},
|
|
1822
|
+
"Project": {
|
|
1823
|
+
"type": "object",
|
|
1824
|
+
"title": "Project",
|
|
1825
|
+
"properties": {
|
|
1826
|
+
"description": {
|
|
1827
|
+
"type": "string",
|
|
1828
|
+
"title": "Description",
|
|
1829
|
+
"description": "Project abstract providing an overview of the project's goals and scope",
|
|
1830
|
+
"examples": [
|
|
1831
|
+
"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."
|
|
1832
|
+
]
|
|
1833
|
+
},
|
|
1834
|
+
"end": {
|
|
1835
|
+
"type": "string",
|
|
1836
|
+
"format": "date",
|
|
1837
|
+
"title": "End",
|
|
1838
|
+
"description": "Project end date. Encoded using the relevant ISO 8601 Date compliant string",
|
|
1839
|
+
"examples": [
|
|
1840
|
+
"2020-03-31"
|
|
1841
|
+
]
|
|
1842
|
+
},
|
|
1843
|
+
"funding": {
|
|
1844
|
+
"$ref": "#/$defs/Fundings"
|
|
1845
|
+
},
|
|
1846
|
+
"project_id": {
|
|
1847
|
+
"type": "array",
|
|
1848
|
+
"items": {
|
|
1849
|
+
"$ref": "#/$defs/ProjectID"
|
|
1850
|
+
},
|
|
1851
|
+
"minItems": 0
|
|
1852
|
+
},
|
|
1853
|
+
"start": {
|
|
1854
|
+
"type": "string",
|
|
1855
|
+
"format": "date",
|
|
1856
|
+
"title": "Start",
|
|
1857
|
+
"description": "Project start date. Encoded using the relevant ISO 8601 Date compliant string",
|
|
1858
|
+
"examples": [
|
|
1859
|
+
"2019-04-01"
|
|
1860
|
+
]
|
|
1861
|
+
},
|
|
1862
|
+
"title": {
|
|
1863
|
+
"type": "string",
|
|
1864
|
+
"title": "Title",
|
|
1865
|
+
"description": "Project title",
|
|
1866
|
+
"examples": [
|
|
1867
|
+
"Our New Project"
|
|
1868
|
+
]
|
|
1869
|
+
}
|
|
1870
|
+
},
|
|
1871
|
+
"required": [
|
|
1872
|
+
"title"
|
|
1873
|
+
]
|
|
1874
|
+
},
|
|
1875
|
+
"ProjectID": {
|
|
1876
|
+
"type": "object",
|
|
1877
|
+
"title": "Project ID",
|
|
1878
|
+
"properties": {
|
|
1879
|
+
"identifier": {
|
|
1880
|
+
"type": "string",
|
|
1881
|
+
"title": "Identifier",
|
|
1882
|
+
"examples": [
|
|
1883
|
+
"https://example.org/project"
|
|
1884
|
+
]
|
|
1885
|
+
},
|
|
1886
|
+
"type": {
|
|
1887
|
+
"type": "string",
|
|
1888
|
+
"title": "Type",
|
|
1889
|
+
"description": "Identifier type. Suggested values: doi, raid, url",
|
|
1890
|
+
"examples": [
|
|
1891
|
+
"url",
|
|
1892
|
+
"doi",
|
|
1893
|
+
"raid"
|
|
1894
|
+
]
|
|
1895
|
+
}
|
|
1896
|
+
},
|
|
1897
|
+
"required": [
|
|
1898
|
+
"identifier",
|
|
1899
|
+
"type"
|
|
1900
|
+
]
|
|
1901
|
+
},
|
|
1902
|
+
"RelatedIdentifier": {
|
|
1903
|
+
"type": "object",
|
|
1904
|
+
"title": "Related Identifier",
|
|
1905
|
+
"properties": {
|
|
1906
|
+
"identifier": {
|
|
1907
|
+
"type": "string",
|
|
1908
|
+
"title": "Identifier",
|
|
1909
|
+
"examples": [
|
|
1910
|
+
"https://example.com/"
|
|
1911
|
+
]
|
|
1912
|
+
},
|
|
1913
|
+
"metadata_scheme": {
|
|
1914
|
+
"type": "string",
|
|
1915
|
+
"title": "Metadata Scheme",
|
|
1916
|
+
"description": "Name of the related metadata schema (if applicable)",
|
|
1917
|
+
"examples": [
|
|
1918
|
+
"DDI-L"
|
|
1919
|
+
]
|
|
1920
|
+
},
|
|
1921
|
+
"relation_type": {
|
|
1922
|
+
"type": "string",
|
|
1923
|
+
"title": "Relation Type",
|
|
1924
|
+
"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/",
|
|
1925
|
+
"examples": [
|
|
1926
|
+
"HasMetadata"
|
|
1927
|
+
]
|
|
1928
|
+
},
|
|
1929
|
+
"resource_type": {
|
|
1930
|
+
"type": "string",
|
|
1931
|
+
"title": "Resource Type",
|
|
1932
|
+
"description": "Type of the related resource, suggested values from DataCite resourceTypeGeneral: https://datacite-metadata-schema.readthedocs.io/en/4.5/appendices/appendix-1/resourceTypeGeneral/",
|
|
1933
|
+
"examples": [
|
|
1934
|
+
"Model"
|
|
1935
|
+
]
|
|
1936
|
+
},
|
|
1937
|
+
"scheme_type": {
|
|
1938
|
+
"type": "string",
|
|
1939
|
+
"title": "Scheme Type",
|
|
1940
|
+
"description": "Type of the related metadata scheme linked with scheme URI (if applicable)",
|
|
1941
|
+
"examples": [
|
|
1942
|
+
"XSD"
|
|
1943
|
+
]
|
|
1944
|
+
},
|
|
1945
|
+
"scheme_uri": {
|
|
1946
|
+
"type": "string",
|
|
1947
|
+
"format": "uri",
|
|
1948
|
+
"title": "Scheme URI",
|
|
1949
|
+
"description": "Link to the scheme of the identifier (if applicable)",
|
|
1950
|
+
"examples": [
|
|
1951
|
+
"http://www.ddialliance.org/Specification/DDI-Lifecycle/3.1/XMLSchema/instance.xsd"
|
|
1952
|
+
]
|
|
1953
|
+
},
|
|
1954
|
+
"type": {
|
|
1955
|
+
"type": "string",
|
|
1956
|
+
"title": "Type",
|
|
1957
|
+
"description": "Type of the identifier, suggested values from DataCite relatedIdentifierType: https://datacite-metadata-schema.readthedocs.io/en/4.5/appendices/appendix-1/relatedIdentifierType/",
|
|
1958
|
+
"examples": [
|
|
1959
|
+
"url"
|
|
1960
|
+
]
|
|
1961
|
+
}
|
|
1962
|
+
},
|
|
1963
|
+
"required": [
|
|
1964
|
+
"identifier",
|
|
1965
|
+
"type",
|
|
1966
|
+
"relation_type"
|
|
1967
|
+
]
|
|
1968
|
+
},
|
|
1969
|
+
"SecurityAndPrivacyItem": {
|
|
1970
|
+
"type": "object",
|
|
1971
|
+
"title": "Security and Policy",
|
|
1972
|
+
"properties": {
|
|
1973
|
+
"description": {
|
|
1974
|
+
"type": "string",
|
|
1975
|
+
"title": "Description",
|
|
1976
|
+
"description": "Describe a security and privacy measure applied to a dataset to protect sensitive information",
|
|
1977
|
+
"examples": [
|
|
1978
|
+
"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."
|
|
1979
|
+
]
|
|
1980
|
+
},
|
|
1981
|
+
"title": {
|
|
1982
|
+
"type": "string",
|
|
1983
|
+
"title": "Title",
|
|
1984
|
+
"description": "Title a measure applied to a dataset",
|
|
1985
|
+
"examples": [
|
|
1986
|
+
"Anonymization of Personally Identifiable Data"
|
|
1987
|
+
]
|
|
1988
|
+
}
|
|
1989
|
+
},
|
|
1990
|
+
"required": [
|
|
1991
|
+
"title"
|
|
1992
|
+
]
|
|
1993
|
+
},
|
|
1994
|
+
"SecurityAndPrivacyItems": {
|
|
1995
|
+
"type": "array",
|
|
1996
|
+
"title": "Security and Policy Items",
|
|
1997
|
+
"description": "To list all issues and requirements related to security and privacy",
|
|
1998
|
+
"items": {
|
|
1999
|
+
"$ref": "#/$defs/SecurityAndPrivacyItem"
|
|
2000
|
+
}
|
|
2001
|
+
},
|
|
2002
|
+
"TechnicalResource": {
|
|
2003
|
+
"type": "object",
|
|
2004
|
+
"title": "Technical Resource",
|
|
2005
|
+
"properties": {
|
|
2006
|
+
"description": {
|
|
2007
|
+
"type": "string",
|
|
2008
|
+
"title": "Description",
|
|
2009
|
+
"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)",
|
|
2010
|
+
"examples": [
|
|
2011
|
+
"The Celestron 44102 Inverted Biological Microscope was used to examine biological samples, such as cells and microorganisms, with high-resolution optics."
|
|
2012
|
+
]
|
|
2013
|
+
},
|
|
2014
|
+
"name": {
|
|
2015
|
+
"type": "string",
|
|
2016
|
+
"title": "Name",
|
|
2017
|
+
"description": "Name a resource applied to a dataset",
|
|
2018
|
+
"examples": [
|
|
2019
|
+
"Celestron Microscope"
|
|
2020
|
+
]
|
|
2021
|
+
},
|
|
2022
|
+
"technical_resource_id": {
|
|
2023
|
+
"type": "array",
|
|
2024
|
+
"items": {
|
|
2025
|
+
"$ref": "#/$defs/TechnicalResourceID"
|
|
2026
|
+
},
|
|
2027
|
+
"minItems": 0
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
2030
|
+
"required": [
|
|
2031
|
+
"name"
|
|
2032
|
+
]
|
|
2033
|
+
},
|
|
2034
|
+
"TechnicalResourceID": {
|
|
2035
|
+
"type": "object",
|
|
2036
|
+
"title": "Technical Resource ID",
|
|
2037
|
+
"properties": {
|
|
2038
|
+
"identifier": {
|
|
2039
|
+
"type": "string",
|
|
2040
|
+
"title": "Identifier",
|
|
2041
|
+
"examples": [
|
|
2042
|
+
"https://example.org/resource"
|
|
2043
|
+
]
|
|
2044
|
+
},
|
|
2045
|
+
"type": {
|
|
2046
|
+
"type": "string",
|
|
2047
|
+
"title": "Type",
|
|
2048
|
+
"description": "Identifier type. Suggested values: url",
|
|
2049
|
+
"examples": [
|
|
2050
|
+
"url",
|
|
2051
|
+
"doi",
|
|
2052
|
+
"other"
|
|
2053
|
+
]
|
|
2054
|
+
}
|
|
2055
|
+
},
|
|
2056
|
+
"required": [
|
|
2057
|
+
"identifier",
|
|
2058
|
+
"type"
|
|
2059
|
+
]
|
|
2060
|
+
},
|
|
2061
|
+
"TechnicalResources": {
|
|
2062
|
+
"type": "array",
|
|
2063
|
+
"title": "Technical Resources",
|
|
2064
|
+
"description": "To list all technical resources needed to implement a DMP",
|
|
2065
|
+
"items": {
|
|
2066
|
+
"$ref": "#/$defs/TechnicalResource"
|
|
2067
|
+
}
|
|
2068
|
+
}
|
|
2069
|
+
}
|
|
2070
|
+
}
|