linked-rolls 0.0.1 → 0.1.1
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/README.md +48 -1
- package/lib/Assumption.d.ts +124 -0
- package/lib/Assumption.js +34 -0
- package/lib/Collation.d.ts +11 -0
- package/lib/ConditionState.d.ts +8 -3
- package/lib/ConditionState.js +0 -5
- package/lib/Edit.d.ts +44 -14
- package/lib/Edit.js +2 -95
- package/lib/Edition.d.ts +144 -4
- package/lib/EditionView.d.ts +51 -0
- package/lib/EditionView.js +294 -0
- package/lib/Emulation.d.ts +21 -68
- package/lib/Emulation.js +94 -386
- package/lib/Feature.d.ts +137 -16
- package/lib/Feature.js +9 -1
- package/lib/Plan.d.ts +190 -0
- package/lib/Plan.js +555 -0
- package/lib/ReproducingSystem.d.ts +80 -0
- package/lib/RollCopy.d.ts +265 -24
- package/lib/RollCopy.js +276 -215
- package/lib/Symbol.d.ts +70 -37
- package/lib/Symbol.js +2 -27
- package/lib/TrackCalibration.d.ts +33 -0
- package/lib/TrackCalibration.js +14 -0
- package/lib/TrackerBar.d.ts +52 -5
- package/lib/TrackerBar.js +70 -49
- package/lib/Version.d.ts +32 -33
- package/lib/Version.js +3 -209
- package/lib/alignFeatures.d.ts +3 -2
- package/lib/alignFeatures.js +5 -4
- package/lib/asJsonLd.d.ts +1 -1
- package/lib/asJsonLd.js +13 -26
- package/lib/importJsonLd.d.ts +0 -1
- package/lib/importJsonLd.js +9 -72
- package/lib/index.d.ts +7 -3
- package/lib/index.js +7 -3
- package/lib/schema.json +1739 -0
- package/lib/spec/context.json +125 -144
- package/lib/systems/welteT100.d.ts +55 -0
- package/lib/systems/welteT100.js +191 -0
- package/lib/utils.d.ts +29 -0
- package/lib/validate.d.ts +3 -0
- package/lib/validate.js +10 -0
- package/package.json +41 -8
- package/lib/Condition.d.ts +0 -10
- package/lib/EditorialAssumption.d.ts +0 -67
- package/lib/EditorialAssumption.js +0 -26
- package/lib/Measurement.d.ts +0 -9
- package/lib/PlaceTimeConversion.d.ts +0 -65
- package/lib/PlaceTimeConversion.js +0 -175
- package/lib/RollEvent.d.ts +0 -76
- package/lib/RollEvent.js +0 -3
- package/lib/Stage.d.ts +0 -37
- package/lib/Stage.js +0 -165
- package/lib/Transcription.d.ts +0 -7
- package/lib/Transcription.js +0 -9
- package/lib/WithId.d.ts +0 -3
- package/lib/WithId.js +0 -1
- package/lib/alignRolls.d.ts +0 -7
- package/lib/alignRolls.js +0 -49
- package/lib/alignSymbols.d.ts +0 -7
- package/lib/alignSymbols.js +0 -49
- package/lib/aton/AtonParser.test.d.ts +0 -1
- package/lib/aton/AtonParser.test.js +0 -16
- package/lib/build-schema.cjs +0 -113
- /package/lib/{Condition.js → ReproducingSystem.js} +0 -0
- /package/lib/{Measurement.js → utils.js} +0 -0
package/lib/schema.json
ADDED
|
@@ -0,0 +1,1739 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$ref": "#/definitions/Edition",
|
|
3
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
|
+
"definitions": {
|
|
5
|
+
"ActorAssignment": {
|
|
6
|
+
"$ref": "#/definitions/ObjectAssumption%3CPerson%3E",
|
|
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
|
+
},
|
|
9
|
+
"AnyArgumentation": {
|
|
10
|
+
"anyOf": [
|
|
11
|
+
{
|
|
12
|
+
"$ref": "#/definitions/MeaningComprehension"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"$ref": "#/definitions/Inference"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"$ref": "#/definitions/BeliefAdoption"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"$ref": "#/definitions/Argumentation"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"description": "An argumentation can be either a plain argumentation, a meaning comprehension, an inference, or a belief adoption."
|
|
25
|
+
},
|
|
26
|
+
"AnyFeature": {
|
|
27
|
+
"anyOf": [
|
|
28
|
+
{
|
|
29
|
+
"$ref": "#/definitions/Hole"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"$ref": "#/definitions/Writing"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"$ref": "#/definitions/Mark"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"$ref": "#/definitions/GluedOn"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"description": "The union of all physical feature types that can appear on a roll: holes (perforations), writings (labels, annotations), marks (pencil, ink), and glued-on patches (paper, tape)."
|
|
42
|
+
},
|
|
43
|
+
"AnySymbol": {
|
|
44
|
+
"anyOf": [
|
|
45
|
+
{
|
|
46
|
+
"$ref": "#/definitions/Note"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"$ref": "#/definitions/Expression"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"$ref": "#/definitions/Text"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"description": "A symbol can be either a note, an expression, or a text. Notes and expressions are perforations; texts are carried by writings."
|
|
56
|
+
},
|
|
57
|
+
"Argumentation": {
|
|
58
|
+
"description": "An argumentation provides reasons for a belief and may be associated with a person carrying out that argumentation. [ontology: crminf:I1 Argumentation]",
|
|
59
|
+
"properties": {
|
|
60
|
+
"actor": {
|
|
61
|
+
"$ref": "#/definitions/Person",
|
|
62
|
+
"description": "The person who carried out this activity. [ontology: crm:P14 carried out by]"
|
|
63
|
+
},
|
|
64
|
+
"note": {
|
|
65
|
+
"description": "A free-text note providing additional context. [ontology: crm:P3 has note]",
|
|
66
|
+
"type": "string"
|
|
67
|
+
},
|
|
68
|
+
"@type": {
|
|
69
|
+
"const": "simpleArgumentation",
|
|
70
|
+
"type": "string",
|
|
71
|
+
"description": "The type discriminator for this object.",
|
|
72
|
+
"ontology": "rdf:type"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"required": [
|
|
76
|
+
"@type"
|
|
77
|
+
],
|
|
78
|
+
"type": "object"
|
|
79
|
+
},
|
|
80
|
+
"Belief": {
|
|
81
|
+
"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). [ontology: crminf:I2 Belief]",
|
|
82
|
+
"properties": {
|
|
83
|
+
"certainty": {
|
|
84
|
+
"$ref": "#/definitions/Certainty",
|
|
85
|
+
"description": "The level of certainty associated with this belief. [ontology: crminf:J5 holds to be]"
|
|
86
|
+
},
|
|
87
|
+
"reasons": {
|
|
88
|
+
"description": "The argumentations providing reasons for this belief. [ontology: crminf:J2 was concluded by]",
|
|
89
|
+
"items": {
|
|
90
|
+
"$ref": "#/definitions/AnyArgumentation"
|
|
91
|
+
},
|
|
92
|
+
"type": "array"
|
|
93
|
+
},
|
|
94
|
+
"@id": {
|
|
95
|
+
"description": "A unique identifier for this object.",
|
|
96
|
+
"type": "string"
|
|
97
|
+
},
|
|
98
|
+
"@type": {
|
|
99
|
+
"const": "belief",
|
|
100
|
+
"type": "string",
|
|
101
|
+
"description": "The type discriminator for this object.",
|
|
102
|
+
"ontology": "rdf:type"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"required": [
|
|
106
|
+
"certainty",
|
|
107
|
+
"@id",
|
|
108
|
+
"reasons",
|
|
109
|
+
"@type"
|
|
110
|
+
],
|
|
111
|
+
"type": "object"
|
|
112
|
+
},
|
|
113
|
+
"BeliefAdoption": {
|
|
114
|
+
"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. [ontology: crminf:I7 Belief Adoption]",
|
|
115
|
+
"properties": {
|
|
116
|
+
"actor": {
|
|
117
|
+
"$ref": "#/definitions/Person",
|
|
118
|
+
"description": "The person who carried out this activity. [ontology: crm:P14 carried out by]"
|
|
119
|
+
},
|
|
120
|
+
"note": {
|
|
121
|
+
"description": "A note describing the source of the adopted belief, e.g. a bibliographic reference or personal communication. [ontology: crm:P3 has note]",
|
|
122
|
+
"type": "string"
|
|
123
|
+
},
|
|
124
|
+
"@type": {
|
|
125
|
+
"const": "beliefAdoption",
|
|
126
|
+
"type": "string",
|
|
127
|
+
"description": "The type discriminator for this object.",
|
|
128
|
+
"ontology": "rdf:type"
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"required": [
|
|
132
|
+
"note",
|
|
133
|
+
"@type"
|
|
134
|
+
],
|
|
135
|
+
"type": "object"
|
|
136
|
+
},
|
|
137
|
+
"Certainty": {
|
|
138
|
+
"description": "Certainty levels for beliefs, ranging from 'true' to 'false' and some values in between.",
|
|
139
|
+
"enum": [
|
|
140
|
+
"true",
|
|
141
|
+
"likely",
|
|
142
|
+
"possible",
|
|
143
|
+
"unlikely",
|
|
144
|
+
"false"
|
|
145
|
+
],
|
|
146
|
+
"type": "string"
|
|
147
|
+
},
|
|
148
|
+
"CollationTolerance": {
|
|
149
|
+
"description": "Tolerance used in collation of roll copies. The start and end tolerances define the acceptable deviation (in mm) when aligning features across copies.",
|
|
150
|
+
"properties": {
|
|
151
|
+
"toleranceEnd": {
|
|
152
|
+
"description": "Tolerance at the end position of a feature (in mm).",
|
|
153
|
+
"type": "number"
|
|
154
|
+
},
|
|
155
|
+
"toleranceStart": {
|
|
156
|
+
"description": "Tolerance at the start position of a feature (in mm).",
|
|
157
|
+
"type": "number"
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"required": [
|
|
161
|
+
"toleranceStart",
|
|
162
|
+
"toleranceEnd"
|
|
163
|
+
],
|
|
164
|
+
"type": "object"
|
|
165
|
+
},
|
|
166
|
+
"DateAssignment": {
|
|
167
|
+
"$ref": "#/definitions/ValueAssumption%3Cstring870780834%3E",
|
|
168
|
+
"description": "A date value wrapped as an assumption, so that the date can be annotated with a belief about its certainty and source."
|
|
169
|
+
},
|
|
170
|
+
"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:C8 Edit]",
|
|
172
|
+
"properties": {
|
|
173
|
+
"@annotation": {
|
|
174
|
+
"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
|
+
"properties": {
|
|
176
|
+
"belief": {
|
|
177
|
+
"$ref": "#/definitions/Belief"
|
|
178
|
+
},
|
|
179
|
+
"@id": {
|
|
180
|
+
"description": "A unique identifier for this object.",
|
|
181
|
+
"type": "string"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"required": [
|
|
185
|
+
"belief",
|
|
186
|
+
"@id"
|
|
187
|
+
],
|
|
188
|
+
"type": "object"
|
|
189
|
+
},
|
|
190
|
+
"delete": {
|
|
191
|
+
"description": "References (by `@id`) to the symbols to be deleted by this edit. [ontology: reo:P8 removed]",
|
|
192
|
+
"items": {
|
|
193
|
+
"type": "string"
|
|
194
|
+
},
|
|
195
|
+
"type": "array"
|
|
196
|
+
},
|
|
197
|
+
"editType": {
|
|
198
|
+
"$ref": "#/definitions/EditType",
|
|
199
|
+
"description": "The type of editorial change (e.g. 'correct-error', 'additional-accent')."
|
|
200
|
+
},
|
|
201
|
+
"insert": {
|
|
202
|
+
"description": "The symbols to be inserted by this edit. [ontology: reo:P7 added]",
|
|
203
|
+
"items": {
|
|
204
|
+
"$ref": "#/definitions/AnySymbol"
|
|
205
|
+
},
|
|
206
|
+
"type": "array"
|
|
207
|
+
},
|
|
208
|
+
"motivation": {
|
|
209
|
+
"description": "A textual description of the motivation for this edit, referencing a motivation defined in the version's motivations list. [ontology: crm:P17 was motivated by]",
|
|
210
|
+
"type": "string"
|
|
211
|
+
},
|
|
212
|
+
"@id": {
|
|
213
|
+
"description": "A unique identifier for this object.",
|
|
214
|
+
"type": "string"
|
|
215
|
+
},
|
|
216
|
+
"@type": {
|
|
217
|
+
"const": "edit",
|
|
218
|
+
"type": "string",
|
|
219
|
+
"description": "The type discriminator for this object.",
|
|
220
|
+
"ontology": "rdf:type"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"required": [
|
|
224
|
+
"@id",
|
|
225
|
+
"@type"
|
|
226
|
+
],
|
|
227
|
+
"type": "object"
|
|
228
|
+
},
|
|
229
|
+
"EditType": {
|
|
230
|
+
"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.",
|
|
231
|
+
"enum": [
|
|
232
|
+
"short-dynamic-differentation",
|
|
233
|
+
"additional-accent",
|
|
234
|
+
"add-redundancy",
|
|
235
|
+
"remove-redundancy",
|
|
236
|
+
"replace-with-equivalent",
|
|
237
|
+
"shift",
|
|
238
|
+
"correct-error",
|
|
239
|
+
"shorten",
|
|
240
|
+
"prolong"
|
|
241
|
+
],
|
|
242
|
+
"type": "string"
|
|
243
|
+
},
|
|
244
|
+
"Edition": {
|
|
245
|
+
"description": "Describes the specific digital edition of a piano roll. [ontology: lrm:F2 Expression]",
|
|
246
|
+
"properties": {
|
|
247
|
+
"copies": {
|
|
248
|
+
"description": "The physical roll copies on which this edition is based.",
|
|
249
|
+
"items": {
|
|
250
|
+
"$ref": "#/definitions/RollCopy"
|
|
251
|
+
},
|
|
252
|
+
"type": "array"
|
|
253
|
+
},
|
|
254
|
+
"creation": {
|
|
255
|
+
"$ref": "#/definitions/EditionCreation",
|
|
256
|
+
"description": "Information about the creation of this edition, including publisher and publication date. [ontology: lrm:R17i was created by]"
|
|
257
|
+
},
|
|
258
|
+
"license": {
|
|
259
|
+
"description": "The license under which the edition is published. [ontology: dcterms:license]",
|
|
260
|
+
"examples": [
|
|
261
|
+
"https://creativecommons.org/licenses/by/4.0/"
|
|
262
|
+
],
|
|
263
|
+
"type": "string"
|
|
264
|
+
},
|
|
265
|
+
"roll": {
|
|
266
|
+
"$ref": "#/definitions/Roll",
|
|
267
|
+
"description": "The roll which is edited in this edition. [ontology: lrm:R3i realises]"
|
|
268
|
+
},
|
|
269
|
+
"tempoAdjustment": {
|
|
270
|
+
"$ref": "#/definitions/ObjectAssumption%3CRollTempo%3E",
|
|
271
|
+
"description": "An optional tempo adjustment for playback of the roll, annotatable with a belief about its correctness."
|
|
272
|
+
},
|
|
273
|
+
"title": {
|
|
274
|
+
"description": "The title of the edition. [ontology: crm:P102 has title]",
|
|
275
|
+
"examples": [
|
|
276
|
+
"Alfred Grünfeld spielt Robert Schumann, Träumerei"
|
|
277
|
+
],
|
|
278
|
+
"type": "string"
|
|
279
|
+
},
|
|
280
|
+
"versions": {
|
|
281
|
+
"description": "The different versions of the roll on which this edition is based. [ontology: lrm:R76 is derivative of]",
|
|
282
|
+
"items": {
|
|
283
|
+
"$ref": "#/definitions/Version"
|
|
284
|
+
},
|
|
285
|
+
"type": "array"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"required": [
|
|
289
|
+
"creation",
|
|
290
|
+
"title",
|
|
291
|
+
"license",
|
|
292
|
+
"roll",
|
|
293
|
+
"copies",
|
|
294
|
+
"versions"
|
|
295
|
+
],
|
|
296
|
+
"type": "object"
|
|
297
|
+
},
|
|
298
|
+
"EditionCreation": {
|
|
299
|
+
"description": "This type describes the creation of an edition, i.e. the editor, publisher, and publication date. [ontology: lrm:F28 Expression Creation]",
|
|
300
|
+
"properties": {
|
|
301
|
+
"collationTolerance": {
|
|
302
|
+
"$ref": "#/definitions/CollationTolerance",
|
|
303
|
+
"description": "The tolerance parameters used when collating (aligning) the different roll copies for this edition. [ontology: L13 used parameters]"
|
|
304
|
+
},
|
|
305
|
+
"publicationDate": {
|
|
306
|
+
"description": "The date on which the edition was published. [ontology: crm:P4 has time-span]",
|
|
307
|
+
"format": "date",
|
|
308
|
+
"type": "string"
|
|
309
|
+
},
|
|
310
|
+
"publisher": {
|
|
311
|
+
"$ref": "#/definitions/Person",
|
|
312
|
+
"description": "The person or institution responsible for publishing the edition. [ontology: crm:P14 carried out by]"
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
"required": [
|
|
316
|
+
"publisher",
|
|
317
|
+
"publicationDate"
|
|
318
|
+
],
|
|
319
|
+
"type": "object"
|
|
320
|
+
},
|
|
321
|
+
"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:C7 Expression]",
|
|
323
|
+
"properties": {
|
|
324
|
+
"alignedWith": {
|
|
325
|
+
"$ref": "#/definitions/ValueAssumption%3Cstring%3E",
|
|
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:P3 aligned with]"
|
|
327
|
+
},
|
|
328
|
+
"carriers": {
|
|
329
|
+
"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]",
|
|
330
|
+
"items": {
|
|
331
|
+
"$ref": "#/definitions/ReferenceAssumption"
|
|
332
|
+
},
|
|
333
|
+
"type": "array"
|
|
334
|
+
},
|
|
335
|
+
"expressionType": {
|
|
336
|
+
"$ref": "#/definitions/ExpressionType",
|
|
337
|
+
"description": "The specific type of expression (e.g. sustain pedal, forzando, etc.). [ontology: crm:P2 has type]"
|
|
338
|
+
},
|
|
339
|
+
"scope": {
|
|
340
|
+
"$ref": "#/definitions/ExpressionScope",
|
|
341
|
+
"description": "Whether this expression applies to the bass or treble register. [ontology: reo:P6 has scope]"
|
|
342
|
+
},
|
|
343
|
+
"@id": {
|
|
344
|
+
"description": "A unique identifier for this object.",
|
|
345
|
+
"type": "string"
|
|
346
|
+
},
|
|
347
|
+
"@type": {
|
|
348
|
+
"const": "expression",
|
|
349
|
+
"type": "string",
|
|
350
|
+
"description": "The type discriminator for this object.",
|
|
351
|
+
"ontology": "rdf:type"
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
"required": [
|
|
355
|
+
"carriers",
|
|
356
|
+
"expressionType",
|
|
357
|
+
"@id",
|
|
358
|
+
"scope",
|
|
359
|
+
"@type"
|
|
360
|
+
],
|
|
361
|
+
"type": "object"
|
|
362
|
+
},
|
|
363
|
+
"ExpressionScope": {
|
|
364
|
+
"description": "The scope of an expression perforation, indicating whether it applies to the bass or treble register of the piano. [ontology: reo:P6 has scope]",
|
|
365
|
+
"enum": [
|
|
366
|
+
"bass",
|
|
367
|
+
"treble"
|
|
368
|
+
],
|
|
369
|
+
"type": "string"
|
|
370
|
+
},
|
|
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
|
+
"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.",
|
|
393
|
+
"properties": {
|
|
394
|
+
"condition": {
|
|
395
|
+
"$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."
|
|
397
|
+
},
|
|
398
|
+
"depiction": {
|
|
399
|
+
"description": "IIIF region pointing to a depiction of this feature in the scan. [ontology: crm:P62 is depicted by]",
|
|
400
|
+
"type": "string"
|
|
401
|
+
},
|
|
402
|
+
"features": {
|
|
403
|
+
"description": "A glued-on feature itself may carry other features. Nested features do not need to be positioned explicitly. [ontology: crm:P56 bears feature]",
|
|
404
|
+
"items": {
|
|
405
|
+
"$ref": "#/definitions/PartialBy%3CAnyFeature%2C(%22horizontal%22%7C%22vertical%22)%3E"
|
|
406
|
+
},
|
|
407
|
+
"type": "array"
|
|
408
|
+
},
|
|
409
|
+
"horizontal": {
|
|
410
|
+
"$ref": "#/definitions/HorizontalSpan",
|
|
411
|
+
"description": "Horizontal span of the feature on the roll. [ontology: crm:P43 has dimension]"
|
|
412
|
+
},
|
|
413
|
+
"material": {
|
|
414
|
+
"description": "The material of the glued-on feature. [ontology: crm:P45 consists of]",
|
|
415
|
+
"enum": [
|
|
416
|
+
"Paper",
|
|
417
|
+
"Tape"
|
|
418
|
+
],
|
|
419
|
+
"type": "string"
|
|
420
|
+
},
|
|
421
|
+
"vertical": {
|
|
422
|
+
"$ref": "#/definitions/VerticalSpan",
|
|
423
|
+
"description": "Vertical span of the feature on the roll. [ontology: crm:P43 has dimension]"
|
|
424
|
+
},
|
|
425
|
+
"@id": {
|
|
426
|
+
"description": "A unique identifier for this object.",
|
|
427
|
+
"type": "string"
|
|
428
|
+
},
|
|
429
|
+
"@type": {
|
|
430
|
+
"const": "GluedOn",
|
|
431
|
+
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
432
|
+
"type": "string",
|
|
433
|
+
"ontology": "rdf:type"
|
|
434
|
+
}
|
|
435
|
+
},
|
|
436
|
+
"required": [
|
|
437
|
+
"horizontal",
|
|
438
|
+
"@id",
|
|
439
|
+
"material",
|
|
440
|
+
"@type",
|
|
441
|
+
"vertical"
|
|
442
|
+
],
|
|
443
|
+
"type": "object"
|
|
444
|
+
},
|
|
445
|
+
"Hole": {
|
|
446
|
+
"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.",
|
|
447
|
+
"properties": {
|
|
448
|
+
"condition": {
|
|
449
|
+
"$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."
|
|
451
|
+
},
|
|
452
|
+
"depiction": {
|
|
453
|
+
"description": "IIIF region pointing to a depiction of this feature in the scan. [ontology: crm:P62 is depicted by]",
|
|
454
|
+
"type": "string"
|
|
455
|
+
},
|
|
456
|
+
"horizontal": {
|
|
457
|
+
"$ref": "#/definitions/HorizontalSpan",
|
|
458
|
+
"description": "Horizontal span of the feature on the roll. [ontology: crm:P43 has dimension]"
|
|
459
|
+
},
|
|
460
|
+
"pattern": {
|
|
461
|
+
"description": "The punching pattern of the hole. Regular holes have evenly-spaced bridges, accelerating holes have decreasing bridge widths, and staggering holes alternate between adjacent tracks (cf. Phillips).",
|
|
462
|
+
"enum": [
|
|
463
|
+
"regular",
|
|
464
|
+
"accelerating",
|
|
465
|
+
"staggering"
|
|
466
|
+
],
|
|
467
|
+
"type": "string"
|
|
468
|
+
},
|
|
469
|
+
"vertical": {
|
|
470
|
+
"$ref": "#/definitions/VerticalSpan",
|
|
471
|
+
"description": "Vertical span of the feature on the roll. [ontology: crm:P43 has dimension]"
|
|
472
|
+
},
|
|
473
|
+
"@id": {
|
|
474
|
+
"description": "A unique identifier for this object.",
|
|
475
|
+
"type": "string"
|
|
476
|
+
},
|
|
477
|
+
"@type": {
|
|
478
|
+
"const": "Hole",
|
|
479
|
+
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
480
|
+
"type": "string",
|
|
481
|
+
"ontology": "rdf:type"
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
"required": [
|
|
485
|
+
"horizontal",
|
|
486
|
+
"@id",
|
|
487
|
+
"@type",
|
|
488
|
+
"vertical"
|
|
489
|
+
],
|
|
490
|
+
"type": "object"
|
|
491
|
+
},
|
|
492
|
+
"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.",
|
|
494
|
+
"properties": {
|
|
495
|
+
"from": {
|
|
496
|
+
"description": "The start position of the feature in millimeters from the beginning of the roll.",
|
|
497
|
+
"type": "number"
|
|
498
|
+
},
|
|
499
|
+
"to": {
|
|
500
|
+
"description": "The end position of the feature in millimeters from the beginning of the roll.",
|
|
501
|
+
"type": "number"
|
|
502
|
+
},
|
|
503
|
+
"unit": {
|
|
504
|
+
"const": "mm",
|
|
505
|
+
"description": "The unit of measurement for horizontal positions. Always 'mm' (millimeters). [ontology: crm:P91 has unit]",
|
|
506
|
+
"type": "string"
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
"required": [
|
|
510
|
+
"unit",
|
|
511
|
+
"from",
|
|
512
|
+
"to"
|
|
513
|
+
],
|
|
514
|
+
"type": "object"
|
|
515
|
+
},
|
|
516
|
+
"Inference": {
|
|
517
|
+
"description": "An inference draws a conclusion from given premises. [ontology: crminf:I5 Inference Making]",
|
|
518
|
+
"properties": {
|
|
519
|
+
"actor": {
|
|
520
|
+
"$ref": "#/definitions/Person",
|
|
521
|
+
"description": "The person who carried out this activity. [ontology: crm:P14 carried out by]"
|
|
522
|
+
},
|
|
523
|
+
"note": {
|
|
524
|
+
"description": "A free-text note providing additional context. [ontology: crm:P3 has note]",
|
|
525
|
+
"type": "string"
|
|
526
|
+
},
|
|
527
|
+
"premises": {
|
|
528
|
+
"description": "References (by `@id`) to the beliefs or facts from which the conclusion is drawn. [ontology: crminf:J1 used as premise]",
|
|
529
|
+
"items": {
|
|
530
|
+
"type": "string"
|
|
531
|
+
},
|
|
532
|
+
"type": "array"
|
|
533
|
+
},
|
|
534
|
+
"@type": {
|
|
535
|
+
"const": "inference",
|
|
536
|
+
"type": "string",
|
|
537
|
+
"description": "The type discriminator for this object.",
|
|
538
|
+
"ontology": "rdf:type"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"required": [
|
|
542
|
+
"premises",
|
|
543
|
+
"@type"
|
|
544
|
+
],
|
|
545
|
+
"type": "object"
|
|
546
|
+
},
|
|
547
|
+
"Mark": {
|
|
548
|
+
"description": "A visible mark on the roll, such as a pencil mark, ink mark, or other non-textual annotation.",
|
|
549
|
+
"properties": {
|
|
550
|
+
"condition": {
|
|
551
|
+
"$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."
|
|
553
|
+
},
|
|
554
|
+
"depiction": {
|
|
555
|
+
"description": "IIIF region pointing to a depiction of this feature in the scan. [ontology: crm:P62 is depicted by]",
|
|
556
|
+
"type": "string"
|
|
557
|
+
},
|
|
558
|
+
"horizontal": {
|
|
559
|
+
"$ref": "#/definitions/HorizontalSpan",
|
|
560
|
+
"description": "Horizontal span of the feature on the roll. [ontology: crm:P43 has dimension]"
|
|
561
|
+
},
|
|
562
|
+
"vertical": {
|
|
563
|
+
"$ref": "#/definitions/VerticalSpan",
|
|
564
|
+
"description": "Vertical span of the feature on the roll. [ontology: crm:P43 has dimension]"
|
|
565
|
+
},
|
|
566
|
+
"@id": {
|
|
567
|
+
"description": "A unique identifier for this object.",
|
|
568
|
+
"type": "string"
|
|
569
|
+
},
|
|
570
|
+
"@type": {
|
|
571
|
+
"const": "Mark",
|
|
572
|
+
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
573
|
+
"type": "string",
|
|
574
|
+
"ontology": "rdf:type"
|
|
575
|
+
}
|
|
576
|
+
},
|
|
577
|
+
"required": [
|
|
578
|
+
"horizontal",
|
|
579
|
+
"@id",
|
|
580
|
+
"@type",
|
|
581
|
+
"vertical"
|
|
582
|
+
],
|
|
583
|
+
"type": "object"
|
|
584
|
+
},
|
|
585
|
+
"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.",
|
|
587
|
+
"properties": {
|
|
588
|
+
"actor": {
|
|
589
|
+
"$ref": "#/definitions/Person",
|
|
590
|
+
"description": "The person who carried out this activity. [ontology: crm:P14 carried out by]"
|
|
591
|
+
},
|
|
592
|
+
"comprehends": {
|
|
593
|
+
"description": "References (by `@id`) to the symbols or features whose meaning is being interpreted. [ontology: crminf:J22 interpreted meaning of]",
|
|
594
|
+
"items": {
|
|
595
|
+
"type": "string"
|
|
596
|
+
},
|
|
597
|
+
"type": "array"
|
|
598
|
+
},
|
|
599
|
+
"note": {
|
|
600
|
+
"description": "A free-text note providing additional context. [ontology: crm:P3 has note]",
|
|
601
|
+
"type": "string"
|
|
602
|
+
},
|
|
603
|
+
"@type": {
|
|
604
|
+
"const": "meaningComprehension",
|
|
605
|
+
"type": "string",
|
|
606
|
+
"description": "The type discriminator for this object.",
|
|
607
|
+
"ontology": "rdf:type"
|
|
608
|
+
}
|
|
609
|
+
},
|
|
610
|
+
"required": [
|
|
611
|
+
"comprehends",
|
|
612
|
+
"@type"
|
|
613
|
+
],
|
|
614
|
+
"type": "object"
|
|
615
|
+
},
|
|
616
|
+
"Modification": {
|
|
617
|
+
"anyOf": [
|
|
618
|
+
{
|
|
619
|
+
"properties": {
|
|
620
|
+
"actor": {
|
|
621
|
+
"$ref": "#/definitions/ActorAssignment"
|
|
622
|
+
},
|
|
623
|
+
"added": {
|
|
624
|
+
"items": {
|
|
625
|
+
"type": "string"
|
|
626
|
+
},
|
|
627
|
+
"type": "array",
|
|
628
|
+
"description": "[ontology: crm:P111 added]"
|
|
629
|
+
},
|
|
630
|
+
"date": {
|
|
631
|
+
"$ref": "#/definitions/DateAssignment"
|
|
632
|
+
},
|
|
633
|
+
"purpose": {
|
|
634
|
+
"enum": [
|
|
635
|
+
"musical-improvement",
|
|
636
|
+
"technical-improvement",
|
|
637
|
+
"repair",
|
|
638
|
+
"labeling",
|
|
639
|
+
"control",
|
|
640
|
+
"dating",
|
|
641
|
+
"glossing"
|
|
642
|
+
],
|
|
643
|
+
"type": "string",
|
|
644
|
+
"description": "[ontology: crm:P21 had general purpose]"
|
|
645
|
+
},
|
|
646
|
+
"@type": {
|
|
647
|
+
"const": "Addition",
|
|
648
|
+
"type": "string",
|
|
649
|
+
"description": "The type discriminator for this object.",
|
|
650
|
+
"ontology": "rdf:type"
|
|
651
|
+
}
|
|
652
|
+
},
|
|
653
|
+
"required": [
|
|
654
|
+
"added",
|
|
655
|
+
"purpose",
|
|
656
|
+
"@type"
|
|
657
|
+
],
|
|
658
|
+
"type": "object"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"properties": {
|
|
662
|
+
"actor": {
|
|
663
|
+
"$ref": "#/definitions/ActorAssignment"
|
|
664
|
+
},
|
|
665
|
+
"date": {
|
|
666
|
+
"$ref": "#/definitions/DateAssignment"
|
|
667
|
+
},
|
|
668
|
+
"purpose": {
|
|
669
|
+
"const": "delabeling",
|
|
670
|
+
"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.",
|
|
671
|
+
"type": "string"
|
|
672
|
+
},
|
|
673
|
+
"removed": {
|
|
674
|
+
"items": {
|
|
675
|
+
"type": "string"
|
|
676
|
+
},
|
|
677
|
+
"type": "array",
|
|
678
|
+
"description": "[ontology: crm:P113 removed]"
|
|
679
|
+
},
|
|
680
|
+
"@type": {
|
|
681
|
+
"const": "Removal",
|
|
682
|
+
"type": "string",
|
|
683
|
+
"description": "The type discriminator for this object.",
|
|
684
|
+
"ontology": "rdf:type"
|
|
685
|
+
}
|
|
686
|
+
},
|
|
687
|
+
"required": [
|
|
688
|
+
"purpose",
|
|
689
|
+
"removed",
|
|
690
|
+
"@type"
|
|
691
|
+
],
|
|
692
|
+
"type": "object"
|
|
693
|
+
}
|
|
694
|
+
],
|
|
695
|
+
"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
|
+
},
|
|
697
|
+
"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:E73 Information Object]",
|
|
699
|
+
"properties": {
|
|
700
|
+
"note": {
|
|
701
|
+
"description": "A free-text note providing additional context. [ontology: crm:P3 has note]",
|
|
702
|
+
"type": "string"
|
|
703
|
+
},
|
|
704
|
+
"@id": {
|
|
705
|
+
"description": "A unique identifier for this object.",
|
|
706
|
+
"type": "string"
|
|
707
|
+
},
|
|
708
|
+
"@type": {
|
|
709
|
+
"const": "motivation",
|
|
710
|
+
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
711
|
+
"type": "string",
|
|
712
|
+
"ontology": "rdf:type"
|
|
713
|
+
}
|
|
714
|
+
},
|
|
715
|
+
"required": [
|
|
716
|
+
"@id",
|
|
717
|
+
"@type"
|
|
718
|
+
],
|
|
719
|
+
"type": "object"
|
|
720
|
+
},
|
|
721
|
+
"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:P6 Note]",
|
|
723
|
+
"properties": {
|
|
724
|
+
"alignedWith": {
|
|
725
|
+
"$ref": "#/definitions/ValueAssumption%3Cstring%3E",
|
|
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:P3 aligned with]"
|
|
727
|
+
},
|
|
728
|
+
"carriers": {
|
|
729
|
+
"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]",
|
|
730
|
+
"items": {
|
|
731
|
+
"$ref": "#/definitions/ReferenceAssumption"
|
|
732
|
+
},
|
|
733
|
+
"type": "array"
|
|
734
|
+
},
|
|
735
|
+
"pitch": {
|
|
736
|
+
"description": "The MIDI pitch number of the note (e.g. 60 for middle C). [ontology: reo:P5 has pitch]",
|
|
737
|
+
"type": "number"
|
|
738
|
+
},
|
|
739
|
+
"@id": {
|
|
740
|
+
"description": "A unique identifier for this object.",
|
|
741
|
+
"type": "string"
|
|
742
|
+
},
|
|
743
|
+
"@type": {
|
|
744
|
+
"const": "note",
|
|
745
|
+
"type": "string",
|
|
746
|
+
"description": "The type discriminator for this object.",
|
|
747
|
+
"ontology": "rdf:type"
|
|
748
|
+
}
|
|
749
|
+
},
|
|
750
|
+
"required": [
|
|
751
|
+
"carriers",
|
|
752
|
+
"@id",
|
|
753
|
+
"pitch",
|
|
754
|
+
"@type"
|
|
755
|
+
],
|
|
756
|
+
"type": "object"
|
|
757
|
+
},
|
|
758
|
+
"ObjectAssumption<(GeneralRollCondition|PaperStretch)>": {
|
|
759
|
+
"anyOf": [
|
|
760
|
+
{
|
|
761
|
+
"properties": {
|
|
762
|
+
"@annotation": {
|
|
763
|
+
"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
|
+
"properties": {
|
|
765
|
+
"belief": {
|
|
766
|
+
"$ref": "#/definitions/Belief"
|
|
767
|
+
},
|
|
768
|
+
"@id": {
|
|
769
|
+
"description": "A unique identifier for this object.",
|
|
770
|
+
"type": "string"
|
|
771
|
+
}
|
|
772
|
+
},
|
|
773
|
+
"required": [
|
|
774
|
+
"belief",
|
|
775
|
+
"@id"
|
|
776
|
+
],
|
|
777
|
+
"type": "object"
|
|
778
|
+
},
|
|
779
|
+
"description": {
|
|
780
|
+
"description": "A free-text description of the condition, providing details beyond the type classification. [ontology: crm:P3 has note]",
|
|
781
|
+
"type": "string"
|
|
782
|
+
},
|
|
783
|
+
"@type": {
|
|
784
|
+
"const": "general",
|
|
785
|
+
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
786
|
+
"type": "string",
|
|
787
|
+
"ontology": "rdf:type"
|
|
788
|
+
}
|
|
789
|
+
},
|
|
790
|
+
"required": [
|
|
791
|
+
"@type"
|
|
792
|
+
],
|
|
793
|
+
"type": "object"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"properties": {
|
|
797
|
+
"@annotation": {
|
|
798
|
+
"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
|
+
"properties": {
|
|
800
|
+
"belief": {
|
|
801
|
+
"$ref": "#/definitions/Belief"
|
|
802
|
+
},
|
|
803
|
+
"@id": {
|
|
804
|
+
"description": "A unique identifier for this object.",
|
|
805
|
+
"type": "string"
|
|
806
|
+
}
|
|
807
|
+
},
|
|
808
|
+
"required": [
|
|
809
|
+
"belief",
|
|
810
|
+
"@id"
|
|
811
|
+
],
|
|
812
|
+
"type": "object"
|
|
813
|
+
},
|
|
814
|
+
"description": {
|
|
815
|
+
"description": "A free-text description of the condition, providing details beyond the type classification. [ontology: crm:P3 has note]",
|
|
816
|
+
"type": "string"
|
|
817
|
+
},
|
|
818
|
+
"factor": {
|
|
819
|
+
"description": "The stretch factor, e.g. 1.02 means the paper has stretched by 2% compared to its original dimensions.",
|
|
820
|
+
"type": "number"
|
|
821
|
+
},
|
|
822
|
+
"@type": {
|
|
823
|
+
"const": "paper-stretch",
|
|
824
|
+
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
825
|
+
"type": "string",
|
|
826
|
+
"ontology": "rdf:type"
|
|
827
|
+
}
|
|
828
|
+
},
|
|
829
|
+
"required": [
|
|
830
|
+
"factor",
|
|
831
|
+
"@type"
|
|
832
|
+
],
|
|
833
|
+
"type": "object"
|
|
834
|
+
}
|
|
835
|
+
],
|
|
836
|
+
"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."
|
|
837
|
+
},
|
|
838
|
+
"ObjectAssumption<ConditionState<(\"detaching\"|\"ripped\")>>": {
|
|
839
|
+
"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.",
|
|
840
|
+
"properties": {
|
|
841
|
+
"@annotation": {
|
|
842
|
+
"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
|
+
"properties": {
|
|
844
|
+
"belief": {
|
|
845
|
+
"$ref": "#/definitions/Belief"
|
|
846
|
+
},
|
|
847
|
+
"@id": {
|
|
848
|
+
"description": "A unique identifier for this object.",
|
|
849
|
+
"type": "string"
|
|
850
|
+
}
|
|
851
|
+
},
|
|
852
|
+
"required": [
|
|
853
|
+
"belief",
|
|
854
|
+
"@id"
|
|
855
|
+
],
|
|
856
|
+
"type": "object"
|
|
857
|
+
},
|
|
858
|
+
"description": {
|
|
859
|
+
"description": "A free-text description of the condition, providing details beyond the type classification. [ontology: crm:P3 has note]",
|
|
860
|
+
"type": "string"
|
|
861
|
+
},
|
|
862
|
+
"@type": {
|
|
863
|
+
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
864
|
+
"enum": [
|
|
865
|
+
"detaching",
|
|
866
|
+
"ripped"
|
|
867
|
+
],
|
|
868
|
+
"type": "string",
|
|
869
|
+
"ontology": "rdf:type"
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
"required": [
|
|
873
|
+
"@type"
|
|
874
|
+
],
|
|
875
|
+
"type": "object"
|
|
876
|
+
},
|
|
877
|
+
"ObjectAssumption<ConditionState<(\"faded\")>>": {
|
|
878
|
+
"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.",
|
|
879
|
+
"properties": {
|
|
880
|
+
"@annotation": {
|
|
881
|
+
"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
|
+
"properties": {
|
|
883
|
+
"belief": {
|
|
884
|
+
"$ref": "#/definitions/Belief"
|
|
885
|
+
},
|
|
886
|
+
"@id": {
|
|
887
|
+
"description": "A unique identifier for this object.",
|
|
888
|
+
"type": "string"
|
|
889
|
+
}
|
|
890
|
+
},
|
|
891
|
+
"required": [
|
|
892
|
+
"belief",
|
|
893
|
+
"@id"
|
|
894
|
+
],
|
|
895
|
+
"type": "object"
|
|
896
|
+
},
|
|
897
|
+
"description": {
|
|
898
|
+
"description": "A free-text description of the condition, providing details beyond the type classification. [ontology: crm:P3 has note]",
|
|
899
|
+
"type": "string"
|
|
900
|
+
},
|
|
901
|
+
"@type": {
|
|
902
|
+
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
903
|
+
"enum": [
|
|
904
|
+
"faded"
|
|
905
|
+
],
|
|
906
|
+
"type": "string",
|
|
907
|
+
"ontology": "rdf:type"
|
|
908
|
+
}
|
|
909
|
+
},
|
|
910
|
+
"required": [
|
|
911
|
+
"@type"
|
|
912
|
+
],
|
|
913
|
+
"type": "object"
|
|
914
|
+
},
|
|
915
|
+
"ObjectAssumption<ConditionState<(\"partially-torn\"|\"missing-perforation\")>>": {
|
|
916
|
+
"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.",
|
|
917
|
+
"properties": {
|
|
918
|
+
"@annotation": {
|
|
919
|
+
"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
|
+
"properties": {
|
|
921
|
+
"belief": {
|
|
922
|
+
"$ref": "#/definitions/Belief"
|
|
923
|
+
},
|
|
924
|
+
"@id": {
|
|
925
|
+
"description": "A unique identifier for this object.",
|
|
926
|
+
"type": "string"
|
|
927
|
+
}
|
|
928
|
+
},
|
|
929
|
+
"required": [
|
|
930
|
+
"belief",
|
|
931
|
+
"@id"
|
|
932
|
+
],
|
|
933
|
+
"type": "object"
|
|
934
|
+
},
|
|
935
|
+
"description": {
|
|
936
|
+
"description": "A free-text description of the condition, providing details beyond the type classification. [ontology: crm:P3 has note]",
|
|
937
|
+
"type": "string"
|
|
938
|
+
},
|
|
939
|
+
"@type": {
|
|
940
|
+
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
941
|
+
"enum": [
|
|
942
|
+
"partially-torn",
|
|
943
|
+
"missing-perforation"
|
|
944
|
+
],
|
|
945
|
+
"type": "string",
|
|
946
|
+
"ontology": "rdf:type"
|
|
947
|
+
}
|
|
948
|
+
},
|
|
949
|
+
"required": [
|
|
950
|
+
"@type"
|
|
951
|
+
],
|
|
952
|
+
"type": "object"
|
|
953
|
+
},
|
|
954
|
+
"ObjectAssumption<Person>": {
|
|
955
|
+
"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.",
|
|
956
|
+
"properties": {
|
|
957
|
+
"@annotation": {
|
|
958
|
+
"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
|
+
"properties": {
|
|
960
|
+
"belief": {
|
|
961
|
+
"$ref": "#/definitions/Belief"
|
|
962
|
+
},
|
|
963
|
+
"@id": {
|
|
964
|
+
"description": "A unique identifier for this object.",
|
|
965
|
+
"type": "string"
|
|
966
|
+
}
|
|
967
|
+
},
|
|
968
|
+
"required": [
|
|
969
|
+
"belief",
|
|
970
|
+
"@id"
|
|
971
|
+
],
|
|
972
|
+
"type": "object"
|
|
973
|
+
},
|
|
974
|
+
"name": {
|
|
975
|
+
"description": "The full name of the person. [ontology: rdfs:label]",
|
|
976
|
+
"examples": [
|
|
977
|
+
"Grünfeld, Alfred"
|
|
978
|
+
],
|
|
979
|
+
"type": "string"
|
|
980
|
+
},
|
|
981
|
+
"role": {
|
|
982
|
+
"description": "The role of the person in the context of the edition, e.g. 'pianist', 'editor', 'publisher', etc. [ontology: crm:P2 has type]",
|
|
983
|
+
"type": "string"
|
|
984
|
+
},
|
|
985
|
+
"sameAs": {
|
|
986
|
+
"description": "This property can be used to point to a GND, Wikidata, or similar entry. [ontology: owl:sameAs]",
|
|
987
|
+
"examples": [
|
|
988
|
+
"https://d-nb.info/gnd/116888652"
|
|
989
|
+
],
|
|
990
|
+
"items": {
|
|
991
|
+
"type": "string"
|
|
992
|
+
},
|
|
993
|
+
"type": "array"
|
|
994
|
+
},
|
|
995
|
+
"@id": {
|
|
996
|
+
"description": "A unique identifier for this object.",
|
|
997
|
+
"type": "string"
|
|
998
|
+
}
|
|
999
|
+
},
|
|
1000
|
+
"required": [
|
|
1001
|
+
"name",
|
|
1002
|
+
"sameAs"
|
|
1003
|
+
],
|
|
1004
|
+
"type": "object"
|
|
1005
|
+
},
|
|
1006
|
+
"ObjectAssumption<RollTempo>": {
|
|
1007
|
+
"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.",
|
|
1008
|
+
"properties": {
|
|
1009
|
+
"@annotation": {
|
|
1010
|
+
"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
|
+
"properties": {
|
|
1012
|
+
"belief": {
|
|
1013
|
+
"$ref": "#/definitions/Belief"
|
|
1014
|
+
},
|
|
1015
|
+
"@id": {
|
|
1016
|
+
"description": "A unique identifier for this object.",
|
|
1017
|
+
"type": "string"
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
"required": [
|
|
1021
|
+
"belief",
|
|
1022
|
+
"@id"
|
|
1023
|
+
],
|
|
1024
|
+
"type": "object"
|
|
1025
|
+
},
|
|
1026
|
+
"endsWith": {
|
|
1027
|
+
"description": "The tempo at the end of the roll.",
|
|
1028
|
+
"type": "number"
|
|
1029
|
+
},
|
|
1030
|
+
"startsWith": {
|
|
1031
|
+
"description": "The tempo at the beginning of the roll.",
|
|
1032
|
+
"type": "number"
|
|
1033
|
+
},
|
|
1034
|
+
"unit": {
|
|
1035
|
+
"description": "The unit of the tempo measurement (e.g. 'ft/min', 'm/min').",
|
|
1036
|
+
"type": "string"
|
|
1037
|
+
}
|
|
1038
|
+
},
|
|
1039
|
+
"required": [
|
|
1040
|
+
"endsWith",
|
|
1041
|
+
"startsWith",
|
|
1042
|
+
"unit"
|
|
1043
|
+
],
|
|
1044
|
+
"type": "object"
|
|
1045
|
+
},
|
|
1046
|
+
"ObjectAssumption<alias-731470504-73739-73887-731470504-0-217694<def-interface-src_Symbol.ts-3288-3548-src_Symbol.ts-0-3756400334313,\"carriers\">>": {
|
|
1047
|
+
"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
|
+
"properties": {
|
|
1049
|
+
"@annotation": {
|
|
1050
|
+
"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
|
+
"properties": {
|
|
1052
|
+
"belief": {
|
|
1053
|
+
"$ref": "#/definitions/Belief"
|
|
1054
|
+
},
|
|
1055
|
+
"@id": {
|
|
1056
|
+
"description": "A unique identifier for this object.",
|
|
1057
|
+
"type": "string"
|
|
1058
|
+
}
|
|
1059
|
+
},
|
|
1060
|
+
"required": [
|
|
1061
|
+
"belief",
|
|
1062
|
+
"@id"
|
|
1063
|
+
],
|
|
1064
|
+
"type": "object"
|
|
1065
|
+
},
|
|
1066
|
+
"text": {
|
|
1067
|
+
"description": "The text content of the symbol. [ontology: crm:P3 has note]",
|
|
1068
|
+
"type": "string"
|
|
1069
|
+
},
|
|
1070
|
+
"@id": {
|
|
1071
|
+
"description": "A unique identifier for this object."
|
|
1072
|
+
},
|
|
1073
|
+
"@type": {
|
|
1074
|
+
"description": "The type discriminator for this object.",
|
|
1075
|
+
"ontology": "rdf:type"
|
|
1076
|
+
}
|
|
1077
|
+
},
|
|
1078
|
+
"required": [
|
|
1079
|
+
"@id",
|
|
1080
|
+
"text",
|
|
1081
|
+
"@type"
|
|
1082
|
+
],
|
|
1083
|
+
"type": "object"
|
|
1084
|
+
},
|
|
1085
|
+
"PartialBy<AnyFeature,(\"horizontal\"|\"vertical\")>": {
|
|
1086
|
+
"properties": {
|
|
1087
|
+
"horizontal": {
|
|
1088
|
+
"$ref": "#/definitions/AnyFeature"
|
|
1089
|
+
},
|
|
1090
|
+
"vertical": {
|
|
1091
|
+
"$ref": "#/definitions/AnyFeature"
|
|
1092
|
+
}
|
|
1093
|
+
},
|
|
1094
|
+
"type": "object"
|
|
1095
|
+
},
|
|
1096
|
+
"Person": {
|
|
1097
|
+
"description": "A person, e.g. a pianist, editor, publisher, etc. [ontology: crm:E21 Person]",
|
|
1098
|
+
"properties": {
|
|
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"
|
|
1130
|
+
},
|
|
1131
|
+
"Place": {
|
|
1132
|
+
"description": "A place, e.g. a recording location, publishing location, etc. [ontology: crm:E53 Place]",
|
|
1133
|
+
"properties": {
|
|
1134
|
+
"name": {
|
|
1135
|
+
"description": "The name of the place.",
|
|
1136
|
+
"examples": [
|
|
1137
|
+
"Wien"
|
|
1138
|
+
],
|
|
1139
|
+
"type": "string"
|
|
1140
|
+
},
|
|
1141
|
+
"sameAs": {
|
|
1142
|
+
"description": "This property can be used to point to a geonames or wikidata entry.",
|
|
1143
|
+
"items": {
|
|
1144
|
+
"type": "string"
|
|
1145
|
+
},
|
|
1146
|
+
"type": "array"
|
|
1147
|
+
}
|
|
1148
|
+
},
|
|
1149
|
+
"required": [
|
|
1150
|
+
"name",
|
|
1151
|
+
"sameAs"
|
|
1152
|
+
],
|
|
1153
|
+
"type": "object"
|
|
1154
|
+
},
|
|
1155
|
+
"ProductionEvent": {
|
|
1156
|
+
"description": "Describes the production of a roll copy, including the manufacturing company, the roll system, and the paper used. [ontology: lrm:F33 Reproduction Event]",
|
|
1157
|
+
"properties": {
|
|
1158
|
+
"company": {
|
|
1159
|
+
"description": "The company that produced the roll copy (e.g. \"M. Welte & Söhne\"). [ontology: crm:P14 carried out by]",
|
|
1160
|
+
"type": "string"
|
|
1161
|
+
},
|
|
1162
|
+
"date": {
|
|
1163
|
+
"$ref": "#/definitions/DateAssignment",
|
|
1164
|
+
"description": "The date of production, if known. [ontology: crm:P4 has time-span]"
|
|
1165
|
+
},
|
|
1166
|
+
"paper": {
|
|
1167
|
+
"description": "The paper type used for the roll copy. [ontology: P126:employed]",
|
|
1168
|
+
"type": "string"
|
|
1169
|
+
},
|
|
1170
|
+
"system": {
|
|
1171
|
+
"description": "The roll system used for production (e.g. \"Welte-Mignon T100\", \"Welte-Mignon T98\").",
|
|
1172
|
+
"type": "string"
|
|
1173
|
+
}
|
|
1174
|
+
},
|
|
1175
|
+
"required": [
|
|
1176
|
+
"company",
|
|
1177
|
+
"system",
|
|
1178
|
+
"paper"
|
|
1179
|
+
],
|
|
1180
|
+
"type": "object"
|
|
1181
|
+
},
|
|
1182
|
+
"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: reo:C14 Recording]",
|
|
1184
|
+
"properties": {
|
|
1185
|
+
"created": {
|
|
1186
|
+
"$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: lrm:R17 created]"
|
|
1188
|
+
},
|
|
1189
|
+
"date": {
|
|
1190
|
+
"$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: crm:P4 has time-span]"
|
|
1192
|
+
},
|
|
1193
|
+
"place": {
|
|
1194
|
+
"$ref": "#/definitions/Place",
|
|
1195
|
+
"description": "The place where the recording took place. [ontology: crm:P7 took place at]"
|
|
1196
|
+
},
|
|
1197
|
+
"recorded": {
|
|
1198
|
+
"description": "Documents the performance which was recorded. [ontology: lrm:R81 recorded]",
|
|
1199
|
+
"properties": {
|
|
1200
|
+
"pianist": {
|
|
1201
|
+
"$ref": "#/definitions/Person"
|
|
1202
|
+
},
|
|
1203
|
+
"playing": {
|
|
1204
|
+
"description": "This property should point to a standard URI, e.g. the GND.",
|
|
1205
|
+
"type": "string"
|
|
1206
|
+
}
|
|
1207
|
+
},
|
|
1208
|
+
"required": [
|
|
1209
|
+
"pianist",
|
|
1210
|
+
"playing"
|
|
1211
|
+
],
|
|
1212
|
+
"type": "object"
|
|
1213
|
+
}
|
|
1214
|
+
},
|
|
1215
|
+
"required": [
|
|
1216
|
+
"recorded",
|
|
1217
|
+
"place",
|
|
1218
|
+
"date"
|
|
1219
|
+
],
|
|
1220
|
+
"type": "object"
|
|
1221
|
+
},
|
|
1222
|
+
"ReferenceAssumption": {
|
|
1223
|
+
"description": "A reference assumption wraps a reference (by `@id`) with an optional annotation. Used when pointing to another entity whose association may be uncertain.",
|
|
1224
|
+
"properties": {
|
|
1225
|
+
"@annotation": {
|
|
1226
|
+
"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
|
+
"properties": {
|
|
1228
|
+
"belief": {
|
|
1229
|
+
"$ref": "#/definitions/Belief"
|
|
1230
|
+
},
|
|
1231
|
+
"@id": {
|
|
1232
|
+
"description": "A unique identifier for this object.",
|
|
1233
|
+
"type": "string"
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
"required": [
|
|
1237
|
+
"belief",
|
|
1238
|
+
"@id"
|
|
1239
|
+
],
|
|
1240
|
+
"type": "object"
|
|
1241
|
+
},
|
|
1242
|
+
"@id": {
|
|
1243
|
+
"description": "A unique identifier for this object.",
|
|
1244
|
+
"type": "string"
|
|
1245
|
+
}
|
|
1246
|
+
},
|
|
1247
|
+
"required": [
|
|
1248
|
+
"@id"
|
|
1249
|
+
],
|
|
1250
|
+
"type": "object"
|
|
1251
|
+
},
|
|
1252
|
+
"Roll": {
|
|
1253
|
+
"description": "The abstract concept of a roll, identified by its catalogue number. [ontology: lrm:F1 Work]",
|
|
1254
|
+
"properties": {
|
|
1255
|
+
"catalogueNumber": {
|
|
1256
|
+
"description": "The catalogue number of the roll.",
|
|
1257
|
+
"examples": [
|
|
1258
|
+
"WM 225"
|
|
1259
|
+
],
|
|
1260
|
+
"type": "string"
|
|
1261
|
+
},
|
|
1262
|
+
"recordingEvent": {
|
|
1263
|
+
"$ref": "#/definitions/RecordingEvent",
|
|
1264
|
+
"description": "[ontology: lrm:R19i was realized through]"
|
|
1265
|
+
}
|
|
1266
|
+
},
|
|
1267
|
+
"required": [
|
|
1268
|
+
"catalogueNumber",
|
|
1269
|
+
"recordingEvent"
|
|
1270
|
+
],
|
|
1271
|
+
"type": "object"
|
|
1272
|
+
},
|
|
1273
|
+
"RollConditionAssignment": {
|
|
1274
|
+
"$ref": "#/definitions/ObjectAssumption%3C(GeneralRollCondition%7CPaperStretch)%3E",
|
|
1275
|
+
"description": "An assignment of a condition (general or paper-stretch) to a roll copy, annotatable with a belief about its certainty."
|
|
1276
|
+
},
|
|
1277
|
+
"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: crm:E22 Human-Made Object]",
|
|
1279
|
+
"properties": {
|
|
1280
|
+
"conditions": {
|
|
1281
|
+
"description": "Condition assessments of this roll copy (e.g. paper stretch, general wear). Each condition is an assumption annotatable with a belief.",
|
|
1282
|
+
"items": {
|
|
1283
|
+
"$ref": "#/definitions/RollConditionAssignment"
|
|
1284
|
+
},
|
|
1285
|
+
"type": "array"
|
|
1286
|
+
},
|
|
1287
|
+
"features": {
|
|
1288
|
+
"description": "Provides a reconstructed version of the roll, with shift, stretch and emendations already taken into account. This property will not be exported in the final JSON.",
|
|
1289
|
+
"items": {
|
|
1290
|
+
"$ref": "#/definitions/AnyFeature"
|
|
1291
|
+
},
|
|
1292
|
+
"type": "array"
|
|
1293
|
+
},
|
|
1294
|
+
"location": {
|
|
1295
|
+
"description": "The current physical location or archive where this copy is held. [ontology: crm:P55 has current location]",
|
|
1296
|
+
"type": "string"
|
|
1297
|
+
},
|
|
1298
|
+
"measurements": {
|
|
1299
|
+
"description": "Physical measurements of this roll copy, including dimensions, punch diameter, hole separation, margins, shift corrections, and information about the measuring software.",
|
|
1300
|
+
"properties": {
|
|
1301
|
+
"dimensions": {
|
|
1302
|
+
"description": "The physical dimensions of the roll.",
|
|
1303
|
+
"properties": {
|
|
1304
|
+
"height": {
|
|
1305
|
+
"description": "The total height (length) of the roll in the given unit.",
|
|
1306
|
+
"type": "number"
|
|
1307
|
+
},
|
|
1308
|
+
"unit": {
|
|
1309
|
+
"description": "The unit of measurement (e.g. 'mm').",
|
|
1310
|
+
"type": "string"
|
|
1311
|
+
},
|
|
1312
|
+
"width": {
|
|
1313
|
+
"description": "The width of the roll in the given unit.",
|
|
1314
|
+
"type": "number"
|
|
1315
|
+
}
|
|
1316
|
+
},
|
|
1317
|
+
"required": [
|
|
1318
|
+
"width",
|
|
1319
|
+
"height",
|
|
1320
|
+
"unit"
|
|
1321
|
+
],
|
|
1322
|
+
"type": "object"
|
|
1323
|
+
},
|
|
1324
|
+
"holeSeparation": {
|
|
1325
|
+
"description": "The distance between adjacent tracker bar holes.",
|
|
1326
|
+
"properties": {
|
|
1327
|
+
"unit": {
|
|
1328
|
+
"description": "The unit of measurement (e.g. 'px', 'mm').",
|
|
1329
|
+
"type": "string"
|
|
1330
|
+
},
|
|
1331
|
+
"value": {
|
|
1332
|
+
"description": "The measured hole separation value.",
|
|
1333
|
+
"type": "number"
|
|
1334
|
+
}
|
|
1335
|
+
},
|
|
1336
|
+
"required": [
|
|
1337
|
+
"value",
|
|
1338
|
+
"unit"
|
|
1339
|
+
],
|
|
1340
|
+
"type": "object"
|
|
1341
|
+
},
|
|
1342
|
+
"margins": {
|
|
1343
|
+
"description": "The margins on the treble and bass sides of the roll.",
|
|
1344
|
+
"properties": {
|
|
1345
|
+
"bass": {
|
|
1346
|
+
"description": "The margin on the bass side.",
|
|
1347
|
+
"type": "number"
|
|
1348
|
+
},
|
|
1349
|
+
"treble": {
|
|
1350
|
+
"description": "The margin on the treble side.",
|
|
1351
|
+
"type": "number"
|
|
1352
|
+
},
|
|
1353
|
+
"unit": {
|
|
1354
|
+
"description": "The unit of measurement (e.g. 'px', 'mm').",
|
|
1355
|
+
"type": "string"
|
|
1356
|
+
}
|
|
1357
|
+
},
|
|
1358
|
+
"required": [
|
|
1359
|
+
"treble",
|
|
1360
|
+
"bass",
|
|
1361
|
+
"unit"
|
|
1362
|
+
],
|
|
1363
|
+
"type": "object"
|
|
1364
|
+
},
|
|
1365
|
+
"measuredBy": {
|
|
1366
|
+
"description": "Information about the software used to take the measurements.",
|
|
1367
|
+
"properties": {
|
|
1368
|
+
"date": {
|
|
1369
|
+
"description": "The date on which the measurements were taken.",
|
|
1370
|
+
"format": "date",
|
|
1371
|
+
"type": "string"
|
|
1372
|
+
},
|
|
1373
|
+
"software": {
|
|
1374
|
+
"description": "The name of the measurement software.",
|
|
1375
|
+
"type": "string"
|
|
1376
|
+
},
|
|
1377
|
+
"version": {
|
|
1378
|
+
"description": "The version of the measurement software.",
|
|
1379
|
+
"type": "string"
|
|
1380
|
+
}
|
|
1381
|
+
},
|
|
1382
|
+
"required": [
|
|
1383
|
+
"software",
|
|
1384
|
+
"version",
|
|
1385
|
+
"date"
|
|
1386
|
+
],
|
|
1387
|
+
"type": "object"
|
|
1388
|
+
},
|
|
1389
|
+
"punchDiameter": {
|
|
1390
|
+
"description": "The average diameter of punched holes.",
|
|
1391
|
+
"properties": {
|
|
1392
|
+
"unit": {
|
|
1393
|
+
"description": "The unit of measurement (e.g. 'mm').",
|
|
1394
|
+
"type": "string"
|
|
1395
|
+
},
|
|
1396
|
+
"value": {
|
|
1397
|
+
"description": "The measured punch diameter value.",
|
|
1398
|
+
"type": "number"
|
|
1399
|
+
}
|
|
1400
|
+
},
|
|
1401
|
+
"required": [
|
|
1402
|
+
"value",
|
|
1403
|
+
"unit"
|
|
1404
|
+
],
|
|
1405
|
+
"type": "object"
|
|
1406
|
+
},
|
|
1407
|
+
"shift": {
|
|
1408
|
+
"$ref": "#/definitions/Shift"
|
|
1409
|
+
},
|
|
1410
|
+
"trackCalibration": {
|
|
1411
|
+
"$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."
|
|
1413
|
+
}
|
|
1414
|
+
},
|
|
1415
|
+
"type": "object"
|
|
1416
|
+
},
|
|
1417
|
+
"modifications": {
|
|
1418
|
+
"items": {
|
|
1419
|
+
"$ref": "#/definitions/Modification"
|
|
1420
|
+
},
|
|
1421
|
+
"type": "array",
|
|
1422
|
+
"description": "[ontology: crm:P31 was modified by]"
|
|
1423
|
+
},
|
|
1424
|
+
"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.",
|
|
1426
|
+
"items": {
|
|
1427
|
+
"enum": [
|
|
1428
|
+
"shifted",
|
|
1429
|
+
"stretched"
|
|
1430
|
+
],
|
|
1431
|
+
"type": "string"
|
|
1432
|
+
},
|
|
1433
|
+
"type": "array"
|
|
1434
|
+
},
|
|
1435
|
+
"production": {
|
|
1436
|
+
"$ref": "#/definitions/ProductionEvent",
|
|
1437
|
+
"description": "The production event that created this roll copy. [ontology: lrm:R28i was produced by]"
|
|
1438
|
+
},
|
|
1439
|
+
"scan": {
|
|
1440
|
+
"description": "The scan URL or IIIF URL of the roll. [ontology: crm:P138i has representation]",
|
|
1441
|
+
"type": "string"
|
|
1442
|
+
},
|
|
1443
|
+
"@id": {
|
|
1444
|
+
"description": "A unique identifier for this object.",
|
|
1445
|
+
"type": "string"
|
|
1446
|
+
},
|
|
1447
|
+
"@type": {
|
|
1448
|
+
"const": "RollCopy",
|
|
1449
|
+
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
1450
|
+
"type": "string",
|
|
1451
|
+
"ontology": "rdf:type"
|
|
1452
|
+
}
|
|
1453
|
+
},
|
|
1454
|
+
"required": [
|
|
1455
|
+
"conditions",
|
|
1456
|
+
"features",
|
|
1457
|
+
"@id",
|
|
1458
|
+
"location",
|
|
1459
|
+
"measurements",
|
|
1460
|
+
"modifications",
|
|
1461
|
+
"ops",
|
|
1462
|
+
"@type"
|
|
1463
|
+
],
|
|
1464
|
+
"type": "object"
|
|
1465
|
+
},
|
|
1466
|
+
"Shift": {
|
|
1467
|
+
"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).",
|
|
1468
|
+
"properties": {
|
|
1469
|
+
"horizontal": {
|
|
1470
|
+
"description": "Horizontal shift in millimeters (along the roll length).",
|
|
1471
|
+
"type": "number"
|
|
1472
|
+
},
|
|
1473
|
+
"vertical": {
|
|
1474
|
+
"description": "Vertical shift in track numbers (across the tracker bar).",
|
|
1475
|
+
"type": "number"
|
|
1476
|
+
}
|
|
1477
|
+
},
|
|
1478
|
+
"required": [
|
|
1479
|
+
"horizontal",
|
|
1480
|
+
"vertical"
|
|
1481
|
+
],
|
|
1482
|
+
"type": "object"
|
|
1483
|
+
},
|
|
1484
|
+
"Text": {
|
|
1485
|
+
"description": "A textual symbol, e.g. a label or annotation found on the roll. [ontology: crm:E33 Linguistic Object]",
|
|
1486
|
+
"properties": {
|
|
1487
|
+
"carriers": {
|
|
1488
|
+
"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]",
|
|
1489
|
+
"items": {
|
|
1490
|
+
"$ref": "#/definitions/ReferenceAssumption"
|
|
1491
|
+
},
|
|
1492
|
+
"type": "array"
|
|
1493
|
+
},
|
|
1494
|
+
"text": {
|
|
1495
|
+
"description": "The text content of the symbol. [ontology: crm:P3 has note]",
|
|
1496
|
+
"type": "string"
|
|
1497
|
+
},
|
|
1498
|
+
"@id": {
|
|
1499
|
+
"description": "A unique identifier for this object.",
|
|
1500
|
+
"type": "string"
|
|
1501
|
+
},
|
|
1502
|
+
"@type": {
|
|
1503
|
+
"const": "text",
|
|
1504
|
+
"type": "string",
|
|
1505
|
+
"description": "The type discriminator for this object.",
|
|
1506
|
+
"ontology": "rdf:type"
|
|
1507
|
+
}
|
|
1508
|
+
},
|
|
1509
|
+
"required": [
|
|
1510
|
+
"carriers",
|
|
1511
|
+
"@id",
|
|
1512
|
+
"text",
|
|
1513
|
+
"@type"
|
|
1514
|
+
],
|
|
1515
|
+
"type": "object"
|
|
1516
|
+
},
|
|
1517
|
+
"TrackCalibration": {
|
|
1518
|
+
"description": "Relates a scan to the tracker bar it was read with.\n\nScanning software numbers the hole columns it finds by their position in the image, so its numbering is offset by however far the roll lay from the edge of the scanner bed. Calibrating means finding that offset, usually from a landmark such as the rewind perforation.\n\n column = offset + scannerTrack * separation trackerBar = scannerTrack + shift",
|
|
1519
|
+
"properties": {
|
|
1520
|
+
"offset": {
|
|
1521
|
+
"description": "Image column of the scanning software's track 0.",
|
|
1522
|
+
"type": "number"
|
|
1523
|
+
},
|
|
1524
|
+
"separation": {
|
|
1525
|
+
"description": "Distance between the centres of adjacent tracks.",
|
|
1526
|
+
"type": "number"
|
|
1527
|
+
},
|
|
1528
|
+
"shift": {
|
|
1529
|
+
"description": "Added to the scanning software's numbering to reach the tracker bar.",
|
|
1530
|
+
"type": "number"
|
|
1531
|
+
},
|
|
1532
|
+
"unit": {
|
|
1533
|
+
"const": "px",
|
|
1534
|
+
"type": "string"
|
|
1535
|
+
}
|
|
1536
|
+
},
|
|
1537
|
+
"required": [
|
|
1538
|
+
"unit",
|
|
1539
|
+
"offset",
|
|
1540
|
+
"separation",
|
|
1541
|
+
"shift"
|
|
1542
|
+
],
|
|
1543
|
+
"type": "object"
|
|
1544
|
+
},
|
|
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
|
+
"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.",
|
|
1608
|
+
"properties": {
|
|
1609
|
+
"basedOn": {
|
|
1610
|
+
"$ref": "#/definitions/ReferenceAssumption",
|
|
1611
|
+
"description": "If no derivation is defined, it is assumed that this version represents the mother roll."
|
|
1612
|
+
},
|
|
1613
|
+
"edits": {
|
|
1614
|
+
"description": "The list of edits that, applied to the base version, produce this version.",
|
|
1615
|
+
"items": {
|
|
1616
|
+
"$ref": "#/definitions/Edit"
|
|
1617
|
+
},
|
|
1618
|
+
"type": "array"
|
|
1619
|
+
},
|
|
1620
|
+
"motivations": {
|
|
1621
|
+
"description": "A collection of motivations used in this version's edits.",
|
|
1622
|
+
"items": {
|
|
1623
|
+
"$ref": "#/definitions/Motivation"
|
|
1624
|
+
},
|
|
1625
|
+
"type": "array"
|
|
1626
|
+
},
|
|
1627
|
+
"siglum": {
|
|
1628
|
+
"description": "A short siglum to identify the version, e.g. \"A\", \"B1\", \"B2_rev\", etc.",
|
|
1629
|
+
"type": "string"
|
|
1630
|
+
},
|
|
1631
|
+
"@id": {
|
|
1632
|
+
"type": "string",
|
|
1633
|
+
"description": "A unique identifier for this object."
|
|
1634
|
+
},
|
|
1635
|
+
"@type": {
|
|
1636
|
+
"$ref": "#/definitions/VersionType",
|
|
1637
|
+
"description": "The type discriminator for this object.",
|
|
1638
|
+
"ontology": "rdf:type"
|
|
1639
|
+
}
|
|
1640
|
+
},
|
|
1641
|
+
"required": [
|
|
1642
|
+
"@id",
|
|
1643
|
+
"siglum",
|
|
1644
|
+
"edits",
|
|
1645
|
+
"motivations",
|
|
1646
|
+
"@type"
|
|
1647
|
+
],
|
|
1648
|
+
"type": "object"
|
|
1649
|
+
},
|
|
1650
|
+
"VersionType": {
|
|
1651
|
+
"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.",
|
|
1652
|
+
"enum": [
|
|
1653
|
+
"edition",
|
|
1654
|
+
"unicum"
|
|
1655
|
+
],
|
|
1656
|
+
"type": "string"
|
|
1657
|
+
},
|
|
1658
|
+
"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.",
|
|
1660
|
+
"properties": {
|
|
1661
|
+
"from": {
|
|
1662
|
+
"description": "The start track number of the feature.",
|
|
1663
|
+
"type": "number"
|
|
1664
|
+
},
|
|
1665
|
+
"to": {
|
|
1666
|
+
"description": "The end track number, if the feature spans multiple tracks. If omitted, the feature occupies a single track.",
|
|
1667
|
+
"type": "number"
|
|
1668
|
+
},
|
|
1669
|
+
"unit": {
|
|
1670
|
+
"const": "track",
|
|
1671
|
+
"description": "The unit of measurement for horizontal positions. [ontology: crm:P91 has unit]",
|
|
1672
|
+
"type": "string"
|
|
1673
|
+
}
|
|
1674
|
+
},
|
|
1675
|
+
"required": [
|
|
1676
|
+
"unit",
|
|
1677
|
+
"from"
|
|
1678
|
+
],
|
|
1679
|
+
"type": "object"
|
|
1680
|
+
},
|
|
1681
|
+
"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.",
|
|
1683
|
+
"properties": {
|
|
1684
|
+
"condition": {
|
|
1685
|
+
"$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."
|
|
1687
|
+
},
|
|
1688
|
+
"depiction": {
|
|
1689
|
+
"description": "IIIF region pointing to a depiction of this feature in the scan. [ontology: crm:P62 is depicted by]",
|
|
1690
|
+
"type": "string"
|
|
1691
|
+
},
|
|
1692
|
+
"horizontal": {
|
|
1693
|
+
"$ref": "#/definitions/HorizontalSpan",
|
|
1694
|
+
"description": "Horizontal span of the feature on the roll. [ontology: crm:P43 has dimension]"
|
|
1695
|
+
},
|
|
1696
|
+
"method": {
|
|
1697
|
+
"$ref": "#/definitions/WritingMethod",
|
|
1698
|
+
"description": "The method by which this writing was produced (e.g. through print, handwriting, or stamping)."
|
|
1699
|
+
},
|
|
1700
|
+
"transcription": {
|
|
1701
|
+
"$ref": "#/definitions/ObjectAssumption%3Calias-731470504-73739-73887-731470504-0-217694%3Cdef-interface-src_Symbol.ts-3288-3548-src_Symbol.ts-0-3756400334313%2C%22carriers%22%3E%3E",
|
|
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."
|
|
1703
|
+
},
|
|
1704
|
+
"vertical": {
|
|
1705
|
+
"$ref": "#/definitions/VerticalSpan",
|
|
1706
|
+
"description": "Vertical span of the feature on the roll. [ontology: crm:P43 has dimension]"
|
|
1707
|
+
},
|
|
1708
|
+
"@id": {
|
|
1709
|
+
"description": "A unique identifier for this object.",
|
|
1710
|
+
"type": "string"
|
|
1711
|
+
},
|
|
1712
|
+
"@type": {
|
|
1713
|
+
"const": "Writing",
|
|
1714
|
+
"description": "The type discriminator for this object. [ontology: rdf:type]",
|
|
1715
|
+
"type": "string",
|
|
1716
|
+
"ontology": "rdf:type"
|
|
1717
|
+
}
|
|
1718
|
+
},
|
|
1719
|
+
"required": [
|
|
1720
|
+
"horizontal",
|
|
1721
|
+
"@id",
|
|
1722
|
+
"method",
|
|
1723
|
+
"transcription",
|
|
1724
|
+
"@type",
|
|
1725
|
+
"vertical"
|
|
1726
|
+
],
|
|
1727
|
+
"type": "object"
|
|
1728
|
+
},
|
|
1729
|
+
"WritingMethod": {
|
|
1730
|
+
"description": "The method by which a writing was produced on the roll: printed, handwritten, or stamped.",
|
|
1731
|
+
"enum": [
|
|
1732
|
+
"Print",
|
|
1733
|
+
"Handwriting",
|
|
1734
|
+
"Stamp"
|
|
1735
|
+
],
|
|
1736
|
+
"type": "string"
|
|
1737
|
+
}
|
|
1738
|
+
}
|
|
1739
|
+
}
|