forked from USFWS/ak-md-profiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fws-disc-proj-schema.json
313 lines (313 loc) · 18 KB
/
fws-disc-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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "USFWS Discovery Project Schema",
"description": "Minimum required fields and terms for discovery level metadata written for USFWS.",
"$id": "fws-disc-proj-schema.json",
"version": "1.0.0",
"properties": {
"metadata": {
"properties": {
"metadataInfo": {
"properties": {
"defaultMetadataLocale": {
"required": [
"language"
],
"errorMessage": {
"required": {
"language": "A language must be provided in the 'Default Metadata Locale' panel of the 'Metadata' tab."
}
}
}
}
},
"resourceInfo": {
"properties": {
"defaultResourceLocale": {
"required": [
"language"
],
"errorMessage": {
"required": {
"language": "A language must be provided in the 'Basic Information' panel of the 'Main' tab."
}
}
},
"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 contact listed with the role 'pointOfContact'."
}
}
}
}
}
],
"items": {
"properties": {
"role": {},
"party": {}
},
"required": [
"role",
"party"
],
"errorMessage": {
"role": "Roles must be provided in the 'Point of Contact' section under the 'Main' tab.",
"party": "At least one person must be assigned to each role in the 'Point of Contact' section under the 'Main' tab."
}
}
},
"citation": {
"properties": {
"title": {},
"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"
],
"errorMessage": {
"required": {
"title": "A short, descriptive project title must be provided in the 'Basic Information' 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": {
"contains": {
"properties": {
"thesaurus": {
"properties": {
"title": {
"enum": [
"Global Change Master Directory (GCMD) Instruments",
"Global Change Master Directory (GCMD) Platforms",
"Global Change Master Directory (GCMD) Science Keywords",
"ISO 19115 Topic Category",
"Deliverable Types - Landscape Conservation Cooperatives",
"End User Types - Landscape Conservation Cooperatives",
"Project Category - Landscape Conservation Cooperatives"
],
"errorMessage": {
"enum": "At least one keyword under the 'Keywords' tab must be from a controlled vocabulary thesaurus."
}
}
}
}
}
},
"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 a controlled vocabulary thesaurus under the 'Keywords' tab."
}
}
}
}
},
"required": [
"resourceType",
"pointOfContact",
"citation",
"abstract",
"timePeriod",
"keyword"
],
"errorMessage": {
"required": {
"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 a controlled vocabulary thesaurus."
}
}
},
"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."
}
}
}
}
}
}
}
}
}
},
"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."
}
}
}
}
},
"required": [
"metadataInfo",
"resourceInfo"
]
}
}
}