linked-rolls 0.1.0 → 0.2.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/LICENSE +26 -0
- package/README.md +35 -0
- package/lib/Assumption.d.ts +7 -2
- package/lib/ConditionState.d.ts +8 -1
- package/lib/Edit.d.ts +4 -3
- package/lib/Edition.d.ts +65 -35
- package/lib/Edition.js +1 -1
- package/lib/Emulation.js +32 -10
- package/lib/Feature.d.ts +19 -4
- package/lib/Plan.js +2 -1
- package/lib/RollCopy.d.ts +65 -27
- package/lib/RollCopy.js +51 -7
- package/lib/Symbol.d.ts +37 -20
- package/lib/Symbol.js +12 -0
- package/lib/TrackerBar.d.ts +18 -0
- package/lib/TrackerBar.js +27 -0
- package/lib/Version.d.ts +12 -4
- package/lib/asJsonLd.js +16 -2
- package/lib/context.d.ts +2 -0
- package/lib/context.js +2 -0
- package/lib/importJsonLd.js +19 -5
- package/lib/migrate.d.ts +15 -0
- package/lib/migrate.js +77 -0
- package/lib/schema.json +322 -276
- package/lib/spec/context.json +201 -131
- package/lib/spec/welte-t100.context.json +10 -0
- package/lib/systems/welteT100.js +19 -17
- package/lib/validate.d.ts +26 -0
- package/lib/validate.js +46 -0
- package/package.json +2 -1
package/lib/schema.json
CHANGED
|
@@ -6,6 +6,47 @@
|
|
|
6
6
|
"$ref": "#/definitions/ObjectAssumption%3CPerson%3E",
|
|
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
|
+
"Agent": {
|
|
10
|
+
"description": "A person or a group: a pianist, an editor, a publisher, a manufacturer, a library. [ontology: crm:E39 Actor]",
|
|
11
|
+
"properties": {
|
|
12
|
+
"name": {
|
|
13
|
+
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\". [ontology: rdfs:label]",
|
|
14
|
+
"type": "string"
|
|
15
|
+
},
|
|
16
|
+
"role": {
|
|
17
|
+
"$ref": "#/definitions/AgentRole",
|
|
18
|
+
"description": "The role of the agent in the context of the edition. [ontology: crm:P2 has type]"
|
|
19
|
+
},
|
|
20
|
+
"sameAs": {
|
|
21
|
+
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar. [ontology: owl:sameAs]",
|
|
22
|
+
"examples": [
|
|
23
|
+
"https://d-nb.info/gnd/116888652"
|
|
24
|
+
],
|
|
25
|
+
"items": {
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
"type": "array"
|
|
29
|
+
},
|
|
30
|
+
"@id": {
|
|
31
|
+
"description": "A unique identifier for this object.",
|
|
32
|
+
"type": "string"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"required": [
|
|
36
|
+
"name",
|
|
37
|
+
"sameAs"
|
|
38
|
+
],
|
|
39
|
+
"type": "object"
|
|
40
|
+
},
|
|
41
|
+
"AgentRole": {
|
|
42
|
+
"description": "The role an agent plays in the context of the edition.",
|
|
43
|
+
"enum": [
|
|
44
|
+
"pianist",
|
|
45
|
+
"editor",
|
|
46
|
+
"publisher"
|
|
47
|
+
],
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
9
50
|
"AnyArgumentation": {
|
|
10
51
|
"anyOf": [
|
|
11
52
|
{
|
|
@@ -85,7 +126,7 @@
|
|
|
85
126
|
"description": "The level of certainty associated with this belief. [ontology: crminf:J5 holds to be]"
|
|
86
127
|
},
|
|
87
128
|
"reasons": {
|
|
88
|
-
"description": "The argumentations providing reasons for this belief. [ontology: crminf:
|
|
129
|
+
"description": "The argumentations providing reasons for this belief. [ontology: crminf:J2i was concluded by]",
|
|
89
130
|
"items": {
|
|
90
131
|
"$ref": "#/definitions/AnyArgumentation"
|
|
91
132
|
},
|
|
@@ -163,18 +204,81 @@
|
|
|
163
204
|
],
|
|
164
205
|
"type": "object"
|
|
165
206
|
},
|
|
207
|
+
"Concept": {
|
|
208
|
+
"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`. [ontology: crm:E55 Type]",
|
|
209
|
+
"properties": {
|
|
210
|
+
"name": {
|
|
211
|
+
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\". [ontology: rdfs:label]",
|
|
212
|
+
"type": "string"
|
|
213
|
+
},
|
|
214
|
+
"sameAs": {
|
|
215
|
+
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar. [ontology: owl:sameAs]",
|
|
216
|
+
"examples": [
|
|
217
|
+
"https://d-nb.info/gnd/116888652"
|
|
218
|
+
],
|
|
219
|
+
"items": {
|
|
220
|
+
"type": "string"
|
|
221
|
+
},
|
|
222
|
+
"type": "array"
|
|
223
|
+
},
|
|
224
|
+
"@id": {
|
|
225
|
+
"description": "A unique identifier for this object.",
|
|
226
|
+
"type": "string"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"required": [
|
|
230
|
+
"name",
|
|
231
|
+
"sameAs"
|
|
232
|
+
],
|
|
233
|
+
"type": "object"
|
|
234
|
+
},
|
|
166
235
|
"DateAssignment": {
|
|
167
|
-
"
|
|
168
|
-
"
|
|
236
|
+
"description": "A date value wrapped as an assumption, so that the date can be annotated with a belief about its certainty and source.",
|
|
237
|
+
"properties": {
|
|
238
|
+
"@annotation": {
|
|
239
|
+
"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.",
|
|
240
|
+
"properties": {
|
|
241
|
+
"belief": {
|
|
242
|
+
"$ref": "#/definitions/Belief",
|
|
243
|
+
"description": "The belief held about the annotated statement. [ontology: crminf:J4i is subject of]"
|
|
244
|
+
},
|
|
245
|
+
"@id": {
|
|
246
|
+
"description": "A unique identifier for this object.",
|
|
247
|
+
"type": "string"
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"required": [
|
|
251
|
+
"belief",
|
|
252
|
+
"@id"
|
|
253
|
+
],
|
|
254
|
+
"type": "object"
|
|
255
|
+
},
|
|
256
|
+
"@type": {
|
|
257
|
+
"const": "xsd:date",
|
|
258
|
+
"description": "The datatype of the value. Written on export so that RDF reads the value as a date rather than a string.",
|
|
259
|
+
"type": "string",
|
|
260
|
+
"ontology": "rdf:type"
|
|
261
|
+
},
|
|
262
|
+
"@value": {
|
|
263
|
+
"description": "The assumed value.",
|
|
264
|
+
"format": "date",
|
|
265
|
+
"type": "string"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"required": [
|
|
269
|
+
"@value"
|
|
270
|
+
],
|
|
271
|
+
"type": "object"
|
|
169
272
|
},
|
|
170
273
|
"Edit": {
|
|
171
|
-
"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. [ontology: reo:
|
|
274
|
+
"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. [ontology: reo:Edit]",
|
|
172
275
|
"properties": {
|
|
173
276
|
"@annotation": {
|
|
174
277
|
"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.",
|
|
175
278
|
"properties": {
|
|
176
279
|
"belief": {
|
|
177
|
-
"$ref": "#/definitions/Belief"
|
|
280
|
+
"$ref": "#/definitions/Belief",
|
|
281
|
+
"description": "The belief held about the annotated statement. [ontology: crminf:J4i is subject of]"
|
|
178
282
|
},
|
|
179
283
|
"@id": {
|
|
180
284
|
"description": "A unique identifier for this object.",
|
|
@@ -188,7 +292,7 @@
|
|
|
188
292
|
"type": "object"
|
|
189
293
|
},
|
|
190
294
|
"delete": {
|
|
191
|
-
"description": "References (by `@id`) to the symbols to be deleted by this edit. [ontology: reo:
|
|
295
|
+
"description": "References (by `@id`) to the symbols to be deleted by this edit. [ontology: reo:removed]",
|
|
192
296
|
"items": {
|
|
193
297
|
"type": "string"
|
|
194
298
|
},
|
|
@@ -196,10 +300,10 @@
|
|
|
196
300
|
},
|
|
197
301
|
"editType": {
|
|
198
302
|
"$ref": "#/definitions/EditType",
|
|
199
|
-
"description": "The type of editorial change (e.g. 'correct-error', 'additional-accent')."
|
|
303
|
+
"description": "The type of editorial change (e.g. 'correct-error', 'additional-accent'). [ontology: crm:P2 has type]"
|
|
200
304
|
},
|
|
201
305
|
"insert": {
|
|
202
|
-
"description": "The symbols to be inserted by this edit. [ontology: reo:
|
|
306
|
+
"description": "The symbols to be inserted by this edit. [ontology: reo:added]",
|
|
203
307
|
"items": {
|
|
204
308
|
"$ref": "#/definitions/AnySymbol"
|
|
205
309
|
},
|
|
@@ -242,10 +346,10 @@
|
|
|
242
346
|
"type": "string"
|
|
243
347
|
},
|
|
244
348
|
"Edition": {
|
|
245
|
-
"description": "Describes the specific digital edition of a piano roll. [ontology:
|
|
349
|
+
"description": "Describes the specific digital edition of a piano roll. [ontology: lrmoo:F2 Expression]",
|
|
246
350
|
"properties": {
|
|
247
351
|
"copies": {
|
|
248
|
-
"description": "The physical roll copies on which this edition is based.",
|
|
352
|
+
"description": "The physical roll copies on which this edition is based. [ontology: reo:witness]",
|
|
249
353
|
"items": {
|
|
250
354
|
"$ref": "#/definitions/RollCopy"
|
|
251
355
|
},
|
|
@@ -253,7 +357,7 @@
|
|
|
253
357
|
},
|
|
254
358
|
"creation": {
|
|
255
359
|
"$ref": "#/definitions/EditionCreation",
|
|
256
|
-
"description": "Information about the creation of this edition, including publisher and publication date. [ontology:
|
|
360
|
+
"description": "Information about the creation of this edition, including publisher and publication date. [ontology: lrmoo:R17i was created by]"
|
|
257
361
|
},
|
|
258
362
|
"license": {
|
|
259
363
|
"description": "The license under which the edition is published. [ontology: dcterms:license]",
|
|
@@ -264,21 +368,21 @@
|
|
|
264
368
|
},
|
|
265
369
|
"roll": {
|
|
266
370
|
"$ref": "#/definitions/Roll",
|
|
267
|
-
"description": "The roll which is edited in this edition. [ontology:
|
|
371
|
+
"description": "The roll which is edited in this edition. [ontology: lrmoo:R3i realises]"
|
|
268
372
|
},
|
|
269
373
|
"tempoAdjustment": {
|
|
270
374
|
"$ref": "#/definitions/ObjectAssumption%3CRollTempo%3E",
|
|
271
|
-
"description": "An optional tempo adjustment for playback of the roll, annotatable with a belief about its correctness."
|
|
375
|
+
"description": "An optional tempo adjustment for playback of the roll, annotatable with a belief about its correctness. [ontology: reo:tempo]"
|
|
272
376
|
},
|
|
273
377
|
"title": {
|
|
274
|
-
"description": "The title of the edition. [ontology:
|
|
378
|
+
"description": "The title of the edition. [ontology: dcterms:title]",
|
|
275
379
|
"examples": [
|
|
276
380
|
"Alfred Grünfeld spielt Robert Schumann, Träumerei"
|
|
277
381
|
],
|
|
278
382
|
"type": "string"
|
|
279
383
|
},
|
|
280
384
|
"versions": {
|
|
281
|
-
"description": "The different versions of the roll on which this edition is based. [ontology:
|
|
385
|
+
"description": "The different versions of the roll on which this edition is based. [ontology: lrmoo:R75 incorporates]",
|
|
282
386
|
"items": {
|
|
283
387
|
"$ref": "#/definitions/Version"
|
|
284
388
|
},
|
|
@@ -296,14 +400,14 @@
|
|
|
296
400
|
"type": "object"
|
|
297
401
|
},
|
|
298
402
|
"EditionCreation": {
|
|
299
|
-
"description": "This type describes the creation of an edition, i.e. the editor, publisher, and publication date. [ontology:
|
|
403
|
+
"description": "This type describes the creation of an edition, i.e. the editor, publisher, and publication date. [ontology: lrmoo:F28 Expression Creation]",
|
|
300
404
|
"properties": {
|
|
301
405
|
"collationTolerance": {
|
|
302
406
|
"$ref": "#/definitions/CollationTolerance",
|
|
303
|
-
"description": "The tolerance parameters used when collating (aligning) the different roll copies for this edition.
|
|
407
|
+
"description": "The tolerance parameters used when collating (aligning) the different roll copies for this edition. Not exported to RDF."
|
|
304
408
|
},
|
|
305
409
|
"publicationDate": {
|
|
306
|
-
"description": "The date on which the edition was published. [ontology:
|
|
410
|
+
"description": "The date on which the edition was published. [ontology: dcterms:date]",
|
|
307
411
|
"format": "date",
|
|
308
412
|
"type": "string"
|
|
309
413
|
},
|
|
@@ -319,11 +423,11 @@
|
|
|
319
423
|
"type": "object"
|
|
320
424
|
},
|
|
321
425
|
"Expression": {
|
|
322
|
-
"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. [ontology: reo:
|
|
426
|
+
"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. [ontology: reo:Expression]",
|
|
323
427
|
"properties": {
|
|
324
428
|
"alignedWith": {
|
|
325
|
-
"$ref": "#/definitions/
|
|
326
|
-
"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. [ontology: reo:
|
|
429
|
+
"$ref": "#/definitions/ReferenceAssumption",
|
|
430
|
+
"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`. [ontology: reo:alignedWith]"
|
|
327
431
|
},
|
|
328
432
|
"carriers": {
|
|
329
433
|
"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`. [ontology: crm:P128i is carried by]",
|
|
@@ -333,12 +437,16 @@
|
|
|
333
437
|
"type": "array"
|
|
334
438
|
},
|
|
335
439
|
"expressionType": {
|
|
336
|
-
"
|
|
337
|
-
"
|
|
440
|
+
"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. [ontology: crm:P2 has type]",
|
|
441
|
+
"type": "string"
|
|
442
|
+
},
|
|
443
|
+
"pairedWith": {
|
|
444
|
+
"$ref": "#/definitions/ReferenceAssumption",
|
|
445
|
+
"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`. [ontology: reo:pairedWith]"
|
|
338
446
|
},
|
|
339
447
|
"scope": {
|
|
340
448
|
"$ref": "#/definitions/ExpressionScope",
|
|
341
|
-
"description": "Whether this expression applies to the bass or treble register. [ontology: reo:
|
|
449
|
+
"description": "Whether this expression applies to the bass or treble register. [ontology: reo:scope]"
|
|
342
450
|
},
|
|
343
451
|
"@id": {
|
|
344
452
|
"description": "A unique identifier for this object.",
|
|
@@ -361,42 +469,22 @@
|
|
|
361
469
|
"type": "object"
|
|
362
470
|
},
|
|
363
471
|
"ExpressionScope": {
|
|
364
|
-
"description": "The scope of an expression perforation, indicating whether it applies to the bass or treble register of the piano. [ontology: reo:
|
|
472
|
+
"description": "The scope of an expression perforation, indicating whether it applies to the bass or treble register of the piano. [ontology: reo:scope]",
|
|
365
473
|
"enum": [
|
|
366
474
|
"bass",
|
|
367
475
|
"treble"
|
|
368
476
|
],
|
|
369
477
|
"type": "string"
|
|
370
478
|
},
|
|
371
|
-
"ExpressionType": {
|
|
372
|
-
"description": "The type of expression encoded by a perforation on the roll, e.g. \"crescendo on\", \"crescendo off\", etc. on Welte T-100 rolls. [ontology: crm:P2 has type]",
|
|
373
|
-
"enum": [
|
|
374
|
-
"SustainPedalOn",
|
|
375
|
-
"SustainPedalOff",
|
|
376
|
-
"SoftPedalOn",
|
|
377
|
-
"SoftPedalOff",
|
|
378
|
-
"MezzoforteOff",
|
|
379
|
-
"MezzoforteOn",
|
|
380
|
-
"SlowCrescendoOn",
|
|
381
|
-
"SlowCrescendoOff",
|
|
382
|
-
"ForzandoOn",
|
|
383
|
-
"ForzandoOff",
|
|
384
|
-
"MotorOff",
|
|
385
|
-
"MotorOn",
|
|
386
|
-
"Rewind",
|
|
387
|
-
"ElectricCutOff"
|
|
388
|
-
],
|
|
389
|
-
"type": "string"
|
|
390
|
-
},
|
|
391
479
|
"GluedOn": {
|
|
392
|
-
"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.",
|
|
480
|
+
"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. [ontology: crm:E22 Human-Made Object]",
|
|
393
481
|
"properties": {
|
|
394
482
|
"condition": {
|
|
395
483
|
"$ref": "#/definitions/ObjectAssumption%3CConditionState%3C(%22detaching%22%7C%22ripped%22)%3E%3E",
|
|
396
|
-
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged."
|
|
484
|
+
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged. [ontology: crm:P44 has condition]"
|
|
397
485
|
},
|
|
398
486
|
"depiction": {
|
|
399
|
-
"description": "IIIF region pointing to a depiction of this feature in the scan. [ontology: crm:
|
|
487
|
+
"description": "IIIF region pointing to a depiction of this feature in the scan. [ontology: crm:P138i has representation]",
|
|
400
488
|
"type": "string"
|
|
401
489
|
},
|
|
402
490
|
"features": {
|
|
@@ -447,10 +535,10 @@
|
|
|
447
535
|
"properties": {
|
|
448
536
|
"condition": {
|
|
449
537
|
"$ref": "#/definitions/ObjectAssumption%3CConditionState%3C(%22partially-torn%22%7C%22missing-perforation%22)%3E%3E",
|
|
450
|
-
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged."
|
|
538
|
+
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged. [ontology: crm:P44 has condition]"
|
|
451
539
|
},
|
|
452
540
|
"depiction": {
|
|
453
|
-
"description": "IIIF region pointing to a depiction of this feature in the scan. [ontology: crm:
|
|
541
|
+
"description": "IIIF region pointing to a depiction of this feature in the scan. [ontology: crm:P138i has representation]",
|
|
454
542
|
"type": "string"
|
|
455
543
|
},
|
|
456
544
|
"horizontal": {
|
|
@@ -458,7 +546,7 @@
|
|
|
458
546
|
"description": "Horizontal span of the feature on the roll. [ontology: crm:P43 has dimension]"
|
|
459
547
|
},
|
|
460
548
|
"pattern": {
|
|
461
|
-
"description": "The punching pattern of the hole. Regular holes have evenly-spaced bridges, accelerating holes have decreasing bridge widths, and staggering holes
|
|
549
|
+
"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). [ontology: reo:pattern]",
|
|
462
550
|
"enum": [
|
|
463
551
|
"regular",
|
|
464
552
|
"accelerating",
|
|
@@ -490,14 +578,14 @@
|
|
|
490
578
|
"type": "object"
|
|
491
579
|
},
|
|
492
580
|
"HorizontalSpan": {
|
|
493
|
-
"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.",
|
|
581
|
+
"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. [ontology: crm:E54 Dimension]",
|
|
494
582
|
"properties": {
|
|
495
583
|
"from": {
|
|
496
|
-
"description": "The start position of the feature in millimeters from the beginning of the roll.",
|
|
584
|
+
"description": "The start position of the feature in millimeters from the beginning of the roll. [ontology: reo:from]",
|
|
497
585
|
"type": "number"
|
|
498
586
|
},
|
|
499
587
|
"to": {
|
|
500
|
-
"description": "The end position of the feature in millimeters from the beginning of the roll.",
|
|
588
|
+
"description": "The end position of the feature in millimeters from the beginning of the roll. [ontology: reo:to]",
|
|
501
589
|
"type": "number"
|
|
502
590
|
},
|
|
503
591
|
"unit": {
|
|
@@ -545,14 +633,14 @@
|
|
|
545
633
|
"type": "object"
|
|
546
634
|
},
|
|
547
635
|
"Mark": {
|
|
548
|
-
"description": "A visible mark on the roll, such as a pencil mark, ink mark, or other non-textual annotation.",
|
|
636
|
+
"description": "A visible mark on the roll, such as a pencil mark, ink mark, or other non-textual annotation. [ontology: crm:E25 Human-Made Feature]",
|
|
549
637
|
"properties": {
|
|
550
638
|
"condition": {
|
|
551
639
|
"$ref": "#/definitions/ObjectAssumption%3CConditionState%3C(%22faded%22)%3E%3E",
|
|
552
|
-
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged."
|
|
640
|
+
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged. [ontology: crm:P44 has condition]"
|
|
553
641
|
},
|
|
554
642
|
"depiction": {
|
|
555
|
-
"description": "IIIF region pointing to a depiction of this feature in the scan. [ontology: crm:
|
|
643
|
+
"description": "IIIF region pointing to a depiction of this feature in the scan. [ontology: crm:P138i has representation]",
|
|
556
644
|
"type": "string"
|
|
557
645
|
},
|
|
558
646
|
"horizontal": {
|
|
@@ -583,7 +671,7 @@
|
|
|
583
671
|
"type": "object"
|
|
584
672
|
},
|
|
585
673
|
"MeaningComprehension": {
|
|
586
|
-
"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.",
|
|
674
|
+
"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. [ontology: crminf:I16 Meaning Comprehension]",
|
|
587
675
|
"properties": {
|
|
588
676
|
"actor": {
|
|
589
677
|
"$ref": "#/definitions/Person",
|
|
@@ -618,7 +706,8 @@
|
|
|
618
706
|
{
|
|
619
707
|
"properties": {
|
|
620
708
|
"actor": {
|
|
621
|
-
"$ref": "#/definitions/ActorAssignment"
|
|
709
|
+
"$ref": "#/definitions/ActorAssignment",
|
|
710
|
+
"description": "Who carried out the modification. [ontology: crm:P14 carried out by]"
|
|
622
711
|
},
|
|
623
712
|
"added": {
|
|
624
713
|
"items": {
|
|
@@ -628,7 +717,8 @@
|
|
|
628
717
|
"description": "[ontology: crm:P111 added]"
|
|
629
718
|
},
|
|
630
719
|
"date": {
|
|
631
|
-
"$ref": "#/definitions/DateAssignment"
|
|
720
|
+
"$ref": "#/definitions/DateAssignment",
|
|
721
|
+
"description": "When the modification took place. [ontology: dcterms:date]"
|
|
632
722
|
},
|
|
633
723
|
"purpose": {
|
|
634
724
|
"enum": [
|
|
@@ -660,14 +750,16 @@
|
|
|
660
750
|
{
|
|
661
751
|
"properties": {
|
|
662
752
|
"actor": {
|
|
663
|
-
"$ref": "#/definitions/ActorAssignment"
|
|
753
|
+
"$ref": "#/definitions/ActorAssignment",
|
|
754
|
+
"description": "Who carried out the modification. [ontology: crm:P14 carried out by]"
|
|
664
755
|
},
|
|
665
756
|
"date": {
|
|
666
|
-
"$ref": "#/definitions/DateAssignment"
|
|
757
|
+
"$ref": "#/definitions/DateAssignment",
|
|
758
|
+
"description": "When the modification took place. [ontology: dcterms:date]"
|
|
667
759
|
},
|
|
668
760
|
"purpose": {
|
|
669
761
|
"const": "delabeling",
|
|
670
|
-
"description": "Usually, roll features are being added.
|
|
762
|
+
"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. [ontology: crm:P21 had general purpose]",
|
|
671
763
|
"type": "string"
|
|
672
764
|
},
|
|
673
765
|
"removed": {
|
|
@@ -695,7 +787,7 @@
|
|
|
695
787
|
"description": "This type denotes identifiable activities that modified the roll copy after its production, e.g. annotations, repairs, etc. [ontology: crm:E79 Part Addition, crm:E80 Part Removal]"
|
|
696
788
|
},
|
|
697
789
|
"Motivation": {
|
|
698
|
-
"description": "A motivation provides a reason or rationale for an editorial change. Motivations are defined at the version level and referenced by edits. [ontology: crm:
|
|
790
|
+
"description": "A motivation provides a reason or rationale for an editorial change. Motivations are defined at the version level and referenced by edits. [ontology: crm:E33 Linguistic Object]",
|
|
699
791
|
"properties": {
|
|
700
792
|
"note": {
|
|
701
793
|
"description": "A free-text note providing additional context. [ontology: crm:P3 has note]",
|
|
@@ -719,11 +811,11 @@
|
|
|
719
811
|
"type": "object"
|
|
720
812
|
},
|
|
721
813
|
"Note": {
|
|
722
|
-
"description": "A note symbol, representing a single pitched musical event on the roll. The pitch is encoded via the tracker bar position (track number). [ontology: reo:
|
|
814
|
+
"description": "A note symbol, representing a single pitched musical event on the roll. The pitch is encoded via the tracker bar position (track number). [ontology: reo:Note]",
|
|
723
815
|
"properties": {
|
|
724
816
|
"alignedWith": {
|
|
725
|
-
"$ref": "#/definitions/
|
|
726
|
-
"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. [ontology: reo:
|
|
817
|
+
"$ref": "#/definitions/ReferenceAssumption",
|
|
818
|
+
"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`. [ontology: reo:alignedWith]"
|
|
727
819
|
},
|
|
728
820
|
"carriers": {
|
|
729
821
|
"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`. [ontology: crm:P128i is carried by]",
|
|
@@ -732,8 +824,12 @@
|
|
|
732
824
|
},
|
|
733
825
|
"type": "array"
|
|
734
826
|
},
|
|
827
|
+
"pairedWith": {
|
|
828
|
+
"$ref": "#/definitions/ReferenceAssumption",
|
|
829
|
+
"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`. [ontology: reo:pairedWith]"
|
|
830
|
+
},
|
|
735
831
|
"pitch": {
|
|
736
|
-
"description": "The MIDI pitch number of the note (e.g. 60 for middle C). [ontology: reo:
|
|
832
|
+
"description": "The MIDI pitch number of the note (e.g. 60 for middle C). [ontology: reo:pitch]",
|
|
737
833
|
"type": "number"
|
|
738
834
|
},
|
|
739
835
|
"@id": {
|
|
@@ -763,7 +859,8 @@
|
|
|
763
859
|
"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.",
|
|
764
860
|
"properties": {
|
|
765
861
|
"belief": {
|
|
766
|
-
"$ref": "#/definitions/Belief"
|
|
862
|
+
"$ref": "#/definitions/Belief",
|
|
863
|
+
"description": "The belief held about the annotated statement. [ontology: crminf:J4i is subject of]"
|
|
767
864
|
},
|
|
768
865
|
"@id": {
|
|
769
866
|
"description": "A unique identifier for this object.",
|
|
@@ -776,18 +873,24 @@
|
|
|
776
873
|
],
|
|
777
874
|
"type": "object"
|
|
778
875
|
},
|
|
876
|
+
"conditionType": {
|
|
877
|
+
"const": "general",
|
|
878
|
+
"description": "The kind of condition, from the list the roll or the kind of feature allows. [ontology: crm:P2 has type]",
|
|
879
|
+
"type": "string"
|
|
880
|
+
},
|
|
779
881
|
"description": {
|
|
780
882
|
"description": "A free-text description of the condition, providing details beyond the type classification. [ontology: crm:P3 has note]",
|
|
781
883
|
"type": "string"
|
|
782
884
|
},
|
|
783
885
|
"@type": {
|
|
784
|
-
"const": "
|
|
886
|
+
"const": "ConditionState",
|
|
785
887
|
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
786
888
|
"type": "string",
|
|
787
889
|
"ontology": "rdf:type"
|
|
788
890
|
}
|
|
789
891
|
},
|
|
790
892
|
"required": [
|
|
893
|
+
"conditionType",
|
|
791
894
|
"@type"
|
|
792
895
|
],
|
|
793
896
|
"type": "object"
|
|
@@ -798,7 +901,8 @@
|
|
|
798
901
|
"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.",
|
|
799
902
|
"properties": {
|
|
800
903
|
"belief": {
|
|
801
|
-
"$ref": "#/definitions/Belief"
|
|
904
|
+
"$ref": "#/definitions/Belief",
|
|
905
|
+
"description": "The belief held about the annotated statement. [ontology: crminf:J4i is subject of]"
|
|
802
906
|
},
|
|
803
907
|
"@id": {
|
|
804
908
|
"description": "A unique identifier for this object.",
|
|
@@ -811,22 +915,28 @@
|
|
|
811
915
|
],
|
|
812
916
|
"type": "object"
|
|
813
917
|
},
|
|
918
|
+
"conditionType": {
|
|
919
|
+
"const": "paper-stretch",
|
|
920
|
+
"description": "The kind of condition, from the list the roll or the kind of feature allows. [ontology: crm:P2 has type]",
|
|
921
|
+
"type": "string"
|
|
922
|
+
},
|
|
814
923
|
"description": {
|
|
815
924
|
"description": "A free-text description of the condition, providing details beyond the type classification. [ontology: crm:P3 has note]",
|
|
816
925
|
"type": "string"
|
|
817
926
|
},
|
|
818
927
|
"factor": {
|
|
819
|
-
"description": "The stretch factor, e.g. 1.02 means the paper has stretched by 2% compared to its original dimensions.",
|
|
928
|
+
"description": "The stretch factor, e.g. 1.02 means the paper has stretched by 2% compared to its original dimensions. [ontology: rdf:value]",
|
|
820
929
|
"type": "number"
|
|
821
930
|
},
|
|
822
931
|
"@type": {
|
|
823
|
-
"const": "
|
|
932
|
+
"const": "ConditionState",
|
|
824
933
|
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
825
934
|
"type": "string",
|
|
826
935
|
"ontology": "rdf:type"
|
|
827
936
|
}
|
|
828
937
|
},
|
|
829
938
|
"required": [
|
|
939
|
+
"conditionType",
|
|
830
940
|
"factor",
|
|
831
941
|
"@type"
|
|
832
942
|
],
|
|
@@ -842,7 +952,8 @@
|
|
|
842
952
|
"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.",
|
|
843
953
|
"properties": {
|
|
844
954
|
"belief": {
|
|
845
|
-
"$ref": "#/definitions/Belief"
|
|
955
|
+
"$ref": "#/definitions/Belief",
|
|
956
|
+
"description": "The belief held about the annotated statement. [ontology: crminf:J4i is subject of]"
|
|
846
957
|
},
|
|
847
958
|
"@id": {
|
|
848
959
|
"description": "A unique identifier for this object.",
|
|
@@ -855,21 +966,27 @@
|
|
|
855
966
|
],
|
|
856
967
|
"type": "object"
|
|
857
968
|
},
|
|
969
|
+
"conditionType": {
|
|
970
|
+
"description": "The kind of condition, from the list the roll or the kind of feature allows. [ontology: crm:P2 has type]",
|
|
971
|
+
"enum": [
|
|
972
|
+
"detaching",
|
|
973
|
+
"ripped"
|
|
974
|
+
],
|
|
975
|
+
"type": "string"
|
|
976
|
+
},
|
|
858
977
|
"description": {
|
|
859
978
|
"description": "A free-text description of the condition, providing details beyond the type classification. [ontology: crm:P3 has note]",
|
|
860
979
|
"type": "string"
|
|
861
980
|
},
|
|
862
981
|
"@type": {
|
|
982
|
+
"const": "ConditionState",
|
|
863
983
|
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
864
|
-
"enum": [
|
|
865
|
-
"detaching",
|
|
866
|
-
"ripped"
|
|
867
|
-
],
|
|
868
984
|
"type": "string",
|
|
869
985
|
"ontology": "rdf:type"
|
|
870
986
|
}
|
|
871
987
|
},
|
|
872
988
|
"required": [
|
|
989
|
+
"conditionType",
|
|
873
990
|
"@type"
|
|
874
991
|
],
|
|
875
992
|
"type": "object"
|
|
@@ -881,7 +998,8 @@
|
|
|
881
998
|
"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.",
|
|
882
999
|
"properties": {
|
|
883
1000
|
"belief": {
|
|
884
|
-
"$ref": "#/definitions/Belief"
|
|
1001
|
+
"$ref": "#/definitions/Belief",
|
|
1002
|
+
"description": "The belief held about the annotated statement. [ontology: crminf:J4i is subject of]"
|
|
885
1003
|
},
|
|
886
1004
|
"@id": {
|
|
887
1005
|
"description": "A unique identifier for this object.",
|
|
@@ -894,20 +1012,26 @@
|
|
|
894
1012
|
],
|
|
895
1013
|
"type": "object"
|
|
896
1014
|
},
|
|
1015
|
+
"conditionType": {
|
|
1016
|
+
"description": "The kind of condition, from the list the roll or the kind of feature allows. [ontology: crm:P2 has type]",
|
|
1017
|
+
"enum": [
|
|
1018
|
+
"faded"
|
|
1019
|
+
],
|
|
1020
|
+
"type": "string"
|
|
1021
|
+
},
|
|
897
1022
|
"description": {
|
|
898
1023
|
"description": "A free-text description of the condition, providing details beyond the type classification. [ontology: crm:P3 has note]",
|
|
899
1024
|
"type": "string"
|
|
900
1025
|
},
|
|
901
1026
|
"@type": {
|
|
1027
|
+
"const": "ConditionState",
|
|
902
1028
|
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
903
|
-
"enum": [
|
|
904
|
-
"faded"
|
|
905
|
-
],
|
|
906
1029
|
"type": "string",
|
|
907
1030
|
"ontology": "rdf:type"
|
|
908
1031
|
}
|
|
909
1032
|
},
|
|
910
1033
|
"required": [
|
|
1034
|
+
"conditionType",
|
|
911
1035
|
"@type"
|
|
912
1036
|
],
|
|
913
1037
|
"type": "object"
|
|
@@ -919,7 +1043,8 @@
|
|
|
919
1043
|
"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.",
|
|
920
1044
|
"properties": {
|
|
921
1045
|
"belief": {
|
|
922
|
-
"$ref": "#/definitions/Belief"
|
|
1046
|
+
"$ref": "#/definitions/Belief",
|
|
1047
|
+
"description": "The belief held about the annotated statement. [ontology: crminf:J4i is subject of]"
|
|
923
1048
|
},
|
|
924
1049
|
"@id": {
|
|
925
1050
|
"description": "A unique identifier for this object.",
|
|
@@ -932,21 +1057,27 @@
|
|
|
932
1057
|
],
|
|
933
1058
|
"type": "object"
|
|
934
1059
|
},
|
|
1060
|
+
"conditionType": {
|
|
1061
|
+
"description": "The kind of condition, from the list the roll or the kind of feature allows. [ontology: crm:P2 has type]",
|
|
1062
|
+
"enum": [
|
|
1063
|
+
"partially-torn",
|
|
1064
|
+
"missing-perforation"
|
|
1065
|
+
],
|
|
1066
|
+
"type": "string"
|
|
1067
|
+
},
|
|
935
1068
|
"description": {
|
|
936
1069
|
"description": "A free-text description of the condition, providing details beyond the type classification. [ontology: crm:P3 has note]",
|
|
937
1070
|
"type": "string"
|
|
938
1071
|
},
|
|
939
1072
|
"@type": {
|
|
1073
|
+
"const": "ConditionState",
|
|
940
1074
|
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
941
|
-
"enum": [
|
|
942
|
-
"partially-torn",
|
|
943
|
-
"missing-perforation"
|
|
944
|
-
],
|
|
945
1075
|
"type": "string",
|
|
946
1076
|
"ontology": "rdf:type"
|
|
947
1077
|
}
|
|
948
1078
|
},
|
|
949
1079
|
"required": [
|
|
1080
|
+
"conditionType",
|
|
950
1081
|
"@type"
|
|
951
1082
|
],
|
|
952
1083
|
"type": "object"
|
|
@@ -958,7 +1089,8 @@
|
|
|
958
1089
|
"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.",
|
|
959
1090
|
"properties": {
|
|
960
1091
|
"belief": {
|
|
961
|
-
"$ref": "#/definitions/Belief"
|
|
1092
|
+
"$ref": "#/definitions/Belief",
|
|
1093
|
+
"description": "The belief held about the annotated statement. [ontology: crminf:J4i is subject of]"
|
|
962
1094
|
},
|
|
963
1095
|
"@id": {
|
|
964
1096
|
"description": "A unique identifier for this object.",
|
|
@@ -972,18 +1104,15 @@
|
|
|
972
1104
|
"type": "object"
|
|
973
1105
|
},
|
|
974
1106
|
"name": {
|
|
975
|
-
"description": "The
|
|
976
|
-
"examples": [
|
|
977
|
-
"Grünfeld, Alfred"
|
|
978
|
-
],
|
|
1107
|
+
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\". [ontology: rdfs:label]",
|
|
979
1108
|
"type": "string"
|
|
980
1109
|
},
|
|
981
1110
|
"role": {
|
|
982
|
-
"
|
|
983
|
-
"
|
|
1111
|
+
"$ref": "#/definitions/AgentRole",
|
|
1112
|
+
"description": "The role of the agent in the context of the edition. [ontology: crm:P2 has type]"
|
|
984
1113
|
},
|
|
985
1114
|
"sameAs": {
|
|
986
|
-
"description": "
|
|
1115
|
+
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar. [ontology: owl:sameAs]",
|
|
987
1116
|
"examples": [
|
|
988
1117
|
"https://d-nb.info/gnd/116888652"
|
|
989
1118
|
],
|
|
@@ -1010,7 +1139,8 @@
|
|
|
1010
1139
|
"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.",
|
|
1011
1140
|
"properties": {
|
|
1012
1141
|
"belief": {
|
|
1013
|
-
"$ref": "#/definitions/Belief"
|
|
1142
|
+
"$ref": "#/definitions/Belief",
|
|
1143
|
+
"description": "The belief held about the annotated statement. [ontology: crminf:J4i is subject of]"
|
|
1014
1144
|
},
|
|
1015
1145
|
"@id": {
|
|
1016
1146
|
"description": "A unique identifier for this object.",
|
|
@@ -1024,15 +1154,15 @@
|
|
|
1024
1154
|
"type": "object"
|
|
1025
1155
|
},
|
|
1026
1156
|
"endsWith": {
|
|
1027
|
-
"description": "The tempo at the end of the roll.",
|
|
1157
|
+
"description": "The tempo at the end of the roll. [ontology: reo:to]",
|
|
1028
1158
|
"type": "number"
|
|
1029
1159
|
},
|
|
1030
1160
|
"startsWith": {
|
|
1031
|
-
"description": "The tempo at the beginning of the roll.",
|
|
1161
|
+
"description": "The tempo at the beginning of the roll. [ontology: reo:from]",
|
|
1032
1162
|
"type": "number"
|
|
1033
1163
|
},
|
|
1034
1164
|
"unit": {
|
|
1035
|
-
"description": "The unit of the tempo measurement (e.g. 'ft/min', 'm/min').",
|
|
1165
|
+
"description": "The unit of the tempo measurement (e.g. 'ft/min', 'm/min'). [ontology: crm:P91 has unit]",
|
|
1036
1166
|
"type": "string"
|
|
1037
1167
|
}
|
|
1038
1168
|
},
|
|
@@ -1043,14 +1173,15 @@
|
|
|
1043
1173
|
],
|
|
1044
1174
|
"type": "object"
|
|
1045
1175
|
},
|
|
1046
|
-
"ObjectAssumption<alias-731470504-73739-73887-731470504-0-217694<def-interface-src_Symbol.ts-
|
|
1176
|
+
"ObjectAssumption<alias-731470504-73739-73887-731470504-0-217694<def-interface-src_Symbol.ts-4034-4398-src_Symbol.ts-0-4606400334313,\"carriers\">>": {
|
|
1047
1177
|
"description": "An object assumption wraps a complex object with an optional annotation. Used for structured values (e.g. persons, conditions) whose properties may be uncertain.",
|
|
1048
1178
|
"properties": {
|
|
1049
1179
|
"@annotation": {
|
|
1050
1180
|
"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.",
|
|
1051
1181
|
"properties": {
|
|
1052
1182
|
"belief": {
|
|
1053
|
-
"$ref": "#/definitions/Belief"
|
|
1183
|
+
"$ref": "#/definitions/Belief",
|
|
1184
|
+
"description": "The belief held about the annotated statement. [ontology: crminf:J4i is subject of]"
|
|
1054
1185
|
},
|
|
1055
1186
|
"@id": {
|
|
1056
1187
|
"description": "A unique identifier for this object.",
|
|
@@ -1064,13 +1195,15 @@
|
|
|
1064
1195
|
"type": "object"
|
|
1065
1196
|
},
|
|
1066
1197
|
"text": {
|
|
1067
|
-
"description": "The text content of the symbol. [ontology: crm:
|
|
1198
|
+
"description": "The text content of the symbol. [ontology: crm:P190 has symbolic content]",
|
|
1068
1199
|
"type": "string"
|
|
1069
1200
|
},
|
|
1070
1201
|
"@id": {
|
|
1071
1202
|
"description": "A unique identifier for this object."
|
|
1072
1203
|
},
|
|
1073
1204
|
"@type": {
|
|
1205
|
+
"const": "text",
|
|
1206
|
+
"type": "string",
|
|
1074
1207
|
"description": "The type discriminator for this object.",
|
|
1075
1208
|
"ontology": "rdf:type"
|
|
1076
1209
|
}
|
|
@@ -1094,52 +1227,21 @@
|
|
|
1094
1227
|
"type": "object"
|
|
1095
1228
|
},
|
|
1096
1229
|
"Person": {
|
|
1097
|
-
"
|
|
1098
|
-
"
|
|
1099
|
-
"name": {
|
|
1100
|
-
"description": "The full name of the person. [ontology: rdfs:label]",
|
|
1101
|
-
"examples": [
|
|
1102
|
-
"Grünfeld, Alfred"
|
|
1103
|
-
],
|
|
1104
|
-
"type": "string"
|
|
1105
|
-
},
|
|
1106
|
-
"role": {
|
|
1107
|
-
"description": "The role of the person in the context of the edition, e.g. 'pianist', 'editor', 'publisher', etc. [ontology: crm:P2 has type]",
|
|
1108
|
-
"type": "string"
|
|
1109
|
-
},
|
|
1110
|
-
"sameAs": {
|
|
1111
|
-
"description": "This property can be used to point to a GND, Wikidata, or similar entry. [ontology: owl:sameAs]",
|
|
1112
|
-
"examples": [
|
|
1113
|
-
"https://d-nb.info/gnd/116888652"
|
|
1114
|
-
],
|
|
1115
|
-
"items": {
|
|
1116
|
-
"type": "string"
|
|
1117
|
-
},
|
|
1118
|
-
"type": "array"
|
|
1119
|
-
},
|
|
1120
|
-
"@id": {
|
|
1121
|
-
"description": "A unique identifier for this object.",
|
|
1122
|
-
"type": "string"
|
|
1123
|
-
}
|
|
1124
|
-
},
|
|
1125
|
-
"required": [
|
|
1126
|
-
"name",
|
|
1127
|
-
"sameAs"
|
|
1128
|
-
],
|
|
1129
|
-
"type": "object"
|
|
1230
|
+
"$ref": "#/definitions/Agent",
|
|
1231
|
+
"description": "An agent that is a person."
|
|
1130
1232
|
},
|
|
1131
1233
|
"Place": {
|
|
1132
1234
|
"description": "A place, e.g. a recording location, publishing location, etc. [ontology: crm:E53 Place]",
|
|
1133
1235
|
"properties": {
|
|
1134
1236
|
"name": {
|
|
1135
|
-
"description": "The name
|
|
1136
|
-
"examples": [
|
|
1137
|
-
"Wien"
|
|
1138
|
-
],
|
|
1237
|
+
"description": "The name, e.g. \"Grünfeld, Alfred\", \"Wien\", \"M. Welte & Söhne\". [ontology: rdfs:label]",
|
|
1139
1238
|
"type": "string"
|
|
1140
1239
|
},
|
|
1141
1240
|
"sameAs": {
|
|
1142
|
-
"description": "
|
|
1241
|
+
"description": "Authority records for the same thing: GND, Wikidata, geonames or similar. [ontology: owl:sameAs]",
|
|
1242
|
+
"examples": [
|
|
1243
|
+
"https://d-nb.info/gnd/116888652"
|
|
1244
|
+
],
|
|
1143
1245
|
"items": {
|
|
1144
1246
|
"type": "string"
|
|
1145
1247
|
},
|
|
@@ -1153,55 +1255,47 @@
|
|
|
1153
1255
|
"type": "object"
|
|
1154
1256
|
},
|
|
1155
1257
|
"ProductionEvent": {
|
|
1156
|
-
"description": "Describes the production of a roll copy
|
|
1258
|
+
"description": "Describes the production of a roll copy: the manufacturer, the paper used, and the date. [ontology: lrmoo:F32 Item Production Event]",
|
|
1157
1259
|
"properties": {
|
|
1158
1260
|
"company": {
|
|
1159
|
-
"
|
|
1160
|
-
"
|
|
1261
|
+
"$ref": "#/definitions/Agent",
|
|
1262
|
+
"description": "The company that produced the roll copy (e.g. \"M. Welte & Söhne\"). [ontology: crm:P14 carried out by]"
|
|
1161
1263
|
},
|
|
1162
1264
|
"date": {
|
|
1163
1265
|
"$ref": "#/definitions/DateAssignment",
|
|
1164
|
-
"description": "The date of production, if known. [ontology:
|
|
1266
|
+
"description": "The date of production, if known. [ontology: dcterms:date]"
|
|
1165
1267
|
},
|
|
1166
1268
|
"paper": {
|
|
1167
|
-
"
|
|
1168
|
-
"
|
|
1169
|
-
},
|
|
1170
|
-
"system": {
|
|
1171
|
-
"description": "The roll system used for production (e.g. \"Welte-Mignon T100\", \"Welte-Mignon T98\").",
|
|
1172
|
-
"type": "string"
|
|
1269
|
+
"$ref": "#/definitions/Concept",
|
|
1270
|
+
"description": "The paper the roll copy was cut on. [ontology: crm:P126 employed]"
|
|
1173
1271
|
}
|
|
1174
1272
|
},
|
|
1175
|
-
"required": [
|
|
1176
|
-
"company",
|
|
1177
|
-
"system",
|
|
1178
|
-
"paper"
|
|
1179
|
-
],
|
|
1180
1273
|
"type": "object"
|
|
1181
1274
|
},
|
|
1182
1275
|
"RecordingEvent": {
|
|
1183
|
-
"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. [ontology:
|
|
1276
|
+
"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. [ontology: lrmoo:F28 Expression Creation]",
|
|
1184
1277
|
"properties": {
|
|
1185
1278
|
"created": {
|
|
1186
1279
|
"$ref": "#/definitions/Version",
|
|
1187
|
-
"description": "The version of the roll which was created in the recording. Since it is usually not handed down, this is an optional property. [ontology:
|
|
1280
|
+
"description": "The version of the roll which was created in the recording. Since it is usually not handed down, this is an optional property. [ontology: lrmoo:R17 created]"
|
|
1188
1281
|
},
|
|
1189
1282
|
"date": {
|
|
1190
1283
|
"$ref": "#/definitions/DateAssignment",
|
|
1191
|
-
"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. [ontology:
|
|
1284
|
+
"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. [ontology: dcterms:date]"
|
|
1192
1285
|
},
|
|
1193
1286
|
"place": {
|
|
1194
1287
|
"$ref": "#/definitions/Place",
|
|
1195
1288
|
"description": "The place where the recording took place. [ontology: crm:P7 took place at]"
|
|
1196
1289
|
},
|
|
1197
1290
|
"recorded": {
|
|
1198
|
-
"description": "Documents the performance which was recorded. [ontology:
|
|
1291
|
+
"description": "Documents the performance which was recorded. [ontology: lrmoo:R81 recorded]",
|
|
1199
1292
|
"properties": {
|
|
1200
1293
|
"pianist": {
|
|
1201
|
-
"$ref": "#/definitions/Person"
|
|
1294
|
+
"$ref": "#/definitions/Person",
|
|
1295
|
+
"description": "The pianist who gave the recorded performance. [ontology: crm:P14 carried out by]"
|
|
1202
1296
|
},
|
|
1203
1297
|
"playing": {
|
|
1204
|
-
"description": "This property should point to a standard
|
|
1298
|
+
"description": "This property should point to a standard URI, e.g. the GND. [ontology: lrmoo:R80 performed]",
|
|
1205
1299
|
"type": "string"
|
|
1206
1300
|
}
|
|
1207
1301
|
},
|
|
@@ -1226,7 +1320,8 @@
|
|
|
1226
1320
|
"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.",
|
|
1227
1321
|
"properties": {
|
|
1228
1322
|
"belief": {
|
|
1229
|
-
"$ref": "#/definitions/Belief"
|
|
1323
|
+
"$ref": "#/definitions/Belief",
|
|
1324
|
+
"description": "The belief held about the annotated statement. [ontology: crminf:J4i is subject of]"
|
|
1230
1325
|
},
|
|
1231
1326
|
"@id": {
|
|
1232
1327
|
"description": "A unique identifier for this object.",
|
|
@@ -1250,10 +1345,10 @@
|
|
|
1250
1345
|
"type": "object"
|
|
1251
1346
|
},
|
|
1252
1347
|
"Roll": {
|
|
1253
|
-
"description": "The abstract concept of a roll, identified by its catalogue number. [ontology:
|
|
1348
|
+
"description": "The abstract concept of a roll, identified by its catalogue number. [ontology: lrmoo:F1 Work]",
|
|
1254
1349
|
"properties": {
|
|
1255
1350
|
"catalogueNumber": {
|
|
1256
|
-
"description": "The catalogue number of the roll.",
|
|
1351
|
+
"description": "The catalogue number of the roll. [ontology: dcterms:identifier]",
|
|
1257
1352
|
"examples": [
|
|
1258
1353
|
"WM 225"
|
|
1259
1354
|
],
|
|
@@ -1261,11 +1356,16 @@
|
|
|
1261
1356
|
},
|
|
1262
1357
|
"recordingEvent": {
|
|
1263
1358
|
"$ref": "#/definitions/RecordingEvent",
|
|
1264
|
-
"description": "[ontology:
|
|
1359
|
+
"description": "[ontology: lrmoo:R19i was realised through]"
|
|
1360
|
+
},
|
|
1361
|
+
"system": {
|
|
1362
|
+
"$ref": "#/definitions/Concept",
|
|
1363
|
+
"description": "The reproducing system the roll was cut for. A system the type vocabulary knows carries the IRI of its concept as `id`, from which the export takes the system's own context, so that the expression types are read as that system's. [ontology: crm:P2 has type]"
|
|
1265
1364
|
}
|
|
1266
1365
|
},
|
|
1267
1366
|
"required": [
|
|
1268
1367
|
"catalogueNumber",
|
|
1368
|
+
"system",
|
|
1269
1369
|
"recordingEvent"
|
|
1270
1370
|
],
|
|
1271
1371
|
"type": "object"
|
|
@@ -1275,42 +1375,42 @@
|
|
|
1275
1375
|
"description": "An assignment of a condition (general or paper-stretch) to a roll copy, annotatable with a belief about its certainty."
|
|
1276
1376
|
},
|
|
1277
1377
|
"RollCopy": {
|
|
1278
|
-
"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. [ontology:
|
|
1378
|
+
"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. [ontology: lrmoo:F5 Item]",
|
|
1279
1379
|
"properties": {
|
|
1280
1380
|
"conditions": {
|
|
1281
|
-
"description": "Condition assessments of this roll copy (e.g. paper stretch, general wear). Each condition is an assumption annotatable with a belief.",
|
|
1381
|
+
"description": "Condition assessments of this roll copy (e.g. paper stretch, general wear). Each condition is an assumption annotatable with a belief. [ontology: crm:P44 has condition]",
|
|
1282
1382
|
"items": {
|
|
1283
1383
|
"$ref": "#/definitions/RollConditionAssignment"
|
|
1284
1384
|
},
|
|
1285
1385
|
"type": "array"
|
|
1286
1386
|
},
|
|
1287
1387
|
"features": {
|
|
1288
|
-
"description": "
|
|
1388
|
+
"description": "The physical features found on this copy, with shift and stretch already applied when `ops` says so. [ontology: crm:P56 bears feature]",
|
|
1289
1389
|
"items": {
|
|
1290
1390
|
"$ref": "#/definitions/AnyFeature"
|
|
1291
1391
|
},
|
|
1292
1392
|
"type": "array"
|
|
1293
1393
|
},
|
|
1294
|
-
"
|
|
1295
|
-
"
|
|
1296
|
-
"
|
|
1394
|
+
"keeper": {
|
|
1395
|
+
"$ref": "#/definitions/Agent",
|
|
1396
|
+
"description": "The institution or person holding this copy. [ontology: crm:P50 has current keeper]"
|
|
1297
1397
|
},
|
|
1298
1398
|
"measurements": {
|
|
1299
|
-
"description": "Physical measurements of this roll copy, including dimensions, punch diameter, hole separation, margins, shift corrections, and information about the measuring software.",
|
|
1399
|
+
"description": "Physical measurements of this roll copy, including dimensions, punch diameter, hole separation, margins, shift corrections, and information about the measuring software. [ontology: crm:P39i was measured by]",
|
|
1300
1400
|
"properties": {
|
|
1301
1401
|
"dimensions": {
|
|
1302
|
-
"description": "The physical dimensions of the roll.",
|
|
1402
|
+
"description": "The physical dimensions of the roll. [ontology: reo:dimensions]",
|
|
1303
1403
|
"properties": {
|
|
1304
1404
|
"height": {
|
|
1305
|
-
"description": "The total height (length) of the roll in the given unit.",
|
|
1405
|
+
"description": "The total height (length) of the roll in the given unit. [ontology: reo:height]",
|
|
1306
1406
|
"type": "number"
|
|
1307
1407
|
},
|
|
1308
1408
|
"unit": {
|
|
1309
|
-
"description": "The unit of measurement (e.g. 'mm').",
|
|
1409
|
+
"description": "The unit of measurement (e.g. 'mm'). [ontology: crm:P91 has unit]",
|
|
1310
1410
|
"type": "string"
|
|
1311
1411
|
},
|
|
1312
1412
|
"width": {
|
|
1313
|
-
"description": "The width of the roll in the given unit.",
|
|
1413
|
+
"description": "The width of the roll in the given unit. [ontology: reo:width]",
|
|
1314
1414
|
"type": "number"
|
|
1315
1415
|
}
|
|
1316
1416
|
},
|
|
@@ -1322,14 +1422,14 @@
|
|
|
1322
1422
|
"type": "object"
|
|
1323
1423
|
},
|
|
1324
1424
|
"holeSeparation": {
|
|
1325
|
-
"description": "The distance between adjacent tracker bar holes.",
|
|
1425
|
+
"description": "The distance between adjacent tracker bar holes. [ontology: reo:holeSeparation]",
|
|
1326
1426
|
"properties": {
|
|
1327
1427
|
"unit": {
|
|
1328
|
-
"description": "The unit of measurement (e.g. 'px', 'mm').",
|
|
1428
|
+
"description": "The unit of measurement (e.g. 'px', 'mm'). [ontology: crm:P91 has unit]",
|
|
1329
1429
|
"type": "string"
|
|
1330
1430
|
},
|
|
1331
1431
|
"value": {
|
|
1332
|
-
"description": "The measured hole separation value.",
|
|
1432
|
+
"description": "The measured hole separation value. [ontology: crm:P90 has value]",
|
|
1333
1433
|
"type": "number"
|
|
1334
1434
|
}
|
|
1335
1435
|
},
|
|
@@ -1340,7 +1440,7 @@
|
|
|
1340
1440
|
"type": "object"
|
|
1341
1441
|
},
|
|
1342
1442
|
"margins": {
|
|
1343
|
-
"description": "The margins on the treble and bass sides of the roll.",
|
|
1443
|
+
"description": "The margins on the treble and bass sides of the roll. Not exported to RDF.",
|
|
1344
1444
|
"properties": {
|
|
1345
1445
|
"bass": {
|
|
1346
1446
|
"description": "The margin on the bass side.",
|
|
@@ -1363,19 +1463,19 @@
|
|
|
1363
1463
|
"type": "object"
|
|
1364
1464
|
},
|
|
1365
1465
|
"measuredBy": {
|
|
1366
|
-
"description": "Information about the software used to take the measurements.",
|
|
1466
|
+
"description": "Information about the software used to take the measurements. [ontology: crmdig:L23 used software or firmware]",
|
|
1367
1467
|
"properties": {
|
|
1368
1468
|
"date": {
|
|
1369
|
-
"description": "The date on which the measurements were taken.",
|
|
1469
|
+
"description": "The date on which the measurements were taken. [ontology: dcterms:date]",
|
|
1370
1470
|
"format": "date",
|
|
1371
1471
|
"type": "string"
|
|
1372
1472
|
},
|
|
1373
1473
|
"software": {
|
|
1374
|
-
"description": "The name of the measurement software.",
|
|
1474
|
+
"description": "The name of the measurement software. [ontology: rdfs:label]",
|
|
1375
1475
|
"type": "string"
|
|
1376
1476
|
},
|
|
1377
1477
|
"version": {
|
|
1378
|
-
"description": "The version of the measurement software.",
|
|
1478
|
+
"description": "The version of the measurement software. [ontology: owl:versionInfo]",
|
|
1379
1479
|
"type": "string"
|
|
1380
1480
|
}
|
|
1381
1481
|
},
|
|
@@ -1387,14 +1487,14 @@
|
|
|
1387
1487
|
"type": "object"
|
|
1388
1488
|
},
|
|
1389
1489
|
"punchDiameter": {
|
|
1390
|
-
"description": "The average diameter of punched holes.",
|
|
1490
|
+
"description": "The average diameter of punched holes. [ontology: reo:punchDiameter]",
|
|
1391
1491
|
"properties": {
|
|
1392
1492
|
"unit": {
|
|
1393
|
-
"description": "The unit of measurement (e.g. 'mm').",
|
|
1493
|
+
"description": "The unit of measurement (e.g. 'mm'). [ontology: crm:P91 has unit]",
|
|
1394
1494
|
"type": "string"
|
|
1395
1495
|
},
|
|
1396
1496
|
"value": {
|
|
1397
|
-
"description": "The measured punch diameter value.",
|
|
1497
|
+
"description": "The measured punch diameter value. [ontology: crm:P90 has value]",
|
|
1398
1498
|
"type": "number"
|
|
1399
1499
|
}
|
|
1400
1500
|
},
|
|
@@ -1405,11 +1505,12 @@
|
|
|
1405
1505
|
"type": "object"
|
|
1406
1506
|
},
|
|
1407
1507
|
"shift": {
|
|
1408
|
-
"$ref": "#/definitions/Shift"
|
|
1508
|
+
"$ref": "#/definitions/Shift",
|
|
1509
|
+
"description": "The shift applied to align this copy with the others. Not exported to RDF."
|
|
1409
1510
|
},
|
|
1410
1511
|
"trackCalibration": {
|
|
1411
1512
|
"$ref": "#/definitions/TrackCalibration",
|
|
1412
|
-
"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."
|
|
1513
|
+
"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."
|
|
1413
1514
|
}
|
|
1414
1515
|
},
|
|
1415
1516
|
"type": "object"
|
|
@@ -1419,10 +1520,10 @@
|
|
|
1419
1520
|
"$ref": "#/definitions/Modification"
|
|
1420
1521
|
},
|
|
1421
1522
|
"type": "array",
|
|
1422
|
-
"description": "[ontology: crm:
|
|
1523
|
+
"description": "[ontology: crm:P31i was modified by]"
|
|
1423
1524
|
},
|
|
1424
1525
|
"ops": {
|
|
1425
|
-
"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.",
|
|
1526
|
+
"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.",
|
|
1426
1527
|
"items": {
|
|
1427
1528
|
"enum": [
|
|
1428
1529
|
"shifted",
|
|
@@ -1434,7 +1535,7 @@
|
|
|
1434
1535
|
},
|
|
1435
1536
|
"production": {
|
|
1436
1537
|
"$ref": "#/definitions/ProductionEvent",
|
|
1437
|
-
"description": "The production event that created this roll copy. [ontology:
|
|
1538
|
+
"description": "The production event that created this roll copy. [ontology: lrmoo:R28i was produced by]"
|
|
1438
1539
|
},
|
|
1439
1540
|
"scan": {
|
|
1440
1541
|
"description": "The scan URL or IIIF URL of the roll. [ontology: crm:P138i has representation]",
|
|
@@ -1455,7 +1556,7 @@
|
|
|
1455
1556
|
"conditions",
|
|
1456
1557
|
"features",
|
|
1457
1558
|
"@id",
|
|
1458
|
-
"
|
|
1559
|
+
"keeper",
|
|
1459
1560
|
"measurements",
|
|
1460
1561
|
"modifications",
|
|
1461
1562
|
"ops",
|
|
@@ -1492,7 +1593,7 @@
|
|
|
1492
1593
|
"type": "array"
|
|
1493
1594
|
},
|
|
1494
1595
|
"text": {
|
|
1495
|
-
"description": "The text content of the symbol. [ontology: crm:
|
|
1596
|
+
"description": "The text content of the symbol. [ontology: crm:P190 has symbolic content]",
|
|
1496
1597
|
"type": "string"
|
|
1497
1598
|
},
|
|
1498
1599
|
"@id": {
|
|
@@ -1542,76 +1643,15 @@
|
|
|
1542
1643
|
],
|
|
1543
1644
|
"type": "object"
|
|
1544
1645
|
},
|
|
1545
|
-
"ValueAssumption<string870780834>": {
|
|
1546
|
-
"description": "A value assumption wraps a literal value, e.g. a string, a number, a date, with an optional annotation. Used for properties where the value itself may be uncertain, e.g. dates or alignment references.",
|
|
1547
|
-
"properties": {
|
|
1548
|
-
"@annotation": {
|
|
1549
|
-
"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.",
|
|
1550
|
-
"properties": {
|
|
1551
|
-
"belief": {
|
|
1552
|
-
"$ref": "#/definitions/Belief"
|
|
1553
|
-
},
|
|
1554
|
-
"@id": {
|
|
1555
|
-
"description": "A unique identifier for this object.",
|
|
1556
|
-
"type": "string"
|
|
1557
|
-
}
|
|
1558
|
-
},
|
|
1559
|
-
"required": [
|
|
1560
|
-
"belief",
|
|
1561
|
-
"@id"
|
|
1562
|
-
],
|
|
1563
|
-
"type": "object"
|
|
1564
|
-
},
|
|
1565
|
-
"@value": {
|
|
1566
|
-
"description": "The assumed value.",
|
|
1567
|
-
"format": "date",
|
|
1568
|
-
"type": "string"
|
|
1569
|
-
}
|
|
1570
|
-
},
|
|
1571
|
-
"required": [
|
|
1572
|
-
"@value"
|
|
1573
|
-
],
|
|
1574
|
-
"type": "object"
|
|
1575
|
-
},
|
|
1576
|
-
"ValueAssumption<string>": {
|
|
1577
|
-
"description": "A value assumption wraps a literal value, e.g. a string, a number, a date, with an optional annotation. Used for properties where the value itself may be uncertain, e.g. dates or alignment references.",
|
|
1578
|
-
"properties": {
|
|
1579
|
-
"@annotation": {
|
|
1580
|
-
"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.",
|
|
1581
|
-
"properties": {
|
|
1582
|
-
"belief": {
|
|
1583
|
-
"$ref": "#/definitions/Belief"
|
|
1584
|
-
},
|
|
1585
|
-
"@id": {
|
|
1586
|
-
"description": "A unique identifier for this object.",
|
|
1587
|
-
"type": "string"
|
|
1588
|
-
}
|
|
1589
|
-
},
|
|
1590
|
-
"required": [
|
|
1591
|
-
"belief",
|
|
1592
|
-
"@id"
|
|
1593
|
-
],
|
|
1594
|
-
"type": "object"
|
|
1595
|
-
},
|
|
1596
|
-
"@value": {
|
|
1597
|
-
"description": "The assumed value.",
|
|
1598
|
-
"type": "string"
|
|
1599
|
-
}
|
|
1600
|
-
},
|
|
1601
|
-
"required": [
|
|
1602
|
-
"@value"
|
|
1603
|
-
],
|
|
1604
|
-
"type": "object"
|
|
1605
|
-
},
|
|
1606
1646
|
"Version": {
|
|
1607
|
-
"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.",
|
|
1647
|
+
"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. [ontology: lrmoo:F2 Expression]",
|
|
1608
1648
|
"properties": {
|
|
1609
1649
|
"basedOn": {
|
|
1610
1650
|
"$ref": "#/definitions/ReferenceAssumption",
|
|
1611
|
-
"description": "If no derivation is defined, it is assumed that this version represents the mother roll."
|
|
1651
|
+
"description": "If no derivation is defined, it is assumed that this version represents the mother roll. [ontology: lrmoo:R76 is derivative of]"
|
|
1612
1652
|
},
|
|
1613
1653
|
"edits": {
|
|
1614
|
-
"description": "The list of edits that, applied to the base version, produce this version.",
|
|
1654
|
+
"description": "The list of edits that, applied to the base version, produce this version. [ontology: reo:involvedEdit]",
|
|
1615
1655
|
"items": {
|
|
1616
1656
|
"$ref": "#/definitions/Edit"
|
|
1617
1657
|
},
|
|
@@ -1625,25 +1665,31 @@
|
|
|
1625
1665
|
"type": "array"
|
|
1626
1666
|
},
|
|
1627
1667
|
"siglum": {
|
|
1628
|
-
"description": "A short siglum to identify the version, e.g. \"A\", \"B1\", \"B2_rev\", etc.",
|
|
1668
|
+
"description": "A short siglum to identify the version, e.g. \"A\", \"B1\", \"B2_rev\", etc. [ontology: reo:siglum]",
|
|
1629
1669
|
"type": "string"
|
|
1630
1670
|
},
|
|
1671
|
+
"versionType": {
|
|
1672
|
+
"$ref": "#/definitions/VersionType",
|
|
1673
|
+
"description": "Whether the version served as a master for reproductions or exists on one copy only. [ontology: crm:P2 has type]"
|
|
1674
|
+
},
|
|
1631
1675
|
"@id": {
|
|
1632
|
-
"
|
|
1633
|
-
"
|
|
1676
|
+
"description": "A unique identifier for this object.",
|
|
1677
|
+
"type": "string"
|
|
1634
1678
|
},
|
|
1635
1679
|
"@type": {
|
|
1636
|
-
"
|
|
1637
|
-
"description": "The type discriminator for this object.",
|
|
1680
|
+
"const": "Version",
|
|
1681
|
+
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
1682
|
+
"type": "string",
|
|
1638
1683
|
"ontology": "rdf:type"
|
|
1639
1684
|
}
|
|
1640
1685
|
},
|
|
1641
1686
|
"required": [
|
|
1642
|
-
"@id",
|
|
1643
|
-
"siglum",
|
|
1644
1687
|
"edits",
|
|
1688
|
+
"@id",
|
|
1645
1689
|
"motivations",
|
|
1646
|
-
"
|
|
1690
|
+
"siglum",
|
|
1691
|
+
"@type",
|
|
1692
|
+
"versionType"
|
|
1647
1693
|
],
|
|
1648
1694
|
"type": "object"
|
|
1649
1695
|
},
|
|
@@ -1656,19 +1702,19 @@
|
|
|
1656
1702
|
"type": "string"
|
|
1657
1703
|
},
|
|
1658
1704
|
"VerticalSpan": {
|
|
1659
|
-
"description": "Describes the vertical extent of a feature on the roll, measured in track numbers. Track numbers correspond to positions on the tracker bar.",
|
|
1705
|
+
"description": "Describes the vertical extent of a feature on the roll, measured in track numbers. Track numbers correspond to positions on the tracker bar. [ontology: crm:E54 Dimension]",
|
|
1660
1706
|
"properties": {
|
|
1661
1707
|
"from": {
|
|
1662
|
-
"description": "The start track number of the feature.",
|
|
1708
|
+
"description": "The start track number of the feature. [ontology: reo:from]",
|
|
1663
1709
|
"type": "number"
|
|
1664
1710
|
},
|
|
1665
1711
|
"to": {
|
|
1666
|
-
"description": "The end track number, if the feature spans multiple tracks. If omitted, the feature occupies a single track.",
|
|
1712
|
+
"description": "The end track number, if the feature spans multiple tracks. If omitted, the feature occupies a single track. [ontology: reo:to]",
|
|
1667
1713
|
"type": "number"
|
|
1668
1714
|
},
|
|
1669
1715
|
"unit": {
|
|
1670
1716
|
"const": "track",
|
|
1671
|
-
"description": "The unit of measurement for
|
|
1717
|
+
"description": "The unit of measurement for vertical positions. [ontology: crm:P91 has unit]",
|
|
1672
1718
|
"type": "string"
|
|
1673
1719
|
}
|
|
1674
1720
|
},
|
|
@@ -1679,14 +1725,14 @@
|
|
|
1679
1725
|
"type": "object"
|
|
1680
1726
|
},
|
|
1681
1727
|
"Writing": {
|
|
1682
|
-
"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.",
|
|
1728
|
+
"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. [ontology: crm:E25 Human-Made Feature]",
|
|
1683
1729
|
"properties": {
|
|
1684
1730
|
"condition": {
|
|
1685
1731
|
"$ref": "#/definitions/ObjectAssumption%3CConditionState%3C(%22faded%22)%3E%3E",
|
|
1686
|
-
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged."
|
|
1732
|
+
"description": "This can be used e.g. to indicate a perforation which is torn out or in any other way damaged. [ontology: crm:P44 has condition]"
|
|
1687
1733
|
},
|
|
1688
1734
|
"depiction": {
|
|
1689
|
-
"description": "IIIF region pointing to a depiction of this feature in the scan. [ontology: crm:
|
|
1735
|
+
"description": "IIIF region pointing to a depiction of this feature in the scan. [ontology: crm:P138i has representation]",
|
|
1690
1736
|
"type": "string"
|
|
1691
1737
|
},
|
|
1692
1738
|
"horizontal": {
|
|
@@ -1695,11 +1741,11 @@
|
|
|
1695
1741
|
},
|
|
1696
1742
|
"method": {
|
|
1697
1743
|
"$ref": "#/definitions/WritingMethod",
|
|
1698
|
-
"description": "The method by which this writing was produced (e.g. through print, handwriting, or stamping)."
|
|
1744
|
+
"description": "The method by which this writing was produced (e.g. through print, handwriting, or stamping). [ontology: crm:P2 has type]"
|
|
1699
1745
|
},
|
|
1700
1746
|
"transcription": {
|
|
1701
|
-
"$ref": "#/definitions/ObjectAssumption%3Calias-731470504-73739-73887-731470504-0-217694%3Cdef-interface-src_Symbol.ts-
|
|
1702
|
-
"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."
|
|
1747
|
+
"$ref": "#/definitions/ObjectAssumption%3Calias-731470504-73739-73887-731470504-0-217694%3Cdef-interface-src_Symbol.ts-4034-4398-src_Symbol.ts-0-4606400334313%2C%22carriers%22%3E%3E",
|
|
1748
|
+
"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. [ontology: crm:P128 carries]"
|
|
1703
1749
|
},
|
|
1704
1750
|
"vertical": {
|
|
1705
1751
|
"$ref": "#/definitions/VerticalSpan",
|