forked from USFWS/ak-md-profiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ak-proj-schema.json
483 lines (483 loc) · 19.8 KB
/
ak-proj-schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "AK Region Project Schema",
"description": "Minimum required fields and terms for metadata written for USFWS Alaska Region projects.",
"$id": "ak-project-metadata.json",
"version": "1.0.0",
"properties": {
"metadata": {
"properties": {
"resourceInfo": {
"properties": {
"status": {
"items": {
"enum": [
"completed",
"onGoing",
"proposed",
"accepted"
],
"errorMessage": {
"enum": "Project status in the 'Basic Information' section under the 'Main' tab must be one of: 'completed', 'onGoing', 'proposed', or 'accepted'"
}
}
},
"resourceType": {
"items": {
"properties": {
"type": {
"const": "project",
"errorMessage": {
"const": "Resource type for project must be listed as 'project' in the 'Resource Types' section under the 'Main' tab. If you are creating a record for a data product, please select a different mdEditor profile."
}
}
}
}
},
"pointOfContact": {
"allOf": [
{
"contains": {
"properties": {
"role": {
"const": "pointOfContact",
"errorMessage": {
"const": "The 'Point of Contact' section under the 'Main' tab must have at least one Data Steward listed with the role 'pointOfContact'."
}
}
}
}
},
{
"contains": {
"properties": {
"role": {
"const": "custodian",
"errorMessage": {
"const": "The 'Point of Contact' section under the 'Main' tab must have at least one Data Custodian listed with the role 'custodian'."
}
}
}
}
},
{
"contains": {
"properties": {
"role": {
"const": "owner",
"errorMessage": {
"const": "The 'Point of Contact' section under the 'Main' tab must have at least one Data Trustee listed with the role 'owner'."
}
}
}
}
}
],
"items": {
"properties": {
"role": {},
"party": {}
},
"required": [
"role",
"party"
],
"errorMessage": {
"role": "Roles must be provided in the 'Point of Contact' section under the 'Main' tab for Data Trustees (use 'owner'), Data Stewards (use 'pointOfContact'), and Data Custodians (use 'custodian').",
"party": "At least one person must be assigned to each role in the 'Point of Contact' section under the 'Main' tab."
}
}
},
"citation": {
"properties": {
"title": {},
"date": {
"items": {
"properties": {
"date": {},
"dateType": {}
},
"required": [
"date",
"dateType"
],
"errorMessage": {
"required": {
"date": "At least one date (e.g. acquisition, creation, revision) must be provided in the 'Citation' section under the 'Main' tab.",
"dateType": "A type must be provided for dates in the 'Citation' section under the 'Main' tab."
}
}
}
},
"responsibleParty": {
"items": {
"properties": {
"role": {},
"party": {}
},
"required": [
"role",
"party"
],
"errorMessage": {
"required": {
"role": "At least one role must be provided in the 'Responsible Party' section of the 'Citation' section under the 'Main' tab. This should be the individual(s) or organization(s) that are associated with the project citation.",
"party": "At least one person must be assigned to a role in the 'Responsible Party' section of the 'Citation' section under the 'Main' tab."
}
}
}
},
"onlineResource": {
"items": {
"required": [
"uri"
],
"errorMessage": {
"required": {
"uri": "If providing an online resource for a project, a URI for the project homepage must be provided in the 'Online Resource' section of the 'Citation' section under the 'Main' tab. This should be a link for browsing rather than a direct download link."
}
}
}
},
"identifier": {
"items": {
"properties": {
"identifier": {},
"namespace": {}
},
"required": [
"identifier",
"namespace"
],
"errorMessage": {
"required": {
"identifier": "Provide an identifier (e.g. Digital Object Identifier (DOI), ISBN, UUID) for the product in the 'Citation' section under the 'Main' tab.",
"namespace": "Provide the context (i.e. namespace) for the product identifier in the 'Citation' section under the 'Main' tab."
}
}
}
}
},
"required": [
"title",
"date",
"responsibleParty"
],
"errorMessage": {
"required": {
"title": "A short, descriptive project title must be provided in the 'Basic Information' section under the 'Main' tab.",
"date": "At least one date (e.g. award, start, revision) must be provided in the 'Citation' section under the 'Main' tab.",
"responsibleParty": "At least one Responsible Party associated with the project's citation must be provided in the 'Citation' section under the 'Main' tab."
}
}
},
"abstract": {},
"timePeriod": {
"oneOf": [
{
"properties": {
"startDateTime": {},
"endDateTime": {}
},
"anyOf": [
{
"required": [
"startDateTime"
]
},
{
"required": [
"endDateTime"
]
}
]
}
],
"errorMessage": {
"oneOf": "A start date and/or an end date must be provided for this project in the 'Time Period' section under the 'Main' tab."
}
},
"keyword": {
"items": {
"properties": {
"keyword": {},
"thesaurus": {}
},
"required": [
"keyword",
"thesaurus"
],
"errorMessage": {
"required": {
"keyword": "At least one keyword must be provided from each selected thesaurus under the 'Keywords' tab.",
"thesaurus": "At least one keyword must be provided from the Global Change Master Directory (GCMD) Science Keywords thesaurus under the 'Keywords' tab."
}
}
},
"contains": {
"properties": {
"thesaurus": {
"properties": {
"title": {
"const": "Global Change Master Directory (GCMD) Science Keywords",
"errorMessage": {
"const": "At least one keyword under the 'Keywords' tab must be from the Global Change Master Directory (GCMD) Science Keywords thesaurus."
}
}
}
}
}
}
}
},
"required": [
"status",
"resourceType",
"pointOfContact",
"citation",
"abstract",
"timePeriod",
"keyword"
],
"errorMessage": {
"required": {
"status": "The current project status must be provided in the 'Basic Information' section under the 'Main' tab. Status must be one of: 'completed', 'onGoing', 'proposed', or 'accepted'",
"resourceType": "Resource type must be provided in the 'Resource Types' section under the 'Main' tab. The resource type for projects must be 'project'.",
"pointOfContact": "Project personnel must be provided in the 'Point of Contact' section under the 'Main' tab.",
"abstract": "Project abstract must be provided in the 'Description' section under the 'Main' tab. Abstracts should summarize the project's purpose and goals.",
"timePeriod": "Project time period must be provided in the 'Time Period' section under the 'Main' tab. At least a project start date and/or a project end date must be provided.",
"keyword": "Project keywords must be provided under the 'Keywords' tab. At least one keyword must be provided from the 'Global Change Master Directory (GCMD) Science Keywords' thesaurus."
}
}
},
"metadataInfo": {
"properties": {
"metadataStatus": {},
"metadataDate": {
"items": {
"properties": {
"date": {},
"dateType": {}
},
"required": [
"date",
"dateType"
],
"errorMessage": {
"required": {
"date": "At least a creation date for the metadata must be provided in the 'Basic Information' section under the 'Metadata' tab.",
"dateType": "A date type must be provided for dates associated with the metadata in the 'Basic Information' section under the 'Metadata' tab. At least one date should have the type 'creation'."
}
}
},
"contains": {
"properties": {
"dateType": {
"const": "creation",
"errorMessage": {
"const": "A creation date for the metadata must be provided in the 'Basic Information' section under the 'Metadata' tab."
}
}
}
}
},
"metadataContact": {
"allOf": [
{
"contains": {
"properties": {
"role": {
"const": "author",
"errorMessage": "At least one metadata contact must have the role 'author' under the 'Metadata Contacts' section of the 'Metadata' tab."
}
}
}
},
{
"contains": {
"properties": {
"role": {
"const": "pointOfContact",
"errorMessage": "At least one metadata contact must have the role 'pointOfContact' under the 'Metadata Contacts' section of the 'Metadata' tab."
}
}
}
}
],
"items": {
"properties": {
"role": {},
"party": {}
},
"required": [
"role",
"party"
],
"errorMessage": {
"required": {
"role": "A role must be provided in the 'Metadata Contacts' section under the 'Metadata' tab.",
"party": "A contact must be provided in the 'Metadata Contacts' section under the 'Metadata' tab."
}
}
}
}
},
"required": [
"metadataStatus",
"metadataDate",
"metadataContact"
],
"errorMessage": {
"required": {
"metadataStatus": "The status of the metadata (e.g. onGoing, completed), must be provided in the 'Basic Information' section under the 'Metadata' tab.",
"metadataDate": "A creation date for the metadata must be provided in the 'Basic Information' section under the 'Metadata' tab.",
"metadataContact": "An author and a pointOfContact for the metadata must be provided in the 'Metadata Contact' section under the 'Metadata' tab."
}
}
},
"resourceDistribution": {
"items": {
"properties": {
"distributor": {
"items": {
"properties": {
"contact": {
"properties": {
"role": {
"const": "distributor",
"errorMessage": {
"const": "Role for distributor in the 'Distributor' section under the 'Distribution' tab must be 'distributor'."
}
},
"party": {}
},
"required": [
"role",
"party"
],
"errorMessage": {
"required": {
"role": "Indicate 'distributor' as the role for the product distributor under the 'Distribution' tab.",
"party": "Indicate the organization that will distribute the product as the contact under the 'Distribution' tab."
}
}
},
"transferOption": {
"items": {
"properties": {
"onlineOption": {
"items": {
"properties": {
"uri": {}
},
"required": [
"uri"
],
"errorMessage": {
"required": {
"uri": "A URI must be provided for an online option to access the resource under the 'Transfer Option' section of the 'Distributor' section under the 'Distribution' tab. The URI should link to either the direct download (URI that will automatically start a download) or the link to page where you can download the resource."
}
}
}
}
},
"required": [
"onlineOption"
],
"errorMessage": {
"required": {
"onlineOption": "An online option for distribution must be provided in the 'Transfer Option' section of the 'Distributor' section under the 'Distribution' tab."
}
}
}
}
},
"required": [
"contact",
"transferOption"
],
"errorMessage": {
"required": {
"contact": "Provide a contact for distribution in the 'Distributor' section under the 'Distribution' tab.",
"transferOption": "A transfer option must be provided for distribution in the 'Distributor' section under the 'Distribution' tab."
}
}
}
}
}
}
},
"funding": {
"items": {
"properties": {
"allocation": {
"items": {
"properties": {
"amount": {},
"sourceId": {},
"recipientId": {}
},
"required": [
"amount",
"sourceId",
"recipientId"
],
"errorMessage": {
"required": {
"amount": "A funding amount must be provided in the 'Allocation' section under the 'Funding' tab.",
"sourceId": "A funding source must be provided in the 'Allocation' section under the 'Funding' tab.",
"recipientId": "A funding recipient must be provided in the 'Allocation' section under the 'Funding' tab. This recipient should always be an organization, not an individual."
}
}
}
},
"timePeriod": {}
},
"required": [
"allocation",
"timePeriod"
],
"errorMessage": {
"required": {
"allocation": "Funding allocation must be described in the 'Allocation' section under the 'Funding' tab.",
"timePeriod": "The fiscal year of funding allocation (Time Period) must be provided in the 'Allocation' section under the 'Funding' tab."
}
}
}
},
"associatedResource": {
"items": {
"properties": {
"associationType": {},
"resourceCitation": {}
},
"required": [
"associationType",
"resourceCitation"
],
"errorMessage": {
"required": {
"associationType": "Projects with associations must have an association type listed under the 'Associations' tab.",
"resourceCitation": "Provide the citation information for the associated resource under the 'Associations' tab."
}
}
},
"contains": {
"properties": {
"associationType": {
"const": "product",
"errorMessage": {
"const": "At least one association type must be product under the 'Associations' tab."
}
}
}
}
}
},
"required": [
"metadataInfo",
"resourceInfo"
]
}
}
}