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