-
Notifications
You must be signed in to change notification settings - Fork 3
/
m3_json_schema.json
491 lines (488 loc) · 16.5 KB
/
m3_json_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
484
485
486
487
488
489
490
491
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://example.com/m3_json_schema.json",
"type": "object",
"title": "The M3 JSON Schema",
"comment": "profile, classes and properties are required; contexts and mappings are not",
"required": [
"m3_version",
"profile",
"classes",
"properties"
],
"properties": {
"m3_version": {
"$id": "#/properties/m3_version",
"type": "string",
"title": "Schema Version",
"readOnly": true,
"default": "1.0.beta2",
"description": "Version number for the M3 specification. Change this to make a new release. Instances will be validated to check they have this version in place.",
"pattern": "1.0.beta2"
},
"profile": {
"$id": "#/properties/profile",
"type": "object",
"title": "Profile Information",
"description": "Administrative information about the profile or model defined in the file.",
"additionalProperties": false,
"required": [
"responsibility",
"date_modified"
],
"properties": {
"date_modified": {
"$id": "#/properties/profile/date_modified",
"title": "Date Modified",
"description": "the date the profile was last altered",
"type": "string",
"format": "date",
"comment": "In YAML, dates must be wrapped in quotes to be validated by json schema",
"examples": [
"2019-07-03"
]
},
"responsibility": {
"$id": "#/properties/profile/responsibility",
"title": "Responsiblity",
"description": "uri for the organization or individual responsible for maintaining the profile",
"type": "string",
"format": "uri",
"examples": [
"https://wiki.duraspace.org/display/samvera/Samvera+Metadata+Interest+Group"
]
},
"responsibility_statement": {
"$id": "#/properties/profile/responsibility_statement",
"title": "Reponsibility Statement",
"description": "statement of the organization or individual responsible for maintaining the profile",
"type": "string",
"examples": [
"Samvera Metadata Interest Group"
]
},
"type": {
"$id": "#/properties/profile/type",
"title": "Type",
"description": "type of thing does the profile describe",
"type": "string",
"examples": [
"metadata models"
]
},
"version": {
"$id": "#/properties/profile/version",
"title": "Version",
"description": "version of the profile",
"type": "number",
"readOnly": true,
"default": 0.0,
"examples": [
0.8
]
}
}
},
"classes": {
"$id": "#/properties/classes",
"type": "object",
"title": "Class Definitions",
"description": "Definition of the classes used in the profile. Classes should be provided with a generic local name for the class, in CamelCase.",
"comment": "Class names are pattern matched.",
"additionalProperties": {
"type": "object",
"required": ["display_label"],
"properties": {
"display_label": {
"type": "string",
"description": "Human-readable label for the class.",
"comment": "For classes, display label is a string.",
"examples": [
"Generic Work"
]
},
"schema_url": {
"type": "string",
"format": "uri",
"description": "URI for the class, from a local or shared ontology."
},
"contexts": {
"type": "array",
"description": "A list of contexts in which this class may be used. Empty is taken to indicate all contexts.",
"comment": "Contexts must match a context defined in the contexts block.",
"items": {
"type": "string"
},
"examples": [
["chem"]
]
}
}
},
"propertyNames": {
"pattern": "[A-Z]+[A-Z]?[a-z]*$"
},
"examples": [
{
"GenericWork": {
"display_label": "Generic Work"
}
},
{
"Collection": {
"display_label": "Collection"
}
},
{
"Agent": {
"display_label": "Agent",
"schema_uri": "http://id.loc.gov/ontologies/bibframe/Agent"
}
}
]
},
"contexts": {
"$id": "#/properties/contexts",
"type": "object",
"title": "Context Definitions",
"description": "Definition of the contexts used in the profile. Contexts should be provided with a stable generic local name for the context. Names must be lower case alpha characters separated with underscores.",
"comment": "Context names are pattern matched.",
"additionalProperties": {
"type": "object",
"required": ["display_label"],
"properties": {
"display_label": {
"type": "string",
"description": "Human-readable label for the context.",
"comment": "For contexts, display label is a string.",
"examples": [
"Department of Chemistry"
]
}
}
},
"propertyNames": {
"pattern": "^[a-z_]*$"
},
"examples": [
{
"chem": {
"display_label": "Department of Chemistry"
}
}
]
},
"properties": {
"$id": "#/properties/properties",
"type": "object",
"title": "Property Definitions",
"description": "Definition of the properties used in the model. Properties should be provided with a stable generic local name for the property. Names must be lower case alpha characters separated with underscores.",
"comment": "Property names pattern matched.",
"propertyNames": {
"pattern": "^[a-z_]*$"
},
"additionalProperties": {
"type": "object",
"required": ["display_label"],
"properties": {
"display_label": {
"type": "object",
"description": "Human-readable label for the property. Class or context specific display_labels provided as a list using the class and value.",
"properties": {
"default": {
"type": "string",
"description": "Default value."
}
},
"additionalProperties": {
"type": "string"
},
"examples": [
{
"default": "Default display label.",
"MyCustomWorkType": "Context dependent display label.",
"project_x": "Project specific display label"
}
]
},
"available_on": {
"type": "object",
"description": "The classes (objects and/or work types) or contexts this property is available on (defined in 'classes' or 'contexts' section.)",
"properties": {
"class": {
"comment": "Listed values must match a class defined in the classes block.",
"type": "array",
"items": {
"type": "string"
}
},
"context": {
"comment": "Listed values must match a context defined in the contexts block.",
"type": "array",
"items": {
"type": "string"
}
}
},
"examples": [
{
"class": [
"Collection",
"MyCustomWorkType"
],
"context": [
"chem"
]
}
]
},
"cardinality": {
"type": "object",
"description": "System cardinality and obligation.",
"properties": {
"minimum": {
"type": "integer",
"description": "Minimum number of values the property must have. If there is no value provided, the assumed default minimum is 0. A minimum of 1 means the property is required.",
"default": 0,
"examples": [
1
]
},
"maximum": {
"type": "integer",
"description": "Maximum number of values the property may have. If there is no value provided, the assumed default maximum is unlimited.",
"examples": [
5
]
}
},
"examples": [
{
"cardinality": {
"minimum": 0,
"maximum": 100
}
}
]
},
"indexing": {
"type": "array",
"description": "a list of dynamic field names, taken from a controlled list; commonly used values are _tesim (stored searchable text), _teim (searchable text), _sim (string facetable), _ssm (string displayable)",
"items": {
"type": "string",
"enum": [
"displayable",
"facetable",
"searchable",
"sortable",
"stored_searchable",
"stored_sortable",
"symbol",
"fulltext_searchable"
]
},
"examples": [
["_tesim", "_sim"]
]
},
"definition": {
"type": "object",
"description": "The definition for the metadata property being described.",
"properties": {
"default": {
"type": "string",
"description": "Default value."
}
},
"additionalProperties": {
"type": "string"
},
"examples": [
{
"default": "Default display label.",
"MyCustomWorkType": "Context dependent display label."
}
]
},
"usage_guidelines": {
"type": "object",
"description": "Description of how the defined property should be used (helper text, hints, deposit text, etc.)",
"properties": {
"default": {
"type": "string",
"description": "Default value."
}
},
"additionalProperties": {
"type": "string"
},
"examples": [
{
"default": "Default display label.",
"MyCustomWorkType": "Context dependent display label."
}
]
},
"requirement": {
"type": "string",
"description": "Whether the property is required, optional, recommended, etc. from a best practices standpoint. Please use cardinality - minimum to programmatically set a property to be required.",
"examples": [
"recommended, if applicable"
]
},
"controlled_value": {
"type": "object",
"description": "",
"properties": {
"format": {
"type": "string",
"description": "Controlled vocabulary constraint on the property's value.",
"examples": []
},
"sources": {
"type": "array",
"description": "Link to a controlled vocabulary source list or file path to a config file listing accepted values.",
"items": {
"type": "string"
},
"examples": []
}
},
"examples": [
{
"controlled_value": {
"format": "http://www.w3.org/2001/XMLSchema#anyURI",
"sources": [
"/qa/terms/local/roles/"
]
}
}
]
},
"sample_value": {
"type": "array",
"description": "Example value(s) for the property.",
"items": {
"type": "string"
},
"examples": [
[
"Smith, John",
"Library of Congress"
]
]
},
"property_uri": {
"type": "string",
"format": "uri",
"description": "URI for the property, from a local or shared ontology.",
"examples": [
"http://purl.org/dc/elements/1.1/creator"
]
},
"range": {
"type": "string",
"format": "uri",
"description": "Class constraint on the property's value. If there is no value provided, the assumed default range is http://www.w3.org/2000/01/rdf-schema#Literal",
"default": "http://www.w3.org/2000/01/rdf-schema#Literal",
"examples": [
"http://www.w3.org/2000/01/rdf-schema#Literal"
]
},
"data_type": {
"type": "string",
"format": "uri",
"description": "Type constraint on the property's value. If there is no value provided, the assumed default data_type is http://www.w3.org/2001/XMLSchema#string. If multiple data types are possible, general best practice is to use the most specific type that applies to all values. If multiple types are listed, the lowest common denominator will be used for validation.",
"default": "http://www.w3.org/2001/XMLSchema#string",
"examples": [
"http://www.w3.org/2001/XMLSchema#string"
]
},
"syntax": {
"type": "string",
"description": "Type constraint on the property's value. If there is no value provided, the assumed default data_type is http://www.w3.org/2001/XMLSchema#string. If multiple data types are possible, general best practice is to use the most specific type that applies to all values. If multiple types are listed, the lowest common denominator will be used for validation.",
"examples": [
"edtf"
]
},
"index_documentation": {
"type": "string",
"description": "Free text documentation field about whether a property should be faceted, searchable, displayable, treated as text, etc.",
"examples": [
"searchable, displayable, creator facet"
]
},
"validations": {
"type": "object",
"description": "Regular Expression pattern each value must match to be valid.",
"properties": {
"match_regex": {
"type": "string",
"description": "Regular Expression pattern each value must match to be valid.",
"examples": [
"^[a-z_]*$"
]
}
},
"examples": [
{
"validations": {
"match_regex": "^[a-z_]*$"
}
}
]
},
"mapping": {
"type": "object",
"description": "A pair value defining the target property for a mapping (defined in 'mapping definitions' section.)",
"additionalProperties": {
"type": "string"
},
"propertyNames": {
"pattern": "^[a-z_]*$"
},
"examples": [
{
"dpla": "http://purl.org/dc/elements/1.1/creator"
}
]
}
}
}
},
"mappings": {
"$id": "#/properties/mappings",
"type": "object",
"title": "Mapping Definitions",
"description": "Definition of the mappings to different services or target schemas referenced in the profile.",
"additionalProperties": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
},
"propertyNames": {
"pattern": "^[a-z_]*$"
},
"examples": [
{
"dpla": {
"name": "Digital Public Library of America"
}
},
{
"datacite": {
"name": "DataCite"
}
},
{
"dc": {
"name": "Dublin Core"
}
}
]
}
}
}