linked-rolls 0.24.0 → 0.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/schema.json +554 -343
- package/package.json +3 -2
package/lib/schema.json
CHANGED
|
@@ -7,25 +7,28 @@
|
|
|
7
7
|
"description": "An actor assignment associates a person with an action. It is an object assumption so that the attribution can be annotated with a belief about its certainty."
|
|
8
8
|
},
|
|
9
9
|
"Agent": {
|
|
10
|
-
"description": "A person or a group: a pianist, an editor, a publisher, a manufacturer, a library.
|
|
10
|
+
"description": "A person or a group: a pianist, an editor, a publisher, a manufacturer, a library.",
|
|
11
11
|
"properties": {
|
|
12
12
|
"name": {
|
|
13
|
-
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\".
|
|
14
|
-
"type": "string"
|
|
13
|
+
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\".",
|
|
14
|
+
"type": "string",
|
|
15
|
+
"ontology": "rdfs:label"
|
|
15
16
|
},
|
|
16
17
|
"role": {
|
|
17
18
|
"$ref": "#/definitions/AgentRole",
|
|
18
|
-
"description": "The role of the agent in the context of the edition.
|
|
19
|
+
"description": "The role of the agent in the context of the edition.",
|
|
20
|
+
"ontology": "crm:P2 has type"
|
|
19
21
|
},
|
|
20
22
|
"sameAs": {
|
|
21
|
-
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar.
|
|
23
|
+
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar.",
|
|
22
24
|
"examples": [
|
|
23
25
|
"https://d-nb.info/gnd/116888652"
|
|
24
26
|
],
|
|
25
27
|
"items": {
|
|
26
28
|
"type": "string"
|
|
27
29
|
},
|
|
28
|
-
"type": "array"
|
|
30
|
+
"type": "array",
|
|
31
|
+
"ontology": "owl:sameAs"
|
|
29
32
|
},
|
|
30
33
|
"@id": {
|
|
31
34
|
"description": "A unique identifier for this object.",
|
|
@@ -36,7 +39,8 @@
|
|
|
36
39
|
"name",
|
|
37
40
|
"sameAs"
|
|
38
41
|
],
|
|
39
|
-
"type": "object"
|
|
42
|
+
"type": "object",
|
|
43
|
+
"ontology": "crm:E39 Actor"
|
|
40
44
|
},
|
|
41
45
|
"AgentRole": {
|
|
42
46
|
"anyOf": [
|
|
@@ -103,15 +107,17 @@
|
|
|
103
107
|
"description": "A symbol can be either a note, an expression, or a text. Notes and expressions are perforations; texts are carried by writings."
|
|
104
108
|
},
|
|
105
109
|
"Argumentation": {
|
|
106
|
-
"description": "An argumentation provides reasons for a belief and may be associated with a person carrying out that argumentation.
|
|
110
|
+
"description": "An argumentation provides reasons for a belief and may be associated with a person carrying out that argumentation.",
|
|
107
111
|
"properties": {
|
|
108
112
|
"actor": {
|
|
109
113
|
"$ref": "#/definitions/Person",
|
|
110
|
-
"description": "The person who carried out this activity.
|
|
114
|
+
"description": "The person who carried out this activity.",
|
|
115
|
+
"ontology": "crm:P14 carried out by"
|
|
111
116
|
},
|
|
112
117
|
"note": {
|
|
113
|
-
"description": "A free-text note providing additional context.
|
|
114
|
-
"type": "string"
|
|
118
|
+
"description": "A free-text note providing additional context.",
|
|
119
|
+
"type": "string",
|
|
120
|
+
"ontology": "crm:P3 has note"
|
|
115
121
|
},
|
|
116
122
|
"@type": {
|
|
117
123
|
"const": "simpleArgumentation",
|
|
@@ -123,21 +129,24 @@
|
|
|
123
129
|
"required": [
|
|
124
130
|
"@type"
|
|
125
131
|
],
|
|
126
|
-
"type": "object"
|
|
132
|
+
"type": "object",
|
|
133
|
+
"ontology": "crminf:I1 Argumentation"
|
|
127
134
|
},
|
|
128
135
|
"Belief": {
|
|
129
|
-
"description": "A belief is a temporal object and associates a proposition (i.e. a statement) with a certainty. It comes into existence through argumentations (reasons).
|
|
136
|
+
"description": "A belief is a temporal object and associates a proposition (i.e. a statement) with a certainty. It comes into existence through argumentations (reasons).",
|
|
130
137
|
"properties": {
|
|
131
138
|
"certainty": {
|
|
132
139
|
"$ref": "#/definitions/Certainty",
|
|
133
|
-
"description": "The level of certainty associated with this belief.
|
|
140
|
+
"description": "The level of certainty associated with this belief.",
|
|
141
|
+
"ontology": "crminf:J5 holds to be"
|
|
134
142
|
},
|
|
135
143
|
"reasons": {
|
|
136
|
-
"description": "The argumentations providing reasons for this belief.
|
|
144
|
+
"description": "The argumentations providing reasons for this belief.",
|
|
137
145
|
"items": {
|
|
138
146
|
"$ref": "#/definitions/AnyArgumentation"
|
|
139
147
|
},
|
|
140
|
-
"type": "array"
|
|
148
|
+
"type": "array",
|
|
149
|
+
"ontology": "crminf:J2i was concluded by"
|
|
141
150
|
},
|
|
142
151
|
"@id": {
|
|
143
152
|
"description": "A unique identifier for this object.",
|
|
@@ -156,18 +165,21 @@
|
|
|
156
165
|
"reasons",
|
|
157
166
|
"@type"
|
|
158
167
|
],
|
|
159
|
-
"type": "object"
|
|
168
|
+
"type": "object",
|
|
169
|
+
"ontology": "crminf:I2 Belief"
|
|
160
170
|
},
|
|
161
171
|
"BeliefAdoption": {
|
|
162
|
-
"description": "A belief adoption adopts someone else's belief. This type is used to indicate e.g. knowledge through private communication or from secondary literature.
|
|
172
|
+
"description": "A belief adoption adopts someone else's belief. This type is used to indicate e.g. knowledge through private communication or from secondary literature.",
|
|
163
173
|
"properties": {
|
|
164
174
|
"actor": {
|
|
165
175
|
"$ref": "#/definitions/Person",
|
|
166
|
-
"description": "The person who carried out this activity.
|
|
176
|
+
"description": "The person who carried out this activity.",
|
|
177
|
+
"ontology": "crm:P14 carried out by"
|
|
167
178
|
},
|
|
168
179
|
"note": {
|
|
169
|
-
"description": "A note describing the source of the adopted belief, e.g. a bibliographic reference or personal communication.
|
|
170
|
-
"type": "string"
|
|
180
|
+
"description": "A note describing the source of the adopted belief, e.g. a bibliographic reference or personal communication.",
|
|
181
|
+
"type": "string",
|
|
182
|
+
"ontology": "crm:P3 has note"
|
|
171
183
|
},
|
|
172
184
|
"@type": {
|
|
173
185
|
"const": "beliefAdoption",
|
|
@@ -180,7 +192,8 @@
|
|
|
180
192
|
"note",
|
|
181
193
|
"@type"
|
|
182
194
|
],
|
|
183
|
-
"type": "object"
|
|
195
|
+
"type": "object",
|
|
196
|
+
"ontology": "crminf:I7 Belief Adoption"
|
|
184
197
|
},
|
|
185
198
|
"Certainty": {
|
|
186
199
|
"description": "Certainty levels for beliefs, ranging from 'true' to 'false' and some values in between.",
|
|
@@ -212,21 +225,23 @@
|
|
|
212
225
|
"type": "object"
|
|
213
226
|
},
|
|
214
227
|
"Concept": {
|
|
215
|
-
"description": "A term from a vocabulary, such as a roll system or a kind of paper. A term the type vocabulary knows carries its IRI as `id`.
|
|
228
|
+
"description": "A term from a vocabulary, such as a roll system or a kind of paper. A term the type vocabulary knows carries its IRI as `id`.",
|
|
216
229
|
"properties": {
|
|
217
230
|
"name": {
|
|
218
|
-
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\".
|
|
219
|
-
"type": "string"
|
|
231
|
+
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\".",
|
|
232
|
+
"type": "string",
|
|
233
|
+
"ontology": "rdfs:label"
|
|
220
234
|
},
|
|
221
235
|
"sameAs": {
|
|
222
|
-
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar.
|
|
236
|
+
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar.",
|
|
223
237
|
"examples": [
|
|
224
238
|
"https://d-nb.info/gnd/116888652"
|
|
225
239
|
],
|
|
226
240
|
"items": {
|
|
227
241
|
"type": "string"
|
|
228
242
|
},
|
|
229
|
-
"type": "array"
|
|
243
|
+
"type": "array",
|
|
244
|
+
"ontology": "owl:sameAs"
|
|
230
245
|
},
|
|
231
246
|
"@id": {
|
|
232
247
|
"description": "A unique identifier for this object.",
|
|
@@ -237,7 +252,8 @@
|
|
|
237
252
|
"name",
|
|
238
253
|
"sameAs"
|
|
239
254
|
],
|
|
240
|
-
"type": "object"
|
|
255
|
+
"type": "object",
|
|
256
|
+
"ontology": "crm:E55 Type"
|
|
241
257
|
},
|
|
242
258
|
"DateAssignment": {
|
|
243
259
|
"description": "A date value wrapped as an assumption, so that the date can be annotated with a belief about its certainty and source.",
|
|
@@ -247,7 +263,8 @@
|
|
|
247
263
|
"properties": {
|
|
248
264
|
"belief": {
|
|
249
265
|
"$ref": "#/definitions/Belief",
|
|
250
|
-
"description": "The belief held about the annotated statement.
|
|
266
|
+
"description": "The belief held about the annotated statement.",
|
|
267
|
+
"ontology": "crminf:J4i is subject of"
|
|
251
268
|
},
|
|
252
269
|
"@id": {
|
|
253
270
|
"description": "A unique identifier for this object.",
|
|
@@ -278,14 +295,15 @@
|
|
|
278
295
|
"type": "object"
|
|
279
296
|
},
|
|
280
297
|
"Derivation": {
|
|
281
|
-
"description": "A derivation names the version another one was derived from, together with the tolerance the two were collated at. How precisely the copies put a symbol depends on what they are and on how their features were obtained, so the tolerance can differ from derivation to derivation.
|
|
298
|
+
"description": "A derivation names the version another one was derived from, together with the tolerance the two were collated at. How precisely the copies put a symbol depends on what they are and on how their features were obtained, so the tolerance can differ from derivation to derivation.",
|
|
282
299
|
"properties": {
|
|
283
300
|
"@annotation": {
|
|
284
301
|
"description": "An optional annotation expressing a belief about this assumption. Uses the JSON-LD-star `@annotation` mechanism to attach epistemic metadata (certainty and reasons) to any triple.",
|
|
285
302
|
"properties": {
|
|
286
303
|
"belief": {
|
|
287
304
|
"$ref": "#/definitions/Belief",
|
|
288
|
-
"description": "The belief held about the annotated statement.
|
|
305
|
+
"description": "The belief held about the annotated statement.",
|
|
306
|
+
"ontology": "crminf:J4i is subject of"
|
|
289
307
|
},
|
|
290
308
|
"@id": {
|
|
291
309
|
"description": "A unique identifier for this object.",
|
|
@@ -310,17 +328,19 @@
|
|
|
310
328
|
"required": [
|
|
311
329
|
"@id"
|
|
312
330
|
],
|
|
313
|
-
"type": "object"
|
|
331
|
+
"type": "object",
|
|
332
|
+
"ontology": "lrmoo:R76 is derivative of"
|
|
314
333
|
},
|
|
315
334
|
"Edit": {
|
|
316
|
-
"description": "A set of edits transforms a version of a roll into another version. Edits insert or delete symbols, or both (= replace). Edits may be motivated by a given set of reasons, e.g. to add an additional accent or to correct an error. If an edit is the interpretation of a metamark, such as a pencil mark, this should be made explicit using a meaning comprehension on the `@annotation` field.
|
|
335
|
+
"description": "A set of edits transforms a version of a roll into another version. Edits insert or delete symbols, or both (= replace). Edits may be motivated by a given set of reasons, e.g. to add an additional accent or to correct an error. If an edit is the interpretation of a metamark, such as a pencil mark, this should be made explicit using a meaning comprehension on the `@annotation` field.",
|
|
317
336
|
"properties": {
|
|
318
337
|
"@annotation": {
|
|
319
338
|
"description": "An optional annotation expressing a belief about this assumption. Uses the JSON-LD-star `@annotation` mechanism to attach epistemic metadata (certainty and reasons) to any triple.",
|
|
320
339
|
"properties": {
|
|
321
340
|
"belief": {
|
|
322
341
|
"$ref": "#/definitions/Belief",
|
|
323
|
-
"description": "The belief held about the annotated statement.
|
|
342
|
+
"description": "The belief held about the annotated statement.",
|
|
343
|
+
"ontology": "crminf:J4i is subject of"
|
|
324
344
|
},
|
|
325
345
|
"@id": {
|
|
326
346
|
"description": "A unique identifier for this object.",
|
|
@@ -334,26 +354,30 @@
|
|
|
334
354
|
"type": "object"
|
|
335
355
|
},
|
|
336
356
|
"delete": {
|
|
337
|
-
"description": "References (by `@id`) to the symbols to be deleted by this edit.
|
|
357
|
+
"description": "References (by `@id`) to the symbols to be deleted by this edit.",
|
|
338
358
|
"items": {
|
|
339
359
|
"type": "string"
|
|
340
360
|
},
|
|
341
|
-
"type": "array"
|
|
361
|
+
"type": "array",
|
|
362
|
+
"ontology": "reo:removed"
|
|
342
363
|
},
|
|
343
364
|
"editType": {
|
|
344
365
|
"$ref": "#/definitions/EditType",
|
|
345
|
-
"description": "The type of editorial change (e.g. 'correct-error', 'additional-accent').
|
|
366
|
+
"description": "The type of editorial change (e.g. 'correct-error', 'additional-accent').",
|
|
367
|
+
"ontology": "crm:P2 has type"
|
|
346
368
|
},
|
|
347
369
|
"insert": {
|
|
348
|
-
"description": "The symbols to be inserted by this edit.
|
|
370
|
+
"description": "The symbols to be inserted by this edit.",
|
|
349
371
|
"items": {
|
|
350
372
|
"$ref": "#/definitions/AnySymbol"
|
|
351
373
|
},
|
|
352
|
-
"type": "array"
|
|
374
|
+
"type": "array",
|
|
375
|
+
"ontology": "reo:added"
|
|
353
376
|
},
|
|
354
377
|
"motivation": {
|
|
355
|
-
"description": "A textual description of the motivation for this edit, referencing a motivation defined in the version's motivations list.
|
|
356
|
-
"type": "string"
|
|
378
|
+
"description": "A textual description of the motivation for this edit, referencing a motivation defined in the version's motivations list.",
|
|
379
|
+
"type": "string",
|
|
380
|
+
"ontology": "crm:P17 was motivated by"
|
|
357
381
|
},
|
|
358
382
|
"@id": {
|
|
359
383
|
"description": "A unique identifier for this object.",
|
|
@@ -370,7 +394,8 @@
|
|
|
370
394
|
"@id",
|
|
371
395
|
"@type"
|
|
372
396
|
],
|
|
373
|
-
"type": "object"
|
|
397
|
+
"type": "object",
|
|
398
|
+
"ontology": "reo:Edit"
|
|
374
399
|
},
|
|
375
400
|
"EditType": {
|
|
376
401
|
"description": "The type of editorial change applied to a symbol or set of symbols. Classifies the nature of the edit, e.g. whether it corrects an error, adds an accent, shifts a note, or shortens/prolongs a perforation.",
|
|
@@ -388,47 +413,54 @@
|
|
|
388
413
|
"type": "string"
|
|
389
414
|
},
|
|
390
415
|
"Edition": {
|
|
391
|
-
"description": "Describes the specific digital edition of a piano roll.
|
|
416
|
+
"description": "Describes the specific digital edition of a piano roll.",
|
|
392
417
|
"properties": {
|
|
393
418
|
"copies": {
|
|
394
|
-
"description": "The physical roll copies on which this edition is based.
|
|
419
|
+
"description": "The physical roll copies on which this edition is based.",
|
|
395
420
|
"items": {
|
|
396
421
|
"$ref": "#/definitions/RollCopy"
|
|
397
422
|
},
|
|
398
|
-
"type": "array"
|
|
423
|
+
"type": "array",
|
|
424
|
+
"ontology": "reo:witness"
|
|
399
425
|
},
|
|
400
426
|
"creation": {
|
|
401
427
|
"$ref": "#/definitions/EditionCreation",
|
|
402
|
-
"description": "Information about the creation of this edition, including publisher and publication date.
|
|
428
|
+
"description": "Information about the creation of this edition, including publisher and publication date.",
|
|
429
|
+
"ontology": "lrmoo:R17i was created by"
|
|
403
430
|
},
|
|
404
431
|
"license": {
|
|
405
|
-
"description": "The license under which the edition is published.
|
|
432
|
+
"description": "The license under which the edition is published.",
|
|
406
433
|
"examples": [
|
|
407
434
|
"https://creativecommons.org/licenses/by/4.0/"
|
|
408
435
|
],
|
|
409
|
-
"type": "string"
|
|
436
|
+
"type": "string",
|
|
437
|
+
"ontology": "dcterms:license"
|
|
410
438
|
},
|
|
411
439
|
"roll": {
|
|
412
440
|
"$ref": "#/definitions/Roll",
|
|
413
|
-
"description": "The roll which is edited in this edition.
|
|
441
|
+
"description": "The roll which is edited in this edition.",
|
|
442
|
+
"ontology": "lrmoo:R3i realises"
|
|
414
443
|
},
|
|
415
444
|
"tempoAdjustment": {
|
|
416
445
|
"$ref": "#/definitions/ObjectAssumption%3CRollTempo%3E",
|
|
417
|
-
"description": "An optional tempo adjustment for playback of the roll, annotatable with a belief about its correctness.
|
|
446
|
+
"description": "An optional tempo adjustment for playback of the roll, annotatable with a belief about its correctness.",
|
|
447
|
+
"ontology": "reo:tempo"
|
|
418
448
|
},
|
|
419
449
|
"title": {
|
|
420
|
-
"description": "The title of the edition.
|
|
450
|
+
"description": "The title of the edition.",
|
|
421
451
|
"examples": [
|
|
422
452
|
"Alfred Grünfeld spielt Robert Schumann, Träumerei"
|
|
423
453
|
],
|
|
424
|
-
"type": "string"
|
|
454
|
+
"type": "string",
|
|
455
|
+
"ontology": "dcterms:title"
|
|
425
456
|
},
|
|
426
457
|
"versions": {
|
|
427
|
-
"description": "The different versions of the roll on which this edition is based.
|
|
458
|
+
"description": "The different versions of the roll on which this edition is based.",
|
|
428
459
|
"items": {
|
|
429
460
|
"$ref": "#/definitions/Version"
|
|
430
461
|
},
|
|
431
|
-
"type": "array"
|
|
462
|
+
"type": "array",
|
|
463
|
+
"ontology": "lrmoo:R75 incorporates"
|
|
432
464
|
}
|
|
433
465
|
},
|
|
434
466
|
"required": [
|
|
@@ -439,58 +471,66 @@
|
|
|
439
471
|
"copies",
|
|
440
472
|
"versions"
|
|
441
473
|
],
|
|
442
|
-
"type": "object"
|
|
474
|
+
"type": "object",
|
|
475
|
+
"ontology": "lrmoo:F2 Expression"
|
|
443
476
|
},
|
|
444
477
|
"EditionCreation": {
|
|
445
|
-
"description": "This type describes the creation of an edition, i.e. the editor, publisher, and publication date.
|
|
478
|
+
"description": "This type describes the creation of an edition, i.e. the editor, publisher, and publication date.",
|
|
446
479
|
"properties": {
|
|
447
480
|
"collationTolerance": {
|
|
448
481
|
"$ref": "#/definitions/CollationTolerance",
|
|
449
482
|
"description": "The tolerance parameters used when collating (aligning) the different roll copies for this edition. Not exported to RDF."
|
|
450
483
|
},
|
|
451
484
|
"editors": {
|
|
452
|
-
"description": "The persons who prepared the edition, each with the part they took in the editorial work. An edition written before this field existed carries none.
|
|
485
|
+
"description": "The persons who prepared the edition, each with the part they took in the editorial work. An edition written before this field existed carries none.",
|
|
453
486
|
"items": {
|
|
454
487
|
"$ref": "#/definitions/Editor"
|
|
455
488
|
},
|
|
456
|
-
"type": "array"
|
|
489
|
+
"type": "array",
|
|
490
|
+
"ontology": "crm:P14 carried out by"
|
|
457
491
|
},
|
|
458
492
|
"publicationDate": {
|
|
459
|
-
"description": "The date on which the edition was published.
|
|
493
|
+
"description": "The date on which the edition was published.",
|
|
460
494
|
"format": "date",
|
|
461
|
-
"type": "string"
|
|
495
|
+
"type": "string",
|
|
496
|
+
"ontology": "dcterms:date"
|
|
462
497
|
},
|
|
463
498
|
"publisher": {
|
|
464
499
|
"$ref": "#/definitions/Person",
|
|
465
|
-
"description": "The person or institution responsible for publishing the edition.
|
|
500
|
+
"description": "The person or institution responsible for publishing the edition.",
|
|
501
|
+
"ontology": "crm:P14 carried out by"
|
|
466
502
|
}
|
|
467
503
|
},
|
|
468
504
|
"required": [
|
|
469
505
|
"publisher",
|
|
470
506
|
"publicationDate"
|
|
471
507
|
],
|
|
472
|
-
"type": "object"
|
|
508
|
+
"type": "object",
|
|
509
|
+
"ontology": "lrmoo:F28 Expression Creation"
|
|
473
510
|
},
|
|
474
511
|
"Editor": {
|
|
475
512
|
"description": "A person who took part in preparing the edition.",
|
|
476
513
|
"properties": {
|
|
477
514
|
"name": {
|
|
478
|
-
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\".
|
|
479
|
-
"type": "string"
|
|
515
|
+
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\".",
|
|
516
|
+
"type": "string",
|
|
517
|
+
"ontology": "rdfs:label"
|
|
480
518
|
},
|
|
481
519
|
"role": {
|
|
482
520
|
"$ref": "#/definitions/EditorialRole",
|
|
483
|
-
"description": "The part this person took in the editorial work.
|
|
521
|
+
"description": "The part this person took in the editorial work.",
|
|
522
|
+
"ontology": "crm:P2 has type"
|
|
484
523
|
},
|
|
485
524
|
"sameAs": {
|
|
486
|
-
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar.
|
|
525
|
+
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar.",
|
|
487
526
|
"examples": [
|
|
488
527
|
"https://d-nb.info/gnd/116888652"
|
|
489
528
|
],
|
|
490
529
|
"items": {
|
|
491
530
|
"type": "string"
|
|
492
531
|
},
|
|
493
|
-
"type": "array"
|
|
532
|
+
"type": "array",
|
|
533
|
+
"ontology": "owl:sameAs"
|
|
494
534
|
},
|
|
495
535
|
"@id": {
|
|
496
536
|
"description": "A unique identifier for this object.",
|
|
@@ -517,38 +557,45 @@
|
|
|
517
557
|
"type": "string"
|
|
518
558
|
},
|
|
519
559
|
"Expression": {
|
|
520
|
-
"description": "An expression symbol, representing a perforation on the roll that governs dynamics, pedaling, or mechanical functions of the reproducing piano. Each expression has a scope (bass or treble) and a specific expression type.
|
|
560
|
+
"description": "An expression symbol, representing a perforation on the roll that governs dynamics, pedaling, or mechanical functions of the reproducing piano. Each expression has a scope (bass or treble) and a specific expression type.",
|
|
521
561
|
"properties": {
|
|
522
562
|
"after": {
|
|
523
563
|
"$ref": "#/definitions/ReferenceAssumption",
|
|
524
|
-
"description": "A perforation whose onset this one follows when the roll is performed, the counterpart of `before`. This points to the perforation by its `@id`.
|
|
564
|
+
"description": "A perforation whose onset this one follows when the roll is performed, the counterpart of `before`. This points to the perforation by its `@id`.",
|
|
565
|
+
"ontology": "reo:after"
|
|
525
566
|
},
|
|
526
567
|
"alignedWith": {
|
|
527
568
|
"$ref": "#/definitions/ReferenceAssumption",
|
|
528
|
-
"description": "In piano rolls, perforations are often aligned with other perforations, e.g. a \"crescendo off\" might be logically aligned to the start of a note perforation. This points to the perforation by its `@id`.
|
|
569
|
+
"description": "In piano rolls, perforations are often aligned with other perforations, e.g. a \"crescendo off\" might be logically aligned to the start of a note perforation. This points to the perforation by its `@id`.",
|
|
570
|
+
"ontology": "reo:alignedWith"
|
|
529
571
|
},
|
|
530
572
|
"before": {
|
|
531
573
|
"$ref": "#/definitions/ReferenceAssumption",
|
|
532
|
-
"description": "A perforation whose onset this one precedes when the roll is performed, without saying by how much: a \"crescendo off\" ends before the note it leads to begins, even where the copies disagree on it. Where the measurement has it so, nothing moves; where it does not, this one is placed before the reference as far as the copies that agree put it. This points to the perforation by its `@id`.
|
|
574
|
+
"description": "A perforation whose onset this one precedes when the roll is performed, without saying by how much: a \"crescendo off\" ends before the note it leads to begins, even where the copies disagree on it. Where the measurement has it so, nothing moves; where it does not, this one is placed before the reference as far as the copies that agree put it. This points to the perforation by its `@id`.",
|
|
575
|
+
"ontology": "reo:before"
|
|
533
576
|
},
|
|
534
577
|
"carriers": {
|
|
535
|
-
"description": "References to the physical features (e.g. holes) on the roll copies that carry this symbol. Since the association might be debatable, it can be annotated. There might be e.g. doubts about the meaning and correct transcription of a feature on a physical roll. This points to a feature by its `@id`.
|
|
578
|
+
"description": "References to the physical features (e.g. holes) on the roll copies that carry this symbol. Since the association might be debatable, it can be annotated. There might be e.g. doubts about the meaning and correct transcription of a feature on a physical roll. This points to a feature by its `@id`.",
|
|
536
579
|
"items": {
|
|
537
580
|
"$ref": "#/definitions/ReferenceAssumption"
|
|
538
581
|
},
|
|
539
|
-
"type": "array"
|
|
582
|
+
"type": "array",
|
|
583
|
+
"ontology": "crm:P128i is carried by"
|
|
540
584
|
},
|
|
541
585
|
"expressionType": {
|
|
542
|
-
"description": "The command the perforation gives, named as the reproducing system of the roll names it: \"SustainPedalOn\", \"ForzandoOff\" and so on for the Welte-Mignon T-100. The tracker bar of the system lists the values it reads.
|
|
543
|
-
"type": "string"
|
|
586
|
+
"description": "The command the perforation gives, named as the reproducing system of the roll names it: \"SustainPedalOn\", \"ForzandoOff\" and so on for the Welte-Mignon T-100. The tracker bar of the system lists the values it reads.",
|
|
587
|
+
"type": "string",
|
|
588
|
+
"ontology": "crm:P2 has type"
|
|
544
589
|
},
|
|
545
590
|
"pairedWith": {
|
|
546
591
|
"$ref": "#/definitions/ReferenceAssumption",
|
|
547
|
-
"description": "The perforation this one forms a pair with, e.g. a \"forzando on\" with its \"forzando off\". Any two perforations may be paired. The distance between the two is fixed: whatever displaces the one displaces the other. The relation is symmetric and is stated on one side only. This points to the perforation by its `@id`.
|
|
592
|
+
"description": "The perforation this one forms a pair with, e.g. a \"forzando on\" with its \"forzando off\". Any two perforations may be paired. The distance between the two is fixed: whatever displaces the one displaces the other. The relation is symmetric and is stated on one side only. This points to the perforation by its `@id`.",
|
|
593
|
+
"ontology": "reo:pairedWith"
|
|
548
594
|
},
|
|
549
595
|
"scope": {
|
|
550
596
|
"$ref": "#/definitions/ExpressionScope",
|
|
551
|
-
"description": "Whether this expression applies to the bass or treble register.
|
|
597
|
+
"description": "Whether this expression applies to the bass or treble register.",
|
|
598
|
+
"ontology": "reo:scope"
|
|
552
599
|
},
|
|
553
600
|
"@id": {
|
|
554
601
|
"description": "A unique identifier for this object.",
|
|
@@ -568,83 +615,98 @@
|
|
|
568
615
|
"scope",
|
|
569
616
|
"@type"
|
|
570
617
|
],
|
|
571
|
-
"type": "object"
|
|
618
|
+
"type": "object",
|
|
619
|
+
"ontology": "reo:Expression"
|
|
572
620
|
},
|
|
573
621
|
"ExpressionScope": {
|
|
574
|
-
"description": "The scope of an expression perforation, indicating whether it applies to the bass or treble register of the piano.
|
|
622
|
+
"description": "The scope of an expression perforation, indicating whether it applies to the bass or treble register of the piano.",
|
|
575
623
|
"enum": [
|
|
576
624
|
"bass",
|
|
577
625
|
"treble"
|
|
578
626
|
],
|
|
579
|
-
"type": "string"
|
|
627
|
+
"type": "string",
|
|
628
|
+
"ontology": "reo:scope"
|
|
580
629
|
},
|
|
581
630
|
"FeatureSource": {
|
|
582
|
-
"description": "The capture by which a copy's features became data: what they were read from, who read them, on what device and when. It states where the numbers of the edition come from and says nothing about the state of the paper, which is a condition.\n\nWhat is not known is left out. A reader is told about the gap by `reservationsAbout`, which works out what a copy cannot vouch for from what it states here.
|
|
631
|
+
"description": "The capture by which a copy's features became data: what they were read from, who read them, on what device and when. It states where the numbers of the edition come from and says nothing about the state of the paper, which is a condition.\n\nWhat is not known is left out. A reader is told about the gap by `reservationsAbout`, which works out what a copy cannot vouch for from what it states here.",
|
|
583
632
|
"properties": {
|
|
584
633
|
"actor": {
|
|
585
634
|
"$ref": "#/definitions/ActorAssignment",
|
|
586
|
-
"description": "Who carried out the capture.
|
|
635
|
+
"description": "Who carried out the capture.",
|
|
636
|
+
"ontology": "crm:P14 carried out by"
|
|
587
637
|
},
|
|
588
638
|
"date": {
|
|
589
639
|
"$ref": "#/definitions/DateAssignment",
|
|
590
|
-
"description": "When the capture took place.
|
|
591
|
-
"format": "date"
|
|
640
|
+
"description": "When the capture took place.",
|
|
641
|
+
"format": "date",
|
|
642
|
+
"ontology": "dcterms:date"
|
|
592
643
|
},
|
|
593
644
|
"device": {
|
|
594
645
|
"$ref": "#/definitions/Concept",
|
|
595
|
-
"description": "The make and model of the scanner, camera or player the capture ran on.
|
|
646
|
+
"description": "The make and model of the scanner, camera or player the capture ran on.",
|
|
647
|
+
"ontology": "crmdig:L12 happened on device"
|
|
596
648
|
},
|
|
597
649
|
"kind": {
|
|
598
650
|
"$ref": "#/definitions/SourceKind",
|
|
599
|
-
"description": "What the features were read from.
|
|
651
|
+
"description": "What the features were read from.",
|
|
652
|
+
"ontology": "crm:P2 has type"
|
|
600
653
|
},
|
|
601
654
|
"note": {
|
|
602
|
-
"description": "A free-text note providing additional context.
|
|
603
|
-
"type": "string"
|
|
655
|
+
"description": "A free-text note providing additional context.",
|
|
656
|
+
"type": "string",
|
|
657
|
+
"ontology": "crm:P3 has note"
|
|
604
658
|
},
|
|
605
659
|
"output": {
|
|
606
|
-
"description": "The file the capture produced, where it has an address.
|
|
607
|
-
"type": "string"
|
|
660
|
+
"description": "The file the capture produced, where it has an address.",
|
|
661
|
+
"type": "string",
|
|
662
|
+
"ontology": "crmdig:L11 had output"
|
|
608
663
|
}
|
|
609
664
|
},
|
|
610
665
|
"required": [
|
|
611
666
|
"kind"
|
|
612
667
|
],
|
|
613
|
-
"type": "object"
|
|
668
|
+
"type": "object",
|
|
669
|
+
"ontology": "crm:E7 Activity"
|
|
614
670
|
},
|
|
615
671
|
"GluedOn": {
|
|
616
|
-
"description": "A piece of material (paper or tape) glued onto the roll surface. Glued-on features are typically used to cover perforations (for corrections) or to reinforce damaged areas. They may themselves carry other features such as writings or additional holes.
|
|
672
|
+
"description": "A piece of material (paper or tape) glued onto the roll surface. Glued-on features are typically used to cover perforations (for corrections) or to reinforce damaged areas. They may themselves carry other features such as writings or additional holes.",
|
|
617
673
|
"properties": {
|
|
618
674
|
"condition": {
|
|
619
675
|
"$ref": "#/definitions/ObjectAssumption%3CConditionState%3C(%22detaching%22%7C%22ripped%22)%3E%3E",
|
|
620
|
-
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged.
|
|
676
|
+
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged.",
|
|
677
|
+
"ontology": "crm:P44 has condition"
|
|
621
678
|
},
|
|
622
679
|
"depiction": {
|
|
623
|
-
"description": "IIIF region pointing to a depiction of this feature in the scan.
|
|
624
|
-
"type": "string"
|
|
680
|
+
"description": "IIIF region pointing to a depiction of this feature in the scan.",
|
|
681
|
+
"type": "string",
|
|
682
|
+
"ontology": "crm:P138i has representation"
|
|
625
683
|
},
|
|
626
684
|
"features": {
|
|
627
|
-
"description": "A glued-on feature itself may carry other features. Nested features do not need to be positioned explicitly.
|
|
685
|
+
"description": "A glued-on feature itself may carry other features. Nested features do not need to be positioned explicitly.",
|
|
628
686
|
"items": {
|
|
629
687
|
"$ref": "#/definitions/NestedFeature"
|
|
630
688
|
},
|
|
631
|
-
"type": "array"
|
|
689
|
+
"type": "array",
|
|
690
|
+
"ontology": "crm:P56 bears feature"
|
|
632
691
|
},
|
|
633
692
|
"horizontal": {
|
|
634
693
|
"$ref": "#/definitions/HorizontalSpan",
|
|
635
|
-
"description": "Horizontal span of the feature on the roll.
|
|
694
|
+
"description": "Horizontal span of the feature on the roll.",
|
|
695
|
+
"ontology": "crm:P43 has dimension"
|
|
636
696
|
},
|
|
637
697
|
"material": {
|
|
638
|
-
"description": "The material of the glued-on feature.
|
|
698
|
+
"description": "The material of the glued-on feature.",
|
|
639
699
|
"enum": [
|
|
640
700
|
"Paper",
|
|
641
701
|
"Tape"
|
|
642
702
|
],
|
|
643
|
-
"type": "string"
|
|
703
|
+
"type": "string",
|
|
704
|
+
"ontology": "crm:P45 consists of"
|
|
644
705
|
},
|
|
645
706
|
"vertical": {
|
|
646
707
|
"$ref": "#/definitions/VerticalSpan",
|
|
647
|
-
"description": "Vertical span of the feature on the roll.
|
|
708
|
+
"description": "Vertical span of the feature on the roll.",
|
|
709
|
+
"ontology": "crm:P43 has dimension"
|
|
648
710
|
},
|
|
649
711
|
"@id": {
|
|
650
712
|
"description": "A unique identifier for this object.",
|
|
@@ -652,7 +714,7 @@
|
|
|
652
714
|
},
|
|
653
715
|
"@type": {
|
|
654
716
|
"const": "GluedOn",
|
|
655
|
-
"description": "The type discriminator for this object.
|
|
717
|
+
"description": "The type discriminator for this object.",
|
|
656
718
|
"type": "string",
|
|
657
719
|
"ontology": "rdf:type"
|
|
658
720
|
}
|
|
@@ -664,35 +726,41 @@
|
|
|
664
726
|
"@type",
|
|
665
727
|
"vertical"
|
|
666
728
|
],
|
|
667
|
-
"type": "object"
|
|
729
|
+
"type": "object",
|
|
730
|
+
"ontology": "crm:E22 Human-Made Object"
|
|
668
731
|
},
|
|
669
732
|
"Hole": {
|
|
670
733
|
"description": "A hole (perforation) in the roll paper. Holes are the primary carriers of musical information on piano rolls, as they trigger notes and expression controls when passing over the tracker bar.",
|
|
671
734
|
"properties": {
|
|
672
735
|
"condition": {
|
|
673
736
|
"$ref": "#/definitions/ObjectAssumption%3CConditionState%3C(%22partially-torn%22%7C%22missing-perforation%22)%3E%3E",
|
|
674
|
-
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged.
|
|
737
|
+
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged.",
|
|
738
|
+
"ontology": "crm:P44 has condition"
|
|
675
739
|
},
|
|
676
740
|
"depiction": {
|
|
677
|
-
"description": "IIIF region pointing to a depiction of this feature in the scan.
|
|
678
|
-
"type": "string"
|
|
741
|
+
"description": "IIIF region pointing to a depiction of this feature in the scan.",
|
|
742
|
+
"type": "string",
|
|
743
|
+
"ontology": "crm:P138i has representation"
|
|
679
744
|
},
|
|
680
745
|
"horizontal": {
|
|
681
746
|
"$ref": "#/definitions/HorizontalSpan",
|
|
682
|
-
"description": "Horizontal span of the feature on the roll.
|
|
747
|
+
"description": "Horizontal span of the feature on the roll.",
|
|
748
|
+
"ontology": "crm:P43 has dimension"
|
|
683
749
|
},
|
|
684
750
|
"pattern": {
|
|
685
|
-
"description": "The punching pattern of the hole. Regular holes have evenly-spaced bridges, accelerating holes have decreasing bridge widths, and staggering holes do not align in rows across the tracks, the mark of an asynchronous perforator with a separate driver for each punch (Phillips 2016, p. 112).
|
|
751
|
+
"description": "The punching pattern of the hole. Regular holes have evenly-spaced bridges, accelerating holes have decreasing bridge widths, and staggering holes do not align in rows across the tracks, the mark of an asynchronous perforator with a separate driver for each punch (Phillips 2016, p. 112).",
|
|
686
752
|
"enum": [
|
|
687
753
|
"regular",
|
|
688
754
|
"accelerating",
|
|
689
755
|
"staggering"
|
|
690
756
|
],
|
|
691
|
-
"type": "string"
|
|
757
|
+
"type": "string",
|
|
758
|
+
"ontology": "reo:pattern"
|
|
692
759
|
},
|
|
693
760
|
"vertical": {
|
|
694
761
|
"$ref": "#/definitions/VerticalSpan",
|
|
695
|
-
"description": "Vertical span of the feature on the roll.
|
|
762
|
+
"description": "Vertical span of the feature on the roll.",
|
|
763
|
+
"ontology": "crm:P43 has dimension"
|
|
696
764
|
},
|
|
697
765
|
"@id": {
|
|
698
766
|
"description": "A unique identifier for this object.",
|
|
@@ -700,7 +768,7 @@
|
|
|
700
768
|
},
|
|
701
769
|
"@type": {
|
|
702
770
|
"const": "Hole",
|
|
703
|
-
"description": "The type discriminator for this object.
|
|
771
|
+
"description": "The type discriminator for this object.",
|
|
704
772
|
"type": "string",
|
|
705
773
|
"ontology": "rdf:type"
|
|
706
774
|
}
|
|
@@ -714,20 +782,23 @@
|
|
|
714
782
|
"type": "object"
|
|
715
783
|
},
|
|
716
784
|
"HorizontalSpan": {
|
|
717
|
-
"description": "Describes the horizontal extent of a feature on the roll, measured in millimeters from the beginning of the roll. The `from` value is the start position and `to` is the end position.
|
|
785
|
+
"description": "Describes the horizontal extent of a feature on the roll, measured in millimeters from the beginning of the roll. The `from` value is the start position and `to` is the end position.",
|
|
718
786
|
"properties": {
|
|
719
787
|
"from": {
|
|
720
788
|
"$ref": "#/definitions/Millimeters",
|
|
721
|
-
"description": "The start position of the feature in millimeters from the beginning of the roll.
|
|
789
|
+
"description": "The start position of the feature in millimeters from the beginning of the roll.",
|
|
790
|
+
"ontology": "reo:from"
|
|
722
791
|
},
|
|
723
792
|
"to": {
|
|
724
793
|
"$ref": "#/definitions/Millimeters",
|
|
725
|
-
"description": "The end position of the feature in millimeters from the beginning of the roll.
|
|
794
|
+
"description": "The end position of the feature in millimeters from the beginning of the roll.",
|
|
795
|
+
"ontology": "reo:to"
|
|
726
796
|
},
|
|
727
797
|
"unit": {
|
|
728
798
|
"const": "mm",
|
|
729
|
-
"description": "The unit of measurement for horizontal positions. Always 'mm' (millimeters).
|
|
730
|
-
"type": "string"
|
|
799
|
+
"description": "The unit of measurement for horizontal positions. Always 'mm' (millimeters).",
|
|
800
|
+
"type": "string",
|
|
801
|
+
"ontology": "crm:P91 has unit"
|
|
731
802
|
}
|
|
732
803
|
},
|
|
733
804
|
"required": [
|
|
@@ -735,25 +806,29 @@
|
|
|
735
806
|
"from",
|
|
736
807
|
"to"
|
|
737
808
|
],
|
|
738
|
-
"type": "object"
|
|
809
|
+
"type": "object",
|
|
810
|
+
"ontology": "crm:E54 Dimension"
|
|
739
811
|
},
|
|
740
812
|
"Inference": {
|
|
741
|
-
"description": "An inference draws a conclusion from given premises.
|
|
813
|
+
"description": "An inference draws a conclusion from given premises.",
|
|
742
814
|
"properties": {
|
|
743
815
|
"actor": {
|
|
744
816
|
"$ref": "#/definitions/Person",
|
|
745
|
-
"description": "The person who carried out this activity.
|
|
817
|
+
"description": "The person who carried out this activity.",
|
|
818
|
+
"ontology": "crm:P14 carried out by"
|
|
746
819
|
},
|
|
747
820
|
"note": {
|
|
748
|
-
"description": "A free-text note providing additional context.
|
|
749
|
-
"type": "string"
|
|
821
|
+
"description": "A free-text note providing additional context.",
|
|
822
|
+
"type": "string",
|
|
823
|
+
"ontology": "crm:P3 has note"
|
|
750
824
|
},
|
|
751
825
|
"premises": {
|
|
752
|
-
"description": "References (by `@id`) to the beliefs or facts from which the conclusion is drawn.
|
|
826
|
+
"description": "References (by `@id`) to the beliefs or facts from which the conclusion is drawn.",
|
|
753
827
|
"items": {
|
|
754
828
|
"type": "string"
|
|
755
829
|
},
|
|
756
|
-
"type": "array"
|
|
830
|
+
"type": "array",
|
|
831
|
+
"ontology": "crminf:J1 used as premise"
|
|
757
832
|
},
|
|
758
833
|
"@type": {
|
|
759
834
|
"const": "inference",
|
|
@@ -766,7 +841,8 @@
|
|
|
766
841
|
"premises",
|
|
767
842
|
"@type"
|
|
768
843
|
],
|
|
769
|
-
"type": "object"
|
|
844
|
+
"type": "object",
|
|
845
|
+
"ontology": "crminf:I5 Inference Making"
|
|
770
846
|
},
|
|
771
847
|
"Margins<\"mm\">": {
|
|
772
848
|
"description": "The margins on the treble and bass sides of the roll, in the unit the scan was measured in.",
|
|
@@ -811,23 +887,27 @@
|
|
|
811
887
|
"type": "object"
|
|
812
888
|
},
|
|
813
889
|
"Mark": {
|
|
814
|
-
"description": "A visible mark on the roll, such as a pencil mark, ink mark, or other non-textual annotation.
|
|
890
|
+
"description": "A visible mark on the roll, such as a pencil mark, ink mark, or other non-textual annotation.",
|
|
815
891
|
"properties": {
|
|
816
892
|
"condition": {
|
|
817
893
|
"$ref": "#/definitions/ObjectAssumption%3CConditionState%3C(%22faded%22)%3E%3E",
|
|
818
|
-
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged.
|
|
894
|
+
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged.",
|
|
895
|
+
"ontology": "crm:P44 has condition"
|
|
819
896
|
},
|
|
820
897
|
"depiction": {
|
|
821
|
-
"description": "IIIF region pointing to a depiction of this feature in the scan.
|
|
822
|
-
"type": "string"
|
|
898
|
+
"description": "IIIF region pointing to a depiction of this feature in the scan.",
|
|
899
|
+
"type": "string",
|
|
900
|
+
"ontology": "crm:P138i has representation"
|
|
823
901
|
},
|
|
824
902
|
"horizontal": {
|
|
825
903
|
"$ref": "#/definitions/HorizontalSpan",
|
|
826
|
-
"description": "Horizontal span of the feature on the roll.
|
|
904
|
+
"description": "Horizontal span of the feature on the roll.",
|
|
905
|
+
"ontology": "crm:P43 has dimension"
|
|
827
906
|
},
|
|
828
907
|
"vertical": {
|
|
829
908
|
"$ref": "#/definitions/VerticalSpan",
|
|
830
|
-
"description": "Vertical span of the feature on the roll.
|
|
909
|
+
"description": "Vertical span of the feature on the roll.",
|
|
910
|
+
"ontology": "crm:P43 has dimension"
|
|
831
911
|
},
|
|
832
912
|
"@id": {
|
|
833
913
|
"description": "A unique identifier for this object.",
|
|
@@ -835,7 +915,7 @@
|
|
|
835
915
|
},
|
|
836
916
|
"@type": {
|
|
837
917
|
"const": "Mark",
|
|
838
|
-
"description": "The type discriminator for this object.
|
|
918
|
+
"description": "The type discriminator for this object.",
|
|
839
919
|
"type": "string",
|
|
840
920
|
"ontology": "rdf:type"
|
|
841
921
|
}
|
|
@@ -846,25 +926,29 @@
|
|
|
846
926
|
"@type",
|
|
847
927
|
"vertical"
|
|
848
928
|
],
|
|
849
|
-
"type": "object"
|
|
929
|
+
"type": "object",
|
|
930
|
+
"ontology": "crm:E25 Human-Made Feature"
|
|
850
931
|
},
|
|
851
932
|
"MeaningComprehension": {
|
|
852
|
-
"description": "A meaning comprehension interprets or disambiguates the meaning of symbols or features. For example, interpreting a pencil mark as an instruction to add or remove a perforation or as the dating of the roll.
|
|
933
|
+
"description": "A meaning comprehension interprets or disambiguates the meaning of symbols or features. For example, interpreting a pencil mark as an instruction to add or remove a perforation or as the dating of the roll.",
|
|
853
934
|
"properties": {
|
|
854
935
|
"actor": {
|
|
855
936
|
"$ref": "#/definitions/Person",
|
|
856
|
-
"description": "The person who carried out this activity.
|
|
937
|
+
"description": "The person who carried out this activity.",
|
|
938
|
+
"ontology": "crm:P14 carried out by"
|
|
857
939
|
},
|
|
858
940
|
"comprehends": {
|
|
859
|
-
"description": "References (by `@id`) to the symbols or features whose meaning is being interpreted.
|
|
941
|
+
"description": "References (by `@id`) to the symbols or features whose meaning is being interpreted.",
|
|
860
942
|
"items": {
|
|
861
943
|
"type": "string"
|
|
862
944
|
},
|
|
863
|
-
"type": "array"
|
|
945
|
+
"type": "array",
|
|
946
|
+
"ontology": "crminf:J22 interpreted meaning of"
|
|
864
947
|
},
|
|
865
948
|
"note": {
|
|
866
|
-
"description": "A free-text note providing additional context.
|
|
867
|
-
"type": "string"
|
|
949
|
+
"description": "A free-text note providing additional context.",
|
|
950
|
+
"type": "string",
|
|
951
|
+
"ontology": "crm:P3 has note"
|
|
868
952
|
},
|
|
869
953
|
"@type": {
|
|
870
954
|
"const": "meaningComprehension",
|
|
@@ -877,64 +961,74 @@
|
|
|
877
961
|
"comprehends",
|
|
878
962
|
"@type"
|
|
879
963
|
],
|
|
880
|
-
"type": "object"
|
|
964
|
+
"type": "object",
|
|
965
|
+
"ontology": "crminf:I16 Meaning Comprehension"
|
|
881
966
|
},
|
|
882
967
|
"Measure<\"mm\">": {
|
|
883
|
-
"description": "A value together with the unit it was measured in, as a record states it.
|
|
968
|
+
"description": "A value together with the unit it was measured in, as a record states it.",
|
|
884
969
|
"properties": {
|
|
885
970
|
"unit": {
|
|
886
971
|
"const": "mm",
|
|
887
|
-
"description": "The unit of measurement.
|
|
888
|
-
"type": "string"
|
|
972
|
+
"description": "The unit of measurement.",
|
|
973
|
+
"type": "string",
|
|
974
|
+
"ontology": "crm:P91 has unit"
|
|
889
975
|
},
|
|
890
976
|
"value": {
|
|
891
977
|
"$ref": "#/definitions/Quantity%3C%22mm%22%3E",
|
|
892
|
-
"description": "The measured value.
|
|
978
|
+
"description": "The measured value.",
|
|
979
|
+
"ontology": "crm:P90 has value"
|
|
893
980
|
}
|
|
894
981
|
},
|
|
895
982
|
"required": [
|
|
896
983
|
"value",
|
|
897
984
|
"unit"
|
|
898
985
|
],
|
|
899
|
-
"type": "object"
|
|
986
|
+
"type": "object",
|
|
987
|
+
"ontology": "crm:E54 Dimension"
|
|
900
988
|
},
|
|
901
989
|
"Measure<\"px\">": {
|
|
902
|
-
"description": "A value together with the unit it was measured in, as a record states it.
|
|
990
|
+
"description": "A value together with the unit it was measured in, as a record states it.",
|
|
903
991
|
"properties": {
|
|
904
992
|
"unit": {
|
|
905
993
|
"const": "px",
|
|
906
|
-
"description": "The unit of measurement.
|
|
907
|
-
"type": "string"
|
|
994
|
+
"description": "The unit of measurement.",
|
|
995
|
+
"type": "string",
|
|
996
|
+
"ontology": "crm:P91 has unit"
|
|
908
997
|
},
|
|
909
998
|
"value": {
|
|
910
999
|
"$ref": "#/definitions/Quantity%3C%22px%22%3E",
|
|
911
|
-
"description": "The measured value.
|
|
1000
|
+
"description": "The measured value.",
|
|
1001
|
+
"ontology": "crm:P90 has value"
|
|
912
1002
|
}
|
|
913
1003
|
},
|
|
914
1004
|
"required": [
|
|
915
1005
|
"value",
|
|
916
1006
|
"unit"
|
|
917
1007
|
],
|
|
918
|
-
"type": "object"
|
|
1008
|
+
"type": "object",
|
|
1009
|
+
"ontology": "crm:E54 Dimension"
|
|
919
1010
|
},
|
|
920
1011
|
"Measure<\"px/in\">": {
|
|
921
|
-
"description": "A value together with the unit it was measured in, as a record states it.
|
|
1012
|
+
"description": "A value together with the unit it was measured in, as a record states it.",
|
|
922
1013
|
"properties": {
|
|
923
1014
|
"unit": {
|
|
924
1015
|
"const": "px/in",
|
|
925
|
-
"description": "The unit of measurement.
|
|
926
|
-
"type": "string"
|
|
1016
|
+
"description": "The unit of measurement.",
|
|
1017
|
+
"type": "string",
|
|
1018
|
+
"ontology": "crm:P91 has unit"
|
|
927
1019
|
},
|
|
928
1020
|
"value": {
|
|
929
1021
|
"$ref": "#/definitions/Quantity%3C%22px%2Fin%22%3E",
|
|
930
|
-
"description": "The measured value.
|
|
1022
|
+
"description": "The measured value.",
|
|
1023
|
+
"ontology": "crm:P90 has value"
|
|
931
1024
|
}
|
|
932
1025
|
},
|
|
933
1026
|
"required": [
|
|
934
1027
|
"value",
|
|
935
1028
|
"unit"
|
|
936
1029
|
],
|
|
937
|
-
"type": "object"
|
|
1030
|
+
"type": "object",
|
|
1031
|
+
"ontology": "crm:E54 Dimension"
|
|
938
1032
|
},
|
|
939
1033
|
"Millimeters": {
|
|
940
1034
|
"$ref": "#/definitions/Quantity%3C%22mm%22%3E",
|
|
@@ -946,18 +1040,20 @@
|
|
|
946
1040
|
"properties": {
|
|
947
1041
|
"actor": {
|
|
948
1042
|
"$ref": "#/definitions/ActorAssignment",
|
|
949
|
-
"description": "Who carried out the modification.
|
|
1043
|
+
"description": "Who carried out the modification.",
|
|
1044
|
+
"ontology": "crm:P14 carried out by"
|
|
950
1045
|
},
|
|
951
1046
|
"added": {
|
|
952
1047
|
"items": {
|
|
953
1048
|
"type": "string"
|
|
954
1049
|
},
|
|
955
1050
|
"type": "array",
|
|
956
|
-
"
|
|
1051
|
+
"ontology": "crm:P111 added"
|
|
957
1052
|
},
|
|
958
1053
|
"date": {
|
|
959
1054
|
"$ref": "#/definitions/DateAssignment",
|
|
960
|
-
"description": "When the modification took place.
|
|
1055
|
+
"description": "When the modification took place.",
|
|
1056
|
+
"ontology": "dcterms:date"
|
|
961
1057
|
},
|
|
962
1058
|
"purpose": {
|
|
963
1059
|
"enum": [
|
|
@@ -970,7 +1066,7 @@
|
|
|
970
1066
|
"glossing"
|
|
971
1067
|
],
|
|
972
1068
|
"type": "string",
|
|
973
|
-
"
|
|
1069
|
+
"ontology": "crm:P21 had general purpose"
|
|
974
1070
|
},
|
|
975
1071
|
"@type": {
|
|
976
1072
|
"const": "Addition",
|
|
@@ -990,23 +1086,26 @@
|
|
|
990
1086
|
"properties": {
|
|
991
1087
|
"actor": {
|
|
992
1088
|
"$ref": "#/definitions/ActorAssignment",
|
|
993
|
-
"description": "Who carried out the modification.
|
|
1089
|
+
"description": "Who carried out the modification.",
|
|
1090
|
+
"ontology": "crm:P14 carried out by"
|
|
994
1091
|
},
|
|
995
1092
|
"date": {
|
|
996
1093
|
"$ref": "#/definitions/DateAssignment",
|
|
997
|
-
"description": "When the modification took place.
|
|
1094
|
+
"description": "When the modification took place.",
|
|
1095
|
+
"ontology": "dcterms:date"
|
|
998
1096
|
},
|
|
999
1097
|
"purpose": {
|
|
1000
1098
|
"const": "delabeling",
|
|
1001
|
-
"description": "Usually, roll features are being added. Sometimes however, we may see traces of features that have been removed, e.g. through bright spots on the roll.
|
|
1002
|
-
"type": "string"
|
|
1099
|
+
"description": "Usually, roll features are being added. Sometimes however, we may see traces of features that have been removed, e.g. through bright spots on the roll.",
|
|
1100
|
+
"type": "string",
|
|
1101
|
+
"ontology": "crm:P21 had general purpose"
|
|
1003
1102
|
},
|
|
1004
1103
|
"removed": {
|
|
1005
1104
|
"items": {
|
|
1006
1105
|
"type": "string"
|
|
1007
1106
|
},
|
|
1008
1107
|
"type": "array",
|
|
1009
|
-
"
|
|
1108
|
+
"ontology": "crm:P113 removed"
|
|
1010
1109
|
},
|
|
1011
1110
|
"@type": {
|
|
1012
1111
|
"const": "Removal",
|
|
@@ -1023,14 +1122,16 @@
|
|
|
1023
1122
|
"type": "object"
|
|
1024
1123
|
}
|
|
1025
1124
|
],
|
|
1026
|
-
"description": "This type denotes identifiable activities that modified the roll copy after its production, e.g. annotations, repairs, etc.
|
|
1125
|
+
"description": "This type denotes identifiable activities that modified the roll copy after its production, e.g. annotations, repairs, etc.",
|
|
1126
|
+
"ontology": "crm:E79 Part Addition, crm:E80 Part Removal"
|
|
1027
1127
|
},
|
|
1028
1128
|
"Motivation": {
|
|
1029
|
-
"description": "A motivation provides a reason or rationale for an editorial change. Motivations are defined at the version level and referenced by edits.
|
|
1129
|
+
"description": "A motivation provides a reason or rationale for an editorial change. Motivations are defined at the version level and referenced by edits.",
|
|
1030
1130
|
"properties": {
|
|
1031
1131
|
"note": {
|
|
1032
|
-
"description": "A free-text note providing additional context.
|
|
1033
|
-
"type": "string"
|
|
1132
|
+
"description": "A free-text note providing additional context.",
|
|
1133
|
+
"type": "string",
|
|
1134
|
+
"ontology": "crm:P3 has note"
|
|
1034
1135
|
},
|
|
1035
1136
|
"@id": {
|
|
1036
1137
|
"description": "A unique identifier for this object.",
|
|
@@ -1038,7 +1139,7 @@
|
|
|
1038
1139
|
},
|
|
1039
1140
|
"@type": {
|
|
1040
1141
|
"const": "motivation",
|
|
1041
|
-
"description": "The type discriminator for this object.
|
|
1142
|
+
"description": "The type discriminator for this object.",
|
|
1042
1143
|
"type": "string",
|
|
1043
1144
|
"ontology": "rdf:type"
|
|
1044
1145
|
}
|
|
@@ -1047,41 +1148,48 @@
|
|
|
1047
1148
|
"@id",
|
|
1048
1149
|
"@type"
|
|
1049
1150
|
],
|
|
1050
|
-
"type": "object"
|
|
1151
|
+
"type": "object",
|
|
1152
|
+
"ontology": "crm:E33 Linguistic Object"
|
|
1051
1153
|
},
|
|
1052
1154
|
"NestedFeature": {
|
|
1053
1155
|
"$ref": "#/definitions/PartialBy%3CAnyFeature%2C(%22horizontal%22%7C%22vertical%22)%3E",
|
|
1054
1156
|
"description": "A feature borne by another feature. It states no place of its own, the feature bearing it standing in one."
|
|
1055
1157
|
},
|
|
1056
1158
|
"Note": {
|
|
1057
|
-
"description": "A note symbol, representing a single pitched musical event on the roll. The pitch is encoded via the tracker bar position (track number).
|
|
1159
|
+
"description": "A note symbol, representing a single pitched musical event on the roll. The pitch is encoded via the tracker bar position (track number).",
|
|
1058
1160
|
"properties": {
|
|
1059
1161
|
"after": {
|
|
1060
1162
|
"$ref": "#/definitions/ReferenceAssumption",
|
|
1061
|
-
"description": "A perforation whose onset this one follows when the roll is performed, the counterpart of `before`. This points to the perforation by its `@id`.
|
|
1163
|
+
"description": "A perforation whose onset this one follows when the roll is performed, the counterpart of `before`. This points to the perforation by its `@id`.",
|
|
1164
|
+
"ontology": "reo:after"
|
|
1062
1165
|
},
|
|
1063
1166
|
"alignedWith": {
|
|
1064
1167
|
"$ref": "#/definitions/ReferenceAssumption",
|
|
1065
|
-
"description": "In piano rolls, perforations are often aligned with other perforations, e.g. a \"crescendo off\" might be logically aligned to the start of a note perforation. This points to the perforation by its `@id`.
|
|
1168
|
+
"description": "In piano rolls, perforations are often aligned with other perforations, e.g. a \"crescendo off\" might be logically aligned to the start of a note perforation. This points to the perforation by its `@id`.",
|
|
1169
|
+
"ontology": "reo:alignedWith"
|
|
1066
1170
|
},
|
|
1067
1171
|
"before": {
|
|
1068
1172
|
"$ref": "#/definitions/ReferenceAssumption",
|
|
1069
|
-
"description": "A perforation whose onset this one precedes when the roll is performed, without saying by how much: a \"crescendo off\" ends before the note it leads to begins, even where the copies disagree on it. Where the measurement has it so, nothing moves; where it does not, this one is placed before the reference as far as the copies that agree put it. This points to the perforation by its `@id`.
|
|
1173
|
+
"description": "A perforation whose onset this one precedes when the roll is performed, without saying by how much: a \"crescendo off\" ends before the note it leads to begins, even where the copies disagree on it. Where the measurement has it so, nothing moves; where it does not, this one is placed before the reference as far as the copies that agree put it. This points to the perforation by its `@id`.",
|
|
1174
|
+
"ontology": "reo:before"
|
|
1070
1175
|
},
|
|
1071
1176
|
"carriers": {
|
|
1072
|
-
"description": "References to the physical features (e.g. holes) on the roll copies that carry this symbol. Since the association might be debatable, it can be annotated. There might be e.g. doubts about the meaning and correct transcription of a feature on a physical roll. This points to a feature by its `@id`.
|
|
1177
|
+
"description": "References to the physical features (e.g. holes) on the roll copies that carry this symbol. Since the association might be debatable, it can be annotated. There might be e.g. doubts about the meaning and correct transcription of a feature on a physical roll. This points to a feature by its `@id`.",
|
|
1073
1178
|
"items": {
|
|
1074
1179
|
"$ref": "#/definitions/ReferenceAssumption"
|
|
1075
1180
|
},
|
|
1076
|
-
"type": "array"
|
|
1181
|
+
"type": "array",
|
|
1182
|
+
"ontology": "crm:P128i is carried by"
|
|
1077
1183
|
},
|
|
1078
1184
|
"pairedWith": {
|
|
1079
1185
|
"$ref": "#/definitions/ReferenceAssumption",
|
|
1080
|
-
"description": "The perforation this one forms a pair with, e.g. a \"forzando on\" with its \"forzando off\". Any two perforations may be paired. The distance between the two is fixed: whatever displaces the one displaces the other. The relation is symmetric and is stated on one side only. This points to the perforation by its `@id`.
|
|
1186
|
+
"description": "The perforation this one forms a pair with, e.g. a \"forzando on\" with its \"forzando off\". Any two perforations may be paired. The distance between the two is fixed: whatever displaces the one displaces the other. The relation is symmetric and is stated on one side only. This points to the perforation by its `@id`.",
|
|
1187
|
+
"ontology": "reo:pairedWith"
|
|
1081
1188
|
},
|
|
1082
1189
|
"pitch": {
|
|
1083
|
-
"description": "The MIDI pitch number of the note (e.g. 60 for middle C).
|
|
1084
|
-
"type": "number"
|
|
1190
|
+
"description": "The MIDI pitch number of the note (e.g. 60 for middle C).",
|
|
1191
|
+
"type": "number",
|
|
1192
|
+
"ontology": "reo:pitch"
|
|
1085
1193
|
},
|
|
1086
1194
|
"@id": {
|
|
1087
1195
|
"description": "A unique identifier for this object.",
|
|
@@ -1100,7 +1208,8 @@
|
|
|
1100
1208
|
"pitch",
|
|
1101
1209
|
"@type"
|
|
1102
1210
|
],
|
|
1103
|
-
"type": "object"
|
|
1211
|
+
"type": "object",
|
|
1212
|
+
"ontology": "reo:Note"
|
|
1104
1213
|
},
|
|
1105
1214
|
"ObjectAssumption<(GeneralRollCondition|PaperStretch)>": {
|
|
1106
1215
|
"anyOf": [
|
|
@@ -1111,7 +1220,8 @@
|
|
|
1111
1220
|
"properties": {
|
|
1112
1221
|
"belief": {
|
|
1113
1222
|
"$ref": "#/definitions/Belief",
|
|
1114
|
-
"description": "The belief held about the annotated statement.
|
|
1223
|
+
"description": "The belief held about the annotated statement.",
|
|
1224
|
+
"ontology": "crminf:J4i is subject of"
|
|
1115
1225
|
},
|
|
1116
1226
|
"@id": {
|
|
1117
1227
|
"description": "A unique identifier for this object.",
|
|
@@ -1126,16 +1236,18 @@
|
|
|
1126
1236
|
},
|
|
1127
1237
|
"conditionType": {
|
|
1128
1238
|
"const": "general",
|
|
1129
|
-
"description": "The kind of condition, from the list the roll or the kind of feature allows.
|
|
1130
|
-
"type": "string"
|
|
1239
|
+
"description": "The kind of condition, from the list the roll or the kind of feature allows.",
|
|
1240
|
+
"type": "string",
|
|
1241
|
+
"ontology": "crm:P2 has type"
|
|
1131
1242
|
},
|
|
1132
1243
|
"description": {
|
|
1133
|
-
"description": "A free-text description of the condition, providing details beyond the type classification.
|
|
1134
|
-
"type": "string"
|
|
1244
|
+
"description": "A free-text description of the condition, providing details beyond the type classification.",
|
|
1245
|
+
"type": "string",
|
|
1246
|
+
"ontology": "crm:P3 has note"
|
|
1135
1247
|
},
|
|
1136
1248
|
"@type": {
|
|
1137
1249
|
"const": "ConditionState",
|
|
1138
|
-
"description": "The type discriminator for this object.
|
|
1250
|
+
"description": "The type discriminator for this object.",
|
|
1139
1251
|
"type": "string",
|
|
1140
1252
|
"ontology": "rdf:type"
|
|
1141
1253
|
}
|
|
@@ -1153,7 +1265,8 @@
|
|
|
1153
1265
|
"properties": {
|
|
1154
1266
|
"belief": {
|
|
1155
1267
|
"$ref": "#/definitions/Belief",
|
|
1156
|
-
"description": "The belief held about the annotated statement.
|
|
1268
|
+
"description": "The belief held about the annotated statement.",
|
|
1269
|
+
"ontology": "crminf:J4i is subject of"
|
|
1157
1270
|
},
|
|
1158
1271
|
"@id": {
|
|
1159
1272
|
"description": "A unique identifier for this object.",
|
|
@@ -1168,20 +1281,23 @@
|
|
|
1168
1281
|
},
|
|
1169
1282
|
"conditionType": {
|
|
1170
1283
|
"const": "paper-stretch",
|
|
1171
|
-
"description": "The kind of condition, from the list the roll or the kind of feature allows.
|
|
1172
|
-
"type": "string"
|
|
1284
|
+
"description": "The kind of condition, from the list the roll or the kind of feature allows.",
|
|
1285
|
+
"type": "string",
|
|
1286
|
+
"ontology": "crm:P2 has type"
|
|
1173
1287
|
},
|
|
1174
1288
|
"description": {
|
|
1175
|
-
"description": "A free-text description of the condition, providing details beyond the type classification.
|
|
1176
|
-
"type": "string"
|
|
1289
|
+
"description": "A free-text description of the condition, providing details beyond the type classification.",
|
|
1290
|
+
"type": "string",
|
|
1291
|
+
"ontology": "crm:P3 has note"
|
|
1177
1292
|
},
|
|
1178
1293
|
"factor": {
|
|
1179
|
-
"description": "The stretch factor, e.g. 1.02 means the paper has stretched by 2% compared to its original dimensions.
|
|
1180
|
-
"type": "number"
|
|
1294
|
+
"description": "The stretch factor, e.g. 1.02 means the paper has stretched by 2% compared to its original dimensions.",
|
|
1295
|
+
"type": "number",
|
|
1296
|
+
"ontology": "rdf:value"
|
|
1181
1297
|
},
|
|
1182
1298
|
"@type": {
|
|
1183
1299
|
"const": "ConditionState",
|
|
1184
|
-
"description": "The type discriminator for this object.
|
|
1300
|
+
"description": "The type discriminator for this object.",
|
|
1185
1301
|
"type": "string",
|
|
1186
1302
|
"ontology": "rdf:type"
|
|
1187
1303
|
}
|
|
@@ -1204,7 +1320,8 @@
|
|
|
1204
1320
|
"properties": {
|
|
1205
1321
|
"belief": {
|
|
1206
1322
|
"$ref": "#/definitions/Belief",
|
|
1207
|
-
"description": "The belief held about the annotated statement.
|
|
1323
|
+
"description": "The belief held about the annotated statement.",
|
|
1324
|
+
"ontology": "crminf:J4i is subject of"
|
|
1208
1325
|
},
|
|
1209
1326
|
"@id": {
|
|
1210
1327
|
"description": "A unique identifier for this object.",
|
|
@@ -1218,20 +1335,22 @@
|
|
|
1218
1335
|
"type": "object"
|
|
1219
1336
|
},
|
|
1220
1337
|
"conditionType": {
|
|
1221
|
-
"description": "The kind of condition, from the list the roll or the kind of feature allows.
|
|
1338
|
+
"description": "The kind of condition, from the list the roll or the kind of feature allows.",
|
|
1222
1339
|
"enum": [
|
|
1223
1340
|
"detaching",
|
|
1224
1341
|
"ripped"
|
|
1225
1342
|
],
|
|
1226
|
-
"type": "string"
|
|
1343
|
+
"type": "string",
|
|
1344
|
+
"ontology": "crm:P2 has type"
|
|
1227
1345
|
},
|
|
1228
1346
|
"description": {
|
|
1229
|
-
"description": "A free-text description of the condition, providing details beyond the type classification.
|
|
1230
|
-
"type": "string"
|
|
1347
|
+
"description": "A free-text description of the condition, providing details beyond the type classification.",
|
|
1348
|
+
"type": "string",
|
|
1349
|
+
"ontology": "crm:P3 has note"
|
|
1231
1350
|
},
|
|
1232
1351
|
"@type": {
|
|
1233
1352
|
"const": "ConditionState",
|
|
1234
|
-
"description": "The type discriminator for this object.
|
|
1353
|
+
"description": "The type discriminator for this object.",
|
|
1235
1354
|
"type": "string",
|
|
1236
1355
|
"ontology": "rdf:type"
|
|
1237
1356
|
}
|
|
@@ -1250,7 +1369,8 @@
|
|
|
1250
1369
|
"properties": {
|
|
1251
1370
|
"belief": {
|
|
1252
1371
|
"$ref": "#/definitions/Belief",
|
|
1253
|
-
"description": "The belief held about the annotated statement.
|
|
1372
|
+
"description": "The belief held about the annotated statement.",
|
|
1373
|
+
"ontology": "crminf:J4i is subject of"
|
|
1254
1374
|
},
|
|
1255
1375
|
"@id": {
|
|
1256
1376
|
"description": "A unique identifier for this object.",
|
|
@@ -1265,16 +1385,18 @@
|
|
|
1265
1385
|
},
|
|
1266
1386
|
"conditionType": {
|
|
1267
1387
|
"const": "faded",
|
|
1268
|
-
"description": "The kind of condition, from the list the roll or the kind of feature allows.
|
|
1269
|
-
"type": "string"
|
|
1388
|
+
"description": "The kind of condition, from the list the roll or the kind of feature allows.",
|
|
1389
|
+
"type": "string",
|
|
1390
|
+
"ontology": "crm:P2 has type"
|
|
1270
1391
|
},
|
|
1271
1392
|
"description": {
|
|
1272
|
-
"description": "A free-text description of the condition, providing details beyond the type classification.
|
|
1273
|
-
"type": "string"
|
|
1393
|
+
"description": "A free-text description of the condition, providing details beyond the type classification.",
|
|
1394
|
+
"type": "string",
|
|
1395
|
+
"ontology": "crm:P3 has note"
|
|
1274
1396
|
},
|
|
1275
1397
|
"@type": {
|
|
1276
1398
|
"const": "ConditionState",
|
|
1277
|
-
"description": "The type discriminator for this object.
|
|
1399
|
+
"description": "The type discriminator for this object.",
|
|
1278
1400
|
"type": "string",
|
|
1279
1401
|
"ontology": "rdf:type"
|
|
1280
1402
|
}
|
|
@@ -1293,7 +1415,8 @@
|
|
|
1293
1415
|
"properties": {
|
|
1294
1416
|
"belief": {
|
|
1295
1417
|
"$ref": "#/definitions/Belief",
|
|
1296
|
-
"description": "The belief held about the annotated statement.
|
|
1418
|
+
"description": "The belief held about the annotated statement.",
|
|
1419
|
+
"ontology": "crminf:J4i is subject of"
|
|
1297
1420
|
},
|
|
1298
1421
|
"@id": {
|
|
1299
1422
|
"description": "A unique identifier for this object.",
|
|
@@ -1308,16 +1431,18 @@
|
|
|
1308
1431
|
},
|
|
1309
1432
|
"conditionType": {
|
|
1310
1433
|
"const": "illegible",
|
|
1311
|
-
"description": "The kind of condition, from the list the roll or the kind of feature allows.
|
|
1312
|
-
"type": "string"
|
|
1434
|
+
"description": "The kind of condition, from the list the roll or the kind of feature allows.",
|
|
1435
|
+
"type": "string",
|
|
1436
|
+
"ontology": "crm:P2 has type"
|
|
1313
1437
|
},
|
|
1314
1438
|
"description": {
|
|
1315
|
-
"description": "A free-text description of the condition, providing details beyond the type classification.
|
|
1316
|
-
"type": "string"
|
|
1439
|
+
"description": "A free-text description of the condition, providing details beyond the type classification.",
|
|
1440
|
+
"type": "string",
|
|
1441
|
+
"ontology": "crm:P3 has note"
|
|
1317
1442
|
},
|
|
1318
1443
|
"@type": {
|
|
1319
1444
|
"const": "ConditionState",
|
|
1320
|
-
"description": "The type discriminator for this object.
|
|
1445
|
+
"description": "The type discriminator for this object.",
|
|
1321
1446
|
"type": "string",
|
|
1322
1447
|
"ontology": "rdf:type"
|
|
1323
1448
|
}
|
|
@@ -1336,7 +1461,8 @@
|
|
|
1336
1461
|
"properties": {
|
|
1337
1462
|
"belief": {
|
|
1338
1463
|
"$ref": "#/definitions/Belief",
|
|
1339
|
-
"description": "The belief held about the annotated statement.
|
|
1464
|
+
"description": "The belief held about the annotated statement.",
|
|
1465
|
+
"ontology": "crminf:J4i is subject of"
|
|
1340
1466
|
},
|
|
1341
1467
|
"@id": {
|
|
1342
1468
|
"description": "A unique identifier for this object.",
|
|
@@ -1350,20 +1476,22 @@
|
|
|
1350
1476
|
"type": "object"
|
|
1351
1477
|
},
|
|
1352
1478
|
"conditionType": {
|
|
1353
|
-
"description": "The kind of condition, from the list the roll or the kind of feature allows.
|
|
1479
|
+
"description": "The kind of condition, from the list the roll or the kind of feature allows.",
|
|
1354
1480
|
"enum": [
|
|
1355
1481
|
"partially-torn",
|
|
1356
1482
|
"missing-perforation"
|
|
1357
1483
|
],
|
|
1358
|
-
"type": "string"
|
|
1484
|
+
"type": "string",
|
|
1485
|
+
"ontology": "crm:P2 has type"
|
|
1359
1486
|
},
|
|
1360
1487
|
"description": {
|
|
1361
|
-
"description": "A free-text description of the condition, providing details beyond the type classification.
|
|
1362
|
-
"type": "string"
|
|
1488
|
+
"description": "A free-text description of the condition, providing details beyond the type classification.",
|
|
1489
|
+
"type": "string",
|
|
1490
|
+
"ontology": "crm:P3 has note"
|
|
1363
1491
|
},
|
|
1364
1492
|
"@type": {
|
|
1365
1493
|
"const": "ConditionState",
|
|
1366
|
-
"description": "The type discriminator for this object.
|
|
1494
|
+
"description": "The type discriminator for this object.",
|
|
1367
1495
|
"type": "string",
|
|
1368
1496
|
"ontology": "rdf:type"
|
|
1369
1497
|
}
|
|
@@ -1383,7 +1511,8 @@
|
|
|
1383
1511
|
"properties": {
|
|
1384
1512
|
"belief": {
|
|
1385
1513
|
"$ref": "#/definitions/Belief",
|
|
1386
|
-
"description": "The belief held about the annotated statement.
|
|
1514
|
+
"description": "The belief held about the annotated statement.",
|
|
1515
|
+
"ontology": "crminf:J4i is subject of"
|
|
1387
1516
|
},
|
|
1388
1517
|
"@id": {
|
|
1389
1518
|
"description": "A unique identifier for this object.",
|
|
@@ -1398,12 +1527,14 @@
|
|
|
1398
1527
|
},
|
|
1399
1528
|
"unit": {
|
|
1400
1529
|
"const": "ft/min",
|
|
1401
|
-
"description": "The unit of measurement.
|
|
1402
|
-
"type": "string"
|
|
1530
|
+
"description": "The unit of measurement.",
|
|
1531
|
+
"type": "string",
|
|
1532
|
+
"ontology": "crm:P91 has unit"
|
|
1403
1533
|
},
|
|
1404
1534
|
"value": {
|
|
1405
1535
|
"$ref": "#/definitions/Quantity%3C%22ft%2Fmin%22%3E",
|
|
1406
|
-
"description": "The measured value.
|
|
1536
|
+
"description": "The measured value.",
|
|
1537
|
+
"ontology": "crm:P90 has value"
|
|
1407
1538
|
}
|
|
1408
1539
|
},
|
|
1409
1540
|
"required": [
|
|
@@ -1419,7 +1550,8 @@
|
|
|
1419
1550
|
"properties": {
|
|
1420
1551
|
"belief": {
|
|
1421
1552
|
"$ref": "#/definitions/Belief",
|
|
1422
|
-
"description": "The belief held about the annotated statement.
|
|
1553
|
+
"description": "The belief held about the annotated statement.",
|
|
1554
|
+
"ontology": "crminf:J4i is subject of"
|
|
1423
1555
|
},
|
|
1424
1556
|
"@id": {
|
|
1425
1557
|
"description": "A unique identifier for this object.",
|
|
@@ -1434,12 +1566,14 @@
|
|
|
1434
1566
|
},
|
|
1435
1567
|
"unit": {
|
|
1436
1568
|
"const": "m/min",
|
|
1437
|
-
"description": "The unit of measurement.
|
|
1438
|
-
"type": "string"
|
|
1569
|
+
"description": "The unit of measurement.",
|
|
1570
|
+
"type": "string",
|
|
1571
|
+
"ontology": "crm:P91 has unit"
|
|
1439
1572
|
},
|
|
1440
1573
|
"value": {
|
|
1441
1574
|
"$ref": "#/definitions/Quantity%3C%22m%2Fmin%22%3E",
|
|
1442
|
-
"description": "The measured value.
|
|
1575
|
+
"description": "The measured value.",
|
|
1576
|
+
"ontology": "crm:P90 has value"
|
|
1443
1577
|
}
|
|
1444
1578
|
},
|
|
1445
1579
|
"required": [
|
|
@@ -1459,7 +1593,8 @@
|
|
|
1459
1593
|
"properties": {
|
|
1460
1594
|
"belief": {
|
|
1461
1595
|
"$ref": "#/definitions/Belief",
|
|
1462
|
-
"description": "The belief held about the annotated statement.
|
|
1596
|
+
"description": "The belief held about the annotated statement.",
|
|
1597
|
+
"ontology": "crminf:J4i is subject of"
|
|
1463
1598
|
},
|
|
1464
1599
|
"@id": {
|
|
1465
1600
|
"description": "A unique identifier for this object.",
|
|
@@ -1473,22 +1608,25 @@
|
|
|
1473
1608
|
"type": "object"
|
|
1474
1609
|
},
|
|
1475
1610
|
"name": {
|
|
1476
|
-
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\".
|
|
1477
|
-
"type": "string"
|
|
1611
|
+
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\".",
|
|
1612
|
+
"type": "string",
|
|
1613
|
+
"ontology": "rdfs:label"
|
|
1478
1614
|
},
|
|
1479
1615
|
"role": {
|
|
1480
1616
|
"$ref": "#/definitions/AgentRole",
|
|
1481
|
-
"description": "The role of the agent in the context of the edition.
|
|
1617
|
+
"description": "The role of the agent in the context of the edition.",
|
|
1618
|
+
"ontology": "crm:P2 has type"
|
|
1482
1619
|
},
|
|
1483
1620
|
"sameAs": {
|
|
1484
|
-
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar.
|
|
1621
|
+
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar.",
|
|
1485
1622
|
"examples": [
|
|
1486
1623
|
"https://d-nb.info/gnd/116888652"
|
|
1487
1624
|
],
|
|
1488
1625
|
"items": {
|
|
1489
1626
|
"type": "string"
|
|
1490
1627
|
},
|
|
1491
|
-
"type": "array"
|
|
1628
|
+
"type": "array",
|
|
1629
|
+
"ontology": "owl:sameAs"
|
|
1492
1630
|
},
|
|
1493
1631
|
"@id": {
|
|
1494
1632
|
"description": "A unique identifier for this object.",
|
|
@@ -1510,7 +1648,8 @@
|
|
|
1510
1648
|
"properties": {
|
|
1511
1649
|
"belief": {
|
|
1512
1650
|
"$ref": "#/definitions/Belief",
|
|
1513
|
-
"description": "The belief held about the annotated statement.
|
|
1651
|
+
"description": "The belief held about the annotated statement.",
|
|
1652
|
+
"ontology": "crminf:J4i is subject of"
|
|
1514
1653
|
},
|
|
1515
1654
|
"@id": {
|
|
1516
1655
|
"description": "A unique identifier for this object.",
|
|
@@ -1525,16 +1664,19 @@
|
|
|
1525
1664
|
},
|
|
1526
1665
|
"endsWith": {
|
|
1527
1666
|
"$ref": "#/definitions/Quantity%3C%22ft%2Fmin%22%3E",
|
|
1528
|
-
"description": "The tempo at the end of the roll.
|
|
1667
|
+
"description": "The tempo at the end of the roll.",
|
|
1668
|
+
"ontology": "reo:to"
|
|
1529
1669
|
},
|
|
1530
1670
|
"startsWith": {
|
|
1531
1671
|
"$ref": "#/definitions/Quantity%3C%22ft%2Fmin%22%3E",
|
|
1532
|
-
"description": "The tempo at the beginning of the roll.
|
|
1672
|
+
"description": "The tempo at the beginning of the roll.",
|
|
1673
|
+
"ontology": "reo:from"
|
|
1533
1674
|
},
|
|
1534
1675
|
"unit": {
|
|
1535
1676
|
"const": "ft/min",
|
|
1536
|
-
"description": "The unit of the tempo measurement.
|
|
1537
|
-
"type": "string"
|
|
1677
|
+
"description": "The unit of the tempo measurement.",
|
|
1678
|
+
"type": "string",
|
|
1679
|
+
"ontology": "crm:P91 has unit"
|
|
1538
1680
|
}
|
|
1539
1681
|
},
|
|
1540
1682
|
"required": [
|
|
@@ -1551,7 +1693,8 @@
|
|
|
1551
1693
|
"properties": {
|
|
1552
1694
|
"belief": {
|
|
1553
1695
|
"$ref": "#/definitions/Belief",
|
|
1554
|
-
"description": "The belief held about the annotated statement.
|
|
1696
|
+
"description": "The belief held about the annotated statement.",
|
|
1697
|
+
"ontology": "crminf:J4i is subject of"
|
|
1555
1698
|
},
|
|
1556
1699
|
"@id": {
|
|
1557
1700
|
"description": "A unique identifier for this object.",
|
|
@@ -1566,16 +1709,19 @@
|
|
|
1566
1709
|
},
|
|
1567
1710
|
"endsWith": {
|
|
1568
1711
|
"$ref": "#/definitions/Quantity%3C%22m%2Fmin%22%3E",
|
|
1569
|
-
"description": "The tempo at the end of the roll.
|
|
1712
|
+
"description": "The tempo at the end of the roll.",
|
|
1713
|
+
"ontology": "reo:to"
|
|
1570
1714
|
},
|
|
1571
1715
|
"startsWith": {
|
|
1572
1716
|
"$ref": "#/definitions/Quantity%3C%22m%2Fmin%22%3E",
|
|
1573
|
-
"description": "The tempo at the beginning of the roll.
|
|
1717
|
+
"description": "The tempo at the beginning of the roll.",
|
|
1718
|
+
"ontology": "reo:from"
|
|
1574
1719
|
},
|
|
1575
1720
|
"unit": {
|
|
1576
1721
|
"const": "m/min",
|
|
1577
|
-
"description": "The unit of the tempo measurement.
|
|
1578
|
-
"type": "string"
|
|
1722
|
+
"description": "The unit of the tempo measurement.",
|
|
1723
|
+
"type": "string",
|
|
1724
|
+
"ontology": "crm:P91 has unit"
|
|
1579
1725
|
}
|
|
1580
1726
|
},
|
|
1581
1727
|
"required": [
|
|
@@ -1596,7 +1742,8 @@
|
|
|
1596
1742
|
"properties": {
|
|
1597
1743
|
"belief": {
|
|
1598
1744
|
"$ref": "#/definitions/Belief",
|
|
1599
|
-
"description": "The belief held about the annotated statement.
|
|
1745
|
+
"description": "The belief held about the annotated statement.",
|
|
1746
|
+
"ontology": "crminf:J4i is subject of"
|
|
1600
1747
|
},
|
|
1601
1748
|
"@id": {
|
|
1602
1749
|
"description": "A unique identifier for this object.",
|
|
@@ -1610,8 +1757,9 @@
|
|
|
1610
1757
|
"type": "object"
|
|
1611
1758
|
},
|
|
1612
1759
|
"text": {
|
|
1613
|
-
"description": "The text content of the symbol.
|
|
1614
|
-
"type": "string"
|
|
1760
|
+
"description": "The text content of the symbol.",
|
|
1761
|
+
"type": "string",
|
|
1762
|
+
"ontology": "crm:P190 has symbolic content"
|
|
1615
1763
|
},
|
|
1616
1764
|
"@id": {
|
|
1617
1765
|
"description": "A unique identifier for this object."
|
|
@@ -1650,54 +1798,63 @@
|
|
|
1650
1798
|
"description": "A place in a scan. Comparable within one scan only, since the resolution is the scan's."
|
|
1651
1799
|
},
|
|
1652
1800
|
"Place": {
|
|
1653
|
-
"description": "A place, e.g. a recording location, publishing location, etc.
|
|
1801
|
+
"description": "A place, e.g. a recording location, publishing location, etc.",
|
|
1654
1802
|
"properties": {
|
|
1655
1803
|
"name": {
|
|
1656
|
-
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\".
|
|
1657
|
-
"type": "string"
|
|
1804
|
+
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\".",
|
|
1805
|
+
"type": "string",
|
|
1806
|
+
"ontology": "rdfs:label"
|
|
1658
1807
|
},
|
|
1659
1808
|
"sameAs": {
|
|
1660
|
-
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar.
|
|
1809
|
+
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar.",
|
|
1661
1810
|
"examples": [
|
|
1662
1811
|
"https://d-nb.info/gnd/116888652"
|
|
1663
1812
|
],
|
|
1664
1813
|
"items": {
|
|
1665
1814
|
"type": "string"
|
|
1666
1815
|
},
|
|
1667
|
-
"type": "array"
|
|
1816
|
+
"type": "array",
|
|
1817
|
+
"ontology": "owl:sameAs"
|
|
1668
1818
|
}
|
|
1669
1819
|
},
|
|
1670
1820
|
"required": [
|
|
1671
1821
|
"name",
|
|
1672
1822
|
"sameAs"
|
|
1673
1823
|
],
|
|
1674
|
-
"type": "object"
|
|
1824
|
+
"type": "object",
|
|
1825
|
+
"ontology": "crm:E53 Place"
|
|
1675
1826
|
},
|
|
1676
1827
|
"ProductionEvent": {
|
|
1677
|
-
"description": "Describes the production of a roll copy: the manufacturer, the paper used, the date, and the system and paper speed the copy was cut for.
|
|
1828
|
+
"description": "Describes the production of a roll copy: the manufacturer, the paper used, the date, and the system and paper speed the copy was cut for.",
|
|
1678
1829
|
"properties": {
|
|
1679
1830
|
"company": {
|
|
1680
1831
|
"$ref": "#/definitions/Agent",
|
|
1681
|
-
"description": "The company that produced the roll copy (e.g. \"M. Welte & Söhne\").
|
|
1832
|
+
"description": "The company that produced the roll copy (e.g. \"M. Welte & Söhne\").",
|
|
1833
|
+
"ontology": "crm:P14 carried out by"
|
|
1682
1834
|
},
|
|
1683
1835
|
"date": {
|
|
1684
1836
|
"$ref": "#/definitions/DateAssignment",
|
|
1685
|
-
"description": "The date of production, if known.
|
|
1837
|
+
"description": "The date of production, if known.",
|
|
1838
|
+
"ontology": "dcterms:date"
|
|
1686
1839
|
},
|
|
1687
1840
|
"paper": {
|
|
1688
1841
|
"$ref": "#/definitions/Concept",
|
|
1689
|
-
"description": "The paper the roll copy was cut on.
|
|
1842
|
+
"description": "The paper the roll copy was cut on.",
|
|
1843
|
+
"ontology": "crm:P126 employed"
|
|
1690
1844
|
},
|
|
1691
1845
|
"speed": {
|
|
1692
1846
|
"$ref": "#/definitions/ObjectAssumption%3CPaperSpeed%3E",
|
|
1693
|
-
"description": "The paper speed the copy was cut for. A copy cut from the same master for another speed comes out longer or shorter than the roll it is aligned with by the ratio of the speeds, which is what the alignment then measures.
|
|
1847
|
+
"description": "The paper speed the copy was cut for. A copy cut from the same master for another speed comes out longer or shorter than the roll it is aligned with by the ratio of the speeds, which is what the alignment then measures.",
|
|
1848
|
+
"ontology": "reo:paperSpeed"
|
|
1694
1849
|
},
|
|
1695
1850
|
"system": {
|
|
1696
1851
|
"$ref": "#/definitions/Concept",
|
|
1697
|
-
"description": "The reproducing system the copy was cut for. Left out, it is the roll's own; a Licensee re-cut of a T-100 roll names the Licensee here. A system the type vocabulary knows carries the IRI of its concept as `id`.
|
|
1852
|
+
"description": "The reproducing system the copy was cut for. Left out, it is the roll's own; a Licensee re-cut of a T-100 roll names the Licensee here. A system the type vocabulary knows carries the IRI of its concept as `id`.",
|
|
1853
|
+
"ontology": "crm:P32 used general technique"
|
|
1698
1854
|
}
|
|
1699
1855
|
},
|
|
1700
|
-
"type": "object"
|
|
1856
|
+
"type": "object",
|
|
1857
|
+
"ontology": "lrmoo:F32 Item Production Event"
|
|
1701
1858
|
},
|
|
1702
1859
|
"Quantity<\"ft/min\">": {
|
|
1703
1860
|
"type": "number"
|
|
@@ -1718,37 +1875,43 @@
|
|
|
1718
1875
|
"type": "number"
|
|
1719
1876
|
},
|
|
1720
1877
|
"RecordingEvent": {
|
|
1721
|
-
"description": "Describes the event of recording and documents the persons involved in the process (e.g. pianist), the place, and the date of the recording.
|
|
1878
|
+
"description": "Describes the event of recording and documents the persons involved in the process (e.g. pianist), the place, and the date of the recording.",
|
|
1722
1879
|
"properties": {
|
|
1723
1880
|
"created": {
|
|
1724
1881
|
"$ref": "#/definitions/Version",
|
|
1725
|
-
"description": "The version of the roll which was created in the recording. Since it is usually not handed down, this is an optional property.
|
|
1882
|
+
"description": "The version of the roll which was created in the recording. Since it is usually not handed down, this is an optional property.",
|
|
1883
|
+
"ontology": "lrmoo:R17 created"
|
|
1726
1884
|
},
|
|
1727
1885
|
"date": {
|
|
1728
1886
|
"$ref": "#/definitions/DateAssignment",
|
|
1729
|
-
"description": "The recording date of the roll. This is a date assignment so that we can state e.g. the catalogue or the roll label which indicates the date of the recording.
|
|
1887
|
+
"description": "The recording date of the roll. This is a date assignment so that we can state e.g. the catalogue or the roll label which indicates the date of the recording.",
|
|
1888
|
+
"ontology": "dcterms:date"
|
|
1730
1889
|
},
|
|
1731
1890
|
"place": {
|
|
1732
1891
|
"$ref": "#/definitions/Place",
|
|
1733
|
-
"description": "The place where the recording took place.
|
|
1892
|
+
"description": "The place where the recording took place.",
|
|
1893
|
+
"ontology": "crm:P7 took place at"
|
|
1734
1894
|
},
|
|
1735
1895
|
"recorded": {
|
|
1736
|
-
"description": "Documents the performance which was recorded.
|
|
1896
|
+
"description": "Documents the performance which was recorded.",
|
|
1737
1897
|
"properties": {
|
|
1738
1898
|
"pianist": {
|
|
1739
1899
|
"$ref": "#/definitions/Person",
|
|
1740
|
-
"description": "The pianist who gave the recorded performance.
|
|
1900
|
+
"description": "The pianist who gave the recorded performance.",
|
|
1901
|
+
"ontology": "crm:P14 carried out by"
|
|
1741
1902
|
},
|
|
1742
1903
|
"playing": {
|
|
1743
|
-
"description": "This property should point to a standard URI, e.g. the GND.
|
|
1744
|
-
"type": "string"
|
|
1904
|
+
"description": "This property should point to a standard URI, e.g. the GND.",
|
|
1905
|
+
"type": "string",
|
|
1906
|
+
"ontology": "lrmoo:R80 performed"
|
|
1745
1907
|
}
|
|
1746
1908
|
},
|
|
1747
1909
|
"required": [
|
|
1748
1910
|
"pianist",
|
|
1749
1911
|
"playing"
|
|
1750
1912
|
],
|
|
1751
|
-
"type": "object"
|
|
1913
|
+
"type": "object",
|
|
1914
|
+
"ontology": "lrmoo:R81 recorded"
|
|
1752
1915
|
}
|
|
1753
1916
|
},
|
|
1754
1917
|
"required": [
|
|
@@ -1756,7 +1919,8 @@
|
|
|
1756
1919
|
"place",
|
|
1757
1920
|
"date"
|
|
1758
1921
|
],
|
|
1759
|
-
"type": "object"
|
|
1922
|
+
"type": "object",
|
|
1923
|
+
"ontology": "lrmoo:F28 Expression Creation"
|
|
1760
1924
|
},
|
|
1761
1925
|
"ReferenceAssumption": {
|
|
1762
1926
|
"description": "A reference assumption wraps a reference (by `@id`) with an optional annotation. Used when pointing to another entity whose association may be uncertain.",
|
|
@@ -1766,7 +1930,8 @@
|
|
|
1766
1930
|
"properties": {
|
|
1767
1931
|
"belief": {
|
|
1768
1932
|
"$ref": "#/definitions/Belief",
|
|
1769
|
-
"description": "The belief held about the annotated statement.
|
|
1933
|
+
"description": "The belief held about the annotated statement.",
|
|
1934
|
+
"ontology": "crminf:J4i is subject of"
|
|
1770
1935
|
},
|
|
1771
1936
|
"@id": {
|
|
1772
1937
|
"description": "A unique identifier for this object.",
|
|
@@ -1790,69 +1955,77 @@
|
|
|
1790
1955
|
"type": "object"
|
|
1791
1956
|
},
|
|
1792
1957
|
"Roll": {
|
|
1793
|
-
"description": "The abstract concept of a roll, identified by its catalogue number.
|
|
1958
|
+
"description": "The abstract concept of a roll, identified by its catalogue number.",
|
|
1794
1959
|
"properties": {
|
|
1795
1960
|
"catalogueNumber": {
|
|
1796
|
-
"description": "The catalogue number of the roll.
|
|
1961
|
+
"description": "The catalogue number of the roll.",
|
|
1797
1962
|
"examples": [
|
|
1798
1963
|
"WM 225"
|
|
1799
1964
|
],
|
|
1800
|
-
"type": "string"
|
|
1965
|
+
"type": "string",
|
|
1966
|
+
"ontology": "dcterms:identifier"
|
|
1801
1967
|
},
|
|
1802
1968
|
"recordingEvent": {
|
|
1803
1969
|
"$ref": "#/definitions/RecordingEvent",
|
|
1804
|
-
"
|
|
1970
|
+
"ontology": "lrmoo:R19i was realised through"
|
|
1805
1971
|
}
|
|
1806
1972
|
},
|
|
1807
1973
|
"required": [
|
|
1808
1974
|
"catalogueNumber",
|
|
1809
1975
|
"recordingEvent"
|
|
1810
1976
|
],
|
|
1811
|
-
"type": "object"
|
|
1977
|
+
"type": "object",
|
|
1978
|
+
"ontology": "lrmoo:F1 Work"
|
|
1812
1979
|
},
|
|
1813
1980
|
"RollConditionAssignment": {
|
|
1814
1981
|
"$ref": "#/definitions/ObjectAssumption%3C(GeneralRollCondition%7CPaperStretch)%3E",
|
|
1815
1982
|
"description": "An assignment of a condition (general or paper-stretch) to a roll copy, annotatable with a belief about its certainty."
|
|
1816
1983
|
},
|
|
1817
1984
|
"RollCopy": {
|
|
1818
|
-
"description": "A physical copy of a roll, held at a specific location. Each roll copy has its own set of features, measurements, conditions, and modifications. Multiple copies of the same roll may exist across different archives or collections.
|
|
1985
|
+
"description": "A physical copy of a roll, held at a specific location. Each roll copy has its own set of features, measurements, conditions, and modifications. Multiple copies of the same roll may exist across different archives or collections.",
|
|
1819
1986
|
"properties": {
|
|
1820
1987
|
"conditions": {
|
|
1821
|
-
"description": "Condition assessments of this roll copy (e.g. paper stretch, general wear). Each condition is an assumption annotatable with a belief.
|
|
1988
|
+
"description": "Condition assessments of this roll copy (e.g. paper stretch, general wear). Each condition is an assumption annotatable with a belief.",
|
|
1822
1989
|
"items": {
|
|
1823
1990
|
"$ref": "#/definitions/RollConditionAssignment"
|
|
1824
1991
|
},
|
|
1825
|
-
"type": "array"
|
|
1992
|
+
"type": "array",
|
|
1993
|
+
"ontology": "crm:P44 has condition"
|
|
1826
1994
|
},
|
|
1827
1995
|
"features": {
|
|
1828
|
-
"description": "The physical features found on this copy, with shift and stretch already applied when `ops` says so.
|
|
1996
|
+
"description": "The physical features found on this copy, with shift and stretch already applied when `ops` says so.",
|
|
1829
1997
|
"items": {
|
|
1830
1998
|
"$ref": "#/definitions/AnyFeature"
|
|
1831
1999
|
},
|
|
1832
|
-
"type": "array"
|
|
2000
|
+
"type": "array",
|
|
2001
|
+
"ontology": "crm:P56 bears feature"
|
|
1833
2002
|
},
|
|
1834
2003
|
"keeper": {
|
|
1835
2004
|
"$ref": "#/definitions/Agent",
|
|
1836
|
-
"description": "The institution or person holding this copy.
|
|
2005
|
+
"description": "The institution or person holding this copy.",
|
|
2006
|
+
"ontology": "crm:P50 has current keeper"
|
|
1837
2007
|
},
|
|
1838
2008
|
"measurements": {
|
|
1839
|
-
"description": "Physical measurements of this roll copy, including dimensions, punch diameter, hole separation, margins, shift corrections, and information about the measuring software.
|
|
2009
|
+
"description": "Physical measurements of this roll copy, including dimensions, punch diameter, hole separation, margins, shift corrections, and information about the measuring software.",
|
|
1840
2010
|
"properties": {
|
|
1841
2011
|
"dimensions": {
|
|
1842
|
-
"description": "The physical dimensions of the roll.
|
|
2012
|
+
"description": "The physical dimensions of the roll.",
|
|
1843
2013
|
"properties": {
|
|
1844
2014
|
"height": {
|
|
1845
2015
|
"$ref": "#/definitions/Millimeters",
|
|
1846
|
-
"description": "The total height (length) of the roll.
|
|
2016
|
+
"description": "The total height (length) of the roll.",
|
|
2017
|
+
"ontology": "reo:height"
|
|
1847
2018
|
},
|
|
1848
2019
|
"unit": {
|
|
1849
2020
|
"const": "mm",
|
|
1850
|
-
"description": "The unit of measurement.
|
|
1851
|
-
"type": "string"
|
|
2021
|
+
"description": "The unit of measurement.",
|
|
2022
|
+
"type": "string",
|
|
2023
|
+
"ontology": "crm:P91 has unit"
|
|
1852
2024
|
},
|
|
1853
2025
|
"width": {
|
|
1854
2026
|
"$ref": "#/definitions/Millimeters",
|
|
1855
|
-
"description": "The width of the roll.
|
|
2027
|
+
"description": "The width of the roll.",
|
|
2028
|
+
"ontology": "reo:width"
|
|
1856
2029
|
}
|
|
1857
2030
|
},
|
|
1858
2031
|
"required": [
|
|
@@ -1860,7 +2033,8 @@
|
|
|
1860
2033
|
"height",
|
|
1861
2034
|
"unit"
|
|
1862
2035
|
],
|
|
1863
|
-
"type": "object"
|
|
2036
|
+
"type": "object",
|
|
2037
|
+
"ontology": "reo:dimensions"
|
|
1864
2038
|
},
|
|
1865
2039
|
"holeSeparation": {
|
|
1866
2040
|
"anyOf": [
|
|
@@ -1871,7 +2045,8 @@
|
|
|
1871
2045
|
"$ref": "#/definitions/Measure%3C%22mm%22%3E"
|
|
1872
2046
|
}
|
|
1873
2047
|
],
|
|
1874
|
-
"description": "The distance between adjacent tracker bar holes, in the unit the scan was measured in.
|
|
2048
|
+
"description": "The distance between adjacent tracker bar holes, in the unit the scan was measured in.",
|
|
2049
|
+
"ontology": "reo:holeSeparation"
|
|
1875
2050
|
},
|
|
1876
2051
|
"margins": {
|
|
1877
2052
|
"anyOf": [
|
|
@@ -1885,20 +2060,23 @@
|
|
|
1885
2060
|
"description": "The margins on the treble and bass sides of the roll. Not exported to RDF."
|
|
1886
2061
|
},
|
|
1887
2062
|
"measuredBy": {
|
|
1888
|
-
"description": "Information about the software used to take the measurements.
|
|
2063
|
+
"description": "Information about the software used to take the measurements.",
|
|
1889
2064
|
"properties": {
|
|
1890
2065
|
"date": {
|
|
1891
|
-
"description": "The date on which the measurements were taken.
|
|
2066
|
+
"description": "The date on which the measurements were taken.",
|
|
1892
2067
|
"format": "date",
|
|
1893
|
-
"type": "string"
|
|
2068
|
+
"type": "string",
|
|
2069
|
+
"ontology": "dcterms:date"
|
|
1894
2070
|
},
|
|
1895
2071
|
"software": {
|
|
1896
|
-
"description": "The name of the measurement software.
|
|
1897
|
-
"type": "string"
|
|
2072
|
+
"description": "The name of the measurement software.",
|
|
2073
|
+
"type": "string",
|
|
2074
|
+
"ontology": "rdfs:label"
|
|
1898
2075
|
},
|
|
1899
2076
|
"version": {
|
|
1900
|
-
"description": "The version of the measurement software.
|
|
1901
|
-
"type": "string"
|
|
2077
|
+
"description": "The version of the measurement software.",
|
|
2078
|
+
"type": "string",
|
|
2079
|
+
"ontology": "owl:versionInfo"
|
|
1902
2080
|
}
|
|
1903
2081
|
},
|
|
1904
2082
|
"required": [
|
|
@@ -1906,11 +2084,13 @@
|
|
|
1906
2084
|
"version",
|
|
1907
2085
|
"date"
|
|
1908
2086
|
],
|
|
1909
|
-
"type": "object"
|
|
2087
|
+
"type": "object",
|
|
2088
|
+
"ontology": "crmdig:L23 used software or firmware"
|
|
1910
2089
|
},
|
|
1911
2090
|
"punchDiameter": {
|
|
1912
2091
|
"$ref": "#/definitions/Measure%3C%22mm%22%3E",
|
|
1913
|
-
"description": "The average diameter of punched holes.
|
|
2092
|
+
"description": "The average diameter of punched holes.",
|
|
2093
|
+
"ontology": "reo:punchDiameter"
|
|
1914
2094
|
},
|
|
1915
2095
|
"scale": {
|
|
1916
2096
|
"description": "The factor this copy's features were scaled by to align them with the others. What it is put down to is stated apart: a paper-stretch condition, or the speed the copy was cut for. Not exported to RDF.",
|
|
@@ -1918,7 +2098,8 @@
|
|
|
1918
2098
|
},
|
|
1919
2099
|
"scanResolution": {
|
|
1920
2100
|
"$ref": "#/definitions/Measure%3C%22px%2Fin%22%3E",
|
|
1921
|
-
"description": "The resolution this copy's scan was read at, along the roll. It is what the measurements given in pixels are to be read against, and what every conversion between a place in the scan and one on the paper goes through. A scanner may read across the roll at another resolution, which the analysis files do not state.
|
|
2101
|
+
"description": "The resolution this copy's scan was read at, along the roll. It is what the measurements given in pixels are to be read against, and what every conversion between a place in the scan and one on the paper goes through. A scanner may read across the roll at another resolution, which the analysis files do not state.",
|
|
2102
|
+
"ontology": "reo:scanResolution"
|
|
1922
2103
|
},
|
|
1923
2104
|
"shift": {
|
|
1924
2105
|
"$ref": "#/definitions/Shift",
|
|
@@ -1929,14 +2110,15 @@
|
|
|
1929
2110
|
"description": "Relates this copy's scan to the tracker bar: how the scanning software's hole numbering was shifted onto the bar, and where the track grid sits in the image. Not exported to RDF."
|
|
1930
2111
|
}
|
|
1931
2112
|
},
|
|
1932
|
-
"type": "object"
|
|
2113
|
+
"type": "object",
|
|
2114
|
+
"ontology": "crm:P39i was measured by"
|
|
1933
2115
|
},
|
|
1934
2116
|
"modifications": {
|
|
1935
2117
|
"items": {
|
|
1936
2118
|
"$ref": "#/definitions/Modification"
|
|
1937
2119
|
},
|
|
1938
2120
|
"type": "array",
|
|
1939
|
-
"
|
|
2121
|
+
"ontology": "crm:P31i was modified by"
|
|
1940
2122
|
},
|
|
1941
2123
|
"ops": {
|
|
1942
2124
|
"description": "A list of operations that have been applied to this copy's features (e.g. 'shifted', 'stretched') to normalize measurements for comparison with other copies. Not exported to RDF.",
|
|
@@ -1951,15 +2133,18 @@
|
|
|
1951
2133
|
},
|
|
1952
2134
|
"production": {
|
|
1953
2135
|
"$ref": "#/definitions/ProductionEvent",
|
|
1954
|
-
"description": "The production event that created this roll copy.
|
|
2136
|
+
"description": "The production event that created this roll copy.",
|
|
2137
|
+
"ontology": "lrmoo:R28i was produced by"
|
|
1955
2138
|
},
|
|
1956
2139
|
"readFrom": {
|
|
1957
2140
|
"$ref": "#/definitions/FeatureSource",
|
|
1958
|
-
"description": "What this copy's features were read from. A copy that states no source is one whose features reached the edition by a way that was not written down.
|
|
2141
|
+
"description": "What this copy's features were read from. A copy that states no source is one whose features reached the edition by a way that was not written down.",
|
|
2142
|
+
"ontology": "reo:capture"
|
|
1959
2143
|
},
|
|
1960
2144
|
"scan": {
|
|
1961
|
-
"description": "The scan URL or IIIF URL of the roll.
|
|
1962
|
-
"type": "string"
|
|
2145
|
+
"description": "The scan URL or IIIF URL of the roll.",
|
|
2146
|
+
"type": "string",
|
|
2147
|
+
"ontology": "crm:P138i has representation"
|
|
1963
2148
|
},
|
|
1964
2149
|
"@id": {
|
|
1965
2150
|
"description": "A unique identifier for this object.",
|
|
@@ -1967,7 +2152,7 @@
|
|
|
1967
2152
|
},
|
|
1968
2153
|
"@type": {
|
|
1969
2154
|
"const": "RollCopy",
|
|
1970
|
-
"description": "The type discriminator for this object.
|
|
2155
|
+
"description": "The type discriminator for this object.",
|
|
1971
2156
|
"type": "string",
|
|
1972
2157
|
"ontology": "rdf:type"
|
|
1973
2158
|
}
|
|
@@ -1982,7 +2167,8 @@
|
|
|
1982
2167
|
"ops",
|
|
1983
2168
|
"@type"
|
|
1984
2169
|
],
|
|
1985
|
-
"type": "object"
|
|
2170
|
+
"type": "object",
|
|
2171
|
+
"ontology": "lrmoo:F5 Item"
|
|
1986
2172
|
},
|
|
1987
2173
|
"Shift": {
|
|
1988
2174
|
"description": "A shift correction applied to a roll copy to align it with other copies. The shift is defined as horizontal (along the roll length, in mm) and vertical (across tracks).",
|
|
@@ -2013,18 +2199,20 @@
|
|
|
2013
2199
|
"type": "string"
|
|
2014
2200
|
},
|
|
2015
2201
|
"Text": {
|
|
2016
|
-
"description": "A textual symbol, e.g. a label or annotation found on the roll.
|
|
2202
|
+
"description": "A textual symbol, e.g. a label or annotation found on the roll.",
|
|
2017
2203
|
"properties": {
|
|
2018
2204
|
"carriers": {
|
|
2019
|
-
"description": "References to the physical features (e.g. holes) on the roll copies that carry this symbol. Since the association might be debatable, it can be annotated. There might be e.g. doubts about the meaning and correct transcription of a feature on a physical roll. This points to a feature by its `@id`.
|
|
2205
|
+
"description": "References to the physical features (e.g. holes) on the roll copies that carry this symbol. Since the association might be debatable, it can be annotated. There might be e.g. doubts about the meaning and correct transcription of a feature on a physical roll. This points to a feature by its `@id`.",
|
|
2020
2206
|
"items": {
|
|
2021
2207
|
"$ref": "#/definitions/ReferenceAssumption"
|
|
2022
2208
|
},
|
|
2023
|
-
"type": "array"
|
|
2209
|
+
"type": "array",
|
|
2210
|
+
"ontology": "crm:P128i is carried by"
|
|
2024
2211
|
},
|
|
2025
2212
|
"text": {
|
|
2026
|
-
"description": "The text content of the symbol.
|
|
2027
|
-
"type": "string"
|
|
2213
|
+
"description": "The text content of the symbol.",
|
|
2214
|
+
"type": "string",
|
|
2215
|
+
"ontology": "crm:P190 has symbolic content"
|
|
2028
2216
|
},
|
|
2029
2217
|
"@id": {
|
|
2030
2218
|
"description": "A unique identifier for this object.",
|
|
@@ -2043,7 +2231,8 @@
|
|
|
2043
2231
|
"text",
|
|
2044
2232
|
"@type"
|
|
2045
2233
|
],
|
|
2046
|
-
"type": "object"
|
|
2234
|
+
"type": "object",
|
|
2235
|
+
"ontology": "crm:E33 Linguistic Object"
|
|
2047
2236
|
},
|
|
2048
2237
|
"Track": {
|
|
2049
2238
|
"$ref": "#/definitions/Quantity%3C%22track%22%3E",
|
|
@@ -2078,22 +2267,25 @@
|
|
|
2078
2267
|
"type": "object"
|
|
2079
2268
|
},
|
|
2080
2269
|
"Version": {
|
|
2081
|
-
"description": "A version is defined by the sum of edits applied to the version it is based on. For simple identification, a siglum is given to each version.
|
|
2270
|
+
"description": "A version is defined by the sum of edits applied to the version it is based on. For simple identification, a siglum is given to each version.",
|
|
2082
2271
|
"properties": {
|
|
2083
2272
|
"basedOn": {
|
|
2084
2273
|
"$ref": "#/definitions/Derivation",
|
|
2085
|
-
"description": "If no derivation is defined, it is assumed that this version represents the mother roll.
|
|
2274
|
+
"description": "If no derivation is defined, it is assumed that this version represents the mother roll.",
|
|
2275
|
+
"ontology": "lrmoo:R76 is derivative of"
|
|
2086
2276
|
},
|
|
2087
2277
|
"creation": {
|
|
2088
2278
|
"$ref": "#/definitions/VersionCreation",
|
|
2089
|
-
"description": "The act that made this version, where it is known: who carried it out, when, and by what rule.
|
|
2279
|
+
"description": "The act that made this version, where it is known: who carried it out, when, and by what rule.",
|
|
2280
|
+
"ontology": "lrmoo:R17i was created by"
|
|
2090
2281
|
},
|
|
2091
2282
|
"edits": {
|
|
2092
|
-
"description": "The list of edits that, applied to the base version, produce this version.
|
|
2283
|
+
"description": "The list of edits that, applied to the base version, produce this version.",
|
|
2093
2284
|
"items": {
|
|
2094
2285
|
"$ref": "#/definitions/Edit"
|
|
2095
2286
|
},
|
|
2096
|
-
"type": "array"
|
|
2287
|
+
"type": "array",
|
|
2288
|
+
"ontology": "reo:involvedEdit"
|
|
2097
2289
|
},
|
|
2098
2290
|
"motivations": {
|
|
2099
2291
|
"description": "A collection of motivations used in this version's edits.",
|
|
@@ -2103,16 +2295,19 @@
|
|
|
2103
2295
|
"type": "array"
|
|
2104
2296
|
},
|
|
2105
2297
|
"siglum": {
|
|
2106
|
-
"description": "A short siglum to identify the version, e.g. \"A\", \"B1\", \"B2_rev\", etc.
|
|
2107
|
-
"type": "string"
|
|
2298
|
+
"description": "A short siglum to identify the version, e.g. \"A\", \"B1\", \"B2_rev\", etc.",
|
|
2299
|
+
"type": "string",
|
|
2300
|
+
"ontology": "reo:siglum"
|
|
2108
2301
|
},
|
|
2109
2302
|
"system": {
|
|
2110
2303
|
"$ref": "#/definitions/Concept",
|
|
2111
|
-
"description": "The reproducing system this version is coded for. One roll was often issued for several of them, and a version is a reading in one system's words: its expression types are that system's vocabulary and its notes sit on that bar's positions. A system the type vocabulary knows carries the IRI of its concept as `id`, from which the export takes the system's own context.
|
|
2304
|
+
"description": "The reproducing system this version is coded for. One roll was often issued for several of them, and a version is a reading in one system's words: its expression types are that system's vocabulary and its notes sit on that bar's positions. A system the type vocabulary knows carries the IRI of its concept as `id`, from which the export takes the system's own context.",
|
|
2305
|
+
"ontology": "crm:P2 has type"
|
|
2112
2306
|
},
|
|
2113
2307
|
"versionType": {
|
|
2114
2308
|
"$ref": "#/definitions/VersionType",
|
|
2115
|
-
"description": "Whether the version served as a master for reproductions or exists on one copy only.
|
|
2309
|
+
"description": "Whether the version served as a master for reproductions or exists on one copy only.",
|
|
2310
|
+
"ontology": "crm:P2 has type"
|
|
2116
2311
|
},
|
|
2117
2312
|
"@id": {
|
|
2118
2313
|
"description": "A unique identifier for this object.",
|
|
@@ -2120,7 +2315,7 @@
|
|
|
2120
2315
|
},
|
|
2121
2316
|
"@type": {
|
|
2122
2317
|
"const": "Version",
|
|
2123
|
-
"description": "The type discriminator for this object.
|
|
2318
|
+
"description": "The type discriminator for this object.",
|
|
2124
2319
|
"type": "string",
|
|
2125
2320
|
"ontology": "rdf:type"
|
|
2126
2321
|
}
|
|
@@ -2134,25 +2329,30 @@
|
|
|
2134
2329
|
"@type",
|
|
2135
2330
|
"versionType"
|
|
2136
2331
|
],
|
|
2137
|
-
"type": "object"
|
|
2332
|
+
"type": "object",
|
|
2333
|
+
"ontology": "lrmoo:F2 Expression"
|
|
2138
2334
|
},
|
|
2139
2335
|
"VersionCreation": {
|
|
2140
|
-
"description": "How a version was made, where that is known and worth stating.\n\nA roll issued for another system was re-punched by an editor of the publisher's, and that was an editorial act rather than a conversion: Lawson names Kähle as the man who corrected second masters for the green system. The rule he worked by is the procedure named here, and the version's edits carry it out, so the mechanical part of a transfer is stated once instead of being spelled out per note.
|
|
2336
|
+
"description": "How a version was made, where that is known and worth stating.\n\nA roll issued for another system was re-punched by an editor of the publisher's, and that was an editorial act rather than a conversion: Lawson names Kähle as the man who corrected second masters for the green system. The rule he worked by is the procedure named here, and the version's edits carry it out, so the mechanical part of a transfer is stated once instead of being spelled out per note.",
|
|
2141
2337
|
"properties": {
|
|
2142
2338
|
"actor": {
|
|
2143
2339
|
"$ref": "#/definitions/ActorAssignment",
|
|
2144
|
-
"description": "Who carried the act out. An `ObjectAssumption`, so an attribution can carry the belief it rests on and the reasons for it.
|
|
2340
|
+
"description": "Who carried the act out. An `ObjectAssumption`, so an attribution can carry the belief it rests on and the reasons for it.",
|
|
2341
|
+
"ontology": "crm:P14 carried out by"
|
|
2145
2342
|
},
|
|
2146
2343
|
"date": {
|
|
2147
2344
|
"$ref": "#/definitions/DateAssignment",
|
|
2148
|
-
"description": "When it took place.
|
|
2345
|
+
"description": "When it took place.",
|
|
2346
|
+
"ontology": "dcterms:date"
|
|
2149
2347
|
},
|
|
2150
2348
|
"procedure": {
|
|
2151
2349
|
"$ref": "#/definitions/Concept",
|
|
2152
|
-
"description": "The rule followed, as a term of the vocabulary: the notes stand at their pitch, the expression is re-spelled in the other system's words.
|
|
2350
|
+
"description": "The rule followed, as a term of the vocabulary: the notes stand at their pitch, the expression is re-spelled in the other system's words.",
|
|
2351
|
+
"ontology": "crm:P33 used specific technique"
|
|
2153
2352
|
}
|
|
2154
2353
|
},
|
|
2155
|
-
"type": "object"
|
|
2354
|
+
"type": "object",
|
|
2355
|
+
"ontology": "lrmoo:F28 Expression Creation"
|
|
2156
2356
|
},
|
|
2157
2357
|
"VersionType": {
|
|
2158
2358
|
"description": "The type of a version. An 'edition' version may serve as the master for several roll copies; a 'unicum' version exists only on one specific copy.",
|
|
@@ -2163,54 +2363,64 @@
|
|
|
2163
2363
|
"type": "string"
|
|
2164
2364
|
},
|
|
2165
2365
|
"VerticalSpan": {
|
|
2166
|
-
"description": "Describes the vertical extent of a feature on the roll, measured in track numbers. Track numbers correspond to positions on the tracker bar.
|
|
2366
|
+
"description": "Describes the vertical extent of a feature on the roll, measured in track numbers. Track numbers correspond to positions on the tracker bar.",
|
|
2167
2367
|
"properties": {
|
|
2168
2368
|
"from": {
|
|
2169
2369
|
"$ref": "#/definitions/Track",
|
|
2170
|
-
"description": "The start track number of the feature.
|
|
2370
|
+
"description": "The start track number of the feature.",
|
|
2371
|
+
"ontology": "reo:from"
|
|
2171
2372
|
},
|
|
2172
2373
|
"to": {
|
|
2173
2374
|
"$ref": "#/definitions/Track",
|
|
2174
|
-
"description": "The end track number, if the feature spans multiple tracks. If omitted, the feature occupies a single track.
|
|
2375
|
+
"description": "The end track number, if the feature spans multiple tracks. If omitted, the feature occupies a single track.",
|
|
2376
|
+
"ontology": "reo:to"
|
|
2175
2377
|
},
|
|
2176
2378
|
"unit": {
|
|
2177
2379
|
"const": "track",
|
|
2178
|
-
"description": "The unit of measurement for vertical positions.
|
|
2179
|
-
"type": "string"
|
|
2380
|
+
"description": "The unit of measurement for vertical positions.",
|
|
2381
|
+
"type": "string",
|
|
2382
|
+
"ontology": "crm:P91 has unit"
|
|
2180
2383
|
}
|
|
2181
2384
|
},
|
|
2182
2385
|
"required": [
|
|
2183
2386
|
"unit",
|
|
2184
2387
|
"from"
|
|
2185
2388
|
],
|
|
2186
|
-
"type": "object"
|
|
2389
|
+
"type": "object",
|
|
2390
|
+
"ontology": "crm:E54 Dimension"
|
|
2187
2391
|
},
|
|
2188
2392
|
"Writing": {
|
|
2189
|
-
"description": "A piece of writing found on the roll, such as a label, catalogue number, or annotation. Writings have a method of production and a transcription of their content.
|
|
2393
|
+
"description": "A piece of writing found on the roll, such as a label, catalogue number, or annotation. Writings have a method of production and a transcription of their content.",
|
|
2190
2394
|
"properties": {
|
|
2191
2395
|
"condition": {
|
|
2192
2396
|
"$ref": "#/definitions/ObjectAssumption%3CConditionState%3C(%22illegible%22)%3E%3E",
|
|
2193
|
-
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged.
|
|
2397
|
+
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged.",
|
|
2398
|
+
"ontology": "crm:P44 has condition"
|
|
2194
2399
|
},
|
|
2195
2400
|
"depiction": {
|
|
2196
|
-
"description": "IIIF region pointing to a depiction of this feature in the scan.
|
|
2197
|
-
"type": "string"
|
|
2401
|
+
"description": "IIIF region pointing to a depiction of this feature in the scan.",
|
|
2402
|
+
"type": "string",
|
|
2403
|
+
"ontology": "crm:P138i has representation"
|
|
2198
2404
|
},
|
|
2199
2405
|
"horizontal": {
|
|
2200
2406
|
"$ref": "#/definitions/HorizontalSpan",
|
|
2201
|
-
"description": "Horizontal span of the feature on the roll.
|
|
2407
|
+
"description": "Horizontal span of the feature on the roll.",
|
|
2408
|
+
"ontology": "crm:P43 has dimension"
|
|
2202
2409
|
},
|
|
2203
2410
|
"method": {
|
|
2204
2411
|
"$ref": "#/definitions/WritingMethod",
|
|
2205
|
-
"description": "The method by which this writing was produced (e.g. through print, handwriting, or stamping).
|
|
2412
|
+
"description": "The method by which this writing was produced (e.g. through print, handwriting, or stamping).",
|
|
2413
|
+
"ontology": "crm:P2 has type"
|
|
2206
2414
|
},
|
|
2207
2415
|
"transcription": {
|
|
2208
2416
|
"$ref": "#/definitions/ObjectAssumption%3CTranscription%3E",
|
|
2209
|
-
"description": "A transcription of the text content of the writing. This is an object assumption so that the transcription can be annotated with a belief about its correctness.
|
|
2417
|
+
"description": "A transcription of the text content of the writing. This is an object assumption so that the transcription can be annotated with a belief about its correctness.",
|
|
2418
|
+
"ontology": "crm:P128 carries"
|
|
2210
2419
|
},
|
|
2211
2420
|
"vertical": {
|
|
2212
2421
|
"$ref": "#/definitions/VerticalSpan",
|
|
2213
|
-
"description": "Vertical span of the feature on the roll.
|
|
2422
|
+
"description": "Vertical span of the feature on the roll.",
|
|
2423
|
+
"ontology": "crm:P43 has dimension"
|
|
2214
2424
|
},
|
|
2215
2425
|
"@id": {
|
|
2216
2426
|
"description": "A unique identifier for this object.",
|
|
@@ -2218,7 +2428,7 @@
|
|
|
2218
2428
|
},
|
|
2219
2429
|
"@type": {
|
|
2220
2430
|
"const": "Writing",
|
|
2221
|
-
"description": "The type discriminator for this object.
|
|
2431
|
+
"description": "The type discriminator for this object.",
|
|
2222
2432
|
"type": "string",
|
|
2223
2433
|
"ontology": "rdf:type"
|
|
2224
2434
|
}
|
|
@@ -2231,7 +2441,8 @@
|
|
|
2231
2441
|
"@type",
|
|
2232
2442
|
"vertical"
|
|
2233
2443
|
],
|
|
2234
|
-
"type": "object"
|
|
2444
|
+
"type": "object",
|
|
2445
|
+
"ontology": "crm:E25 Human-Made Feature"
|
|
2235
2446
|
},
|
|
2236
2447
|
"WritingMethod": {
|
|
2237
2448
|
"description": "The method by which a writing was produced on the roll: printed, handwritten, or stamped.",
|