rdf-vocab 3.1.2 → 3.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +69 -45
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +60 -40
- data/lib/rdf/vocab/acl.rb +104 -61
- data/lib/rdf/vocab/as.rb +556 -91
- data/lib/rdf/vocab/bf2.rb +1791 -475
- data/lib/rdf/vocab/bibframe.rb +1 -2
- data/lib/rdf/vocab/bibo.rb +616 -124
- data/lib/rdf/vocab/cc.rb +125 -48
- data/lib/rdf/vocab/cert.rb +68 -1
- data/lib/rdf/vocab/cnt.rb +79 -1
- data/lib/rdf/vocab/crm.rb +1543 -776
- data/lib/rdf/vocab/datacite.rb +1 -1
- data/lib/rdf/vocab/dbo.rb +10463 -1
- data/lib/rdf/vocab/dc.rb +485 -99
- data/lib/rdf/vocab/dc11.rb +93 -31
- data/lib/rdf/vocab/dcat.rb +236 -88
- data/lib/rdf/vocab/dcmitype.rb +63 -13
- data/lib/rdf/vocab/disco.rb +286 -59
- data/lib/rdf/vocab/doap.rb +175 -1
- data/lib/rdf/vocab/dwc.rb +941 -189
- data/lib/rdf/vocab/earl.rb +324 -0
- data/lib/rdf/vocab/ebucore.rb +7255 -2184
- data/lib/rdf/vocab/edm.rb +202 -76
- data/lib/rdf/vocab/exif.rb +650 -1
- data/lib/rdf/vocab/extensions.rb +257 -203
- data/lib/rdf/vocab/fcrepo4.rb +398 -22
- data/lib/rdf/vocab/foaf.rb +380 -76
- data/lib/rdf/vocab/geo.rb +47 -110
- data/lib/rdf/vocab/geojson.rb +82 -17
- data/lib/rdf/vocab/geonames.rb +1508 -1351
- data/lib/rdf/vocab/gr.rb +861 -565
- data/lib/rdf/vocab/gs1.rb +1597 -1
- data/lib/rdf/vocab/ht.rb +204 -41
- data/lib/rdf/vocab/hydra.rb +335 -60
- data/lib/rdf/vocab/iana.rb +301 -114
- data/lib/rdf/vocab/ical.rb +534 -121
- data/lib/rdf/vocab/identifiers.rb +459 -499
- data/lib/rdf/vocab/iiif.rb +161 -26
- data/lib/rdf/vocab/jsonld.rb +179 -53
- data/lib/rdf/vocab/ldp.rb +130 -1
- data/lib/rdf/vocab/lrmi.rb +85 -17
- data/lib/rdf/vocab/ma.rb +460 -80
- data/lib/rdf/vocab/mads.rb +610 -22
- data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
- data/lib/rdf/vocab/mo.rb +1115 -540
- data/lib/rdf/vocab/mods.rb +635 -124
- data/lib/rdf/vocab/nfo.rb +1 -1
- data/lib/rdf/vocab/oa.rb +343 -73
- data/lib/rdf/vocab/og.rb +100 -1
- data/lib/rdf/vocab/ogc.rb +42 -9
- data/lib/rdf/vocab/ore.rb +69 -14
- data/lib/rdf/vocab/org.rb +235 -47
- data/lib/rdf/vocab/pcdm.rb +58 -34
- data/lib/rdf/vocab/pplan.rb +21 -136
- data/lib/rdf/vocab/premis.rb +1171 -779
- data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
- data/lib/rdf/vocab/prov.rb +700 -107
- data/lib/rdf/vocab/ptr.rb +172 -37
- data/lib/rdf/vocab/rightsstatements.rb +17 -13
- data/lib/rdf/vocab/rsa.rb +30 -1
- data/lib/rdf/vocab/rss.rb +52 -11
- data/lib/rdf/vocab/schema.rb +14970 -3993
- data/lib/rdf/vocab/schemas.rb +27066 -0
- data/lib/rdf/vocab/sd.rb +372 -0
- data/lib/rdf/vocab/sh.rb +919 -184
- data/lib/rdf/vocab/sioc.rb +498 -98
- data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
- data/lib/rdf/vocab/sioctypes.rb +434 -0
- data/lib/rdf/vocab/skos.rb +160 -44
- data/lib/rdf/vocab/skosxl.rb +40 -11
- data/lib/rdf/vocab/v.rb +323 -37
- data/lib/rdf/vocab/vcard.rb +625 -119
- data/lib/rdf/vocab/vmd.rb +323 -37
- data/lib/rdf/vocab/void.rb +147 -27
- data/lib/rdf/vocab/vs.rb +23 -5
- data/lib/rdf/vocab/wdrs.rb +112 -23
- data/lib/rdf/vocab/wot.rb +96 -19
- data/lib/rdf/vocab/xhtml.rb +2 -1
- data/lib/rdf/vocab/xhv.rb +422 -201
- data/lib/rdf/vocab/xkos.rb +156 -7
- data/spec/extensions_spec.rb +68 -0
- data/spec/vocab_spec.rb +10 -0
- metadata +20 -11
- data/lib/rdf/vocab/sioct.rb +0 -277
data/lib/rdf/vocab/bf2.rb
CHANGED
@@ -5,13 +5,1329 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://id.loc.gov/ontologies/bibframe/>
|
8
|
+
# #
|
9
|
+
# # BIBFRAME vocabulary
|
10
|
+
# # @version 2.0.1
|
8
11
|
# class BF2 < RDF::StrictVocabulary
|
12
|
+
# # @return [RDF::Vocabulary::Term]
|
13
|
+
# attr_reader :AbbreviatedTitle
|
14
|
+
#
|
15
|
+
# # @return [RDF::Vocabulary::Term]
|
16
|
+
# attr_reader :AccessPolicy
|
17
|
+
#
|
18
|
+
# # @return [RDF::Vocabulary::Term]
|
19
|
+
# attr_reader :AcquisitionSource
|
20
|
+
#
|
21
|
+
# # @return [RDF::Vocabulary::Term]
|
22
|
+
# attr_reader :AdminMetadata
|
23
|
+
#
|
24
|
+
# # @return [RDF::Vocabulary::Term]
|
25
|
+
# attr_reader :Agent
|
26
|
+
#
|
27
|
+
# # @return [RDF::Vocabulary::Term]
|
28
|
+
# attr_reader :Ansi
|
29
|
+
#
|
30
|
+
# # @return [RDF::Vocabulary::Term]
|
31
|
+
# attr_reader :AppliedMaterial
|
32
|
+
#
|
33
|
+
# # @return [RDF::Vocabulary::Term]
|
34
|
+
# attr_reader :Archival
|
35
|
+
#
|
36
|
+
# # @return [RDF::Vocabulary::Term]
|
37
|
+
# attr_reader :Arrangement
|
38
|
+
#
|
39
|
+
# # @return [RDF::Vocabulary::Term]
|
40
|
+
# attr_reader :AspectRatio
|
41
|
+
#
|
42
|
+
# # @return [RDF::Vocabulary::Term]
|
43
|
+
# attr_reader :Audio
|
44
|
+
#
|
45
|
+
# # @return [RDF::Vocabulary::Term]
|
46
|
+
# attr_reader :AudioIssueNumber
|
47
|
+
#
|
48
|
+
# # @return [RDF::Vocabulary::Term]
|
49
|
+
# attr_reader :AudioTake
|
50
|
+
#
|
51
|
+
# # @return [RDF::Vocabulary::Term]
|
52
|
+
# attr_reader :Barcode
|
53
|
+
#
|
54
|
+
# # @return [RDF::Vocabulary::Term]
|
55
|
+
# attr_reader :BaseMaterial
|
56
|
+
#
|
57
|
+
# # @return [RDF::Vocabulary::Term]
|
58
|
+
# attr_reader :BookFormat
|
59
|
+
#
|
60
|
+
# # @return [RDF::Vocabulary::Term]
|
61
|
+
# attr_reader :BroadcastStandard
|
62
|
+
#
|
63
|
+
# # @return [RDF::Vocabulary::Term]
|
64
|
+
# attr_reader :Capture
|
65
|
+
#
|
66
|
+
# # @return [RDF::Vocabulary::Term]
|
67
|
+
# attr_reader :Carrier
|
68
|
+
#
|
69
|
+
# # @return [RDF::Vocabulary::Term]
|
70
|
+
# attr_reader :Cartographic
|
71
|
+
#
|
72
|
+
# # @return [RDF::Vocabulary::Term]
|
73
|
+
# attr_reader :CartographicDataType
|
74
|
+
#
|
75
|
+
# # @return [RDF::Vocabulary::Term]
|
76
|
+
# attr_reader :CartographicObjectType
|
77
|
+
#
|
78
|
+
# # @return [RDF::Vocabulary::Term]
|
79
|
+
# attr_reader :Cartography
|
80
|
+
#
|
81
|
+
# # @return [RDF::Vocabulary::Term]
|
82
|
+
# attr_reader :Chronology
|
83
|
+
#
|
84
|
+
# # @return [RDF::Vocabulary::Term]
|
85
|
+
# attr_reader :Classification
|
86
|
+
#
|
87
|
+
# # @return [RDF::Vocabulary::Term]
|
88
|
+
# attr_reader :ClassificationDdc
|
89
|
+
#
|
90
|
+
# # @return [RDF::Vocabulary::Term]
|
91
|
+
# attr_reader :ClassificationLcc
|
92
|
+
#
|
93
|
+
# # @return [RDF::Vocabulary::Term]
|
94
|
+
# attr_reader :ClassificationNlm
|
95
|
+
#
|
96
|
+
# # @return [RDF::Vocabulary::Term]
|
97
|
+
# attr_reader :ClassificationUdc
|
98
|
+
#
|
99
|
+
# # @return [RDF::Vocabulary::Term]
|
100
|
+
# attr_reader :Coden
|
101
|
+
#
|
102
|
+
# # @return [RDF::Vocabulary::Term]
|
103
|
+
# attr_reader :Collection
|
104
|
+
#
|
105
|
+
# # @return [RDF::Vocabulary::Term]
|
106
|
+
# attr_reader :CollectiveTitle
|
107
|
+
#
|
108
|
+
# # @return [RDF::Vocabulary::Term]
|
109
|
+
# attr_reader :ColorContent
|
110
|
+
#
|
111
|
+
# # @return [RDF::Vocabulary::Term]
|
112
|
+
# attr_reader :Content
|
113
|
+
#
|
114
|
+
# # @return [RDF::Vocabulary::Term]
|
115
|
+
# attr_reader :ContentAccessibility
|
116
|
+
#
|
117
|
+
# # @return [RDF::Vocabulary::Term]
|
118
|
+
# attr_reader :Contribution
|
119
|
+
#
|
120
|
+
# # @return [RDF::Vocabulary::Term]
|
121
|
+
# attr_reader :CopyrightNumber
|
122
|
+
#
|
123
|
+
# # @return [RDF::Vocabulary::Term]
|
124
|
+
# attr_reader :CopyrightRegistration
|
125
|
+
#
|
126
|
+
# # @return [RDF::Vocabulary::Term]
|
127
|
+
# attr_reader :CoverArt
|
128
|
+
#
|
129
|
+
# # @return [RDF::Vocabulary::Term]
|
130
|
+
# attr_reader :Dataset
|
131
|
+
#
|
132
|
+
# # @return [RDF::Vocabulary::Term]
|
133
|
+
# attr_reader :DescriptionAuthentication
|
134
|
+
#
|
135
|
+
# # @return [RDF::Vocabulary::Term]
|
136
|
+
# attr_reader :DescriptionConventions
|
137
|
+
#
|
138
|
+
# # @return [RDF::Vocabulary::Term]
|
139
|
+
# attr_reader :DigitalCharacteristic
|
140
|
+
#
|
141
|
+
# # @return [RDF::Vocabulary::Term]
|
142
|
+
# attr_reader :Dissertation
|
143
|
+
#
|
144
|
+
# # @return [RDF::Vocabulary::Term]
|
145
|
+
# attr_reader :DissertationIdentifier
|
146
|
+
#
|
147
|
+
# # @return [RDF::Vocabulary::Term]
|
148
|
+
# attr_reader :Distribution
|
149
|
+
#
|
150
|
+
# # @return [RDF::Vocabulary::Term]
|
151
|
+
# attr_reader :Doi
|
152
|
+
#
|
153
|
+
# # @return [RDF::Vocabulary::Term]
|
154
|
+
# attr_reader :Ean
|
155
|
+
#
|
156
|
+
# # @return [RDF::Vocabulary::Term]
|
157
|
+
# attr_reader :Electronic
|
158
|
+
#
|
159
|
+
# # @return [RDF::Vocabulary::Term]
|
160
|
+
# attr_reader :Emulsion
|
161
|
+
#
|
162
|
+
# # @return [RDF::Vocabulary::Term]
|
163
|
+
# attr_reader :EncodedBitrate
|
164
|
+
#
|
165
|
+
# # @return [RDF::Vocabulary::Term]
|
166
|
+
# attr_reader :EncodingFormat
|
167
|
+
#
|
168
|
+
# # @return [RDF::Vocabulary::Term]
|
169
|
+
# attr_reader :Enumeration
|
170
|
+
#
|
171
|
+
# # @return [RDF::Vocabulary::Term]
|
172
|
+
# attr_reader :EnumerationAndChronology
|
173
|
+
#
|
174
|
+
# # @return [RDF::Vocabulary::Term]
|
175
|
+
# attr_reader :Event
|
176
|
+
#
|
177
|
+
# # @return [RDF::Vocabulary::Term]
|
178
|
+
# attr_reader :Extent
|
179
|
+
#
|
180
|
+
# # @return [RDF::Vocabulary::Term]
|
181
|
+
# attr_reader :Family
|
182
|
+
#
|
183
|
+
# # @return [RDF::Vocabulary::Term]
|
184
|
+
# attr_reader :FileSize
|
185
|
+
#
|
186
|
+
# # @return [RDF::Vocabulary::Term]
|
187
|
+
# attr_reader :FileType
|
188
|
+
#
|
189
|
+
# # @return [RDF::Vocabulary::Term]
|
190
|
+
# attr_reader :Fingerprint
|
191
|
+
#
|
192
|
+
# # @return [RDF::Vocabulary::Term]
|
193
|
+
# attr_reader :FontSize
|
194
|
+
#
|
195
|
+
# # @return [RDF::Vocabulary::Term]
|
196
|
+
# attr_reader :Frequency
|
197
|
+
#
|
198
|
+
# # @return [RDF::Vocabulary::Term]
|
199
|
+
# attr_reader :Generation
|
200
|
+
#
|
201
|
+
# # @return [RDF::Vocabulary::Term]
|
202
|
+
# attr_reader :GenerationProcess
|
203
|
+
#
|
204
|
+
# # @return [RDF::Vocabulary::Term]
|
205
|
+
# attr_reader :GenreForm
|
206
|
+
#
|
207
|
+
# # @return [RDF::Vocabulary::Term]
|
208
|
+
# attr_reader :GeographicCoverage
|
209
|
+
#
|
210
|
+
# # @return [RDF::Vocabulary::Term]
|
211
|
+
# attr_reader :GrooveCharacteristic
|
212
|
+
#
|
213
|
+
# # @return [RDF::Vocabulary::Term]
|
214
|
+
# attr_reader :Gtin14Number
|
215
|
+
#
|
216
|
+
# # @return [RDF::Vocabulary::Term]
|
217
|
+
# attr_reader :Hdl
|
218
|
+
#
|
219
|
+
# # @return [RDF::Vocabulary::Term]
|
220
|
+
# attr_reader :Identifier
|
221
|
+
#
|
222
|
+
# # @return [RDF::Vocabulary::Term]
|
223
|
+
# attr_reader :Illustration
|
224
|
+
#
|
225
|
+
# # @return [RDF::Vocabulary::Term]
|
226
|
+
# attr_reader :ImmediateAcquisition
|
227
|
+
#
|
228
|
+
# # @return [RDF::Vocabulary::Term]
|
229
|
+
# attr_reader :Instance
|
230
|
+
#
|
231
|
+
# # @return [RDF::Vocabulary::Term]
|
232
|
+
# attr_reader :IntendedAudience
|
233
|
+
#
|
234
|
+
# # @return [RDF::Vocabulary::Term]
|
235
|
+
# attr_reader :Isan
|
236
|
+
#
|
237
|
+
# # @return [RDF::Vocabulary::Term]
|
238
|
+
# attr_reader :Isbn
|
239
|
+
#
|
240
|
+
# # @return [RDF::Vocabulary::Term]
|
241
|
+
# attr_reader :Ismn
|
242
|
+
#
|
243
|
+
# # @return [RDF::Vocabulary::Term]
|
244
|
+
# attr_reader :Isni
|
245
|
+
#
|
246
|
+
# # @return [RDF::Vocabulary::Term]
|
247
|
+
# attr_reader :Iso
|
248
|
+
#
|
249
|
+
# # @return [RDF::Vocabulary::Term]
|
250
|
+
# attr_reader :Isrc
|
251
|
+
#
|
252
|
+
# # @return [RDF::Vocabulary::Term]
|
253
|
+
# attr_reader :Issn
|
254
|
+
#
|
255
|
+
# # @return [RDF::Vocabulary::Term]
|
256
|
+
# attr_reader :IssnL
|
257
|
+
#
|
258
|
+
# # @return [RDF::Vocabulary::Term]
|
259
|
+
# attr_reader :Issuance
|
260
|
+
#
|
261
|
+
# # @return [RDF::Vocabulary::Term]
|
262
|
+
# attr_reader :Istc
|
263
|
+
#
|
264
|
+
# # @return [RDF::Vocabulary::Term]
|
265
|
+
# attr_reader :Iswc
|
266
|
+
#
|
267
|
+
# # @return [RDF::Vocabulary::Term]
|
268
|
+
# attr_reader :Item
|
269
|
+
#
|
270
|
+
# # @return [RDF::Vocabulary::Term]
|
271
|
+
# attr_reader :Jurisdiction
|
272
|
+
#
|
273
|
+
# # @return [RDF::Vocabulary::Term]
|
274
|
+
# attr_reader :KeyTitle
|
275
|
+
#
|
276
|
+
# # @return [RDF::Vocabulary::Term]
|
277
|
+
# attr_reader :Language
|
278
|
+
#
|
279
|
+
# # @return [RDF::Vocabulary::Term]
|
280
|
+
# attr_reader :Layout
|
281
|
+
#
|
282
|
+
# # @return [RDF::Vocabulary::Term]
|
283
|
+
# attr_reader :LcOverseasAcq
|
284
|
+
#
|
285
|
+
# # @return [RDF::Vocabulary::Term]
|
286
|
+
# attr_reader :Lccn
|
287
|
+
#
|
288
|
+
# # @return [RDF::Vocabulary::Term]
|
289
|
+
# attr_reader :Local
|
290
|
+
#
|
291
|
+
# # @return [RDF::Vocabulary::Term]
|
292
|
+
# attr_reader :Manufacture
|
293
|
+
#
|
294
|
+
# # @return [RDF::Vocabulary::Term]
|
295
|
+
# attr_reader :Manuscript
|
296
|
+
#
|
297
|
+
# # @return [RDF::Vocabulary::Term]
|
298
|
+
# attr_reader :MatrixNumber
|
299
|
+
#
|
300
|
+
# # @return [RDF::Vocabulary::Term]
|
301
|
+
# attr_reader :Media
|
302
|
+
#
|
303
|
+
# # @return [RDF::Vocabulary::Term]
|
304
|
+
# attr_reader :Meeting
|
305
|
+
#
|
306
|
+
# # @return [RDF::Vocabulary::Term]
|
307
|
+
# attr_reader :MixedMaterial
|
308
|
+
#
|
309
|
+
# # @return [RDF::Vocabulary::Term]
|
310
|
+
# attr_reader :Mount
|
311
|
+
#
|
312
|
+
# # @return [RDF::Vocabulary::Term]
|
313
|
+
# attr_reader :MovementNotation
|
314
|
+
#
|
315
|
+
# # @return [RDF::Vocabulary::Term]
|
316
|
+
# attr_reader :MovingImage
|
317
|
+
#
|
318
|
+
# # @return [RDF::Vocabulary::Term]
|
319
|
+
# attr_reader :Multimedia
|
320
|
+
#
|
321
|
+
# # @return [RDF::Vocabulary::Term]
|
322
|
+
# attr_reader :MusicDistributorNumber
|
323
|
+
#
|
324
|
+
# # @return [RDF::Vocabulary::Term]
|
325
|
+
# attr_reader :MusicEnsemble
|
326
|
+
#
|
327
|
+
# # @return [RDF::Vocabulary::Term]
|
328
|
+
# attr_reader :MusicFormat
|
329
|
+
#
|
330
|
+
# # @return [RDF::Vocabulary::Term]
|
331
|
+
# attr_reader :MusicInstrument
|
332
|
+
#
|
333
|
+
# # @return [RDF::Vocabulary::Term]
|
334
|
+
# attr_reader :MusicMedium
|
335
|
+
#
|
336
|
+
# # @return [RDF::Vocabulary::Term]
|
337
|
+
# attr_reader :MusicNotation
|
338
|
+
#
|
339
|
+
# # @return [RDF::Vocabulary::Term]
|
340
|
+
# attr_reader :MusicPlate
|
341
|
+
#
|
342
|
+
# # @return [RDF::Vocabulary::Term]
|
343
|
+
# attr_reader :MusicPublisherNumber
|
344
|
+
#
|
345
|
+
# # @return [RDF::Vocabulary::Term]
|
346
|
+
# attr_reader :MusicVoice
|
347
|
+
#
|
348
|
+
# # @return [RDF::Vocabulary::Term]
|
349
|
+
# attr_reader :Nbn
|
350
|
+
#
|
351
|
+
# # @return [RDF::Vocabulary::Term]
|
352
|
+
# attr_reader :NotatedMovement
|
353
|
+
#
|
354
|
+
# # @return [RDF::Vocabulary::Term]
|
355
|
+
# attr_reader :NotatedMusic
|
356
|
+
#
|
357
|
+
# # @return [RDF::Vocabulary::Term]
|
358
|
+
# attr_reader :Notation
|
359
|
+
#
|
360
|
+
# # @return [RDF::Vocabulary::Term]
|
361
|
+
# attr_reader :Note
|
362
|
+
#
|
363
|
+
# # @return [RDF::Vocabulary::Term]
|
364
|
+
# attr_reader :Object
|
365
|
+
#
|
366
|
+
# # @return [RDF::Vocabulary::Term]
|
367
|
+
# attr_reader :ObjectCount
|
368
|
+
#
|
369
|
+
# # @return [RDF::Vocabulary::Term]
|
370
|
+
# attr_reader :Organization
|
371
|
+
#
|
372
|
+
# # @return [RDF::Vocabulary::Term]
|
373
|
+
# attr_reader :ParallelTitle
|
374
|
+
#
|
375
|
+
# # @return [RDF::Vocabulary::Term]
|
376
|
+
# attr_reader :Person
|
377
|
+
#
|
378
|
+
# # @return [RDF::Vocabulary::Term]
|
379
|
+
# attr_reader :Place
|
380
|
+
#
|
381
|
+
# # @return [RDF::Vocabulary::Term]
|
382
|
+
# attr_reader :PlaybackChannels
|
383
|
+
#
|
384
|
+
# # @return [RDF::Vocabulary::Term]
|
385
|
+
# attr_reader :PlaybackCharacteristic
|
386
|
+
#
|
387
|
+
# # @return [RDF::Vocabulary::Term]
|
388
|
+
# attr_reader :PlayingSpeed
|
389
|
+
#
|
390
|
+
# # @return [RDF::Vocabulary::Term]
|
391
|
+
# attr_reader :Polarity
|
392
|
+
#
|
393
|
+
# # @return [RDF::Vocabulary::Term]
|
394
|
+
# attr_reader :PostalRegistration
|
395
|
+
#
|
396
|
+
# # @return [RDF::Vocabulary::Term]
|
397
|
+
# attr_reader :PresentationFormat
|
398
|
+
#
|
399
|
+
# # @return [RDF::Vocabulary::Term]
|
400
|
+
# attr_reader :Print
|
401
|
+
#
|
402
|
+
# # @return [RDF::Vocabulary::Term]
|
403
|
+
# attr_reader :Production
|
404
|
+
#
|
405
|
+
# # @return [RDF::Vocabulary::Term]
|
406
|
+
# attr_reader :ProductionMethod
|
407
|
+
#
|
408
|
+
# # @return [RDF::Vocabulary::Term]
|
409
|
+
# attr_reader :Projection
|
410
|
+
#
|
411
|
+
# # @return [RDF::Vocabulary::Term]
|
412
|
+
# attr_reader :ProjectionCharacteristic
|
413
|
+
#
|
414
|
+
# # @return [RDF::Vocabulary::Term]
|
415
|
+
# attr_reader :ProjectionSpeed
|
416
|
+
#
|
417
|
+
# # @return [RDF::Vocabulary::Term]
|
418
|
+
# attr_reader :ProvisionActivity
|
419
|
+
#
|
420
|
+
# # @return [RDF::Vocabulary::Term]
|
421
|
+
# attr_reader :Publication
|
422
|
+
#
|
423
|
+
# # @return [RDF::Vocabulary::Term]
|
424
|
+
# attr_reader :PublisherNumber
|
425
|
+
#
|
426
|
+
# # @return [RDF::Vocabulary::Term]
|
427
|
+
# attr_reader :RecordingMedium
|
428
|
+
#
|
429
|
+
# # @return [RDF::Vocabulary::Term]
|
430
|
+
# attr_reader :RecordingMethod
|
431
|
+
#
|
432
|
+
# # @return [RDF::Vocabulary::Term]
|
433
|
+
# attr_reader :ReductionRatio
|
434
|
+
#
|
435
|
+
# # @return [RDF::Vocabulary::Term]
|
436
|
+
# attr_reader :RegionalEncoding
|
437
|
+
#
|
438
|
+
# # @return [RDF::Vocabulary::Term]
|
439
|
+
# attr_reader :ReportNumber
|
440
|
+
#
|
441
|
+
# # @return [RDF::Vocabulary::Term]
|
442
|
+
# attr_reader :Resolution
|
443
|
+
#
|
444
|
+
# # @return [RDF::Vocabulary::Term]
|
445
|
+
# attr_reader :RetentionPolicy
|
446
|
+
#
|
447
|
+
# # @return [RDF::Vocabulary::Term]
|
448
|
+
# attr_reader :Review
|
449
|
+
#
|
450
|
+
# # @return [RDF::Vocabulary::Term]
|
451
|
+
# attr_reader :Role
|
452
|
+
#
|
453
|
+
# # @return [RDF::Vocabulary::Term]
|
454
|
+
# attr_reader :Scale
|
455
|
+
#
|
456
|
+
# # @return [RDF::Vocabulary::Term]
|
457
|
+
# attr_reader :Script
|
458
|
+
#
|
459
|
+
# # @return [RDF::Vocabulary::Term]
|
460
|
+
# attr_reader :ShelfMark
|
461
|
+
#
|
462
|
+
# # @return [RDF::Vocabulary::Term]
|
463
|
+
# attr_reader :ShelfMarkDdc
|
464
|
+
#
|
465
|
+
# # @return [RDF::Vocabulary::Term]
|
466
|
+
# attr_reader :ShelfMarkLcc
|
467
|
+
#
|
468
|
+
# # @return [RDF::Vocabulary::Term]
|
469
|
+
# attr_reader :ShelfMarkNlm
|
470
|
+
#
|
471
|
+
# # @return [RDF::Vocabulary::Term]
|
472
|
+
# attr_reader :ShelfMarkUdc
|
473
|
+
#
|
474
|
+
# # @return [RDF::Vocabulary::Term]
|
475
|
+
# attr_reader :Sici
|
476
|
+
#
|
477
|
+
# # @return [RDF::Vocabulary::Term]
|
478
|
+
# attr_reader :SoundCharacteristic
|
479
|
+
#
|
480
|
+
# # @return [RDF::Vocabulary::Term]
|
481
|
+
# attr_reader :SoundContent
|
482
|
+
#
|
483
|
+
# # @return [RDF::Vocabulary::Term]
|
484
|
+
# attr_reader :Source
|
485
|
+
#
|
486
|
+
# # @return [RDF::Vocabulary::Term]
|
487
|
+
# attr_reader :Status
|
488
|
+
#
|
489
|
+
# # @return [RDF::Vocabulary::Term]
|
490
|
+
# attr_reader :StillImage
|
491
|
+
#
|
492
|
+
# # @return [RDF::Vocabulary::Term]
|
493
|
+
# attr_reader :StockNumber
|
494
|
+
#
|
495
|
+
# # @return [RDF::Vocabulary::Term]
|
496
|
+
# attr_reader :Strn
|
497
|
+
#
|
498
|
+
# # @return [RDF::Vocabulary::Term]
|
499
|
+
# attr_reader :StudyNumber
|
500
|
+
#
|
501
|
+
# # @return [RDF::Vocabulary::Term]
|
502
|
+
# attr_reader :Sublocation
|
503
|
+
#
|
504
|
+
# # @return [RDF::Vocabulary::Term]
|
505
|
+
# attr_reader :Summary
|
506
|
+
#
|
507
|
+
# # @return [RDF::Vocabulary::Term]
|
508
|
+
# attr_reader :SupplementaryContent
|
509
|
+
#
|
510
|
+
# # @return [RDF::Vocabulary::Term]
|
511
|
+
# attr_reader :SystemRequirement
|
512
|
+
#
|
513
|
+
# # @return [RDF::Vocabulary::Term]
|
514
|
+
# attr_reader :TableOfContents
|
515
|
+
#
|
516
|
+
# # @return [RDF::Vocabulary::Term]
|
517
|
+
# attr_reader :Tactile
|
518
|
+
#
|
519
|
+
# # @return [RDF::Vocabulary::Term]
|
520
|
+
# attr_reader :TactileNotation
|
521
|
+
#
|
522
|
+
# # @return [RDF::Vocabulary::Term]
|
523
|
+
# attr_reader :TapeConfig
|
524
|
+
#
|
525
|
+
# # @return [RDF::Vocabulary::Term]
|
526
|
+
# attr_reader :Temporal
|
527
|
+
#
|
528
|
+
# # @return [RDF::Vocabulary::Term]
|
529
|
+
# attr_reader :Text
|
530
|
+
#
|
531
|
+
# # @return [RDF::Vocabulary::Term]
|
532
|
+
# attr_reader :Title
|
533
|
+
#
|
534
|
+
# # @return [RDF::Vocabulary::Term]
|
535
|
+
# attr_reader :Topic
|
536
|
+
#
|
537
|
+
# # @return [RDF::Vocabulary::Term]
|
538
|
+
# attr_reader :TrackConfig
|
539
|
+
#
|
540
|
+
# # @return [RDF::Vocabulary::Term]
|
541
|
+
# attr_reader :Unit
|
542
|
+
#
|
543
|
+
# # @return [RDF::Vocabulary::Term]
|
544
|
+
# attr_reader :Upc
|
545
|
+
#
|
546
|
+
# # @return [RDF::Vocabulary::Term]
|
547
|
+
# attr_reader :Urn
|
548
|
+
#
|
549
|
+
# # @return [RDF::Vocabulary::Term]
|
550
|
+
# attr_reader :UsageAndAccessPolicy
|
551
|
+
#
|
552
|
+
# # @return [RDF::Vocabulary::Term]
|
553
|
+
# attr_reader :UsePolicy
|
554
|
+
#
|
555
|
+
# # @return [RDF::Vocabulary::Term]
|
556
|
+
# attr_reader :VariantTitle
|
557
|
+
#
|
558
|
+
# # @return [RDF::Vocabulary::Term]
|
559
|
+
# attr_reader :VideoCharacteristic
|
560
|
+
#
|
561
|
+
# # @return [RDF::Vocabulary::Term]
|
562
|
+
# attr_reader :VideoFormat
|
563
|
+
#
|
564
|
+
# # @return [RDF::Vocabulary::Term]
|
565
|
+
# attr_reader :VideoRecordingNumber
|
566
|
+
#
|
567
|
+
# # @return [RDF::Vocabulary::Term]
|
568
|
+
# attr_reader :Work
|
569
|
+
#
|
570
|
+
# # Expected value Work or Instance
|
571
|
+
# #
|
572
|
+
# # Used with Work or Instance
|
573
|
+
# # @return [RDF::Vocabulary::Term]
|
574
|
+
# attr_reader :absorbed
|
575
|
+
#
|
576
|
+
# # Expected value Work or Instance
|
577
|
+
# #
|
578
|
+
# # Used with Work or Instance
|
579
|
+
# # @return [RDF::Vocabulary::Term]
|
580
|
+
# attr_reader :absorbedBy
|
581
|
+
#
|
582
|
+
# # Expected value Work, Instance or Item
|
583
|
+
# #
|
584
|
+
# # Used with Work, Instance or Item
|
585
|
+
# # @return [RDF::Vocabulary::Term]
|
586
|
+
# attr_reader :accompaniedBy
|
587
|
+
#
|
588
|
+
# # Expected value Work, Instance or Item
|
589
|
+
# #
|
590
|
+
# # Used with Work, Instance or Item
|
591
|
+
# # @return [RDF::Vocabulary::Term]
|
592
|
+
# attr_reader :accompanies
|
593
|
+
#
|
594
|
+
# # Used with Work or Instance
|
595
|
+
# # @return [RDF::Vocabulary::Term]
|
596
|
+
# attr_reader :acquisitionSource
|
597
|
+
#
|
598
|
+
# # Used with Work or Instance
|
599
|
+
# # @return [RDF::Vocabulary::Term]
|
600
|
+
# attr_reader :acquisitionTerms
|
601
|
+
#
|
602
|
+
# # Used with Unspecified
|
603
|
+
# # @return [RDF::Vocabulary::Term]
|
604
|
+
# attr_reader :adminMetadata
|
605
|
+
#
|
606
|
+
# # Used with Unspecified
|
607
|
+
# # @return [RDF::Vocabulary::Term]
|
608
|
+
# attr_reader :agent
|
609
|
+
#
|
610
|
+
# # @return [RDF::Vocabulary::Term]
|
611
|
+
# attr_reader :appliedMaterial
|
612
|
+
#
|
613
|
+
# # Used with Work or Instance
|
614
|
+
# # @return [RDF::Vocabulary::Term]
|
615
|
+
# attr_reader :arrangement
|
616
|
+
#
|
617
|
+
# # @return [RDF::Vocabulary::Term]
|
618
|
+
# attr_reader :ascensionAndDeclination
|
619
|
+
#
|
620
|
+
# # Used with Work or Instance
|
621
|
+
# # @return [RDF::Vocabulary::Term]
|
622
|
+
# attr_reader :aspectRatio
|
623
|
+
#
|
624
|
+
# # @return [RDF::Vocabulary::Term]
|
625
|
+
# attr_reader :assigner
|
626
|
+
#
|
627
|
+
# # Used with Work or Instance
|
628
|
+
# # @return [RDF::Vocabulary::Term]
|
629
|
+
# attr_reader :awards
|
630
|
+
#
|
631
|
+
# # @return [RDF::Vocabulary::Term]
|
632
|
+
# attr_reader :baseMaterial
|
633
|
+
#
|
634
|
+
# # @return [RDF::Vocabulary::Term]
|
635
|
+
# attr_reader :bookFormat
|
636
|
+
#
|
637
|
+
# # Used with Work or Instance
|
638
|
+
# # @return [RDF::Vocabulary::Term]
|
639
|
+
# attr_reader :capture
|
640
|
+
#
|
641
|
+
# # @return [RDF::Vocabulary::Term]
|
642
|
+
# attr_reader :carrier
|
643
|
+
#
|
644
|
+
# # Used with Work or Instance
|
645
|
+
# # @return [RDF::Vocabulary::Term]
|
646
|
+
# attr_reader :cartographicAttributes
|
647
|
+
#
|
648
|
+
# # @return [RDF::Vocabulary::Term]
|
649
|
+
# attr_reader :changeDate
|
650
|
+
#
|
651
|
+
# # Used with Work, Instance or Item
|
652
|
+
# # @return [RDF::Vocabulary::Term]
|
653
|
+
# attr_reader :classification
|
654
|
+
#
|
655
|
+
# # @return [RDF::Vocabulary::Term]
|
656
|
+
# attr_reader :classificationPortion
|
657
|
+
#
|
658
|
+
# # Used with Unspecified
|
659
|
+
# # @return [RDF::Vocabulary::Term]
|
660
|
+
# attr_reader :code
|
661
|
+
#
|
662
|
+
# # Used with Work or Instance
|
663
|
+
# # @return [RDF::Vocabulary::Term]
|
664
|
+
# attr_reader :colorContent
|
665
|
+
#
|
666
|
+
# # @return [RDF::Vocabulary::Term]
|
667
|
+
# attr_reader :content
|
668
|
+
#
|
669
|
+
# # Used with Work or Instance
|
670
|
+
# # @return [RDF::Vocabulary::Term]
|
671
|
+
# attr_reader :contentAccessibility
|
672
|
+
#
|
673
|
+
# # Expected value Work or Instance
|
674
|
+
# #
|
675
|
+
# # Used with Work or Instance
|
676
|
+
# # @return [RDF::Vocabulary::Term]
|
677
|
+
# attr_reader :continuedBy
|
678
|
+
#
|
679
|
+
# # Expected value Work or Instance
|
680
|
+
# #
|
681
|
+
# # Used with Work or Instance
|
682
|
+
# # @return [RDF::Vocabulary::Term]
|
683
|
+
# attr_reader :continuedInPartBy
|
684
|
+
#
|
685
|
+
# # Expected value Work or Instance
|
686
|
+
# #
|
687
|
+
# # Used with Work or Instance
|
688
|
+
# # @return [RDF::Vocabulary::Term]
|
689
|
+
# attr_reader :continues
|
690
|
+
#
|
691
|
+
# # Expected value Work or Instance
|
692
|
+
# #
|
693
|
+
# # Used with Work or Instance
|
694
|
+
# # @return [RDF::Vocabulary::Term]
|
695
|
+
# attr_reader :continuesInPart
|
696
|
+
#
|
697
|
+
# # Used with Work, Instance or Item
|
698
|
+
# # @return [RDF::Vocabulary::Term]
|
699
|
+
# attr_reader :contribution
|
700
|
+
#
|
701
|
+
# # @return [RDF::Vocabulary::Term]
|
702
|
+
# attr_reader :coordinates
|
703
|
+
#
|
704
|
+
# # Used with Work or Instance
|
705
|
+
# # @return [RDF::Vocabulary::Term]
|
706
|
+
# attr_reader :copyrightDate
|
707
|
+
#
|
708
|
+
# # Used with Work or Instance
|
709
|
+
# # @return [RDF::Vocabulary::Term]
|
710
|
+
# attr_reader :copyrightRegistration
|
711
|
+
#
|
712
|
+
# # Used with Unspecified
|
713
|
+
# # @return [RDF::Vocabulary::Term]
|
714
|
+
# attr_reader :count
|
715
|
+
#
|
716
|
+
# # Used with Work or Instance
|
717
|
+
# # @return [RDF::Vocabulary::Term]
|
718
|
+
# attr_reader :coverArt
|
719
|
+
#
|
720
|
+
# # @return [RDF::Vocabulary::Term]
|
721
|
+
# attr_reader :creationDate
|
722
|
+
#
|
723
|
+
# # Used with Work or Instance
|
724
|
+
# # @return [RDF::Vocabulary::Term]
|
725
|
+
# attr_reader :credits
|
726
|
+
#
|
727
|
+
# # Used with Work, Instance or Item
|
728
|
+
# # @return [RDF::Vocabulary::Term]
|
729
|
+
# attr_reader :custodialHistory
|
730
|
+
#
|
731
|
+
# # Expected value Work or Instance
|
732
|
+
# #
|
733
|
+
# # Used with Work or Instance
|
734
|
+
# # @return [RDF::Vocabulary::Term]
|
735
|
+
# attr_reader :dataSource
|
736
|
+
#
|
737
|
+
# # Used with Unspecified
|
738
|
+
# # @return [RDF::Vocabulary::Term]
|
739
|
+
# attr_reader :date
|
740
|
+
#
|
741
|
+
# # @return [RDF::Vocabulary::Term]
|
742
|
+
# attr_reader :degree
|
743
|
+
#
|
744
|
+
# # Expected value Work or Instance
|
745
|
+
# #
|
746
|
+
# # Used with Work or Instance
|
747
|
+
# # @return [RDF::Vocabulary::Term]
|
748
|
+
# attr_reader :derivativeOf
|
749
|
+
#
|
750
|
+
# # @return [RDF::Vocabulary::Term]
|
751
|
+
# attr_reader :derivedFrom
|
752
|
+
#
|
753
|
+
# # @return [RDF::Vocabulary::Term]
|
754
|
+
# attr_reader :descriptionAuthentication
|
755
|
+
#
|
756
|
+
# # @return [RDF::Vocabulary::Term]
|
757
|
+
# attr_reader :descriptionConventions
|
758
|
+
#
|
759
|
+
# # @return [RDF::Vocabulary::Term]
|
760
|
+
# attr_reader :descriptionLanguage
|
761
|
+
#
|
762
|
+
# # @return [RDF::Vocabulary::Term]
|
763
|
+
# attr_reader :descriptionModifier
|
764
|
+
#
|
765
|
+
# # @return [RDF::Vocabulary::Term]
|
766
|
+
# attr_reader :digitalCharacteristic
|
767
|
+
#
|
768
|
+
# # @return [RDF::Vocabulary::Term]
|
769
|
+
# attr_reader :dimensions
|
770
|
+
#
|
771
|
+
# # Used with Work or Instance
|
772
|
+
# # @return [RDF::Vocabulary::Term]
|
773
|
+
# attr_reader :dissertation
|
774
|
+
#
|
775
|
+
# # Used with Work or Instance
|
776
|
+
# # @return [RDF::Vocabulary::Term]
|
777
|
+
# attr_reader :duration
|
778
|
+
#
|
779
|
+
# # @return [RDF::Vocabulary::Term]
|
780
|
+
# attr_reader :edition
|
781
|
+
#
|
782
|
+
# # @return [RDF::Vocabulary::Term]
|
783
|
+
# attr_reader :editionEnumeration
|
784
|
+
#
|
785
|
+
# # @return [RDF::Vocabulary::Term]
|
786
|
+
# attr_reader :editionStatement
|
787
|
+
#
|
788
|
+
# # @return [RDF::Vocabulary::Term]
|
789
|
+
# attr_reader :electronicLocator
|
790
|
+
#
|
791
|
+
# # @return [RDF::Vocabulary::Term]
|
792
|
+
# attr_reader :emulsion
|
793
|
+
#
|
794
|
+
# # @return [RDF::Vocabulary::Term]
|
795
|
+
# attr_reader :ensemble
|
796
|
+
#
|
797
|
+
# # @return [RDF::Vocabulary::Term]
|
798
|
+
# attr_reader :ensembleType
|
799
|
+
#
|
800
|
+
# # @return [RDF::Vocabulary::Term]
|
801
|
+
# attr_reader :enumerationAndChronology
|
802
|
+
#
|
803
|
+
# # @return [RDF::Vocabulary::Term]
|
804
|
+
# attr_reader :equinox
|
805
|
+
#
|
806
|
+
# # @return [RDF::Vocabulary::Term]
|
807
|
+
# attr_reader :eventContent
|
808
|
+
#
|
809
|
+
# # @return [RDF::Vocabulary::Term]
|
810
|
+
# attr_reader :eventContentOf
|
811
|
+
#
|
812
|
+
# # @return [RDF::Vocabulary::Term]
|
813
|
+
# attr_reader :exclusionGRing
|
814
|
+
#
|
815
|
+
# # @return [RDF::Vocabulary::Term]
|
816
|
+
# attr_reader :expressionOf
|
817
|
+
#
|
818
|
+
# # @return [RDF::Vocabulary::Term]
|
819
|
+
# attr_reader :extent
|
820
|
+
#
|
821
|
+
# # Expected value Work or Instance
|
822
|
+
# #
|
823
|
+
# # Used with Work or Instance
|
824
|
+
# # @return [RDF::Vocabulary::Term]
|
825
|
+
# attr_reader :findingAid
|
826
|
+
#
|
827
|
+
# # Expected value Work or Instance
|
828
|
+
# #
|
829
|
+
# # Used with Work or Instance
|
830
|
+
# # @return [RDF::Vocabulary::Term]
|
831
|
+
# attr_reader :findingAidOf
|
832
|
+
#
|
833
|
+
# # Used with Work or Instance
|
834
|
+
# # @return [RDF::Vocabulary::Term]
|
835
|
+
# attr_reader :firstIssue
|
836
|
+
#
|
837
|
+
# # @return [RDF::Vocabulary::Term]
|
838
|
+
# attr_reader :fontSize
|
839
|
+
#
|
840
|
+
# # Used with Work or Instance
|
841
|
+
# # @return [RDF::Vocabulary::Term]
|
842
|
+
# attr_reader :frequency
|
843
|
+
#
|
844
|
+
# # @return [RDF::Vocabulary::Term]
|
845
|
+
# attr_reader :generation
|
846
|
+
#
|
847
|
+
# # @return [RDF::Vocabulary::Term]
|
848
|
+
# attr_reader :generationDate
|
849
|
+
#
|
850
|
+
# # @return [RDF::Vocabulary::Term]
|
851
|
+
# attr_reader :generationProcess
|
852
|
+
#
|
853
|
+
# # Used with Work, Instance or Item
|
854
|
+
# # @return [RDF::Vocabulary::Term]
|
855
|
+
# attr_reader :genreForm
|
856
|
+
#
|
857
|
+
# # @return [RDF::Vocabulary::Term]
|
858
|
+
# attr_reader :geographicCoverage
|
859
|
+
#
|
860
|
+
# # @return [RDF::Vocabulary::Term]
|
861
|
+
# attr_reader :grantingInstitution
|
862
|
+
#
|
863
|
+
# # Expected value Work or Instance
|
864
|
+
# #
|
865
|
+
# # Used with Work or Instance
|
866
|
+
# # @return [RDF::Vocabulary::Term]
|
867
|
+
# attr_reader :hasDerivative
|
868
|
+
#
|
869
|
+
# # Expected value Work, Instance or Item
|
870
|
+
# #
|
871
|
+
# # Used with Work, Instance or Item
|
872
|
+
# # @return [RDF::Vocabulary::Term]
|
873
|
+
# attr_reader :hasEquivalent
|
874
|
+
#
|
875
|
+
# # @return [RDF::Vocabulary::Term]
|
876
|
+
# attr_reader :hasExpression
|
877
|
+
#
|
878
|
+
# # @return [RDF::Vocabulary::Term]
|
879
|
+
# attr_reader :hasInstance
|
880
|
+
#
|
881
|
+
# # @return [RDF::Vocabulary::Term]
|
882
|
+
# attr_reader :hasItem
|
883
|
+
#
|
884
|
+
# # Expected value Work, Instance or Item
|
885
|
+
# #
|
886
|
+
# # Used with Work, Instance or Item
|
887
|
+
# # @return [RDF::Vocabulary::Term]
|
888
|
+
# attr_reader :hasPart
|
889
|
+
#
|
890
|
+
# # @return [RDF::Vocabulary::Term]
|
891
|
+
# attr_reader :hasReproduction
|
892
|
+
#
|
893
|
+
# # Expected value Work or Instance
|
894
|
+
# #
|
895
|
+
# # Used with Work or Instance
|
896
|
+
# # @return [RDF::Vocabulary::Term]
|
897
|
+
# attr_reader :hasSeries
|
898
|
+
#
|
899
|
+
# # Expected value Work or Instance
|
900
|
+
# #
|
901
|
+
# # Used with Work or Instance
|
902
|
+
# # @return [RDF::Vocabulary::Term]
|
903
|
+
# attr_reader :hasSubseries
|
904
|
+
#
|
905
|
+
# # @return [RDF::Vocabulary::Term]
|
906
|
+
# attr_reader :heldBy
|
907
|
+
#
|
908
|
+
# # @return [RDF::Vocabulary::Term]
|
909
|
+
# attr_reader :hierarchicalLevel
|
910
|
+
#
|
911
|
+
# # @return [RDF::Vocabulary::Term]
|
912
|
+
# attr_reader :historyOfWork
|
913
|
+
#
|
914
|
+
# # Used with Unspecified
|
915
|
+
# # @return [RDF::Vocabulary::Term]
|
916
|
+
# attr_reader :identifiedBy
|
917
|
+
#
|
918
|
+
# # @return [RDF::Vocabulary::Term]
|
919
|
+
# attr_reader :identifies
|
920
|
+
#
|
921
|
+
# # Used with Work or Instance
|
922
|
+
# # @return [RDF::Vocabulary::Term]
|
923
|
+
# attr_reader :illustrativeContent
|
924
|
+
#
|
925
|
+
# # @return [RDF::Vocabulary::Term]
|
926
|
+
# attr_reader :immediateAcquisition
|
927
|
+
#
|
928
|
+
# # Expected value Work or Instance
|
929
|
+
# #
|
930
|
+
# # Used with Work or Instance
|
931
|
+
# # @return [RDF::Vocabulary::Term]
|
932
|
+
# attr_reader :index
|
933
|
+
#
|
934
|
+
# # Expected value Work or Instance
|
935
|
+
# #
|
936
|
+
# # Used with Work or Instance
|
937
|
+
# # @return [RDF::Vocabulary::Term]
|
938
|
+
# attr_reader :indexOf
|
939
|
+
#
|
940
|
+
# # @return [RDF::Vocabulary::Term]
|
941
|
+
# attr_reader :instanceOf
|
942
|
+
#
|
943
|
+
# # @return [RDF::Vocabulary::Term]
|
944
|
+
# attr_reader :instrument
|
945
|
+
#
|
946
|
+
# # @return [RDF::Vocabulary::Term]
|
947
|
+
# attr_reader :instrumentalType
|
948
|
+
#
|
949
|
+
# # Used with Work or Instance
|
950
|
+
# # @return [RDF::Vocabulary::Term]
|
951
|
+
# attr_reader :intendedAudience
|
952
|
+
#
|
953
|
+
# # Used with Work or Instance
|
954
|
+
# # @return [RDF::Vocabulary::Term]
|
955
|
+
# attr_reader :issuance
|
956
|
+
#
|
957
|
+
# # @return [RDF::Vocabulary::Term]
|
958
|
+
# attr_reader :issuedWith
|
959
|
+
#
|
960
|
+
# # @return [RDF::Vocabulary::Term]
|
961
|
+
# attr_reader :itemOf
|
962
|
+
#
|
963
|
+
# # @return [RDF::Vocabulary::Term]
|
964
|
+
# attr_reader :itemPortion
|
965
|
+
#
|
966
|
+
# # Used with Unspecified
|
967
|
+
# # @return [RDF::Vocabulary::Term]
|
968
|
+
# attr_reader :language
|
969
|
+
#
|
970
|
+
# # Used with Work or Instance
|
971
|
+
# # @return [RDF::Vocabulary::Term]
|
972
|
+
# attr_reader :lastIssue
|
973
|
+
#
|
974
|
+
# # @return [RDF::Vocabulary::Term]
|
975
|
+
# attr_reader :layout
|
976
|
+
#
|
977
|
+
# # @return [RDF::Vocabulary::Term]
|
978
|
+
# attr_reader :legalDate
|
979
|
+
#
|
980
|
+
# # @return [RDF::Vocabulary::Term]
|
981
|
+
# attr_reader :mainTitle
|
982
|
+
#
|
983
|
+
# # Used with Work or Instance
|
984
|
+
# # @return [RDF::Vocabulary::Term]
|
985
|
+
# attr_reader :media
|
986
|
+
#
|
987
|
+
# # Expected value Work or Instance
|
988
|
+
# #
|
989
|
+
# # Used with Work or Instance
|
990
|
+
# # @return [RDF::Vocabulary::Term]
|
991
|
+
# attr_reader :mergedToForm
|
992
|
+
#
|
993
|
+
# # Expected value Work or Instance
|
994
|
+
# #
|
995
|
+
# # Used with Work or Instance
|
996
|
+
# # @return [RDF::Vocabulary::Term]
|
997
|
+
# attr_reader :mergerOf
|
998
|
+
#
|
999
|
+
# # @return [RDF::Vocabulary::Term]
|
1000
|
+
# attr_reader :mount
|
1001
|
+
#
|
1002
|
+
# # Used with Work or Instance
|
1003
|
+
# # @return [RDF::Vocabulary::Term]
|
1004
|
+
# attr_reader :musicFormat
|
1005
|
+
#
|
1006
|
+
# # @return [RDF::Vocabulary::Term]
|
1007
|
+
# attr_reader :musicKey
|
1008
|
+
#
|
1009
|
+
# # @return [RDF::Vocabulary::Term]
|
1010
|
+
# attr_reader :musicMedium
|
1011
|
+
#
|
1012
|
+
# # @return [RDF::Vocabulary::Term]
|
1013
|
+
# attr_reader :musicOpusNumber
|
1014
|
+
#
|
1015
|
+
# # @return [RDF::Vocabulary::Term]
|
1016
|
+
# attr_reader :musicSerialNumber
|
1017
|
+
#
|
1018
|
+
# # @return [RDF::Vocabulary::Term]
|
1019
|
+
# attr_reader :musicThematicNumber
|
1020
|
+
#
|
1021
|
+
# # Used with Work or Instance
|
1022
|
+
# # @return [RDF::Vocabulary::Term]
|
1023
|
+
# attr_reader :natureOfContent
|
1024
|
+
#
|
1025
|
+
# # Used with Work or Instance
|
1026
|
+
# # @return [RDF::Vocabulary::Term]
|
1027
|
+
# attr_reader :notation
|
1028
|
+
#
|
1029
|
+
# # Used with Unspecified
|
1030
|
+
# # @return [RDF::Vocabulary::Term]
|
1031
|
+
# attr_reader :note
|
1032
|
+
#
|
1033
|
+
# # @return [RDF::Vocabulary::Term]
|
1034
|
+
# attr_reader :noteType
|
1035
|
+
#
|
1036
|
+
# # @return [RDF::Vocabulary::Term]
|
1037
|
+
# attr_reader :organization
|
1038
|
+
#
|
1039
|
+
# # @return [RDF::Vocabulary::Term]
|
1040
|
+
# attr_reader :originDate
|
1041
|
+
#
|
1042
|
+
# # @return [RDF::Vocabulary::Term]
|
1043
|
+
# attr_reader :originPlace
|
1044
|
+
#
|
1045
|
+
# # Expected value Work or Instance
|
1046
|
+
# #
|
1047
|
+
# # Used with Work or Instance
|
1048
|
+
# # @return [RDF::Vocabulary::Term]
|
1049
|
+
# attr_reader :originalVersion
|
1050
|
+
#
|
1051
|
+
# # Expected value Work or Instance
|
1052
|
+
# #
|
1053
|
+
# # Used with Work or Instance
|
1054
|
+
# # @return [RDF::Vocabulary::Term]
|
1055
|
+
# attr_reader :originalVersionOf
|
1056
|
+
#
|
1057
|
+
# # Expected value Work or Instance
|
1058
|
+
# #
|
1059
|
+
# # Used with Work or Instance
|
1060
|
+
# # @return [RDF::Vocabulary::Term]
|
1061
|
+
# attr_reader :otherEdition
|
1062
|
+
#
|
1063
|
+
# # @return [RDF::Vocabulary::Term]
|
1064
|
+
# attr_reader :otherPhysicalFormat
|
1065
|
+
#
|
1066
|
+
# # @return [RDF::Vocabulary::Term]
|
1067
|
+
# attr_reader :outerGRing
|
1068
|
+
#
|
1069
|
+
# # Used with Unspecified
|
1070
|
+
# # @return [RDF::Vocabulary::Term]
|
1071
|
+
# attr_reader :part
|
1072
|
+
#
|
1073
|
+
# # @return [RDF::Vocabulary::Term]
|
1074
|
+
# attr_reader :partName
|
1075
|
+
#
|
1076
|
+
# # @return [RDF::Vocabulary::Term]
|
1077
|
+
# attr_reader :partNumber
|
1078
|
+
#
|
1079
|
+
# # Expected value Work, Instance or Item
|
1080
|
+
# #
|
1081
|
+
# # Used with Work, Instance or Item
|
1082
|
+
# # @return [RDF::Vocabulary::Term]
|
1083
|
+
# attr_reader :partOf
|
1084
|
+
#
|
1085
|
+
# # @return [RDF::Vocabulary::Term]
|
1086
|
+
# attr_reader :pattern
|
1087
|
+
#
|
1088
|
+
# # @return [RDF::Vocabulary::Term]
|
1089
|
+
# attr_reader :physicalLocation
|
1090
|
+
#
|
1091
|
+
# # Used with Unspecified
|
1092
|
+
# # @return [RDF::Vocabulary::Term]
|
1093
|
+
# attr_reader :place
|
1094
|
+
#
|
1095
|
+
# # @return [RDF::Vocabulary::Term]
|
1096
|
+
# attr_reader :polarity
|
1097
|
+
#
|
1098
|
+
# # Expected value Work or Instance
|
1099
|
+
# #
|
1100
|
+
# # Used with Work or Instance
|
1101
|
+
# # @return [RDF::Vocabulary::Term]
|
1102
|
+
# attr_reader :precededBy
|
1103
|
+
#
|
1104
|
+
# # Used with Work or Instance
|
1105
|
+
# # @return [RDF::Vocabulary::Term]
|
1106
|
+
# attr_reader :preferredCitation
|
1107
|
+
#
|
1108
|
+
# # @return [RDF::Vocabulary::Term]
|
1109
|
+
# attr_reader :productionMethod
|
1110
|
+
#
|
1111
|
+
# # @return [RDF::Vocabulary::Term]
|
1112
|
+
# attr_reader :projection
|
1113
|
+
#
|
1114
|
+
# # @return [RDF::Vocabulary::Term]
|
1115
|
+
# attr_reader :projectionCharacteristic
|
1116
|
+
#
|
1117
|
+
# # @return [RDF::Vocabulary::Term]
|
1118
|
+
# attr_reader :provisionActivity
|
1119
|
+
#
|
1120
|
+
# # @return [RDF::Vocabulary::Term]
|
1121
|
+
# attr_reader :provisionActivityStatement
|
1122
|
+
#
|
1123
|
+
# # Used with Unspecified
|
1124
|
+
# # @return [RDF::Vocabulary::Term]
|
1125
|
+
# attr_reader :qualifier
|
1126
|
+
#
|
1127
|
+
# # @return [RDF::Vocabulary::Term]
|
1128
|
+
# attr_reader :reductionRatio
|
1129
|
+
#
|
1130
|
+
# # Expected value Work, Instance or Item
|
1131
|
+
# #
|
1132
|
+
# # Used with Work, Instance or Item
|
1133
|
+
# # @return [RDF::Vocabulary::Term]
|
1134
|
+
# attr_reader :referencedBy
|
1135
|
+
#
|
1136
|
+
# # Expected value Work, Instance or Item
|
1137
|
+
# #
|
1138
|
+
# # Used with Work, Instance or Item
|
1139
|
+
# # @return [RDF::Vocabulary::Term]
|
1140
|
+
# attr_reader :references
|
1141
|
+
#
|
1142
|
+
# # @return [RDF::Vocabulary::Term]
|
1143
|
+
# attr_reader :relatedTo
|
1144
|
+
#
|
1145
|
+
# # Expected value Work or Instance
|
1146
|
+
# #
|
1147
|
+
# # Used with Work or Instance
|
1148
|
+
# # @return [RDF::Vocabulary::Term]
|
1149
|
+
# attr_reader :replacedBy
|
1150
|
+
#
|
1151
|
+
# # Expected value Work or Instance
|
1152
|
+
# #
|
1153
|
+
# # Used with Work or Instance
|
1154
|
+
# # @return [RDF::Vocabulary::Term]
|
1155
|
+
# attr_reader :replacementOf
|
1156
|
+
#
|
1157
|
+
# # @return [RDF::Vocabulary::Term]
|
1158
|
+
# attr_reader :reproductionOf
|
1159
|
+
#
|
1160
|
+
# # @return [RDF::Vocabulary::Term]
|
1161
|
+
# attr_reader :responsibilityStatement
|
1162
|
+
#
|
1163
|
+
# # Used with Work or Instance
|
1164
|
+
# # @return [RDF::Vocabulary::Term]
|
1165
|
+
# attr_reader :review
|
1166
|
+
#
|
1167
|
+
# # @return [RDF::Vocabulary::Term]
|
1168
|
+
# attr_reader :role
|
1169
|
+
#
|
1170
|
+
# # Used with Work or Instance
|
1171
|
+
# # @return [RDF::Vocabulary::Term]
|
1172
|
+
# attr_reader :scale
|
1173
|
+
#
|
1174
|
+
# # @return [RDF::Vocabulary::Term]
|
1175
|
+
# attr_reader :schedulePart
|
1176
|
+
#
|
1177
|
+
# # Expected value Work or Instance
|
1178
|
+
# #
|
1179
|
+
# # Used with Work or Instance
|
1180
|
+
# # @return [RDF::Vocabulary::Term]
|
1181
|
+
# attr_reader :separatedFrom
|
1182
|
+
#
|
1183
|
+
# # @return [RDF::Vocabulary::Term]
|
1184
|
+
# attr_reader :seriesEnumeration
|
1185
|
+
#
|
1186
|
+
# # Expected value Work or Instance
|
1187
|
+
# #
|
1188
|
+
# # Used with Work or Instance
|
1189
|
+
# # @return [RDF::Vocabulary::Term]
|
1190
|
+
# attr_reader :seriesOf
|
1191
|
+
#
|
1192
|
+
# # @return [RDF::Vocabulary::Term]
|
1193
|
+
# attr_reader :seriesStatement
|
1194
|
+
#
|
1195
|
+
# # @return [RDF::Vocabulary::Term]
|
1196
|
+
# attr_reader :shelfMark
|
1197
|
+
#
|
1198
|
+
# # @return [RDF::Vocabulary::Term]
|
1199
|
+
# attr_reader :soundCharacteristic
|
1200
|
+
#
|
1201
|
+
# # Used with Work or Instance
|
1202
|
+
# # @return [RDF::Vocabulary::Term]
|
1203
|
+
# attr_reader :soundContent
|
1204
|
+
#
|
1205
|
+
# # Used with Unspecified
|
1206
|
+
# # @return [RDF::Vocabulary::Term]
|
1207
|
+
# attr_reader :source
|
1208
|
+
#
|
1209
|
+
# # @return [RDF::Vocabulary::Term]
|
1210
|
+
# attr_reader :spanEnd
|
1211
|
+
#
|
1212
|
+
# # Expected value Work or Instance
|
1213
|
+
# #
|
1214
|
+
# # Used with Work or Instance
|
1215
|
+
# # @return [RDF::Vocabulary::Term]
|
1216
|
+
# attr_reader :splitInto
|
1217
|
+
#
|
1218
|
+
# # Used with Unspecified
|
1219
|
+
# # @return [RDF::Vocabulary::Term]
|
1220
|
+
# attr_reader :status
|
1221
|
+
#
|
1222
|
+
# # Used with Work, Instance or Item
|
1223
|
+
# # @return [RDF::Vocabulary::Term]
|
1224
|
+
# attr_reader :subject
|
1225
|
+
#
|
1226
|
+
# # @return [RDF::Vocabulary::Term]
|
1227
|
+
# attr_reader :sublocation
|
1228
|
+
#
|
1229
|
+
# # @return [RDF::Vocabulary::Term]
|
1230
|
+
# attr_reader :subseriesEnumeration
|
1231
|
+
#
|
1232
|
+
# # Expected value Work or Instance
|
1233
|
+
# #
|
1234
|
+
# # Used with Work or Instance
|
1235
|
+
# # @return [RDF::Vocabulary::Term]
|
1236
|
+
# attr_reader :subseriesOf
|
1237
|
+
#
|
1238
|
+
# # @return [RDF::Vocabulary::Term]
|
1239
|
+
# attr_reader :subseriesStatement
|
1240
|
+
#
|
1241
|
+
# # @return [RDF::Vocabulary::Term]
|
1242
|
+
# attr_reader :subtitle
|
1243
|
+
#
|
1244
|
+
# # Expected value Work or Instance
|
1245
|
+
# #
|
1246
|
+
# # Used with Work or Instance
|
1247
|
+
# # @return [RDF::Vocabulary::Term]
|
1248
|
+
# attr_reader :succeededBy
|
1249
|
+
#
|
1250
|
+
# # Used with Work or Instance
|
1251
|
+
# # @return [RDF::Vocabulary::Term]
|
1252
|
+
# attr_reader :summary
|
1253
|
+
#
|
1254
|
+
# # Expected value Work or Instance
|
1255
|
+
# #
|
1256
|
+
# # Used with Work or Instance
|
1257
|
+
# # @return [RDF::Vocabulary::Term]
|
1258
|
+
# attr_reader :supplement
|
1259
|
+
#
|
1260
|
+
# # Expected value Work or Instance
|
1261
|
+
# #
|
1262
|
+
# # Used with Work or Instance
|
1263
|
+
# # @return [RDF::Vocabulary::Term]
|
1264
|
+
# attr_reader :supplementTo
|
1265
|
+
#
|
1266
|
+
# # Used with Work or Instance
|
1267
|
+
# # @return [RDF::Vocabulary::Term]
|
1268
|
+
# attr_reader :supplementaryContent
|
1269
|
+
#
|
1270
|
+
# # @return [RDF::Vocabulary::Term]
|
1271
|
+
# attr_reader :systemRequirement
|
1272
|
+
#
|
1273
|
+
# # @return [RDF::Vocabulary::Term]
|
1274
|
+
# attr_reader :table
|
1275
|
+
#
|
1276
|
+
# # Used with Work or Instance
|
1277
|
+
# # @return [RDF::Vocabulary::Term]
|
1278
|
+
# attr_reader :tableOfContents
|
1279
|
+
#
|
1280
|
+
# # @return [RDF::Vocabulary::Term]
|
1281
|
+
# attr_reader :tableSeq
|
1282
|
+
#
|
1283
|
+
# # @return [RDF::Vocabulary::Term]
|
1284
|
+
# attr_reader :temporalCoverage
|
1285
|
+
#
|
1286
|
+
# # Used with Work, Instance or Item
|
1287
|
+
# # @return [RDF::Vocabulary::Term]
|
1288
|
+
# attr_reader :title
|
1289
|
+
#
|
1290
|
+
# # Expected value Work or Instance
|
1291
|
+
# #
|
1292
|
+
# # Used with Work or Instance
|
1293
|
+
# # @return [RDF::Vocabulary::Term]
|
1294
|
+
# attr_reader :translation
|
1295
|
+
#
|
1296
|
+
# # Expected value Work or Instance
|
1297
|
+
# #
|
1298
|
+
# # Used with Work or Instance
|
1299
|
+
# # @return [RDF::Vocabulary::Term]
|
1300
|
+
# attr_reader :translationOf
|
1301
|
+
#
|
1302
|
+
# # Used with Unspecified
|
1303
|
+
# # @return [RDF::Vocabulary::Term]
|
1304
|
+
# attr_reader :unit
|
1305
|
+
#
|
1306
|
+
# # Used with Work, Instance or Item
|
1307
|
+
# # @return [RDF::Vocabulary::Term]
|
1308
|
+
# attr_reader :usageAndAccessPolicy
|
1309
|
+
#
|
1310
|
+
# # @return [RDF::Vocabulary::Term]
|
1311
|
+
# attr_reader :variantType
|
1312
|
+
#
|
1313
|
+
# # @return [RDF::Vocabulary::Term]
|
1314
|
+
# attr_reader :version
|
1315
|
+
#
|
1316
|
+
# # @return [RDF::Vocabulary::Term]
|
1317
|
+
# attr_reader :videoCharacteristic
|
1318
|
+
#
|
1319
|
+
# # @return [RDF::Vocabulary::Term]
|
1320
|
+
# attr_reader :voice
|
1321
|
+
#
|
1322
|
+
# # @return [RDF::Vocabulary::Term]
|
1323
|
+
# attr_reader :voiceType
|
1324
|
+
#
|
9
1325
|
# end
|
10
|
-
|
1326
|
+
BF2 = Class.new(RDF::StrictVocabulary("http://id.loc.gov/ontologies/bibframe/")) do
|
11
1327
|
|
12
1328
|
# Ontology definition
|
13
1329
|
ontology :"http://id.loc.gov/ontologies/bibframe/",
|
14
|
-
"dc:modified": "
|
1330
|
+
"dc:modified": "2020-03-06T16:54:50.319-05:00".freeze,
|
15
1331
|
label: "BIBFRAME vocabulary".freeze,
|
16
1332
|
"owl:ontologyIRI": "bf2:".freeze,
|
17
1333
|
"owl:priorVersion": "http://id.loc.gov/ontologies/bibframe-2-0-0/".freeze,
|
@@ -22,1490 +1338,1490 @@ module RDF::Vocab
|
|
22
1338
|
# Class definitions
|
23
1339
|
term :AbbreviatedTitle,
|
24
1340
|
"dc:modified": "2016-04-21 (New)".freeze,
|
25
|
-
definition:
|
1341
|
+
definition: "Title as abbreviated for citation, indexing, and/or identification.".freeze,
|
26
1342
|
label: "Abbreviated title".freeze,
|
27
1343
|
subClassOf: "bf2:VariantTitle".freeze,
|
28
1344
|
type: "owl:Class".freeze
|
29
1345
|
term :AccessPolicy,
|
30
1346
|
"dc:modified": "2016-04-21 (New)".freeze,
|
31
|
-
definition:
|
1347
|
+
definition: "Access restrictions and allowances regarding access to a resource, e.g., lending policy, access restrictions, embargos.".freeze,
|
32
1348
|
label: "Access policy".freeze,
|
33
1349
|
subClassOf: "bf2:UsageAndAccessPolicy".freeze,
|
34
1350
|
type: "owl:Class".freeze
|
35
1351
|
term :AcquisitionSource,
|
36
1352
|
"dc:modified": "2017-02-06 (New)".freeze,
|
37
|
-
definition:
|
1353
|
+
definition: "Information about an organization, person, etc., from which a resource may be obtained.".freeze,
|
38
1354
|
label: "Acquisition source".freeze,
|
39
1355
|
type: "owl:Class".freeze
|
40
1356
|
term :AdminMetadata,
|
41
1357
|
"dc:modified": "2016-04-21 (New)".freeze,
|
42
|
-
definition:
|
1358
|
+
definition: "Metadata about the metadata, especially provenance information.".freeze,
|
43
1359
|
label: "Administrative metadata".freeze,
|
44
1360
|
type: "owl:Class".freeze
|
45
1361
|
term :Agent,
|
46
1362
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-05-13 (New subclass)".freeze],
|
47
|
-
definition:
|
1363
|
+
definition: "Entity having a role in a resource, such as a person or organization.".freeze,
|
48
1364
|
label: "Agent".freeze,
|
49
1365
|
subClassOf: "foaf:Agent".freeze,
|
50
1366
|
type: "owl:Class".freeze
|
51
1367
|
term :Ansi,
|
52
1368
|
"dc:modified": "2016-04-21 (New)".freeze,
|
53
|
-
definition:
|
1369
|
+
definition: "American National Standards Institute identifier.".freeze,
|
54
1370
|
label: "ANSI number".freeze,
|
55
1371
|
subClassOf: "bf2:Identifier".freeze,
|
56
1372
|
type: "owl:Class".freeze
|
57
1373
|
term :AppliedMaterial,
|
58
1374
|
"dc:modified": "2016-04-21 (New)".freeze,
|
59
|
-
definition:
|
1375
|
+
definition: "Physical or chemical substance applied to a base material of a resource.".freeze,
|
60
1376
|
label: "Applied material".freeze,
|
61
1377
|
type: "owl:Class".freeze
|
62
1378
|
term :Archival,
|
63
1379
|
"dc:modified": "2016-04-21 (New)".freeze,
|
64
|
-
definition:
|
1380
|
+
definition: "Resources organically created, accumulated, and/or used by a person, family, or organization in the course of conduct of affairs and preserved because of their continuing value.".freeze,
|
65
1381
|
label: "Archival controlled".freeze,
|
66
1382
|
subClassOf: "bf2:Instance".freeze,
|
67
1383
|
type: "owl:Class".freeze
|
68
1384
|
term :Arrangement,
|
69
1385
|
"dc:modified": "2016-04-21 (New)".freeze,
|
70
|
-
definition:
|
1386
|
+
definition: "Information about the organization and arrangement of a collection of items. For instance, for computer files, organization and arrangement information may be the file structure and sort sequence of a file; for visual materials, this information may be how a collection is arranged.".freeze,
|
71
1387
|
label: "Organization of materials information".freeze,
|
72
1388
|
type: "owl:Class".freeze
|
73
1389
|
term :AspectRatio,
|
74
1390
|
"dc:modified": "2016-04-21 (New)".freeze,
|
75
|
-
definition:
|
1391
|
+
definition: "Proportional relationship between an image's width and its height.".freeze,
|
76
1392
|
label: "Aspect ratio".freeze,
|
77
1393
|
type: "owl:Class".freeze
|
78
1394
|
term :Audio,
|
79
1395
|
"dc:modified": "2016-04-21 (New)".freeze,
|
80
|
-
definition:
|
1396
|
+
definition: "Resources expressed in an audible form, including music or other sounds.".freeze,
|
81
1397
|
label: "Audio".freeze,
|
82
1398
|
subClassOf: "bf2:Work".freeze,
|
83
1399
|
type: "owl:Class".freeze
|
84
1400
|
term :AudioIssueNumber,
|
85
1401
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised property name and definition)".freeze],
|
86
|
-
definition:
|
1402
|
+
definition: "Number assigned by publishers of sound recordings to identify the issue designation, or serial identification, of the resource.".freeze,
|
87
1403
|
label: "Audio issue number".freeze,
|
88
1404
|
subClassOf: "bf2:Identifier".freeze,
|
89
1405
|
type: "owl:Class".freeze
|
90
1406
|
term :AudioTake,
|
91
1407
|
"dc:modified": "2017-02-03 (New)".freeze,
|
92
|
-
definition:
|
1408
|
+
definition: "Identifier assigned to the smallest identifiable unit of a recording session, e.g., a specific recording of an individual song.".freeze,
|
93
1409
|
label: "Audio recording take".freeze,
|
94
1410
|
subClassOf: "bf2:Identifier".freeze,
|
95
1411
|
type: "owl:Class".freeze
|
96
1412
|
term :Barcode,
|
97
1413
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Moved to Identifier class group from Item group)".freeze],
|
98
|
-
definition:
|
1414
|
+
definition: "Optical machine-readable representation of data relating to the item to which it is attached.".freeze,
|
99
1415
|
label: "Barcode".freeze,
|
100
1416
|
subClassOf: "bf2:Identifier".freeze,
|
101
1417
|
type: "owl:Class".freeze
|
102
1418
|
term :BaseMaterial,
|
103
1419
|
"dc:modified": "2016-04-21 (New)".freeze,
|
104
|
-
definition:
|
1420
|
+
definition: "Underlying physical material of a resource.".freeze,
|
105
1421
|
label: "Base material".freeze,
|
106
1422
|
type: "owl:Class".freeze
|
107
1423
|
term :BookFormat,
|
108
1424
|
"dc:modified": "2016-04-21 (New)".freeze,
|
109
|
-
definition:
|
1425
|
+
definition: "Result of folding a printed sheet to form a gathering of leaves.".freeze,
|
110
1426
|
label: "Book format".freeze,
|
111
1427
|
type: "owl:Class".freeze
|
112
1428
|
term :BroadcastStandard,
|
113
1429
|
"dc:modified": "2016-04-21 (New)".freeze,
|
114
|
-
definition:
|
1430
|
+
definition: "System used to format a video resource for television broadcast, e.g., HDTV, PAL.".freeze,
|
115
1431
|
label: "Broadcast standard".freeze,
|
116
1432
|
subClassOf: "bf2:VideoCharacteristic".freeze,
|
117
1433
|
type: "owl:Class".freeze
|
118
1434
|
term :Capture,
|
119
1435
|
"dc:modified": "2016-04-21 (New)".freeze,
|
120
|
-
definition:
|
1436
|
+
definition: "Information about place and date associated with the capture (i.e., recording, filming, etc.) of the content of a resource.".freeze,
|
121
1437
|
label: "Capture of content".freeze,
|
122
1438
|
type: "owl:Class".freeze
|
123
1439
|
term :Carrier,
|
124
1440
|
"dc:modified": "2016-04-21 (New)".freeze,
|
125
|
-
definition:
|
1441
|
+
definition: "Categorization reflecting the format of the storage medium and housing of a carrier.".freeze,
|
126
1442
|
label: "Carrier type".freeze,
|
127
1443
|
type: "owl:Class".freeze
|
128
1444
|
term :Cartographic,
|
129
1445
|
"dc:modified": "2016-04-21 (New)".freeze,
|
130
|
-
definition:
|
1446
|
+
definition: "Content that represents the whole or part of the earth, any celestial body, or imaginary place at any scale.".freeze,
|
131
1447
|
label: "Cartographic information".freeze,
|
132
1448
|
type: "owl:Class".freeze
|
133
1449
|
term :CartographicDataType,
|
134
1450
|
"dc:modified": "2016-04-21 (New)".freeze,
|
135
|
-
definition:
|
1451
|
+
definition: "Data type for encoding of geospatial information in a cartographic resource, e.g., raster, vector, point.".freeze,
|
136
1452
|
label: "Digital cartographic data type".freeze,
|
137
1453
|
subClassOf: "bf2:DigitalCharacteristic".freeze,
|
138
1454
|
type: "owl:Class".freeze
|
139
1455
|
term :CartographicObjectType,
|
140
1456
|
"dc:modified": "2016-04-21 (New)".freeze,
|
141
|
-
definition:
|
1457
|
+
definition: "Object type for encoding of geospatial information in a cartographic resource, e.g., point, line, polygon.".freeze,
|
142
1458
|
label: "Digital cartographic object type".freeze,
|
143
1459
|
subClassOf: "bf2:DigitalCharacteristic".freeze,
|
144
1460
|
type: "owl:Class".freeze
|
145
1461
|
term :Cartography,
|
146
1462
|
"dc:modified": "2016-04-25 (fixed typo in definition)".freeze,
|
147
|
-
definition:
|
1463
|
+
definition: "Resource that shows spatial information, including maps, atlases, globes, digital, and other cartographic resources.".freeze,
|
148
1464
|
label: "Cartography".freeze,
|
149
1465
|
subClassOf: "bf2:Work".freeze,
|
150
1466
|
type: "owl:Class".freeze
|
151
1467
|
term :Chronology,
|
152
1468
|
"dc:modified": "2016-04-21 (New)".freeze,
|
153
|
-
definition:
|
1469
|
+
definition: "Dates associated with issues or items held.".freeze,
|
154
1470
|
label: "Chronology".freeze,
|
155
1471
|
subClassOf: "bf2:EnumerationAndChronology".freeze,
|
156
1472
|
type: "owl:Class".freeze
|
157
1473
|
term :Classification,
|
158
1474
|
"dc:modified": "2016-04-21 (New)".freeze,
|
159
|
-
definition:
|
1475
|
+
definition: "System of coding and organizing materials according to their subject.".freeze,
|
160
1476
|
label: "Classification entity".freeze,
|
161
1477
|
type: "owl:Class".freeze
|
162
1478
|
term :ClassificationDdc,
|
163
1479
|
"dc:modified": "2016-04-21 (New)".freeze,
|
164
|
-
definition:
|
1480
|
+
definition: "Dewey Decimal Classification number used for subject access.".freeze,
|
165
1481
|
label: "DDC Classification".freeze,
|
166
1482
|
subClassOf: "bf2:Classification".freeze,
|
167
1483
|
type: "owl:Class".freeze
|
168
1484
|
term :ClassificationLcc,
|
169
1485
|
"dc:modified": "2016-04-21 (New)".freeze,
|
170
|
-
definition:
|
1486
|
+
definition: "Library of Congress Classification number used for subject access.".freeze,
|
171
1487
|
label: "LCC Classification".freeze,
|
172
1488
|
subClassOf: "bf2:Classification".freeze,
|
173
1489
|
type: "owl:Class".freeze
|
174
1490
|
term :ClassificationNlm,
|
175
1491
|
"dc:modified": "2016-04-21 (New)".freeze,
|
176
|
-
definition:
|
1492
|
+
definition: "National Library of Medicine Classification number used for subject access".freeze,
|
177
1493
|
label: "NLM classification".freeze,
|
178
1494
|
subClassOf: "bf2:Classification".freeze,
|
179
1495
|
type: "owl:Class".freeze
|
180
1496
|
term :ClassificationUdc,
|
181
1497
|
"dc:modified": "2016-04-21 (New)".freeze,
|
182
|
-
definition:
|
1498
|
+
definition: "Universal Decimal Classification number used for subject access.".freeze,
|
183
1499
|
label: "UDC Classification".freeze,
|
184
1500
|
subClassOf: "bf2:Classification".freeze,
|
185
1501
|
type: "owl:Class".freeze
|
186
1502
|
term :Coden,
|
187
1503
|
"dc:modified": "2016-04-21 (New)".freeze,
|
188
|
-
definition:
|
1504
|
+
definition: "Identifier for scientific and technical periodical titles assigned by the International CODEN Section of Chemical Abstracts Service.".freeze,
|
189
1505
|
label: "CODEN".freeze,
|
190
1506
|
subClassOf: "bf2:Identifier".freeze,
|
191
1507
|
type: "owl:Class".freeze
|
192
1508
|
term :Collection,
|
193
1509
|
"dc:modified": "2016-04-21 (New)".freeze,
|
194
|
-
definition:
|
1510
|
+
definition: "Aggregation of resources, generally gathered together artificially.".freeze,
|
195
1511
|
label: "Collection".freeze,
|
196
1512
|
type: "owl:Class".freeze
|
197
1513
|
term :CollectiveTitle,
|
198
1514
|
"dc:modified": "2016-04-21 (New)".freeze,
|
199
|
-
definition:
|
1515
|
+
definition: "Title for a compilation of resources.".freeze,
|
200
1516
|
label: "Collective title".freeze,
|
201
1517
|
subClassOf: "bf2:VariantTitle".freeze,
|
202
1518
|
type: "owl:Class".freeze
|
203
1519
|
term :ColorContent,
|
204
1520
|
"dc:modified": "2016-04-21 (New)".freeze,
|
205
|
-
definition:
|
1521
|
+
definition: "Color characteristics of a resource, e.g., black and white, multicolored, etc.".freeze,
|
206
1522
|
label: "Color content".freeze,
|
207
1523
|
type: "owl:Class".freeze
|
208
1524
|
term :Content,
|
209
1525
|
"dc:modified": "2016-04-21 (New)".freeze,
|
210
|
-
definition:
|
1526
|
+
definition: "Categorization reflecting the fundamental form of communication in which the content is expressed and the human sense through which it is intended to be perceived.".freeze,
|
211
1527
|
label: "Content type".freeze,
|
212
1528
|
type: "owl:Class".freeze
|
213
1529
|
term :ContentAccessibility,
|
214
1530
|
"dc:modified": "2017-02-07 (New)".freeze,
|
215
|
-
definition:
|
1531
|
+
definition: "Information that assists those with a sensory impairment for greater understanding of content, e.g., captions.".freeze,
|
216
1532
|
label: "Content accessibility information".freeze,
|
217
1533
|
type: "owl:Class".freeze
|
218
1534
|
term :Contribution,
|
219
1535
|
"dc:modified": "2016-04-21 (New)".freeze,
|
220
|
-
definition:
|
1536
|
+
definition: "Agent and role with respect to the resource being described.".freeze,
|
221
1537
|
label: "Contribution".freeze,
|
222
1538
|
type: "owl:Class".freeze
|
223
1539
|
term :CopyrightNumber,
|
224
1540
|
"dc:modified": "2016-04-21 (New)".freeze,
|
225
|
-
definition:
|
1541
|
+
definition: "Identifier assigned to a copyright registration or legal deposit.".freeze,
|
226
1542
|
label: "Copyright-legal deposit number".freeze,
|
227
1543
|
subClassOf: "bf2:Identifier".freeze,
|
228
1544
|
type: "owl:Class".freeze
|
229
1545
|
term :CopyrightRegistration,
|
230
1546
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-05-04 (Class name corrected)".freeze],
|
231
|
-
definition:
|
1547
|
+
definition: "Copyright or Legal Deposit registration information".freeze,
|
232
1548
|
label: "Copyright registration".freeze,
|
233
1549
|
type: "owl:Class".freeze
|
234
1550
|
term :CoverArt,
|
235
1551
|
"dc:modified": "2016-04-21 (New)".freeze,
|
236
|
-
definition:
|
1552
|
+
definition: "Cover illustration of a resource.".freeze,
|
237
1553
|
label: "Cover art".freeze,
|
238
1554
|
type: "owl:Class".freeze
|
239
1555
|
term :Dataset,
|
240
1556
|
"dc:modified": "2016-04-21 (New)".freeze,
|
241
|
-
definition:
|
1557
|
+
definition: "Data encoded in a defined structure. Includes numeric data, environmental data,etc., used by applications software to calculate averages, correlations, etc., or to produce models, etc., but not normally displayed in its raw form.".freeze,
|
242
1558
|
label: "Dataset".freeze,
|
243
1559
|
subClassOf: "bf2:Work".freeze,
|
244
1560
|
type: "owl:Class".freeze
|
245
1561
|
term :DescriptionAuthentication,
|
246
1562
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (fixed class name)".freeze],
|
247
|
-
definition:
|
1563
|
+
definition: "Indication of specific types of reviews that have been carried out on the description information.".freeze,
|
248
1564
|
label: "Metadata authentication".freeze,
|
249
1565
|
subClassOf: "bf2:AdminMetadata".freeze,
|
250
1566
|
type: "owl:Class".freeze
|
251
1567
|
term :DescriptionConventions,
|
252
1568
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed class name)".freeze],
|
253
|
-
definition:
|
1569
|
+
definition: "Rules used for the descriptive content of the resource description.".freeze,
|
254
1570
|
label: "Description conventions".freeze,
|
255
1571
|
subClassOf: "bf2:AdminMetadata".freeze,
|
256
1572
|
type: "owl:Class".freeze
|
257
1573
|
term :DigitalCharacteristic,
|
258
1574
|
"dc:modified": "2016-04-21 (New)".freeze,
|
259
|
-
definition:
|
1575
|
+
definition: "Technical specification relating to the digital encoding of text, image, audio, video, and other types of data in a resource.".freeze,
|
260
1576
|
label: "Digital characteristic".freeze,
|
261
1577
|
type: "owl:Class".freeze
|
262
1578
|
term :Dissertation,
|
263
1579
|
"dc:modified": "2016-04-21 (New)".freeze,
|
264
|
-
definition:
|
1580
|
+
definition: "Information about a work presented as part of the formal requirements for an academic degree.".freeze,
|
265
1581
|
label: "Dissertation information".freeze,
|
266
1582
|
type: "owl:Class".freeze
|
267
1583
|
term :DissertationIdentifier,
|
268
1584
|
"dc:modified": "2016-04-21 (New)".freeze,
|
269
|
-
definition:
|
1585
|
+
definition: "Identifier assigned to a thesis or dissertation for identification purposes .".freeze,
|
270
1586
|
label: "Dissertation Identifier".freeze,
|
271
1587
|
subClassOf: "bf2:Identifier".freeze,
|
272
1588
|
type: "owl:Class".freeze
|
273
1589
|
term :Distribution,
|
274
1590
|
"dc:modified": "2016-04-21 (New)".freeze,
|
275
|
-
definition:
|
1591
|
+
definition: "Information relating to distribution of a resource.".freeze,
|
276
1592
|
label: "Distributor".freeze,
|
277
1593
|
subClassOf: "bf2:ProvisionActivity".freeze,
|
278
1594
|
type: "owl:Class".freeze
|
279
1595
|
term :Doi,
|
280
1596
|
"dc:modified": "2016-04-21 (New)".freeze,
|
281
|
-
definition:
|
1597
|
+
definition: "Digital Object Identifier.".freeze,
|
282
1598
|
label: "DOI".freeze,
|
283
1599
|
subClassOf: "bf2:Identifier".freeze,
|
284
1600
|
type: "owl:Class".freeze
|
285
1601
|
term :Ean,
|
286
1602
|
"dc:modified": "2016-04-21 (New)".freeze,
|
287
|
-
definition:
|
1603
|
+
definition: "International Article Identifier.".freeze,
|
288
1604
|
label: "EAN".freeze,
|
289
1605
|
subClassOf: "bf2:Identifier".freeze,
|
290
1606
|
type: "owl:Class".freeze
|
291
1607
|
term :Electronic,
|
292
1608
|
"dc:modified": "2016-04-21 (New)".freeze,
|
293
|
-
definition:
|
1609
|
+
definition: "Resource that is intended for manipulation by a computer, accessed either directly or remotely.".freeze,
|
294
1610
|
label: "Electronic".freeze,
|
295
1611
|
subClassOf: "bf2:Instance".freeze,
|
296
1612
|
type: "owl:Class".freeze
|
297
1613
|
term :Emulsion,
|
298
1614
|
"dc:modified": "2016-04-21 (New)".freeze,
|
299
|
-
definition:
|
1615
|
+
definition: "Suspension of light-sensitive chemicals used as a coating on a microfilm or microfiche, e.g., silver halide.".freeze,
|
300
1616
|
label: "Emulsion".freeze,
|
301
1617
|
type: "owl:Class".freeze
|
302
1618
|
term :EncodedBitrate,
|
303
1619
|
"dc:modified": "2016-04-21 (New)".freeze,
|
304
|
-
definition:
|
1620
|
+
definition: "Speed at which streaming audio, video, etc., is designed to play, e.g., 32 kbps.".freeze,
|
305
1621
|
label: "Encoded bitrate".freeze,
|
306
1622
|
subClassOf: "bf2:DigitalCharacteristic".freeze,
|
307
1623
|
type: "owl:Class".freeze
|
308
1624
|
term :EncodingFormat,
|
309
1625
|
"dc:modified": "2016-04-21 (New)".freeze,
|
310
|
-
definition:
|
1626
|
+
definition: "Schema, standard, etc., used to encode the digital content of a resource, e.g., MP3, XML, JPEG.".freeze,
|
311
1627
|
label: "Encoding format".freeze,
|
312
1628
|
subClassOf: "bf2:DigitalCharacteristic".freeze,
|
313
1629
|
type: "owl:Class".freeze
|
314
1630
|
term :Enumeration,
|
315
1631
|
"dc:modified": "2016-04-21 (New)".freeze,
|
316
|
-
definition:
|
1632
|
+
definition: "Numbering or other enumeration associated with issues or items held.".freeze,
|
317
1633
|
label: "Enumeration".freeze,
|
318
1634
|
subClassOf: "bf2:EnumerationAndChronology".freeze,
|
319
1635
|
type: "owl:Class".freeze
|
320
1636
|
term :EnumerationAndChronology,
|
321
1637
|
"dc:modified": "2016-04-21 (New)".freeze,
|
322
|
-
definition:
|
1638
|
+
definition: "Numbering or other enumeration and dates associated with issues or items held.".freeze,
|
323
1639
|
label: "Enumeration and chronology".freeze,
|
324
1640
|
type: "owl:Class".freeze
|
325
1641
|
term :Event,
|
326
1642
|
"dc:modified": "2016-04-21 (New)".freeze,
|
327
|
-
definition:
|
1643
|
+
definition: "Something that happens at a certain time and location, such as a performance, speech, or athletic event, that is documented by a resource.".freeze,
|
328
1644
|
label: "Event entity".freeze,
|
329
1645
|
type: "owl:Class".freeze
|
330
1646
|
term :Extent,
|
331
1647
|
"dc:modified": "2016-04-21 (New)".freeze,
|
332
|
-
definition:
|
1648
|
+
definition: "Number and type of units and/or subunits making up a resource.".freeze,
|
333
1649
|
label: "Extent".freeze,
|
334
1650
|
type: "owl:Class".freeze
|
335
1651
|
term :Family,
|
336
1652
|
"dc:modified": "2016-04-21 (New)".freeze,
|
337
|
-
definition:
|
1653
|
+
definition: "Two or more persons related by birth, marriage, adoption, civil union, or similar legal status, or who otherwise present themselves as a family.".freeze,
|
338
1654
|
label: "Family".freeze,
|
339
1655
|
subClassOf: "bf2:Agent".freeze,
|
340
1656
|
type: "owl:Class".freeze
|
341
1657
|
term :FileSize,
|
342
1658
|
"dc:modified": "2016-04-21 (New)".freeze,
|
343
|
-
definition:
|
1659
|
+
definition: "Number of bytes in a digital file, e.g., 162 KB.".freeze,
|
344
1660
|
label: "File size".freeze,
|
345
1661
|
subClassOf: "bf2:DigitalCharacteristic".freeze,
|
346
1662
|
type: "owl:Class".freeze
|
347
1663
|
term :FileType,
|
348
1664
|
"dc:modified": "2016-04-21 (New)".freeze,
|
349
|
-
definition:
|
1665
|
+
definition: "General type of data content encoded in a computer file, e.g., text file, audio file.".freeze,
|
350
1666
|
label: "File type".freeze,
|
351
1667
|
subClassOf: "bf2:DigitalCharacteristic".freeze,
|
352
1668
|
type: "owl:Class".freeze
|
353
1669
|
term :Fingerprint,
|
354
1670
|
"dc:modified": "2016-04-21 (New)".freeze,
|
355
|
-
definition:
|
1671
|
+
definition: "Identifier that is used to assist in the identification of antiquarian books by recording information comprising groups of characters taken from specified positions on specified pages of the book.".freeze,
|
356
1672
|
label: "Fingerprint identifier".freeze,
|
357
1673
|
subClassOf: "bf2:Identifier".freeze,
|
358
1674
|
type: "owl:Class".freeze
|
359
1675
|
term :FontSize,
|
360
1676
|
"dc:modified": "2016-04-21 (New)".freeze,
|
361
|
-
definition:
|
1677
|
+
definition: "Size of the type used to represent the characters and symbols in a resource.".freeze,
|
362
1678
|
label: "Font size".freeze,
|
363
1679
|
type: "owl:Class".freeze
|
364
1680
|
term :Frequency,
|
365
1681
|
"dc:modified": "2016-04-21 (New)".freeze,
|
366
|
-
definition:
|
1682
|
+
definition: "Information about intervals at which the parts of a serially produced resource or the updates to an integrating resource are issued.".freeze,
|
367
1683
|
label: "Frequency".freeze,
|
368
1684
|
type: "owl:Class".freeze
|
369
1685
|
term :Generation,
|
370
1686
|
"dc:modified": "2016-04-21 (New)".freeze,
|
371
|
-
definition:
|
1687
|
+
definition: "Relationship between an original carrier and the carrier of a reproduction made from the original.".freeze,
|
372
1688
|
label: "Generation".freeze,
|
373
1689
|
type: "owl:Class".freeze
|
374
1690
|
term :GenerationProcess,
|
375
1691
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed class name)".freeze],
|
376
|
-
definition:
|
1692
|
+
definition: "Indication of the program or process used to generate the description by application of a particular transformation.".freeze,
|
377
1693
|
label: "Generation process".freeze,
|
378
1694
|
subClassOf: "bf2:AdminMetadata".freeze,
|
379
1695
|
type: "owl:Class".freeze
|
380
1696
|
term :GenreForm,
|
381
1697
|
"dc:modified": "2016-04-21 (New)".freeze,
|
382
|
-
definition:
|
1698
|
+
definition: "Characteristics of works with similar plots, themes, settings, etc. (e.g., westerns, thrillers), or with a particular format of purpose (e.g., animation, short), or a combination (e.g., horror film where horror is the genre and film is the form).".freeze,
|
383
1699
|
label: "Genre/form".freeze,
|
384
1700
|
type: "owl:Class".freeze
|
385
1701
|
term :GeographicCoverage,
|
386
1702
|
"dc:modified": "2017-02-06 (New)".freeze,
|
387
|
-
definition:
|
1703
|
+
definition: "Geographic coverage of the content of the resource.".freeze,
|
388
1704
|
label: "Geographic coverage".freeze,
|
389
1705
|
type: "owl:Class".freeze
|
390
1706
|
term :GrooveCharacteristic,
|
391
1707
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-26 (fixed typo in definition)".freeze, "2017-02-03 (Fixed name of property)".freeze],
|
392
|
-
definition:
|
1708
|
+
definition: "Groove width of an analog disc or the groove pitch of an analog cylinder, e.g., coarse groove, microgroove".freeze,
|
393
1709
|
label: "Groove characteristic".freeze,
|
394
1710
|
subClassOf: "bf2:SoundCharacteristic".freeze,
|
395
1711
|
type: "owl:Class".freeze
|
396
1712
|
term :Gtin14Number,
|
397
1713
|
"dc:modified": "2017-02-03 (New)".freeze,
|
398
|
-
definition:
|
1714
|
+
definition: "14 digit number assigned to identify trade items as various packaging levels. GTIN-14 encompasses EAN/UCC-128 and ITF-14.".freeze,
|
399
1715
|
label: "Global Trade Item Number 14".freeze,
|
400
1716
|
subClassOf: "bf2:Identifier".freeze,
|
401
1717
|
type: "owl:Class".freeze
|
402
1718
|
term :Hdl,
|
403
1719
|
"dc:modified": "2016-04-21 (New)".freeze,
|
404
|
-
definition:
|
1720
|
+
definition: "Unique and persistent identifier for digital objects developed by the Corporation for National Research Initiatives.".freeze,
|
405
1721
|
label: "Handle".freeze,
|
406
1722
|
subClassOf: "bf2:Identifier".freeze,
|
407
1723
|
type: "owl:Class".freeze
|
408
1724
|
term :Identifier,
|
409
1725
|
"dc:modified": "2016-04-21 (New)".freeze,
|
410
|
-
definition:
|
1726
|
+
definition: "Token or name that is associated with a resource, such as a URI or an ISBN.".freeze,
|
411
1727
|
label: "Identifier".freeze,
|
412
1728
|
type: "owl:Class".freeze
|
413
1729
|
term :Illustration,
|
414
1730
|
"dc:modified": "2016-04-21 (New)".freeze,
|
415
|
-
definition:
|
1731
|
+
definition: "Information about content intended to illustrate a resource.".freeze,
|
416
1732
|
label: "Illustrative content".freeze,
|
417
1733
|
type: "owl:Class".freeze
|
418
1734
|
term :ImmediateAcquisition,
|
419
1735
|
"dc:modified": "2017-02-06 (New)".freeze,
|
420
|
-
definition:
|
1736
|
+
definition: "Information about the circumstances, e.g., source, date, method, under which the resource was directly acquired.".freeze,
|
421
1737
|
label: "Immediate acquisition".freeze,
|
422
1738
|
type: "owl:Class".freeze
|
423
1739
|
term :Instance,
|
424
1740
|
"dc:modified": "2016-04-21 (New)".freeze,
|
425
|
-
definition:
|
1741
|
+
definition: "Resource reflecting an individual, material embodiment of a Work.".freeze,
|
426
1742
|
label: "Instance".freeze,
|
427
1743
|
type: "owl:Class".freeze
|
428
1744
|
term :IntendedAudience,
|
429
1745
|
"dc:modified": "2016-04-21 (New)".freeze,
|
430
|
-
definition:
|
1746
|
+
definition: "Information that identifies the specific intended or target audience or intellectual level for which the content described is considered appropriate. Also used to record interest and motivation levels and special learner characteristics.".freeze,
|
431
1747
|
label: "Intended audience information".freeze,
|
432
1748
|
type: "owl:Class".freeze
|
433
1749
|
term :Isan,
|
434
1750
|
"dc:modified": "2016-04-21 (New)".freeze,
|
435
|
-
definition:
|
1751
|
+
definition: "International Standard Audiovisual Number.".freeze,
|
436
1752
|
label: "ISAN".freeze,
|
437
1753
|
subClassOf: "bf2:Identifier".freeze,
|
438
1754
|
type: "owl:Class".freeze
|
439
1755
|
term :Isbn,
|
440
1756
|
"dc:modified": "2016-04-21 (New)".freeze,
|
441
|
-
definition:
|
1757
|
+
definition: "International Standard Book Number.".freeze,
|
442
1758
|
label: "ISBN".freeze,
|
443
1759
|
subClassOf: "bf2:Identifier".freeze,
|
444
1760
|
type: "owl:Class".freeze
|
445
1761
|
term :Ismn,
|
446
1762
|
"dc:modified": "2016-04-21 (New)".freeze,
|
447
|
-
definition:
|
1763
|
+
definition: "International Standard Music Number.".freeze,
|
448
1764
|
label: "ISMN".freeze,
|
449
1765
|
subClassOf: "bf2:Identifier".freeze,
|
450
1766
|
type: "owl:Class".freeze
|
451
1767
|
term :Isni,
|
452
1768
|
"dc:modified": "2017-02-03 (New)".freeze,
|
453
|
-
definition:
|
1769
|
+
definition: "International Standard Name Identifier, a unique, persistent reference number for the identities of contributors to creative works.".freeze,
|
454
1770
|
label: "ISNI".freeze,
|
455
1771
|
subClassOf: "bf2:Identifier".freeze,
|
456
1772
|
type: "owl:Class".freeze
|
457
1773
|
term :Iso,
|
458
1774
|
"dc:modified": "2016-04-21 (New)".freeze,
|
459
|
-
definition:
|
1775
|
+
definition: "International Organization for Standardization standard number.".freeze,
|
460
1776
|
label: "ISO number".freeze,
|
461
1777
|
subClassOf: "bf2:Identifier".freeze,
|
462
1778
|
type: "owl:Class".freeze
|
463
1779
|
term :Isrc,
|
464
1780
|
"dc:modified": "2016-04-21 (New)".freeze,
|
465
|
-
definition:
|
1781
|
+
definition: "International Standard Recording Code.".freeze,
|
466
1782
|
label: "ISRC".freeze,
|
467
1783
|
subClassOf: "bf2:Identifier".freeze,
|
468
1784
|
type: "owl:Class".freeze
|
469
1785
|
term :Issn,
|
470
1786
|
"dc:modified": "2016-04-21 (New)".freeze,
|
471
|
-
definition:
|
1787
|
+
definition: "International Standard Serial Number.".freeze,
|
472
1788
|
label: "ISSN".freeze,
|
473
1789
|
subClassOf: "bf2:Identifier".freeze,
|
474
1790
|
type: "owl:Class".freeze
|
475
1791
|
term :IssnL,
|
476
1792
|
"dc:modified": "2016-04-21 (New)".freeze,
|
477
|
-
definition:
|
1793
|
+
definition: "International Standard Serial Number that links together various media versions of a continuing resource.".freeze,
|
478
1794
|
label: "ISSN-L".freeze,
|
479
1795
|
subClassOf: "bf2:Identifier".freeze,
|
480
1796
|
type: "owl:Class".freeze
|
481
1797
|
term :Issuance,
|
482
1798
|
"dc:modified": "2016-04-21 (New)".freeze,
|
483
|
-
definition:
|
1799
|
+
definition: "Information about whether a resource is issued in one or more parts, the way it is updated, and its intended termination.".freeze,
|
484
1800
|
label: "Mode of issuance".freeze,
|
485
1801
|
type: "owl:Class".freeze
|
486
1802
|
term :Istc,
|
487
1803
|
"dc:modified": "2016-04-21 (New)".freeze,
|
488
|
-
definition:
|
1804
|
+
definition: "International Standard Text Code, a numbering system developed to enable the unique identification of textual works.".freeze,
|
489
1805
|
label: "ISTC".freeze,
|
490
1806
|
subClassOf: "bf2:Identifier".freeze,
|
491
1807
|
type: "owl:Class".freeze
|
492
1808
|
term :Iswc,
|
493
1809
|
"dc:modified": "2016-04-21 (New)".freeze,
|
494
|
-
definition:
|
1810
|
+
definition: "International Standard Musical Work Code, a unique, persistent reference number for the identification of musical works.".freeze,
|
495
1811
|
label: "ISWC".freeze,
|
496
1812
|
subClassOf: "bf2:Identifier".freeze,
|
497
1813
|
type: "owl:Class".freeze
|
498
1814
|
term :Item,
|
499
1815
|
"dc:modified": "2016-04-21 (New)".freeze,
|
500
|
-
definition:
|
1816
|
+
definition: "Single example of an Instance.".freeze,
|
501
1817
|
label: "Item".freeze,
|
502
1818
|
type: "owl:Class".freeze
|
503
1819
|
term :Jurisdiction,
|
504
1820
|
"dc:modified": "2016-04-21 (New)".freeze,
|
505
|
-
definition:
|
1821
|
+
definition: "Legal or political unit administering a geographic area.".freeze,
|
506
1822
|
label: "Jurisdiction".freeze,
|
507
1823
|
subClassOf: "bf2:Agent".freeze,
|
508
1824
|
type: "owl:Class".freeze
|
509
1825
|
term :KeyTitle,
|
510
1826
|
"dc:modified": "2016-04-21 (New)".freeze,
|
511
|
-
definition:
|
1827
|
+
definition: "Unique title for a continuing resource that is assigned by the ISSN International Center in conjunction with an ISSN.".freeze,
|
512
1828
|
label: "Key title".freeze,
|
513
1829
|
subClassOf: "bf2:VariantTitle".freeze,
|
514
1830
|
type: "owl:Class".freeze
|
515
1831
|
term :Language,
|
516
1832
|
"dc:modified": "2016-04-21 (New)".freeze,
|
517
|
-
definition:
|
1833
|
+
definition: "Language entity.".freeze,
|
518
1834
|
label: "Language entity".freeze,
|
519
1835
|
type: "owl:Class".freeze
|
520
1836
|
term :Layout,
|
521
1837
|
"dc:modified": "2016-04-21 (New)".freeze,
|
522
|
-
definition:
|
1838
|
+
definition: "Arrangement of text, images, tactile notation, etc., in a resource.".freeze,
|
523
1839
|
label: "Layout".freeze,
|
524
1840
|
type: "owl:Class".freeze
|
525
1841
|
term :LcOverseasAcq,
|
526
1842
|
"dc:modified": "2016-04-21 (New)".freeze,
|
527
|
-
definition:
|
1843
|
+
definition: "Identification number assigned by the Library of Congress to works acquired through one of its collaborative overseas acquisition programs.".freeze,
|
528
1844
|
label: "LC acquisition program".freeze,
|
529
1845
|
subClassOf: "bf2:Identifier".freeze,
|
530
1846
|
type: "owl:Class".freeze
|
531
1847
|
term :Lccn,
|
532
1848
|
"dc:modified": "2016-04-21 (New)".freeze,
|
533
|
-
definition:
|
1849
|
+
definition: "Library of Congress Control Number that identifies a resource description.".freeze,
|
534
1850
|
label: "LCCN".freeze,
|
535
1851
|
subClassOf: "bf2:Identifier".freeze,
|
536
1852
|
type: "owl:Class".freeze
|
537
1853
|
term :Local,
|
538
1854
|
"dc:modified": "2016-04-21 (New)".freeze,
|
539
|
-
definition:
|
1855
|
+
definition: "Identifier established locally and not a standard number.".freeze,
|
540
1856
|
label: "Local identifier".freeze,
|
541
1857
|
subClassOf: "bf2:Identifier".freeze,
|
542
1858
|
type: "owl:Class".freeze
|
543
1859
|
term :Manufacture,
|
544
1860
|
"dc:modified": "2016-04-21 (New)".freeze,
|
545
|
-
definition:
|
1861
|
+
definition: "Information relating to manufacture of a resource.".freeze,
|
546
1862
|
label: "Manufacturer".freeze,
|
547
1863
|
subClassOf: "bf2:ProvisionActivity".freeze,
|
548
1864
|
type: "owl:Class".freeze
|
549
1865
|
term :Manuscript,
|
550
1866
|
"dc:modified": "2016-04-21 (New)".freeze,
|
551
|
-
definition:
|
1867
|
+
definition: "Resource that is written in handwriting or typescript. These are generally unique resources.".freeze,
|
552
1868
|
label: "Manuscript".freeze,
|
553
1869
|
subClassOf: "bf2:Instance".freeze,
|
554
1870
|
type: "owl:Class".freeze
|
555
1871
|
term :MatrixNumber,
|
556
1872
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze],
|
557
|
-
definition:
|
1873
|
+
definition: "Matrix identifier assigned to the master from which a specific sound recording was pressed.".freeze,
|
558
1874
|
label: "Audio matrix number".freeze,
|
559
1875
|
subClassOf: "bf2:Identifier".freeze,
|
560
1876
|
type: "owl:Class".freeze
|
561
1877
|
term :Media,
|
562
1878
|
"dc:modified": "2016-04-21 (New)".freeze,
|
563
|
-
definition:
|
1879
|
+
definition: "Categorization reflecting the general type of intermediation device required to view, play, run, etc., the content of a resource.".freeze,
|
564
1880
|
label: "Media type".freeze,
|
565
1881
|
type: "owl:Class".freeze
|
566
1882
|
term :Meeting,
|
567
1883
|
"dc:modified": "2016-04-21 (New)".freeze,
|
568
|
-
definition:
|
1884
|
+
definition: "Gathering of individuals or representatives of various bodies for the purpose of discussing and/or acting on topics of common interest.".freeze,
|
569
1885
|
label: "Meeting".freeze,
|
570
1886
|
subClassOf: "bf2:Agent".freeze,
|
571
1887
|
type: "owl:Class".freeze
|
572
1888
|
term :MixedMaterial,
|
573
1889
|
"dc:modified": "2016-04-21 (New)".freeze,
|
574
|
-
definition:
|
1890
|
+
definition: "Resource comprised of multiple types which is not driven by software; for instance, a manuscript collection of text, photographs and sound recordings.".freeze,
|
575
1891
|
label: "Mixed material".freeze,
|
576
1892
|
subClassOf: "bf2:Work".freeze,
|
577
1893
|
type: "owl:Class".freeze
|
578
1894
|
term :Mount,
|
579
1895
|
"dc:modified": "2016-04-21 (New)".freeze,
|
580
|
-
definition:
|
1896
|
+
definition: "Physical material used for the support or backing to which the base material of a resource has been attached.".freeze,
|
581
1897
|
label: "Mount".freeze,
|
582
1898
|
type: "owl:Class".freeze
|
583
1899
|
term :MovementNotation,
|
584
1900
|
"dc:modified": "2016-04-21 (New)".freeze,
|
585
|
-
definition:
|
1901
|
+
definition: "Information on the symbol system used to convey the content of a movement resource.".freeze,
|
586
1902
|
label: "Movement notation used".freeze,
|
587
1903
|
subClassOf: "bf2:Notation".freeze,
|
588
1904
|
type: "owl:Class".freeze
|
589
1905
|
term :MovingImage,
|
590
1906
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-26 (fixed typo in definition)".freeze],
|
591
|
-
definition:
|
1907
|
+
definition: "Images intended to be perceived as moving, including motion pictures (using liveaction and/or animation), video recordings of performances, events,etc.".freeze,
|
592
1908
|
label: "Moving image".freeze,
|
593
1909
|
subClassOf: "bf2:Work".freeze,
|
594
1910
|
type: "owl:Class".freeze
|
595
1911
|
term :Multimedia,
|
596
1912
|
"dc:modified": "2016-04-21 (New)".freeze,
|
597
|
-
definition:
|
1913
|
+
definition: "Electronic resource that is a computer program (i.e., digitally encoded instructions intended to be processed and performed by a computer) or which consists of multiple media types that are software driven, such as videogames.".freeze,
|
598
1914
|
label: "Software or multimedia".freeze,
|
599
1915
|
subClassOf: "bf2:Work".freeze,
|
600
1916
|
type: "owl:Class".freeze
|
601
1917
|
term :MusicDistributorNumber,
|
602
1918
|
"dc:modified": "2017-02-07 (New)".freeze,
|
603
|
-
definition:
|
1919
|
+
definition: "Identifier appearing on a resource assigned by a distributor to a specific audio recording, notated music publication, music-related publication, or videorecording.".freeze,
|
604
1920
|
label: "Music distributor number".freeze,
|
605
1921
|
subClassOf: "bf2:Identifier".freeze,
|
606
1922
|
type: "owl:Class".freeze
|
607
1923
|
term :MusicEnsemble,
|
608
1924
|
"dc:modified": "2016-04-21 (New)".freeze,
|
609
|
-
definition:
|
1925
|
+
definition: "Ensemble for which a musical work is appropriate.".freeze,
|
610
1926
|
label: "Music ensemble".freeze,
|
611
1927
|
type: "owl:Class".freeze
|
612
1928
|
term :MusicFormat,
|
613
1929
|
"dc:modified": "2016-04-21 (New)".freeze,
|
614
|
-
definition:
|
1930
|
+
definition: "Layout for content of a resource that is presented in the form of musical notation.".freeze,
|
615
1931
|
label: "Notated music format".freeze,
|
616
1932
|
type: "owl:Class".freeze
|
617
1933
|
term :MusicInstrument,
|
618
1934
|
"dc:modified": "2016-04-21 (New)".freeze,
|
619
|
-
definition:
|
1935
|
+
definition: "Instrument for which a musical work is appropriate.".freeze,
|
620
1936
|
label: "Musical instrument".freeze,
|
621
1937
|
type: "owl:Class".freeze
|
622
1938
|
term :MusicMedium,
|
623
1939
|
"dc:modified": "2016-04-21 (New)".freeze,
|
624
|
-
definition:
|
1940
|
+
definition: "Summary statement of the medium for a musical work.".freeze,
|
625
1941
|
label: "Music medium information".freeze,
|
626
1942
|
type: "owl:Class".freeze
|
627
1943
|
term :MusicNotation,
|
628
1944
|
"dc:modified": "2016-04-21 (New)".freeze,
|
629
|
-
definition:
|
1945
|
+
definition: "Information on the symbol system used to convey the content of a music resource.".freeze,
|
630
1946
|
label: "Music notation used".freeze,
|
631
1947
|
subClassOf: "bf2:Notation".freeze,
|
632
1948
|
type: "owl:Class".freeze
|
633
1949
|
term :MusicPlate,
|
634
1950
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze],
|
635
|
-
definition:
|
1951
|
+
definition: "Identifiers assigned by a music publisher or printer to the printing plates for the notated portion of a notated music publication, or an identifier that emulates the printing plate tradition in contemporary publications.".freeze,
|
636
1952
|
label: "Music plate number".freeze,
|
637
1953
|
subClassOf: "bf2:Identifier".freeze,
|
638
1954
|
type: "owl:Class".freeze
|
639
1955
|
term :MusicPublisherNumber,
|
640
1956
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Revised definition)".freeze],
|
641
|
-
definition:
|
1957
|
+
definition: "Identifier assigned to a notated music publication other than an issue, matrix, or plate number.".freeze,
|
642
1958
|
label: "Music publisher number".freeze,
|
643
1959
|
subClassOf: "bf2:Identifier".freeze,
|
644
1960
|
type: "owl:Class".freeze
|
645
1961
|
term :MusicVoice,
|
646
1962
|
"dc:modified": "2016-04-21 (New)".freeze,
|
647
|
-
definition:
|
1963
|
+
definition: "Voice for which a musical work is appropriate.".freeze,
|
648
1964
|
label: "Music voice".freeze,
|
649
1965
|
type: "owl:Class".freeze
|
650
1966
|
term :Nbn,
|
651
1967
|
"dc:modified": "2016-04-21 (New)".freeze,
|
652
|
-
definition:
|
1968
|
+
definition: "National Bibliography Number that identifies a resource description.".freeze,
|
653
1969
|
label: "NBN".freeze,
|
654
1970
|
subClassOf: "bf2:Identifier".freeze,
|
655
1971
|
type: "owl:Class".freeze
|
656
1972
|
term :NotatedMovement,
|
657
1973
|
"dc:modified": "2016-04-21 (New)".freeze,
|
658
|
-
definition:
|
1974
|
+
definition: "Graphic, non-realized representations of movement intended to be perceived visually, e.g. dance.".freeze,
|
659
1975
|
label: "Notated movement".freeze,
|
660
1976
|
subClassOf: "bf2:Work".freeze,
|
661
1977
|
type: "owl:Class".freeze
|
662
1978
|
term :NotatedMusic,
|
663
1979
|
"dc:modified": "2016-04-21 (New)".freeze,
|
664
|
-
definition:
|
1980
|
+
definition: "Graphic, non-realized representations of musical works intended to be perceived visually.".freeze,
|
665
1981
|
label: "Notated music".freeze,
|
666
1982
|
subClassOf: "bf2:Work".freeze,
|
667
1983
|
type: "owl:Class".freeze
|
668
1984
|
term :Notation,
|
669
1985
|
"dc:modified": "2016-04-21 (New)".freeze,
|
670
|
-
definition:
|
1986
|
+
definition: "Information on the alphabet, script, or symbol system used to convey the content of the resource, including specialized scripts, typefaces, tactile notation, movement notation, and musical notation.".freeze,
|
671
1987
|
label: "Notation".freeze,
|
672
1988
|
type: "owl:Class".freeze
|
673
1989
|
term :Note,
|
674
1990
|
"dc:modified": "2016-04-21 (New)".freeze,
|
675
|
-
definition:
|
1991
|
+
definition: "Information, usually in textual form, on attributes of a resource or some aspect of a resource.".freeze,
|
676
1992
|
label: "Note".freeze,
|
677
1993
|
type: "owl:Class".freeze
|
678
1994
|
term :Object,
|
679
1995
|
"dc:modified": "2016-04-21 (New)".freeze,
|
680
|
-
definition:
|
1996
|
+
definition: "Resource in a form intended to be perceived visually in three-dimensions. Includes man-made objects such as models, sculptures, clothing, and toys, as well as naturally occurring objects such as specimens mounted for viewing.".freeze,
|
681
1997
|
label: "Three-dimensional object".freeze,
|
682
1998
|
subClassOf: "bf2:Work".freeze,
|
683
1999
|
type: "owl:Class".freeze
|
684
2000
|
term :ObjectCount,
|
685
2001
|
"dc:modified": "2016-04-21 (New)".freeze,
|
686
|
-
definition:
|
2002
|
+
definition: "Number of objects in encoded geospatial information in a cartographic resource.".freeze,
|
687
2003
|
label: "Digital cartographic object count".freeze,
|
688
2004
|
subClassOf: "bf2:DigitalCharacteristic".freeze,
|
689
2005
|
type: "owl:Class".freeze
|
690
2006
|
term :Organization,
|
691
2007
|
"dc:modified": "2016-04-21 (New)".freeze,
|
692
|
-
definition:
|
2008
|
+
definition: "Corporation or group of persons and/or organizations that acts, or may act, as a unit.".freeze,
|
693
2009
|
label: "Organization".freeze,
|
694
2010
|
subClassOf: "bf2:Agent".freeze,
|
695
2011
|
type: "owl:Class".freeze
|
696
2012
|
term :ParallelTitle,
|
697
2013
|
"dc:modified": "2016-04-21 (New)".freeze,
|
698
|
-
definition:
|
2014
|
+
definition: "Title in another language and/or script.".freeze,
|
699
2015
|
label: "Parallel title proper".freeze,
|
700
2016
|
subClassOf: "bf2:VariantTitle".freeze,
|
701
2017
|
type: "owl:Class".freeze
|
702
2018
|
term :Person,
|
703
2019
|
"dc:modified": "2016-04-21 (New)".freeze,
|
704
|
-
definition:
|
2020
|
+
definition: "Individual or identity established by an individual (either alone or in collaboration with one or more other individuals).".freeze,
|
705
2021
|
label: "Person".freeze,
|
706
2022
|
subClassOf: ["bf2:Agent".freeze, "foaf:Person".freeze],
|
707
2023
|
type: "owl:Class".freeze
|
708
2024
|
term :Place,
|
709
2025
|
"dc:modified": "2016-04-21 (New)".freeze,
|
710
|
-
definition:
|
2026
|
+
definition: "Geographic location.".freeze,
|
711
2027
|
label: "Place".freeze,
|
712
2028
|
type: "owl:Class".freeze
|
713
2029
|
term :PlaybackChannels,
|
714
2030
|
"dc:modified": "2016-04-21 (New)".freeze,
|
715
|
-
definition:
|
2031
|
+
definition: "Configuration/number of sound channels used to make a recording, such as one channel for a monophonic recording, e.g., mono, stereo, quadraphonic, surround.".freeze,
|
716
2032
|
label: "Configuration of playback channels".freeze,
|
717
2033
|
subClassOf: "bf2:SoundCharacteristic".freeze,
|
718
2034
|
type: "owl:Class".freeze
|
719
2035
|
term :PlaybackCharacteristic,
|
720
2036
|
"dc:modified": "2016-04-21 (New)".freeze,
|
721
|
-
definition:
|
2037
|
+
definition: "Equalization system, noise reduction system, etc., used in making an audio recording, e.g., CCIR standard, CX encoded, Dolby.".freeze,
|
722
2038
|
label: "Special playback characteristics".freeze,
|
723
2039
|
subClassOf: "bf2:SoundCharacteristic".freeze,
|
724
2040
|
type: "owl:Class".freeze
|
725
2041
|
term :PlayingSpeed,
|
726
2042
|
"dc:modified": "2016-04-21 (New)".freeze,
|
727
|
-
definition:
|
2043
|
+
definition: "Speed at which an audio carrier must be operated to produce the sound intended, e.g., 78 rpm, 19 cm/s.".freeze,
|
728
2044
|
label: "Playing speed".freeze,
|
729
2045
|
subClassOf: "bf2:SoundCharacteristic".freeze,
|
730
2046
|
type: "owl:Class".freeze
|
731
2047
|
term :Polarity,
|
732
2048
|
"dc:modified": "2016-04-21 (New)".freeze,
|
733
|
-
definition:
|
2049
|
+
definition: "Relationship of the colors and tones in an image to the colors and tones of the object reproduced.".freeze,
|
734
2050
|
label: "Polarity".freeze,
|
735
2051
|
type: "owl:Class".freeze
|
736
2052
|
term :PostalRegistration,
|
737
2053
|
"dc:modified": "2016-04-21 (New)".freeze,
|
738
|
-
definition:
|
2054
|
+
definition: "Number assigned to a publication for which the specified postal service permits the use of a special mailing class privilege.".freeze,
|
739
2055
|
label: "Postal registration number".freeze,
|
740
2056
|
subClassOf: "bf2:Identifier".freeze,
|
741
2057
|
type: "owl:Class".freeze
|
742
2058
|
term :PresentationFormat,
|
743
2059
|
"dc:modified": "2016-04-21 (New)".freeze,
|
744
|
-
definition:
|
2060
|
+
definition: "Format used in the production of a projected image, e.g., Cinerama, IMAX.".freeze,
|
745
2061
|
label: "Presentation format".freeze,
|
746
2062
|
subClassOf: "bf2:ProjectionCharacteristic".freeze,
|
747
2063
|
type: "owl:Class".freeze
|
748
2064
|
term :Print,
|
749
2065
|
"dc:modified": "2016-04-21 (New)".freeze,
|
750
|
-
definition:
|
2066
|
+
definition: "Resource that is printed.".freeze,
|
751
2067
|
label: "Printed".freeze,
|
752
2068
|
subClassOf: "bf2:Instance".freeze,
|
753
2069
|
type: "owl:Class".freeze
|
754
2070
|
term :Production,
|
755
2071
|
"dc:modified": "2016-04-21 (New)".freeze,
|
756
|
-
definition:
|
2072
|
+
definition: "Information relating to production of a resource.".freeze,
|
757
2073
|
label: "Producer".freeze,
|
758
2074
|
subClassOf: "bf2:ProvisionActivity".freeze,
|
759
2075
|
type: "owl:Class".freeze
|
760
2076
|
term :ProductionMethod,
|
761
2077
|
"dc:modified": "2016-04-21 (New)".freeze,
|
762
|
-
definition:
|
2078
|
+
definition: "Process used to produce a resource".freeze,
|
763
2079
|
label: "Production method".freeze,
|
764
2080
|
type: "owl:Class".freeze
|
765
2081
|
term :Projection,
|
766
2082
|
"dc:modified": "2017-02-03 (New)".freeze,
|
767
|
-
definition:
|
2083
|
+
definition: "Method or system used to represent the surface of the earth or of a celestial sphere on a plane.".freeze,
|
768
2084
|
label: "Projection".freeze,
|
769
2085
|
type: "owl:Class".freeze
|
770
2086
|
term :ProjectionCharacteristic,
|
771
2087
|
"dc:modified": "2016-04-21 (New)".freeze,
|
772
|
-
definition:
|
2088
|
+
definition: "Technical specification relating to the projection of a motion picture film.".freeze,
|
773
2089
|
label: "Projection characteristic".freeze,
|
774
2090
|
type: "owl:Class".freeze
|
775
2091
|
term :ProjectionSpeed,
|
776
2092
|
"dc:modified": "2016-04-21 (New)".freeze,
|
777
|
-
definition:
|
2093
|
+
definition: "Speed at which a projected carrier must be operated to produce the moving image intended, e.g., 20 fps.".freeze,
|
778
2094
|
label: "Projection speed".freeze,
|
779
2095
|
subClassOf: "bf2:ProjectionCharacteristic".freeze,
|
780
2096
|
type: "owl:Class".freeze
|
781
2097
|
term :ProvisionActivity,
|
782
2098
|
"dc:modified": "2016-04-21 (New)".freeze,
|
783
|
-
definition:
|
2099
|
+
definition: "Information about the agent or place relating to the publication, printing, distribution, issue, release, or production of a resource.".freeze,
|
784
2100
|
label: "Provider entity".freeze,
|
785
2101
|
type: "owl:Class".freeze
|
786
2102
|
term :Publication,
|
787
2103
|
"dc:modified": "2016-04-21 (New)".freeze,
|
788
|
-
definition:
|
2104
|
+
definition: "Information relating to publication of a resource.".freeze,
|
789
2105
|
label: "Publisher".freeze,
|
790
2106
|
subClassOf: "bf2:ProvisionActivity".freeze,
|
791
2107
|
type: "owl:Class".freeze
|
792
2108
|
term :PublisherNumber,
|
793
2109
|
"dc:modified": "2016-04-21 (New)".freeze,
|
794
|
-
definition:
|
2110
|
+
definition: "Number assigned by a publisher that is not one of the specific defined types.".freeze,
|
795
2111
|
label: "Publisher number".freeze,
|
796
2112
|
subClassOf: "bf2:Identifier".freeze,
|
797
2113
|
type: "owl:Class".freeze
|
798
2114
|
term :RecordingMedium,
|
799
2115
|
"dc:modified": "2016-04-21 (New)".freeze,
|
800
|
-
definition:
|
2116
|
+
definition: "Type of medium used to record sound on an audio carrier, e.g., magnetic, optical.".freeze,
|
801
2117
|
label: "Recording medium".freeze,
|
802
2118
|
subClassOf: "bf2:SoundCharacteristic".freeze,
|
803
2119
|
type: "owl:Class".freeze
|
804
2120
|
term :RecordingMethod,
|
805
2121
|
"dc:modified": "2016-04-21 (New)".freeze,
|
806
|
-
definition:
|
2122
|
+
definition: "Method used to encode audio content for playback, e.g., analog, digital.".freeze,
|
807
2123
|
label: "Type of recording".freeze,
|
808
2124
|
subClassOf: "bf2:SoundCharacteristic".freeze,
|
809
2125
|
type: "owl:Class".freeze
|
810
2126
|
term :ReductionRatio,
|
811
2127
|
"dc:modified": "2016-04-21 (New)".freeze,
|
812
|
-
definition:
|
2128
|
+
definition: "Size of a micro-image in relation to the original from which it was produced.".freeze,
|
813
2129
|
label: "Reduction ratio".freeze,
|
814
2130
|
type: "owl:Class".freeze
|
815
2131
|
term :RegionalEncoding,
|
816
2132
|
"dc:modified": "2016-04-21 (New)".freeze,
|
817
|
-
definition:
|
2133
|
+
definition: "Identification of the region of the world for which a videodisc has been encoded, e.g., region 4.".freeze,
|
818
2134
|
label: "Regional encoding".freeze,
|
819
2135
|
subClassOf: "bf2:DigitalCharacteristic".freeze,
|
820
2136
|
type: "owl:Class".freeze
|
821
2137
|
term :ReportNumber,
|
822
2138
|
"dc:modified": "2016-04-21 (New)".freeze,
|
823
|
-
definition:
|
2139
|
+
definition: "Identification number of a technical report that is not a Standard Technical Report Number.".freeze,
|
824
2140
|
label: "Technical report number".freeze,
|
825
2141
|
subClassOf: "bf2:Identifier".freeze,
|
826
2142
|
type: "owl:Class".freeze
|
827
2143
|
term :Resolution,
|
828
2144
|
"dc:modified": "2016-04-21 (New)".freeze,
|
829
|
-
definition:
|
2145
|
+
definition: "Clarity or fineness of detail in a digital image, expressed by the measurement of the image in pixels, etc., e.g., 3.1 megapixels.".freeze,
|
830
2146
|
label: "Resolution".freeze,
|
831
2147
|
subClassOf: "bf2:DigitalCharacteristic".freeze,
|
832
2148
|
type: "owl:Class".freeze
|
833
2149
|
term :RetentionPolicy,
|
834
2150
|
"dc:modified": "2016-04-21 (New)".freeze,
|
835
|
-
definition:
|
2151
|
+
definition: "Policy of holding institution for retaining resource.".freeze,
|
836
2152
|
label: "Retention policy".freeze,
|
837
2153
|
subClassOf: "bf2:UsageAndAccessPolicy".freeze,
|
838
2154
|
type: "owl:Class".freeze
|
839
2155
|
term :Review,
|
840
2156
|
"dc:modified": "2016-04-21 (New)".freeze,
|
841
|
-
definition:
|
2157
|
+
definition: "Review of a resource.".freeze,
|
842
2158
|
label: "Review".freeze,
|
843
2159
|
type: "owl:Class".freeze
|
844
2160
|
term :Role,
|
845
2161
|
"dc:modified": "2017-02-03 (New)".freeze,
|
846
|
-
definition:
|
2162
|
+
definition: "Function played or provided by a contributor, e.g., author, illustrator, etc.".freeze,
|
847
2163
|
label: "Role".freeze,
|
848
2164
|
type: "owl:Class".freeze
|
849
2165
|
term :Scale,
|
850
2166
|
"dc:modified": "2017-02-03 (New)".freeze,
|
851
|
-
definition:
|
2167
|
+
definition: "Ratio of the dimensions of a form contained or embodied in a resource to the dimensions of the entity it represents, e.g., for images or cartographic resources.".freeze,
|
852
2168
|
label: "Scale".freeze,
|
853
2169
|
type: "owl:Class".freeze
|
854
2170
|
term :Script,
|
855
2171
|
"dc:modified": "2016-04-21 (New)".freeze,
|
856
|
-
definition:
|
2172
|
+
definition: "Information on the script, or symbol system used to convey the content of a text resource.".freeze,
|
857
2173
|
label: "Script used".freeze,
|
858
2174
|
subClassOf: "bf2:Notation".freeze,
|
859
2175
|
type: "owl:Class".freeze
|
860
2176
|
term :ShelfMark,
|
861
2177
|
"dc:modified": "2016-04-21 (New)".freeze,
|
862
|
-
definition:
|
2178
|
+
definition: "Piece/item identifier, such as a call or other type of number.".freeze,
|
863
2179
|
label: "Shelf location".freeze,
|
864
2180
|
subClassOf: "bf2:Identifier".freeze,
|
865
2181
|
type: "owl:Class".freeze
|
866
2182
|
term :ShelfMarkDdc,
|
867
2183
|
"dc:modified": "2016-04-21 (New)".freeze,
|
868
|
-
definition:
|
2184
|
+
definition: "Shelf mark based on Dewey Decimal Classification.".freeze,
|
869
2185
|
label: "DDC call number".freeze,
|
870
2186
|
subClassOf: "bf2:ShelfMark".freeze,
|
871
2187
|
type: "owl:Class".freeze
|
872
2188
|
term :ShelfMarkLcc,
|
873
2189
|
"dc:modified": "2016-04-21 (New)".freeze,
|
874
|
-
definition:
|
2190
|
+
definition: "Shelf mark based on Library of Congress Classification.".freeze,
|
875
2191
|
label: "LCC call number".freeze,
|
876
2192
|
subClassOf: "bf2:ShelfMark".freeze,
|
877
2193
|
type: "owl:Class".freeze
|
878
2194
|
term :ShelfMarkNlm,
|
879
2195
|
"dc:modified": "2016-04-21 (New)".freeze,
|
880
|
-
definition:
|
2196
|
+
definition: "Shelf mark based on National Library of Medicine Classification.".freeze,
|
881
2197
|
label: "NLM call number".freeze,
|
882
2198
|
subClassOf: "bf2:ShelfMark".freeze,
|
883
2199
|
type: "owl:Class".freeze
|
884
2200
|
term :ShelfMarkUdc,
|
885
2201
|
"dc:modified": "2016-04-21 (New)".freeze,
|
886
|
-
definition:
|
2202
|
+
definition: "Shelf mark based on Universal Decimal Classification.".freeze,
|
887
2203
|
label: "UDC call number".freeze,
|
888
2204
|
subClassOf: "bf2:ShelfMark".freeze,
|
889
2205
|
type: "owl:Class".freeze
|
890
2206
|
term :Sici,
|
891
2207
|
"dc:modified": "2016-04-21 (New)".freeze,
|
892
|
-
definition:
|
2208
|
+
definition: "Serial Item and Contribution Identifier.".freeze,
|
893
2209
|
label: "SICI".freeze,
|
894
2210
|
subClassOf: "bf2:Identifier".freeze,
|
895
2211
|
type: "owl:Class".freeze
|
896
2212
|
term :SoundCharacteristic,
|
897
2213
|
"dc:modified": "2016-04-21 (New)".freeze,
|
898
|
-
definition:
|
2214
|
+
definition: "Technical specification relating to the encoding of sound in a resource.".freeze,
|
899
2215
|
label: "Sound characteristic".freeze,
|
900
2216
|
type: "owl:Class".freeze
|
901
2217
|
term :SoundContent,
|
902
2218
|
"dc:modified": "2016-04-21 (New)".freeze,
|
903
|
-
definition:
|
2219
|
+
definition: "Indication of whether the production of sound is an integral part of the resource.".freeze,
|
904
2220
|
label: "Sound content".freeze,
|
905
2221
|
type: "owl:Class".freeze
|
906
2222
|
term :Source,
|
907
2223
|
"dc:modified": "2016-04-21 (New)".freeze,
|
908
|
-
definition:
|
2224
|
+
definition: "Resource from which value or label came or was derived.".freeze,
|
909
2225
|
label: "Source".freeze,
|
910
2226
|
type: "owl:Class".freeze
|
911
2227
|
term :Status,
|
912
2228
|
"dc:modified": "2016-04-21 (New)".freeze,
|
913
|
-
definition:
|
2229
|
+
definition: "Designation of the validity or position of something, e.g., whether something is incorrect or available.".freeze,
|
914
2230
|
label: "Status".freeze,
|
915
2231
|
type: "owl:Class".freeze
|
916
2232
|
term :StillImage,
|
917
2233
|
"dc:modified": "2016-04-21 (New)".freeze,
|
918
|
-
definition:
|
2234
|
+
definition: "Resource expressed through line, shape, shading, etc., intended to be perceived visually as a still image or images in two dimensions. Includes two-dimensional images and slides and transparencies.".freeze,
|
919
2235
|
label: "Still image".freeze,
|
920
2236
|
subClassOf: "bf2:Work".freeze,
|
921
2237
|
type: "owl:Class".freeze
|
922
2238
|
term :StockNumber,
|
923
2239
|
"dc:modified": "2016-04-21 (New)".freeze,
|
924
|
-
definition:
|
2240
|
+
definition: "Identification number used for stock purposes and assigned by agencies such as distributors, publishers, or vendors.".freeze,
|
925
2241
|
label: "Stock number".freeze,
|
926
2242
|
subClassOf: "bf2:Identifier".freeze,
|
927
2243
|
type: "owl:Class".freeze
|
928
2244
|
term :Strn,
|
929
2245
|
"dc:modified": "2016-04-21 (New)".freeze,
|
930
|
-
definition:
|
2246
|
+
definition: "Standard Technical Report Number.".freeze,
|
931
2247
|
label: "STRN".freeze,
|
932
2248
|
subClassOf: "bf2:Identifier".freeze,
|
933
2249
|
type: "owl:Class".freeze
|
934
2250
|
term :StudyNumber,
|
935
2251
|
"dc:modified": "2016-04-21 (New)".freeze,
|
936
|
-
definition:
|
2252
|
+
definition: "Identification number for a computer data file.".freeze,
|
937
2253
|
label: "Study number".freeze,
|
938
2254
|
subClassOf: "bf2:Identifier".freeze,
|
939
2255
|
type: "owl:Class".freeze
|
940
2256
|
term :Sublocation,
|
941
2257
|
"dc:modified": "2016-04-21 (New)".freeze,
|
942
|
-
definition:
|
2258
|
+
definition: "Specific place within the holding entity where the item is located or made available.".freeze,
|
943
2259
|
label: "Sublocation".freeze,
|
944
2260
|
type: "owl:Class".freeze
|
945
2261
|
term :Summary,
|
946
2262
|
"dc:modified": "2016-04-21 (New)".freeze,
|
947
|
-
definition:
|
2263
|
+
definition: "Description of the content of a resource, such as an abstract, summary, etc..".freeze,
|
948
2264
|
label: "Summary".freeze,
|
949
2265
|
type: "owl:Class".freeze
|
950
2266
|
term :SupplementaryContent,
|
951
2267
|
"dc:modified": "2016-04-21 (New)".freeze,
|
952
|
-
definition:
|
2268
|
+
definition: "Index, bibliography, appendix, etc. intended to supplement the primary content of a resource.".freeze,
|
953
2269
|
label: "Supplementary material".freeze,
|
954
2270
|
type: "owl:Class".freeze
|
955
2271
|
term :SystemRequirement,
|
956
2272
|
"dc:modified": "2017-02-06 (New)".freeze,
|
957
|
-
definition:
|
2273
|
+
definition: "Equipment or system requirements beyond what is normal and obvious for the type of carrier or type of file, such as make and model of equipment or hardware, operating system, amount of memory, programming language, other necessary software, any plug-ins or peripherals required to play, view, or run the resource, etc.".freeze,
|
958
2274
|
label: "System Requirement".freeze,
|
959
2275
|
type: "owl:Class".freeze
|
960
2276
|
term :TableOfContents,
|
961
2277
|
"dc:modified": "2016-04-21 (New)".freeze,
|
962
|
-
definition:
|
2278
|
+
definition: "Table of contents of a resource.".freeze,
|
963
2279
|
label: "Table of contents".freeze,
|
964
2280
|
type: "owl:Class".freeze
|
965
2281
|
term :Tactile,
|
966
2282
|
"dc:modified": "2016-04-21 (New)".freeze,
|
967
|
-
definition:
|
2283
|
+
definition: "Resource that is intended to be perceived by touch.".freeze,
|
968
2284
|
label: "Tactile material".freeze,
|
969
2285
|
subClassOf: "bf2:Instance".freeze,
|
970
2286
|
type: "owl:Class".freeze
|
971
2287
|
term :TactileNotation,
|
972
2288
|
"dc:modified": "2016-04-21 (New)".freeze,
|
973
|
-
definition:
|
2289
|
+
definition: "Information on the symbol system used to convey the content of a tactile resource.".freeze,
|
974
2290
|
label: "Tactile notation used".freeze,
|
975
2291
|
subClassOf: "bf2:Notation".freeze,
|
976
2292
|
type: "owl:Class".freeze
|
977
2293
|
term :TapeConfig,
|
978
2294
|
"dc:modified": "2016-04-21 (New)".freeze,
|
979
|
-
definition:
|
2295
|
+
definition: "Number of tracks on an audiotape, e.g., 12 track.".freeze,
|
980
2296
|
label: "Tape configuration".freeze,
|
981
2297
|
subClassOf: "bf2:SoundCharacteristic".freeze,
|
982
2298
|
type: "owl:Class".freeze
|
983
2299
|
term :Temporal,
|
984
2300
|
"dc:modified": "2016-04-21 (New)".freeze,
|
985
|
-
definition:
|
2301
|
+
definition: "Chronological period.".freeze,
|
986
2302
|
label: "Temporal concept".freeze,
|
987
2303
|
type: "owl:Class".freeze
|
988
2304
|
term :Text,
|
989
2305
|
"dc:modified": "2016-04-21 (New)".freeze,
|
990
|
-
definition:
|
2306
|
+
definition: "Resource intended to be perceived visually and understood through the use of language in written or spoken form.".freeze,
|
991
2307
|
label: "Text".freeze,
|
992
2308
|
subClassOf: "bf2:Work".freeze,
|
993
2309
|
type: "owl:Class".freeze
|
994
2310
|
term :Title,
|
995
2311
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Definition changed)".freeze],
|
996
|
-
definition:
|
2312
|
+
definition: "Title information relating to a resource: work title, preferred title, instance title, transcribed title, translated title, variant form of title, etc.".freeze,
|
997
2313
|
label: "Title entity".freeze,
|
998
2314
|
type: "owl:Class".freeze
|
999
2315
|
term :Topic,
|
1000
2316
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1001
|
-
definition:
|
2317
|
+
definition: "Concept or area of knowledge.".freeze,
|
1002
2318
|
label: "Topic".freeze,
|
1003
2319
|
type: "owl:Class".freeze
|
1004
2320
|
term :TrackConfig,
|
1005
2321
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1006
|
-
definition:
|
2322
|
+
definition: "Configuration of the audio track on a sound-track film, e.g., center track, edge track.".freeze,
|
1007
2323
|
label: "Track configuration".freeze,
|
1008
2324
|
subClassOf: "bf2:SoundCharacteristic".freeze,
|
1009
2325
|
type: "owl:Class".freeze
|
1010
2326
|
term :Unit,
|
1011
2327
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1012
|
-
definition:
|
2328
|
+
definition: "Units in which a value is expressed.".freeze,
|
1013
2329
|
label: "Unit".freeze,
|
1014
2330
|
type: "owl:Class".freeze
|
1015
2331
|
term :Upc,
|
1016
2332
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1017
|
-
definition:
|
2333
|
+
definition: "Universal Product Code.".freeze,
|
1018
2334
|
label: "UPC".freeze,
|
1019
2335
|
subClassOf: "bf2:Identifier".freeze,
|
1020
2336
|
type: "owl:Class".freeze
|
1021
2337
|
term :Urn,
|
1022
2338
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1023
|
-
definition:
|
2339
|
+
definition: "Uniform Resource Number.".freeze,
|
1024
2340
|
label: "URN".freeze,
|
1025
2341
|
subClassOf: "bf2:Identifier".freeze,
|
1026
2342
|
type: "owl:Class".freeze
|
1027
2343
|
term :UsageAndAccessPolicy,
|
1028
2344
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1029
|
-
definition:
|
2345
|
+
definition: "General statement of allowances and restrictions on access to a resource, including retention, reproduction, access, and lending.".freeze,
|
1030
2346
|
label: "Use and access conditions".freeze,
|
1031
2347
|
type: "owl:Class".freeze
|
1032
2348
|
term :UsePolicy,
|
1033
2349
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1034
|
-
definition:
|
2350
|
+
definition: "Usage limitations placed on a resource with respect to reproduction, publication, exhibition, etc..".freeze,
|
1035
2351
|
label: "Use policy".freeze,
|
1036
2352
|
subClassOf: "bf2:UsageAndAccessPolicy".freeze,
|
1037
2353
|
type: "owl:Class".freeze
|
1038
2354
|
term :VariantTitle,
|
1039
2355
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1040
|
-
definition:
|
2356
|
+
definition: "Title associated with the resource that is different from the Work or Instance title.".freeze,
|
1041
2357
|
label: "Title variation".freeze,
|
1042
2358
|
subClassOf: "bf2:Title".freeze,
|
1043
2359
|
type: "owl:Class".freeze
|
1044
2360
|
term :VideoCharacteristic,
|
1045
2361
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1046
|
-
definition:
|
2362
|
+
definition: "Technical specification relating to the encoding of video images in a resource.".freeze,
|
1047
2363
|
label: "Video characteristic".freeze,
|
1048
2364
|
type: "owl:Class".freeze
|
1049
2365
|
term :VideoFormat,
|
1050
2366
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1051
|
-
definition:
|
2367
|
+
definition: "Standard, etc., used to encode the analog video content of a resource, e.g., Beta, 8mm.".freeze,
|
1052
2368
|
label: "Video format".freeze,
|
1053
2369
|
subClassOf: "bf2:VideoCharacteristic".freeze,
|
1054
2370
|
type: "owl:Class".freeze
|
1055
2371
|
term :VideoRecordingNumber,
|
1056
2372
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Corrected case in class name)".freeze],
|
1057
|
-
definition:
|
2373
|
+
definition: "Number assigned by a publisher to a video recording.".freeze,
|
1058
2374
|
label: "Video recording number".freeze,
|
1059
2375
|
subClassOf: "bf2:Identifier".freeze,
|
1060
2376
|
type: "owl:Class".freeze
|
1061
2377
|
term :Work,
|
1062
2378
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1063
|
-
definition:
|
2379
|
+
definition: "Resource reflecting a conceptual essence of a cataloging resource.".freeze,
|
1064
2380
|
label: "Work".freeze,
|
1065
2381
|
type: "owl:Class".freeze
|
1066
2382
|
|
1067
2383
|
# Property definitions
|
1068
2384
|
property :absorbed,
|
1069
|
-
comment: [
|
2385
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1070
2386
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1071
|
-
definition:
|
2387
|
+
definition: "Resource that has been incorporated into another resource.".freeze,
|
1072
2388
|
inverseOf: "bf2:absorbedBy".freeze,
|
1073
2389
|
label: "Absorption of".freeze,
|
1074
2390
|
subPropertyOf: "bf2:precededBy".freeze,
|
1075
2391
|
type: "owl:ObjectProperty".freeze
|
1076
2392
|
property :absorbedBy,
|
1077
|
-
comment: [
|
2393
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1078
2394
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1079
|
-
definition:
|
2395
|
+
definition: "Resource that incorporates another resource.".freeze,
|
1080
2396
|
inverseOf: "bf2:absorbed".freeze,
|
1081
2397
|
label: "Absorbed by".freeze,
|
1082
2398
|
subPropertyOf: "bf2:succeededBy".freeze,
|
1083
2399
|
type: "owl:ObjectProperty".freeze
|
1084
2400
|
property :accompaniedBy,
|
1085
|
-
comment: [
|
2401
|
+
comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze],
|
1086
2402
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
1087
|
-
definition:
|
2403
|
+
definition: "Resource that accompanies the described resource.".freeze,
|
1088
2404
|
inverseOf: "bf2:accompanies".freeze,
|
1089
2405
|
label: "Accompanied by".freeze,
|
1090
2406
|
subPropertyOf: "bf2:relatedTo".freeze,
|
1091
2407
|
type: "owl:ObjectProperty".freeze
|
1092
2408
|
property :accompanies,
|
1093
|
-
comment: [
|
2409
|
+
comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze],
|
1094
2410
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
1095
|
-
definition:
|
2411
|
+
definition: "Resource that adds to or is issued with the described resource.".freeze,
|
1096
2412
|
inverseOf: "bf2:accompaniedBy".freeze,
|
1097
2413
|
label: "Accompanies".freeze,
|
1098
2414
|
subPropertyOf: "bf2:relatedTo".freeze,
|
1099
2415
|
type: "owl:ObjectProperty".freeze
|
1100
2416
|
property :acquisitionSource,
|
1101
|
-
comment:
|
2417
|
+
comment: "Used with Work or Instance".freeze,
|
1102
2418
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property".freeze, "slight change to definition)".freeze],
|
1103
|
-
definition:
|
2419
|
+
definition: "Information about an organization, person, etc., from which a resource may be obtained.".freeze,
|
1104
2420
|
label: "Source of acquisition".freeze,
|
1105
2421
|
range: "bf2:AcquisitionSource".freeze,
|
1106
2422
|
type: "owl:ObjectProperty".freeze
|
1107
2423
|
property :acquisitionTerms,
|
1108
|
-
comment:
|
2424
|
+
comment: "Used with Work or Instance".freeze,
|
1109
2425
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1110
|
-
definition:
|
2426
|
+
definition: "Conditions under which the publisher, distributor, etc., will normally supply a resource, e.g., price of a resource.".freeze,
|
1111
2427
|
label: "Terms of acquisition".freeze,
|
1112
2428
|
range: "rdfs:Literal".freeze,
|
1113
2429
|
type: "owl:DatatypeProperty".freeze
|
1114
2430
|
property :adminMetadata,
|
1115
|
-
comment:
|
2431
|
+
comment: "Used with Unspecified".freeze,
|
1116
2432
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1117
|
-
definition:
|
2433
|
+
definition: "Metadata about the metadata, especially provenance information.".freeze,
|
1118
2434
|
label: "Administrative metadata".freeze,
|
1119
2435
|
range: "bf2:AdminMetadata".freeze,
|
1120
2436
|
type: "owl:ObjectProperty".freeze
|
1121
2437
|
property :agent,
|
1122
|
-
comment:
|
2438
|
+
comment: "Used with Unspecified".freeze,
|
1123
2439
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1124
|
-
definition:
|
2440
|
+
definition: "Entity associated with a resource or element of description, such as the name of the entity responsible for the content or of the publication, printing, distribution, issue, release or production of a resource.".freeze,
|
1125
2441
|
label: "Associated agent".freeze,
|
1126
2442
|
range: "bf2:Agent".freeze,
|
1127
2443
|
type: "owl:ObjectProperty".freeze
|
1128
2444
|
property :appliedMaterial,
|
1129
2445
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1130
|
-
definition:
|
2446
|
+
definition: "Physical or chemical substance applied to a base material of a resource.".freeze,
|
1131
2447
|
domain: "bf2:Instance".freeze,
|
1132
2448
|
label: "Applied material".freeze,
|
1133
2449
|
range: "bf2:AppliedMaterial".freeze,
|
1134
2450
|
type: "owl:ObjectProperty".freeze
|
1135
2451
|
property :arrangement,
|
1136
|
-
comment:
|
2452
|
+
comment: "Used with Work or Instance".freeze,
|
1137
2453
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1138
|
-
definition:
|
2454
|
+
definition: "Information about the organization and arrangement of a collection of resources.".freeze,
|
1139
2455
|
label: "Organization and arrangement".freeze,
|
1140
2456
|
range: "bf2:Arrangement".freeze,
|
1141
2457
|
type: "owl:ObjectProperty".freeze
|
1142
2458
|
property :ascensionAndDeclination,
|
1143
2459
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1144
|
-
definition:
|
2460
|
+
definition: "System for identifying the location of a celestial object in the sky covered by the cartographic content of a resource using the angles of right ascension and declination.".freeze,
|
1145
2461
|
domain: "bf2:Cartographic".freeze,
|
1146
2462
|
label: "Cartographic ascension and declination".freeze,
|
1147
2463
|
range: "rdfs:Literal".freeze,
|
1148
2464
|
type: "owl:DatatypeProperty".freeze
|
1149
2465
|
property :aspectRatio,
|
1150
|
-
comment:
|
2466
|
+
comment: "Used with Work or Instance".freeze,
|
1151
2467
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1152
|
-
definition:
|
2468
|
+
definition: "Proportional relationship between an image's width and its height.".freeze,
|
1153
2469
|
label: "Aspect ratio".freeze,
|
1154
2470
|
range: "bf2:AspectRatio".freeze,
|
1155
2471
|
type: "owl:ObjectProperty".freeze
|
1156
2472
|
property :assigner,
|
1157
2473
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1158
|
-
definition:
|
2474
|
+
definition: "Entity that assigned the metadata, such as the entity that assigned a classification number, entity that assigned a name, entity that assigned an identifier.".freeze,
|
1159
2475
|
domain: "bf2:AdminMetadata".freeze,
|
1160
2476
|
label: "Assigner".freeze,
|
1161
2477
|
range: "bf2:Agent".freeze,
|
1162
2478
|
type: "owl:ObjectProperty".freeze
|
1163
2479
|
property :awards,
|
1164
|
-
comment:
|
2480
|
+
comment: "Used with Work or Instance".freeze,
|
1165
2481
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1166
|
-
definition:
|
2482
|
+
definition: "Information on awards associated with the described resource.".freeze,
|
1167
2483
|
label: "Award note".freeze,
|
1168
2484
|
range: "rdfs:Literal".freeze,
|
1169
2485
|
type: "owl:DatatypeProperty".freeze
|
1170
2486
|
property :baseMaterial,
|
1171
2487
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1172
|
-
definition:
|
2488
|
+
definition: "Underlying physical material of a resource.".freeze,
|
1173
2489
|
domain: "bf2:Instance".freeze,
|
1174
2490
|
label: "Base material".freeze,
|
1175
2491
|
range: "bf2:BaseMaterial".freeze,
|
1176
2492
|
type: "owl:ObjectProperty".freeze
|
1177
2493
|
property :bookFormat,
|
1178
2494
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1179
|
-
definition:
|
2495
|
+
definition: "Result of folding a printed sheet to form a gathering of leaves.".freeze,
|
1180
2496
|
domain: "bf2:Instance".freeze,
|
1181
2497
|
label: "Book format".freeze,
|
1182
2498
|
range: "bf2:BookFormat".freeze,
|
1183
2499
|
type: "owl:ObjectProperty".freeze
|
1184
2500
|
property :capture,
|
1185
|
-
comment:
|
2501
|
+
comment: "Used with Work or Instance".freeze,
|
1186
2502
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1187
|
-
definition:
|
2503
|
+
definition: "Information about place and date associated with the capture (e.g., recording, filming) of the content of a resource.".freeze,
|
1188
2504
|
label: "Capture of content".freeze,
|
1189
2505
|
range: "bf2:Capture".freeze,
|
1190
2506
|
type: "owl:ObjectProperty".freeze
|
1191
2507
|
property :carrier,
|
1192
2508
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1193
|
-
definition:
|
2509
|
+
definition: "Categorization reflecting the format of the storage medium and housing of a carrier.".freeze,
|
1194
2510
|
domain: "bf2:Instance".freeze,
|
1195
2511
|
label: "Carrier type".freeze,
|
1196
2512
|
range: "bf2:Carrier".freeze,
|
1197
2513
|
type: "owl:ObjectProperty".freeze
|
1198
2514
|
property :cartographicAttributes,
|
1199
|
-
comment:
|
2515
|
+
comment: "Used with Work or Instance".freeze,
|
1200
2516
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1201
|
-
definition:
|
2517
|
+
definition: "Cartographic data that identifies characteristics of the resource, such as coordinates, projection, etc.".freeze,
|
1202
2518
|
label: "Cartographic data".freeze,
|
1203
2519
|
range: "bf2:Cartographic".freeze,
|
1204
2520
|
type: "owl:ObjectProperty".freeze
|
1205
2521
|
property :changeDate,
|
1206
2522
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1207
|
-
definition:
|
2523
|
+
definition: "Date or date and time on which the metadata was modified.".freeze,
|
1208
2524
|
domain: "bf2:AdminMetadata".freeze,
|
1209
2525
|
label: "Description change date".freeze,
|
1210
2526
|
range: "rdfs:Literal".freeze,
|
1211
2527
|
subPropertyOf: "bf2:date".freeze,
|
1212
2528
|
type: "owl:DatatypeProperty".freeze
|
1213
2529
|
property :classification,
|
1214
|
-
comment:
|
2530
|
+
comment: "Used with Work, Instance or Item".freeze,
|
1215
2531
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1216
|
-
definition:
|
2532
|
+
definition: "Classification number in any scheme.".freeze,
|
1217
2533
|
label: "Classification".freeze,
|
1218
2534
|
range: "bf2:Classification".freeze,
|
1219
2535
|
type: "owl:ObjectProperty".freeze
|
1220
2536
|
property :classificationPortion,
|
1221
2537
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1222
|
-
definition:
|
2538
|
+
definition: "Classification number (single class number or beginning number of a span) that indicates the subject by applying a formal system of coding and organizing resources.".freeze,
|
1223
2539
|
domain: "bf2:Classification".freeze,
|
1224
2540
|
label: "Classification number".freeze,
|
1225
2541
|
range: "rdfs:Literal".freeze,
|
1226
2542
|
type: "owl:DatatypeProperty".freeze
|
1227
2543
|
property :code,
|
1228
|
-
comment:
|
2544
|
+
comment: "Used with Unspecified".freeze,
|
1229
2545
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1230
|
-
definition:
|
2546
|
+
definition: "String of characters that serves as a code representing information.".freeze,
|
1231
2547
|
label: "Code".freeze,
|
1232
2548
|
range: "rdfs:Literal".freeze,
|
1233
2549
|
type: "owl:DatatypeProperty".freeze
|
1234
2550
|
property :colorContent,
|
1235
|
-
comment:
|
2551
|
+
comment: "Used with Work or Instance".freeze,
|
1236
2552
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1237
|
-
definition:
|
2553
|
+
definition: "Color characteristics, e.g., black and white, multicolored.".freeze,
|
1238
2554
|
label: "Color content".freeze,
|
1239
2555
|
range: "bf2:ColorContent".freeze,
|
1240
2556
|
type: "owl:ObjectProperty".freeze
|
1241
2557
|
property :content,
|
1242
2558
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1243
|
-
definition:
|
2559
|
+
definition: "Categorization reflecting the fundamental form of communication in which the content is expressed and the human sense through which it is intended to be perceived.".freeze,
|
1244
2560
|
domain: "bf2:Work".freeze,
|
1245
2561
|
label: "Content type".freeze,
|
1246
2562
|
range: "bf2:Content".freeze,
|
1247
2563
|
type: "owl:ObjectProperty".freeze
|
1248
2564
|
property :contentAccessibility,
|
1249
|
-
comment:
|
2565
|
+
comment: "Used with Work or Instance".freeze,
|
1250
2566
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze, "2017-03-15 fixed typo in range".freeze],
|
1251
|
-
definition:
|
2567
|
+
definition: "Information that assists those with a sensory impairment for greater understanding of content, e.g., captions.".freeze,
|
1252
2568
|
label: "Content accessibility information".freeze,
|
1253
2569
|
range: "bf2:ContentAccessibility".freeze,
|
1254
2570
|
type: "owl:ObjectProperty".freeze
|
1255
2571
|
property :continuedBy,
|
1256
|
-
comment: [
|
2572
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1257
2573
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1258
|
-
definition:
|
2574
|
+
definition: "Resource whose content continues an earlier resource under a new title.".freeze,
|
1259
2575
|
inverseOf: "bf2:continues".freeze,
|
1260
2576
|
label: "Continued by".freeze,
|
1261
2577
|
subPropertyOf: "bf2:succeededBy".freeze,
|
1262
2578
|
type: "owl:ObjectProperty".freeze
|
1263
2579
|
property :continuedInPartBy,
|
1264
|
-
comment: [
|
2580
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1265
2581
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1266
|
-
definition:
|
2582
|
+
definition: "Resource part of whose content separated from an earlier resource to form a new resource.".freeze,
|
1267
2583
|
inverseOf: "bf2:separatedFrom".freeze,
|
1268
2584
|
label: "Continued in part by".freeze,
|
1269
2585
|
subPropertyOf: "bf2:succeededBy".freeze,
|
1270
2586
|
type: "owl:ObjectProperty".freeze
|
1271
2587
|
property :continues,
|
1272
|
-
comment: [
|
2588
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1273
2589
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1274
|
-
definition:
|
2590
|
+
definition: "Resource that is continued by the content of a later resource under a new title.".freeze,
|
1275
2591
|
inverseOf: "bf2:continuedBy".freeze,
|
1276
2592
|
label: "Continuation of".freeze,
|
1277
2593
|
subPropertyOf: "bf2:precededBy".freeze,
|
1278
2594
|
type: "owl:ObjectProperty".freeze
|
1279
2595
|
property :continuesInPart,
|
1280
|
-
comment: [
|
2596
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1281
2597
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1282
|
-
definition:
|
2598
|
+
definition: "Resource that split into two or more separate resources with new titles.".freeze,
|
1283
2599
|
inverseOf: "bf2:splitInto".freeze,
|
1284
2600
|
label: "Continuation in part of".freeze,
|
1285
2601
|
subPropertyOf: "bf2:precededBy".freeze,
|
1286
2602
|
type: "owl:ObjectProperty".freeze
|
1287
2603
|
property :contribution,
|
1288
|
-
comment:
|
2604
|
+
comment: "Used with Work, Instance or Item".freeze,
|
1289
2605
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Corrected label)".freeze],
|
1290
|
-
definition:
|
2606
|
+
definition: "Agent and its role in relation to the resource.".freeze,
|
1291
2607
|
label: "Contributor and role".freeze,
|
1292
2608
|
range: "bf2:Contribution".freeze,
|
1293
2609
|
type: "owl:ObjectProperty".freeze
|
1294
2610
|
property :coordinates,
|
1295
2611
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1296
|
-
definition:
|
2612
|
+
definition: "Mathematical system for identifying the area covered by the cartographic content of a resource, expressed either by means of longitude and latitude on the surface of planets or by the angles of right ascension and declination for celestial cartographic content.".freeze,
|
1297
2613
|
domain: "bf2:Cartographic".freeze,
|
1298
2614
|
label: "Cartographic coordinates".freeze,
|
1299
2615
|
range: "rdfs:Literal".freeze,
|
1300
2616
|
type: "owl:DatatypeProperty".freeze
|
1301
2617
|
property :copyrightDate,
|
1302
|
-
comment:
|
2618
|
+
comment: "Used with Work or Instance".freeze,
|
1303
2619
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1304
|
-
definition:
|
2620
|
+
definition: "Date associated with a claim of protection under copyright or a similar regime.".freeze,
|
1305
2621
|
label: "Copyright date".freeze,
|
1306
2622
|
range: "rdfs:Literal".freeze,
|
1307
2623
|
subPropertyOf: "bf2:date".freeze,
|
1308
2624
|
type: "owl:DatatypeProperty".freeze
|
1309
2625
|
property :copyrightRegistration,
|
1310
|
-
comment:
|
2626
|
+
comment: "Used with Work or Instance".freeze,
|
1311
2627
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-05-04 (Corrected expected value)".freeze],
|
1312
|
-
definition:
|
2628
|
+
definition: "Copyright and Legal Deposit registration information".freeze,
|
1313
2629
|
label: "Copyright registration information".freeze,
|
1314
2630
|
range: "bf2:CopyrightRegistration".freeze,
|
1315
2631
|
type: "owl:ObjectProperty".freeze
|
1316
2632
|
property :count,
|
1317
|
-
comment:
|
2633
|
+
comment: "Used with Unspecified".freeze,
|
1318
2634
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1319
|
-
definition:
|
2635
|
+
definition: "Number associated with a measure of units, such as the number of units and/or subunits making up a resource.".freeze,
|
1320
2636
|
label: "Number of units".freeze,
|
1321
2637
|
range: "rdfs:Literal".freeze,
|
1322
2638
|
type: "owl:DatatypeProperty".freeze
|
1323
2639
|
property :coverArt,
|
1324
|
-
comment:
|
2640
|
+
comment: "Used with Work or Instance".freeze,
|
1325
2641
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1326
|
-
definition:
|
2642
|
+
definition: "Cover art image of a resource.".freeze,
|
1327
2643
|
label: "Cover art".freeze,
|
1328
2644
|
range: "bf2:CoverArt".freeze,
|
1329
2645
|
type: "owl:ObjectProperty".freeze
|
1330
2646
|
property :creationDate,
|
1331
2647
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1332
|
-
definition:
|
2648
|
+
definition: "Date or date and time on which the original metadata first created.".freeze,
|
1333
2649
|
domain: "bf2:AdminMetadata".freeze,
|
1334
2650
|
label: "Description creation date".freeze,
|
1335
2651
|
range: "rdfs:Literal".freeze,
|
1336
2652
|
subPropertyOf: "bf2:date".freeze,
|
1337
2653
|
type: "owl:DatatypeProperty".freeze
|
1338
2654
|
property :credits,
|
1339
|
-
comment:
|
2655
|
+
comment: "Used with Work or Instance".freeze,
|
1340
2656
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1341
|
-
definition:
|
2657
|
+
definition: "Information in note form of credits for persons or organizations who have participated in the creation and/or production of the resource.".freeze,
|
1342
2658
|
label: "Credits note".freeze,
|
1343
2659
|
range: "rdfs:Literal".freeze,
|
1344
2660
|
type: "owl:DatatypeProperty".freeze
|
1345
2661
|
property :custodialHistory,
|
1346
|
-
comment:
|
2662
|
+
comment: "Used with Work, Instance or Item".freeze,
|
1347
2663
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1348
|
-
definition:
|
2664
|
+
definition: "Information about the provenance, such as origin, ownership and custodial history (chain of custody), of a resource.".freeze,
|
1349
2665
|
label: "Custodial history".freeze,
|
1350
2666
|
range: "rdfs:Literal".freeze,
|
1351
2667
|
type: "owl:DatatypeProperty".freeze
|
1352
2668
|
property :dataSource,
|
1353
|
-
comment: [
|
2669
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1354
2670
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (updated range)".freeze],
|
1355
|
-
definition:
|
2671
|
+
definition: "Resource that is a data source to which the described resource is related. It may contain information about other files, printed sources, or collection procedures.".freeze,
|
1356
2672
|
label: "Data source".freeze,
|
1357
2673
|
subPropertyOf: "bf2:relatedTo".freeze,
|
1358
2674
|
type: "owl:ObjectProperty".freeze
|
1359
2675
|
property :date,
|
1360
|
-
comment:
|
2676
|
+
comment: "Used with Unspecified".freeze,
|
1361
2677
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1362
|
-
definition:
|
2678
|
+
definition: "Date designation associated with a resource or element of description, such as date of title variation; year a degree was awarded; date associated with the publication, printing, distribution, issue, release or production of a resource. May be date typed.".freeze,
|
1363
2679
|
label: "Date".freeze,
|
1364
2680
|
range: "rdfs:Literal".freeze,
|
1365
2681
|
type: "owl:DatatypeProperty".freeze
|
1366
2682
|
property :degree,
|
1367
2683
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1368
|
-
definition:
|
2684
|
+
definition: "Degree for which author was a candidate.".freeze,
|
1369
2685
|
domain: "bf2:Dissertation".freeze,
|
1370
2686
|
label: "Degree".freeze,
|
1371
2687
|
range: "rdfs:Literal".freeze,
|
1372
2688
|
type: "owl:DatatypeProperty".freeze
|
1373
2689
|
property :derivativeOf,
|
1374
|
-
comment: [
|
2690
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1375
2691
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
1376
|
-
definition:
|
2692
|
+
definition: "Source work from which the described resource is derived.".freeze,
|
1377
2693
|
inverseOf: "bf2:hasDerivative".freeze,
|
1378
2694
|
label: "Is derivative of".freeze,
|
1379
2695
|
subPropertyOf: "bf2:relatedTo".freeze,
|
1380
2696
|
type: "owl:ObjectProperty".freeze
|
1381
2697
|
property :derivedFrom,
|
1382
2698
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1383
|
-
definition:
|
2699
|
+
definition: "Link to the metadata that was the source of the data.".freeze,
|
1384
2700
|
domain: "bf2:AdminMetadata".freeze,
|
1385
2701
|
label: "Source metadata".freeze,
|
1386
2702
|
range: "rdfs:Literal".freeze,
|
1387
2703
|
type: "owl:DatatypeProperty".freeze
|
1388
2704
|
property :descriptionAuthentication,
|
1389
2705
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1390
|
-
definition:
|
2706
|
+
definition: "Indication of specific types of reviews that have been carried out on the description information.".freeze,
|
1391
2707
|
domain: "bf2:AdminMetadata".freeze,
|
1392
2708
|
label: "Description authentication".freeze,
|
1393
2709
|
range: "bf2:DescriptionAuthentication".freeze,
|
1394
2710
|
type: "owl:ObjectProperty".freeze
|
1395
2711
|
property :descriptionConventions,
|
1396
2712
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-24 (fixed domain name)".freeze],
|
1397
|
-
definition:
|
2713
|
+
definition: "Rules used for the descriptive content of the resource description.".freeze,
|
1398
2714
|
domain: "bf2:AdminMetadata".freeze,
|
1399
2715
|
label: "Description conventions".freeze,
|
1400
2716
|
range: "bf2:DescriptionConventions".freeze,
|
1401
2717
|
type: "owl:ObjectProperty".freeze
|
1402
2718
|
property :descriptionLanguage,
|
1403
2719
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1404
|
-
definition:
|
2720
|
+
definition: "Language used for the metadata.".freeze,
|
1405
2721
|
domain: "bf2:AdminMetadata".freeze,
|
1406
2722
|
label: "Description language".freeze,
|
1407
2723
|
range: "bf2:Language".freeze,
|
1408
2724
|
type: "owl:ObjectProperty".freeze
|
1409
2725
|
property :descriptionModifier,
|
1410
2726
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1411
|
-
definition:
|
2727
|
+
definition: "Agency that modified a description.".freeze,
|
1412
2728
|
domain: "bf2:AdminMetadata".freeze,
|
1413
2729
|
label: "Description modifier".freeze,
|
1414
2730
|
range: "bf2:Agent".freeze,
|
1415
2731
|
type: "owl:ObjectProperty".freeze
|
1416
2732
|
property :digitalCharacteristic,
|
1417
2733
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1418
|
-
definition:
|
2734
|
+
definition: "Technical specification relating to the digital encoding of text, image, audio, video, and other types of data in a resource.".freeze,
|
1419
2735
|
domain: "bf2:Instance".freeze,
|
1420
2736
|
label: "Digital characteristic".freeze,
|
1421
2737
|
range: "bf2:DigitalCharacteristic".freeze,
|
1422
2738
|
type: "owl:ObjectProperty".freeze
|
1423
2739
|
property :dimensions,
|
1424
2740
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1425
|
-
definition:
|
2741
|
+
definition: "Measurements of the carrier or carriers and/or the container of a resource.".freeze,
|
1426
2742
|
domain: "bf2:Instance".freeze,
|
1427
2743
|
label: "Dimensions".freeze,
|
1428
2744
|
range: "rdfs:Literal".freeze,
|
1429
2745
|
type: "owl:DatatypeProperty".freeze
|
1430
2746
|
property :dissertation,
|
1431
|
-
comment:
|
2747
|
+
comment: "Used with Work or Instance".freeze,
|
1432
2748
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1433
|
-
definition:
|
2749
|
+
definition: "Work presented as part of the formal requirements for an academic degree.".freeze,
|
1434
2750
|
label: "Dissertation Information".freeze,
|
1435
2751
|
range: "bf2:Dissertation".freeze,
|
1436
2752
|
type: "owl:ObjectProperty".freeze
|
1437
2753
|
property :duration,
|
1438
|
-
comment:
|
2754
|
+
comment: "Used with Work or Instance".freeze,
|
1439
2755
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1440
|
-
definition:
|
2756
|
+
definition: "Information about the playing time, running time, etc. of a resource.".freeze,
|
1441
2757
|
label: "Duration".freeze,
|
1442
2758
|
range: "rdfs:Literal".freeze,
|
1443
2759
|
type: "owl:DatatypeProperty".freeze
|
1444
2760
|
property :edition,
|
1445
2761
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1446
|
-
definition:
|
2762
|
+
definition: "Edition of the classification scheme, such as full, abridged or a number, when a classification scheme designates editions.".freeze,
|
1447
2763
|
domain: "bf2:Classification".freeze,
|
1448
2764
|
label: "Classification scheme edition".freeze,
|
1449
2765
|
range: "rdfs:Literal".freeze,
|
1450
2766
|
type: "owl:DatatypeProperty".freeze
|
1451
2767
|
property :editionEnumeration,
|
1452
2768
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1453
|
-
definition:
|
2769
|
+
definition: "Enumeration of the edition; usually transcribed.".freeze,
|
1454
2770
|
domain: "bf2:Instance".freeze,
|
1455
2771
|
label: "Edition enumeration".freeze,
|
1456
2772
|
range: "rdfs:Literal".freeze,
|
1457
2773
|
type: "owl:DatatypeProperty".freeze
|
1458
2774
|
property :editionStatement,
|
1459
2775
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1460
|
-
definition:
|
2776
|
+
definition: "Information identifying the edition or version of the resource and associated statements of responsibility for the edition; usually transcribed.".freeze,
|
1461
2777
|
domain: "bf2:Instance".freeze,
|
1462
2778
|
label: "Edition statement".freeze,
|
1463
2779
|
range: "rdfs:Literal".freeze,
|
1464
2780
|
type: "owl:DatatypeProperty".freeze
|
1465
2781
|
property :electronicLocator,
|
1466
2782
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1467
|
-
definition:
|
2783
|
+
definition: "Electronic location from which the resource is available.".freeze,
|
1468
2784
|
domain: "bf2:Item".freeze,
|
1469
2785
|
label: "Electronic location".freeze,
|
1470
2786
|
type: "owl:ObjectProperty".freeze
|
1471
2787
|
property :emulsion,
|
1472
2788
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1473
|
-
definition:
|
2789
|
+
definition: "Suspension of light-sensitive chemicals used as a coating on a microfilm or microfiche, e.g., silver halide.".freeze,
|
1474
2790
|
domain: "bf2:Instance".freeze,
|
1475
2791
|
label: "Emulsion".freeze,
|
1476
2792
|
range: "bf2:Emulsion".freeze,
|
1477
2793
|
type: "owl:ObjectProperty".freeze
|
1478
2794
|
property :ensemble,
|
1479
2795
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1480
|
-
definition:
|
2796
|
+
definition: "Ensemble for which a musical work is appropriate.".freeze,
|
1481
2797
|
domain: "bf2:Work".freeze,
|
1482
2798
|
label: "Ensemble".freeze,
|
1483
2799
|
range: "bf2:MusicEnsemble".freeze,
|
1484
2800
|
type: "owl:ObjectProperty".freeze
|
1485
2801
|
property :ensembleType,
|
1486
2802
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1487
|
-
definition:
|
2803
|
+
definition: "Specific type of ensemble, such as orchestra, band, guitar ensemble.".freeze,
|
1488
2804
|
domain: "bf2:MusicEnsemble".freeze,
|
1489
2805
|
label: "Ensemble type".freeze,
|
1490
2806
|
range: "rdfs:Literal".freeze,
|
1491
2807
|
type: "owl:DatatypeProperty".freeze
|
1492
2808
|
property :enumerationAndChronology,
|
1493
2809
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1494
|
-
definition:
|
2810
|
+
definition: "Numbering and dates of issues or items held.".freeze,
|
1495
2811
|
domain: "bf2:Item".freeze,
|
1496
2812
|
label: "Numbering or other enumeration and dates associated with issues or items held.".freeze,
|
1497
2813
|
range: "bf2:EnumerationAndChronology".freeze,
|
1498
2814
|
type: "owl:ObjectProperty".freeze
|
1499
2815
|
property :equinox,
|
1500
2816
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1501
|
-
definition:
|
2817
|
+
definition: "One of two points of intersection of the ecliptic and the celestial equator, occupied by the sun when its declination is 0 degrees.".freeze,
|
1502
2818
|
domain: "bf2:Cartographic".freeze,
|
1503
2819
|
label: "Cartographic equinox".freeze,
|
1504
2820
|
range: "rdfs:Literal".freeze,
|
1505
2821
|
type: "owl:DatatypeProperty".freeze
|
1506
2822
|
property :eventContent,
|
1507
2823
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
1508
|
-
definition:
|
2824
|
+
definition: "Work whose content is the described event.".freeze,
|
1509
2825
|
domain: "bf2:Event".freeze,
|
1510
2826
|
inverseOf: "bf2:eventContentOf".freeze,
|
1511
2827
|
label: "Event content".freeze,
|
@@ -1514,7 +2830,7 @@ module RDF::Vocab
|
|
1514
2830
|
type: "owl:ObjectProperty".freeze
|
1515
2831
|
property :eventContentOf,
|
1516
2832
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
1517
|
-
definition:
|
2833
|
+
definition: "Event that is the content of the described work.".freeze,
|
1518
2834
|
domain: "bf2:Work".freeze,
|
1519
2835
|
inverseOf: "bf2:eventContent".freeze,
|
1520
2836
|
label: "Has event content".freeze,
|
@@ -1523,14 +2839,14 @@ module RDF::Vocab
|
|
1523
2839
|
type: "owl:ObjectProperty".freeze
|
1524
2840
|
property :exclusionGRing,
|
1525
2841
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1526
|
-
definition:
|
2842
|
+
definition: "Coordinate pairs that identify the closed non-intersecting boundary of the area contained within the G-polygon outer ring that is excluded.".freeze,
|
1527
2843
|
domain: "bf2:Cartographic".freeze,
|
1528
2844
|
label: "Cartographic G ring area excluded".freeze,
|
1529
2845
|
range: "rdfs:Literal".freeze,
|
1530
2846
|
type: "owl:DatatypeProperty".freeze
|
1531
2847
|
property :expressionOf,
|
1532
2848
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
1533
|
-
definition:
|
2849
|
+
definition: "Work that the described Work is an expression of. For use to connect Works under FRBR/RDA rules.".freeze,
|
1534
2850
|
domain: "bf2:Work".freeze,
|
1535
2851
|
inverseOf: "bf2:hasExpression".freeze,
|
1536
2852
|
label: "Expression of".freeze,
|
@@ -1539,58 +2855,58 @@ module RDF::Vocab
|
|
1539
2855
|
type: "owl:ObjectProperty".freeze
|
1540
2856
|
property :extent,
|
1541
2857
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1542
|
-
definition:
|
2858
|
+
definition: "Number and type of units and/or subunits making up a resource.".freeze,
|
1543
2859
|
domain: "bf2:Instance".freeze,
|
1544
2860
|
label: "Extent".freeze,
|
1545
2861
|
range: "bf2:Extent".freeze,
|
1546
2862
|
type: "owl:ObjectProperty".freeze
|
1547
2863
|
property :findingAid,
|
1548
|
-
comment: [
|
2864
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1549
2865
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1550
|
-
definition:
|
2866
|
+
definition: "Relationship for archival, visual, and manuscript resources to a finding aid or similar control materials.".freeze,
|
1551
2867
|
inverseOf: "bf2:findingAidOf".freeze,
|
1552
2868
|
label: "Finding aid".freeze,
|
1553
2869
|
subPropertyOf: "bf2:accompaniedBy".freeze,
|
1554
2870
|
type: "owl:ObjectProperty".freeze
|
1555
2871
|
property :findingAidOf,
|
1556
|
-
comment: [
|
2872
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1557
2873
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1558
|
-
definition:
|
2874
|
+
definition: "Finding aid or similar control materials for archival, visual, and manuscript resources.".freeze,
|
1559
2875
|
inverseOf: "bf2:findingAid".freeze,
|
1560
2876
|
label: "Finding aid for".freeze,
|
1561
2877
|
subPropertyOf: "bf2:accompanies".freeze,
|
1562
2878
|
type: "owl:ObjectProperty".freeze
|
1563
2879
|
property :firstIssue,
|
1564
|
-
comment:
|
2880
|
+
comment: "Used with Work or Instance".freeze,
|
1565
2881
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1566
|
-
definition:
|
2882
|
+
definition: "Beginning date of a resource and/or the sequential designations.".freeze,
|
1567
2883
|
label: "Multipart first issue".freeze,
|
1568
2884
|
range: "rdfs:Literal".freeze,
|
1569
2885
|
type: "owl:DatatypeProperty".freeze
|
1570
2886
|
property :fontSize,
|
1571
2887
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1572
|
-
definition:
|
2888
|
+
definition: "Size of the type used to represent the characters and symbols in a resource.".freeze,
|
1573
2889
|
domain: "bf2:Instance".freeze,
|
1574
2890
|
label: "Font size".freeze,
|
1575
2891
|
range: "bf2:FontSize".freeze,
|
1576
2892
|
type: "owl:ObjectProperty".freeze
|
1577
2893
|
property :frequency,
|
1578
|
-
comment:
|
2894
|
+
comment: "Used with Work or Instance".freeze,
|
1579
2895
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1580
|
-
definition:
|
2896
|
+
definition: "Intervals at which the parts of a serially produced resource or the updates to an integrating resource are issued.".freeze,
|
1581
2897
|
label: "Frequency".freeze,
|
1582
2898
|
range: "bf2:Frequency".freeze,
|
1583
2899
|
type: "owl:ObjectProperty".freeze
|
1584
2900
|
property :generation,
|
1585
2901
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1586
|
-
definition:
|
2902
|
+
definition: "Relationship between an original carrier and the carrier of a reproduction made from the original.".freeze,
|
1587
2903
|
domain: "bf2:Instance".freeze,
|
1588
2904
|
label: "Generation".freeze,
|
1589
2905
|
range: "bf2:Generation".freeze,
|
1590
2906
|
type: "owl:ObjectProperty".freeze
|
1591
2907
|
property :generationDate,
|
1592
2908
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1593
|
-
definition:
|
2909
|
+
definition: "Date of conversion of the metadata from another format.".freeze,
|
1594
2910
|
domain: "bf2:AdminMetadata".freeze,
|
1595
2911
|
label: "Date generated".freeze,
|
1596
2912
|
range: "rdfs:Literal".freeze,
|
@@ -1598,50 +2914,50 @@ module RDF::Vocab
|
|
1598
2914
|
type: "owl:DatatypeProperty".freeze
|
1599
2915
|
property :generationProcess,
|
1600
2916
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1601
|
-
definition:
|
2917
|
+
definition: "Indication of the program or process used to generate the description by application of a particular transformation.".freeze,
|
1602
2918
|
domain: "bf2:AdminMetadata".freeze,
|
1603
2919
|
label: "Description generation".freeze,
|
1604
2920
|
range: "bf2:GenerationProcess".freeze,
|
1605
2921
|
type: "owl:ObjectProperty".freeze
|
1606
2922
|
property :genreForm,
|
1607
|
-
comment:
|
2923
|
+
comment: "Used with Work, Instance or Item".freeze,
|
1608
2924
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1609
|
-
definition:
|
2925
|
+
definition: "Form category or genre to which a resource belongs".freeze,
|
1610
2926
|
label: "Genre/form".freeze,
|
1611
2927
|
range: "bf2:GenreForm".freeze,
|
1612
2928
|
type: "owl:ObjectProperty".freeze
|
1613
2929
|
property :geographicCoverage,
|
1614
2930
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property)".freeze],
|
1615
|
-
definition:
|
2931
|
+
definition: "Geographic coverage of the content of the resource.".freeze,
|
1616
2932
|
domain: "bf2:Work".freeze,
|
1617
2933
|
label: "Geographic coverage".freeze,
|
1618
2934
|
range: "bf2:GeographicCoverage".freeze,
|
1619
2935
|
type: "owl:ObjectProperty".freeze
|
1620
2936
|
property :grantingInstitution,
|
1621
2937
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1622
|
-
definition:
|
2938
|
+
definition: "Name of degree granting institution.".freeze,
|
1623
2939
|
domain: "bf2:Dissertation".freeze,
|
1624
2940
|
label: "Degree issuing institution".freeze,
|
1625
2941
|
range: "bf2:Agent".freeze,
|
1626
2942
|
type: "owl:ObjectProperty".freeze
|
1627
2943
|
property :hasDerivative,
|
1628
|
-
comment: [
|
2944
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1629
2945
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
1630
|
-
definition:
|
2946
|
+
definition: "Resource that is a modification of the described work.".freeze,
|
1631
2947
|
inverseOf: "bf2:derivativeOf".freeze,
|
1632
2948
|
label: "Has derivative".freeze,
|
1633
2949
|
subPropertyOf: "bf2:relatedTo".freeze,
|
1634
2950
|
type: "owl:ObjectProperty".freeze
|
1635
2951
|
property :hasEquivalent,
|
1636
|
-
comment: [
|
2952
|
+
comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze],
|
1637
2953
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1638
|
-
definition:
|
2954
|
+
definition: "Resource embodies the same content as the described resource.".freeze,
|
1639
2955
|
label: "Equivalence".freeze,
|
1640
2956
|
subPropertyOf: "bf2:relatedTo".freeze,
|
1641
2957
|
type: "owl:SymmetricProperty".freeze
|
1642
2958
|
property :hasExpression,
|
1643
2959
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
1644
|
-
definition:
|
2960
|
+
definition: "Work that is an expression of a described Work. For use to relate Works under FRBR/RDA rules.".freeze,
|
1645
2961
|
domain: "bf2:Work".freeze,
|
1646
2962
|
inverseOf: "bf2:expressionOf".freeze,
|
1647
2963
|
label: "Expressed as".freeze,
|
@@ -1650,7 +2966,7 @@ module RDF::Vocab
|
|
1650
2966
|
type: "owl:ObjectProperty".freeze
|
1651
2967
|
property :hasInstance,
|
1652
2968
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
1653
|
-
definition:
|
2969
|
+
definition: "Instance is related to described Work. For use to connect Works to Instances in the BIBFRAME structure.".freeze,
|
1654
2970
|
domain: "bf2:Work".freeze,
|
1655
2971
|
inverseOf: "bf2:instanceOf".freeze,
|
1656
2972
|
label: "Instance of Work".freeze,
|
@@ -1659,7 +2975,7 @@ module RDF::Vocab
|
|
1659
2975
|
type: "owl:ObjectProperty".freeze
|
1660
2976
|
property :hasItem,
|
1661
2977
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2017-02-07 (slight revision of definition)".freeze],
|
1662
|
-
definition:
|
2978
|
+
definition: "Item which is an example of the described Instance.".freeze,
|
1663
2979
|
domain: "bf2:Instance".freeze,
|
1664
2980
|
inverseOf: "bf2:itemOf".freeze,
|
1665
2981
|
label: "Has holding".freeze,
|
@@ -1667,16 +2983,16 @@ module RDF::Vocab
|
|
1667
2983
|
subPropertyOf: "bf2:relatedTo".freeze,
|
1668
2984
|
type: "owl:ObjectProperty".freeze
|
1669
2985
|
property :hasPart,
|
1670
|
-
comment: [
|
2986
|
+
comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze],
|
1671
2987
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
1672
|
-
definition:
|
2988
|
+
definition: "Resource that is included either physically or logically in the described resource".freeze,
|
1673
2989
|
inverseOf: "bf2:partOf".freeze,
|
1674
2990
|
label: "Has part".freeze,
|
1675
2991
|
subPropertyOf: "bf2:relatedTo".freeze,
|
1676
2992
|
type: "owl:ObjectProperty".freeze
|
1677
2993
|
property :hasReproduction,
|
1678
2994
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
1679
|
-
definition:
|
2995
|
+
definition: "Resource that reproduces another Resource.".freeze,
|
1680
2996
|
domain: "bf2:Instance".freeze,
|
1681
2997
|
inverseOf: "bf2:reproductionOf".freeze,
|
1682
2998
|
label: "Reproduced as".freeze,
|
@@ -1684,90 +3000,90 @@ module RDF::Vocab
|
|
1684
3000
|
subPropertyOf: "bf2:hasEquivalent".freeze,
|
1685
3001
|
type: "owl:ObjectProperty".freeze
|
1686
3002
|
property :hasSeries,
|
1687
|
-
comment: [
|
3003
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1688
3004
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1689
|
-
definition:
|
3005
|
+
definition: "Resource in which the part has been issued; the title of the larger resource appears on the part.".freeze,
|
1690
3006
|
inverseOf: "bf2:seriesOf".freeze,
|
1691
3007
|
label: "In series".freeze,
|
1692
3008
|
subPropertyOf: "bf2:partOf".freeze,
|
1693
3009
|
type: "owl:ObjectProperty".freeze
|
1694
3010
|
property :hasSubseries,
|
1695
|
-
comment: [
|
3011
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1696
3012
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1697
|
-
definition:
|
3013
|
+
definition: "series resource that is part of another series.".freeze,
|
1698
3014
|
inverseOf: "bf2:subseriesOf".freeze,
|
1699
3015
|
label: "Subseries".freeze,
|
1700
3016
|
subPropertyOf: "bf2:partOf".freeze,
|
1701
3017
|
type: "owl:ObjectProperty".freeze
|
1702
3018
|
property :heldBy,
|
1703
3019
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1704
|
-
definition:
|
3020
|
+
definition: "Entity holding the item or from which it is available.".freeze,
|
1705
3021
|
domain: "bf2:Item".freeze,
|
1706
3022
|
label: "Held by".freeze,
|
1707
3023
|
range: "bf2:Agent".freeze,
|
1708
3024
|
type: "owl:ObjectProperty".freeze
|
1709
3025
|
property :hierarchicalLevel,
|
1710
3026
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1711
|
-
definition:
|
3027
|
+
definition: "Hierarchical position of the described materials relative to other material from the same source.".freeze,
|
1712
3028
|
domain: "bf2:Arrangement".freeze,
|
1713
3029
|
label: "Hierarchical level of material".freeze,
|
1714
3030
|
range: "rdfs:Literal".freeze,
|
1715
3031
|
type: "owl:DatatypeProperty".freeze
|
1716
3032
|
property :historyOfWork,
|
1717
3033
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1718
|
-
definition:
|
3034
|
+
definition: "Information about the history of a Work.".freeze,
|
1719
3035
|
domain: "bf2:Work".freeze,
|
1720
3036
|
label: "History of the work".freeze,
|
1721
3037
|
range: "rdfs:Literal".freeze,
|
1722
3038
|
type: "owl:DatatypeProperty".freeze
|
1723
3039
|
property :identifiedBy,
|
1724
|
-
comment:
|
3040
|
+
comment: "Used with Unspecified".freeze,
|
1725
3041
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-05-04 (New inverse)".freeze],
|
1726
|
-
definition:
|
3042
|
+
definition: "Character string associated with a resource that serves to differentiate that resource from other resources, i.e., that uniquely identifies an entity.".freeze,
|
1727
3043
|
inverseOf: "bf2:identifies".freeze,
|
1728
3044
|
label: "Identifier".freeze,
|
1729
3045
|
range: "bf2:Identifier".freeze,
|
1730
3046
|
type: "owl:ObjectProperty".freeze
|
1731
3047
|
property :identifies,
|
1732
3048
|
"dc:modified": "2017-02-03 (New inverse)".freeze,
|
1733
|
-
definition:
|
3049
|
+
definition: "Resource that is associated with a character string that serves to differentiate one resource from another.".freeze,
|
1734
3050
|
domain: "bf2:Identifier".freeze,
|
1735
3051
|
inverseOf: "bf2:identifiedBy".freeze,
|
1736
3052
|
label: "Resource identified".freeze,
|
1737
3053
|
type: "owl:ObjectProperty".freeze
|
1738
3054
|
property :illustrativeContent,
|
1739
|
-
comment:
|
3055
|
+
comment: "Used with Work or Instance".freeze,
|
1740
3056
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1741
|
-
definition:
|
3057
|
+
definition: "Information about content intended to illustrate a resource.".freeze,
|
1742
3058
|
label: "Illustrative content information".freeze,
|
1743
3059
|
range: "bf2:Illustration".freeze,
|
1744
3060
|
type: "owl:ObjectProperty".freeze
|
1745
3061
|
property :immediateAcquisition,
|
1746
3062
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property)".freeze],
|
1747
|
-
definition:
|
3063
|
+
definition: "Information about the circumstances, e.g., source, date, method, under which the resource was directly acquired.".freeze,
|
1748
3064
|
domain: "bf2:Item".freeze,
|
1749
3065
|
label: "Immediate acquisition".freeze,
|
1750
3066
|
range: "bf2:ImmediateAcquisition".freeze,
|
1751
3067
|
type: "owl:ObjectProperty".freeze
|
1752
3068
|
property :index,
|
1753
|
-
comment: [
|
3069
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1754
3070
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected label)".freeze],
|
1755
|
-
definition:
|
3071
|
+
definition: "Resource has an accompanying index".freeze,
|
1756
3072
|
inverseOf: "bf2:indexOf".freeze,
|
1757
3073
|
label: "Has index".freeze,
|
1758
3074
|
subPropertyOf: "bf2:accompaniedBy".freeze,
|
1759
3075
|
type: "owl:ObjectProperty".freeze
|
1760
3076
|
property :indexOf,
|
1761
|
-
comment: [
|
3077
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1762
3078
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1763
|
-
definition:
|
3079
|
+
definition: "Index that accompanies a resource.".freeze,
|
1764
3080
|
inverseOf: "bf2:index".freeze,
|
1765
3081
|
label: "Index to".freeze,
|
1766
3082
|
subPropertyOf: "bf2:accompanies".freeze,
|
1767
3083
|
type: "owl:ObjectProperty".freeze
|
1768
3084
|
property :instanceOf,
|
1769
3085
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
1770
|
-
definition:
|
3086
|
+
definition: "Work the Instance described instantiates or manifests. For use to connect Instances to Works in the BIBFRAME structure.".freeze,
|
1771
3087
|
domain: "bf2:Instance".freeze,
|
1772
3088
|
inverseOf: "bf2:hasInstance".freeze,
|
1773
3089
|
label: "Instance of".freeze,
|
@@ -1776,35 +3092,35 @@ module RDF::Vocab
|
|
1776
3092
|
type: "owl:ObjectProperty".freeze
|
1777
3093
|
property :instrument,
|
1778
3094
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1779
|
-
definition:
|
3095
|
+
definition: "Instrument for which a musical Work is appropriate.".freeze,
|
1780
3096
|
domain: "bf2:Work".freeze,
|
1781
3097
|
label: "Instrument".freeze,
|
1782
3098
|
range: "bf2:MusicInstrument".freeze,
|
1783
3099
|
type: "owl:ObjectProperty".freeze
|
1784
3100
|
property :instrumentalType,
|
1785
3101
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1786
|
-
definition:
|
3102
|
+
definition: "Specific role of instrument, such as alternate, doubling, solo, ensemble.".freeze,
|
1787
3103
|
domain: "bf2:MusicInstrument".freeze,
|
1788
3104
|
label: "Instrument role".freeze,
|
1789
3105
|
range: "rdfs:Literal".freeze,
|
1790
3106
|
type: "owl:DatatypeProperty".freeze
|
1791
3107
|
property :intendedAudience,
|
1792
|
-
comment:
|
3108
|
+
comment: "Used with Work or Instance".freeze,
|
1793
3109
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1794
|
-
definition:
|
3110
|
+
definition: "Information that identifies the specific audience or intellectual level for which the content of the resource is considered appropriate.".freeze,
|
1795
3111
|
label: "Intended audience".freeze,
|
1796
3112
|
range: "bf2:IntendedAudience".freeze,
|
1797
3113
|
type: "owl:ObjectProperty".freeze
|
1798
3114
|
property :issuance,
|
1799
|
-
comment:
|
3115
|
+
comment: "Used with Work or Instance".freeze,
|
1800
3116
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1801
|
-
definition:
|
3117
|
+
definition: "Categorization reflecting whether a resource is issued in one or more parts, the way it is updated, and its intended termination.".freeze,
|
1802
3118
|
label: "Mode of issuance".freeze,
|
1803
3119
|
range: "bf2:Issuance".freeze,
|
1804
3120
|
type: "owl:ObjectProperty".freeze
|
1805
3121
|
property :issuedWith,
|
1806
3122
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1807
|
-
definition:
|
3123
|
+
definition: "Resource that is issued on the same carrier as the resource being described.".freeze,
|
1808
3124
|
domain: "bf2:Instance".freeze,
|
1809
3125
|
label: "Issued with".freeze,
|
1810
3126
|
range: "bf2:Instance".freeze,
|
@@ -1812,7 +3128,7 @@ module RDF::Vocab
|
|
1812
3128
|
type: "owl:SymmetricProperty".freeze
|
1813
3129
|
property :itemOf,
|
1814
3130
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze, "2017-02-07 (slight revision of definition)".freeze],
|
1815
|
-
definition:
|
3131
|
+
definition: "Instance for which the described Item is an example.".freeze,
|
1816
3132
|
domain: "bf2:Item".freeze,
|
1817
3133
|
inverseOf: "bf2:hasItem".freeze,
|
1818
3134
|
label: "Holding for".freeze,
|
@@ -1821,35 +3137,35 @@ module RDF::Vocab
|
|
1821
3137
|
type: "owl:ObjectProperty".freeze
|
1822
3138
|
property :itemPortion,
|
1823
3139
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1824
|
-
definition:
|
3140
|
+
definition: "Number attached to a classification string that indicates a particular item.".freeze,
|
1825
3141
|
domain: "bf2:Classification".freeze,
|
1826
3142
|
label: "Classification item number".freeze,
|
1827
3143
|
range: "rdfs:Literal".freeze,
|
1828
3144
|
type: "owl:DatatypeProperty".freeze
|
1829
3145
|
property :language,
|
1830
|
-
comment:
|
3146
|
+
comment: "Used with Unspecified".freeze,
|
1831
3147
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1832
|
-
definition:
|
3148
|
+
definition: "Language associated with a resource or its parts.".freeze,
|
1833
3149
|
label: "Language information".freeze,
|
1834
3150
|
range: "bf2:Language".freeze,
|
1835
3151
|
type: "owl:ObjectProperty".freeze
|
1836
3152
|
property :lastIssue,
|
1837
|
-
comment:
|
3153
|
+
comment: "Used with Work or Instance".freeze,
|
1838
3154
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1839
|
-
definition:
|
3155
|
+
definition: "Ending date of a resource and/or the sequential designations.".freeze,
|
1840
3156
|
label: "Multipart last issue".freeze,
|
1841
3157
|
range: "rdfs:Literal".freeze,
|
1842
3158
|
type: "owl:DatatypeProperty".freeze
|
1843
3159
|
property :layout,
|
1844
3160
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1845
|
-
definition:
|
3161
|
+
definition: "Arrangement of text, images, tactile notation, etc., in a resource.".freeze,
|
1846
3162
|
domain: "bf2:Instance".freeze,
|
1847
3163
|
label: "Layout".freeze,
|
1848
3164
|
range: "bf2:Layout".freeze,
|
1849
3165
|
type: "owl:ObjectProperty".freeze
|
1850
3166
|
property :legalDate,
|
1851
3167
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1852
|
-
definition:
|
3168
|
+
definition: "Date of legal work, or promulgation of a law, or signing of a treaty.".freeze,
|
1853
3169
|
domain: "bf2:Work".freeze,
|
1854
3170
|
label: "Date of legal work".freeze,
|
1855
3171
|
range: "rdfs:Literal".freeze,
|
@@ -1857,121 +3173,121 @@ module RDF::Vocab
|
|
1857
3173
|
type: "owl:DatatypeProperty".freeze
|
1858
3174
|
property :mainTitle,
|
1859
3175
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1860
|
-
definition:
|
3176
|
+
definition: "Title being addressed. Possible title component.".freeze,
|
1861
3177
|
domain: "bf2:Title".freeze,
|
1862
3178
|
label: "Main title".freeze,
|
1863
3179
|
range: "rdfs:Literal".freeze,
|
1864
3180
|
type: "owl:DatatypeProperty".freeze
|
1865
3181
|
property :media,
|
1866
|
-
comment:
|
3182
|
+
comment: "Used with Work or Instance".freeze,
|
1867
3183
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1868
|
-
definition:
|
3184
|
+
definition: "Categorization reflecting the general type of intermediation device required to view, play, run, etc., the content of a resource.".freeze,
|
1869
3185
|
label: "Media type".freeze,
|
1870
3186
|
range: "bf2:Media".freeze,
|
1871
3187
|
type: "owl:ObjectProperty".freeze
|
1872
3188
|
property :mergedToForm,
|
1873
|
-
comment: [
|
3189
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1874
3190
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1875
|
-
definition:
|
3191
|
+
definition: "One of two or more resources that come together to form a new resource.".freeze,
|
1876
3192
|
inverseOf: "bf2:mergerOf".freeze,
|
1877
3193
|
label: "Merged to form".freeze,
|
1878
3194
|
subPropertyOf: "bf2:succeededBy".freeze,
|
1879
3195
|
type: "owl:ObjectProperty".freeze
|
1880
3196
|
property :mergerOf,
|
1881
|
-
comment: [
|
3197
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1882
3198
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1883
|
-
definition:
|
3199
|
+
definition: "One of two or more resources which came together to form a new resource.".freeze,
|
1884
3200
|
inverseOf: "bf2:mergedToForm".freeze,
|
1885
3201
|
label: "Merger of".freeze,
|
1886
3202
|
subPropertyOf: "bf2:precededBy".freeze,
|
1887
3203
|
type: "owl:ObjectProperty".freeze
|
1888
3204
|
property :mount,
|
1889
3205
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1890
|
-
definition:
|
3206
|
+
definition: "Physical material used for the support or backing to which the base material of a resource has been attached.".freeze,
|
1891
3207
|
domain: "bf2:Instance".freeze,
|
1892
3208
|
label: "Mount material".freeze,
|
1893
3209
|
range: "bf2:Mount".freeze,
|
1894
3210
|
type: "owl:ObjectProperty".freeze
|
1895
3211
|
property :musicFormat,
|
1896
|
-
comment:
|
3212
|
+
comment: "Used with Work or Instance".freeze,
|
1897
3213
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1898
|
-
definition:
|
3214
|
+
definition: "Layout for content of a resource that is presented in the form of musical notation, such as full score, condensed score, vocal score, etc.".freeze,
|
1899
3215
|
label: "Format of notated music".freeze,
|
1900
3216
|
range: "bf2:MusicFormat".freeze,
|
1901
3217
|
type: "owl:ObjectProperty".freeze
|
1902
3218
|
property :musicKey,
|
1903
3219
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1904
|
-
definition:
|
3220
|
+
definition: "Pitch and mode for music.".freeze,
|
1905
3221
|
domain: "bf2:Work".freeze,
|
1906
3222
|
label: "Music key".freeze,
|
1907
3223
|
range: "rdfs:Literal".freeze,
|
1908
3224
|
type: "owl:DatatypeProperty".freeze
|
1909
3225
|
property :musicMedium,
|
1910
3226
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1911
|
-
definition:
|
3227
|
+
definition: "Instrumental, vocal, and/or other medium of performance for which a musical resource was originally conceived, written or performed.".freeze,
|
1912
3228
|
domain: "bf2:Work".freeze,
|
1913
3229
|
label: "Music medium of performance".freeze,
|
1914
3230
|
range: "bf2:MusicMedium".freeze,
|
1915
3231
|
type: "owl:ObjectProperty".freeze
|
1916
3232
|
property :musicOpusNumber,
|
1917
3233
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1918
|
-
definition:
|
3234
|
+
definition: "Numeric designation of a musical work assigned by a composer, publisher, or a musicologist.".freeze,
|
1919
3235
|
domain: "bf2:Work".freeze,
|
1920
3236
|
label: "Music opus number".freeze,
|
1921
3237
|
range: "rdfs:Literal".freeze,
|
1922
3238
|
type: "owl:DatatypeProperty".freeze
|
1923
3239
|
property :musicSerialNumber,
|
1924
3240
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1925
|
-
definition:
|
3241
|
+
definition: "Numeric designation for musical works consecutively numbered in music reference sources.".freeze,
|
1926
3242
|
domain: "bf2:Work".freeze,
|
1927
3243
|
label: "Music serial number".freeze,
|
1928
3244
|
range: "rdfs:Literal".freeze,
|
1929
3245
|
type: "owl:DatatypeProperty".freeze
|
1930
3246
|
property :musicThematicNumber,
|
1931
3247
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1932
|
-
definition:
|
3248
|
+
definition: "Numeric designation for a musical work as found in a thematic index for the composer.".freeze,
|
1933
3249
|
domain: "bf2:Work".freeze,
|
1934
3250
|
label: "Music thematic number".freeze,
|
1935
3251
|
range: "rdfs:Literal".freeze,
|
1936
3252
|
type: "owl:DatatypeProperty".freeze
|
1937
3253
|
property :natureOfContent,
|
1938
|
-
comment:
|
3254
|
+
comment: "Used with Work or Instance".freeze,
|
1939
3255
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1940
|
-
definition:
|
3256
|
+
definition: "Characterization that epitomizes the primary content of a resource, e.g., field recording of birdsong; combined time series analysis and graph plotting system.".freeze,
|
1941
3257
|
label: "Content nature".freeze,
|
1942
3258
|
range: "rdfs:Literal".freeze,
|
1943
3259
|
type: "owl:DatatypeProperty".freeze
|
1944
3260
|
property :notation,
|
1945
|
-
comment:
|
3261
|
+
comment: "Used with Work or Instance".freeze,
|
1946
3262
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1947
|
-
definition:
|
3263
|
+
definition: "Alphabet, script, or symbol system used to convey the content of the resource, including specialized scripts, typefaces, tactile notation, movement notation, and musical notation.".freeze,
|
1948
3264
|
label: "Notation system".freeze,
|
1949
3265
|
range: "bf2:Notation".freeze,
|
1950
3266
|
type: "owl:ObjectProperty".freeze
|
1951
3267
|
property :note,
|
1952
|
-
comment:
|
3268
|
+
comment: "Used with Unspecified".freeze,
|
1953
3269
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1954
|
-
definition:
|
3270
|
+
definition: "General textual information relating to a resource, such as Information about a specific copy of a resource or information about a particular attribute of a resource.".freeze,
|
1955
3271
|
label: "Note".freeze,
|
1956
3272
|
range: "bf2:Note".freeze,
|
1957
3273
|
type: "owl:ObjectProperty".freeze
|
1958
3274
|
property :noteType,
|
1959
3275
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1960
|
-
definition:
|
3276
|
+
definition: "Type of note.".freeze,
|
1961
3277
|
domain: "bf2:Note".freeze,
|
1962
3278
|
label: "Note type".freeze,
|
1963
3279
|
range: "rdfs:Literal".freeze,
|
1964
3280
|
type: "owl:DatatypeProperty".freeze
|
1965
3281
|
property :organization,
|
1966
3282
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1967
|
-
definition:
|
3283
|
+
definition: "Manner in which the resource is divided into smaller units.".freeze,
|
1968
3284
|
domain: "bf2:Arrangement".freeze,
|
1969
3285
|
label: "Organization of material".freeze,
|
1970
3286
|
range: "rdfs:Literal".freeze,
|
1971
3287
|
type: "owl:DatatypeProperty".freeze
|
1972
3288
|
property :originDate,
|
1973
3289
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1974
|
-
definition:
|
3290
|
+
definition: "Date or date range associated with the creation of a Work.".freeze,
|
1975
3291
|
domain: "bf2:Work".freeze,
|
1976
3292
|
label: "Associated title date".freeze,
|
1977
3293
|
range: "rdfs:Literal".freeze,
|
@@ -1979,38 +3295,38 @@ module RDF::Vocab
|
|
1979
3295
|
type: "owl:DatatypeProperty".freeze
|
1980
3296
|
property :originPlace,
|
1981
3297
|
"dc:modified": "2016-04-21 (New)".freeze,
|
1982
|
-
definition:
|
3298
|
+
definition: "Place from which the creation of the Work originated.".freeze,
|
1983
3299
|
domain: "bf2:Work".freeze,
|
1984
3300
|
label: "Associated title place".freeze,
|
1985
3301
|
range: "bf2:Place".freeze,
|
1986
3302
|
subPropertyOf: "bf2:place".freeze,
|
1987
3303
|
type: "owl:ObjectProperty".freeze
|
1988
3304
|
property :originalVersion,
|
1989
|
-
comment: [
|
3305
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1990
3306
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1991
|
-
definition:
|
3307
|
+
definition: "Resource is the original version of which this resource is a reproduction.".freeze,
|
1992
3308
|
inverseOf: "bf2:originalVersionOf".freeze,
|
1993
3309
|
label: "Original version".freeze,
|
1994
3310
|
subPropertyOf: "bf2:derivativeOf".freeze,
|
1995
3311
|
type: "owl:ObjectProperty".freeze
|
1996
3312
|
property :originalVersionOf,
|
1997
|
-
comment: [
|
3313
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
1998
3314
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
1999
|
-
definition:
|
3315
|
+
definition: "Original version of a resource.".freeze,
|
2000
3316
|
inverseOf: "bf2:originalVersion".freeze,
|
2001
3317
|
label: "Original version of".freeze,
|
2002
3318
|
subPropertyOf: "bf2:hasDerivative".freeze,
|
2003
3319
|
type: "owl:ObjectProperty".freeze
|
2004
3320
|
property :otherEdition,
|
2005
|
-
comment: [
|
3321
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2006
3322
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-05-13 (symmetrical)".freeze],
|
2007
|
-
definition:
|
3323
|
+
definition: "Resource has other available editions, for example simultaneously published language editions or reprints.".freeze,
|
2008
3324
|
label: "Other edition".freeze,
|
2009
3325
|
subPropertyOf: "bf2:derivativeOf".freeze,
|
2010
3326
|
type: "owl:SymmetricProperty".freeze
|
2011
3327
|
property :otherPhysicalFormat,
|
2012
3328
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2013
|
-
definition:
|
3329
|
+
definition: "Resource that is manifested in another physical carrier.".freeze,
|
2014
3330
|
domain: "bf2:Instance".freeze,
|
2015
3331
|
label: "Has other physical format".freeze,
|
2016
3332
|
range: "bf2:Instance".freeze,
|
@@ -2018,172 +3334,172 @@ module RDF::Vocab
|
|
2018
3334
|
type: "owl:SymmetricProperty".freeze
|
2019
3335
|
property :outerGRing,
|
2020
3336
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2021
|
-
definition:
|
3337
|
+
definition: "Coordinate pairs that identify the closed non-intersecting boundary of the area covered.".freeze,
|
2022
3338
|
domain: "bf2:Cartographic".freeze,
|
2023
3339
|
label: "Cartographic outer G ring area covered".freeze,
|
2024
3340
|
range: "rdfs:Literal".freeze,
|
2025
3341
|
type: "owl:DatatypeProperty".freeze
|
2026
3342
|
property :part,
|
2027
|
-
comment:
|
3343
|
+
comment: "Used with Unspecified".freeze,
|
2028
3344
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2029
|
-
definition:
|
3345
|
+
definition: "Part of a resource to which information applies.".freeze,
|
2030
3346
|
label: "Part".freeze,
|
2031
3347
|
range: "rdfs:Literal".freeze,
|
2032
3348
|
type: "owl:DatatypeProperty".freeze
|
2033
3349
|
property :partName,
|
2034
3350
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2035
|
-
definition:
|
3351
|
+
definition: "Part or section name of a title. Possible title component.".freeze,
|
2036
3352
|
domain: "bf2:Title".freeze,
|
2037
3353
|
label: "Part title".freeze,
|
2038
3354
|
range: "rdfs:Literal".freeze,
|
2039
3355
|
type: "owl:DatatypeProperty".freeze
|
2040
3356
|
property :partNumber,
|
2041
3357
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2042
|
-
definition:
|
3358
|
+
definition: "Part or section enumeration of a title. Possible title component.".freeze,
|
2043
3359
|
domain: "bf2:Title".freeze,
|
2044
3360
|
label: "Part number".freeze,
|
2045
3361
|
range: "rdfs:Literal".freeze,
|
2046
3362
|
type: "owl:DatatypeProperty".freeze
|
2047
3363
|
property :partOf,
|
2048
|
-
comment: [
|
3364
|
+
comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze],
|
2049
3365
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
2050
|
-
definition:
|
3366
|
+
definition: "Resource in which the described resource is physically or logically contained.".freeze,
|
2051
3367
|
inverseOf: "bf2:hasPart".freeze,
|
2052
3368
|
label: "Is part of".freeze,
|
2053
3369
|
subPropertyOf: "bf2:relatedTo".freeze,
|
2054
3370
|
type: "owl:ObjectProperty".freeze
|
2055
3371
|
property :pattern,
|
2056
3372
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2057
|
-
definition:
|
3373
|
+
definition: "Pattern of arrangement of materials within a unit.".freeze,
|
2058
3374
|
domain: "bf2:Arrangement".freeze,
|
2059
3375
|
label: "Arrangement of material".freeze,
|
2060
3376
|
range: "rdfs:Literal".freeze,
|
2061
3377
|
type: "owl:DatatypeProperty".freeze
|
2062
3378
|
property :physicalLocation,
|
2063
3379
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2064
|
-
definition:
|
3380
|
+
definition: "Location in the holding agency where the item is shelved or stored.".freeze,
|
2065
3381
|
domain: "bf2:Item".freeze,
|
2066
3382
|
label: "Storing or shelving location".freeze,
|
2067
3383
|
range: "rdfs:Literal".freeze,
|
2068
3384
|
type: "owl:DatatypeProperty".freeze
|
2069
3385
|
property :place,
|
2070
|
-
comment:
|
3386
|
+
comment: "Used with Unspecified".freeze,
|
2071
3387
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2072
|
-
definition:
|
3388
|
+
definition: "Geographic location or place entity associated with a resource or element of description, such as the place associated with the publication, printing, distribution, issue, release or production of a resource, place of an event.".freeze,
|
2073
3389
|
label: "Place".freeze,
|
2074
3390
|
range: "bf2:Place".freeze,
|
2075
3391
|
type: "owl:ObjectProperty".freeze
|
2076
3392
|
property :polarity,
|
2077
3393
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2078
|
-
definition:
|
3394
|
+
definition: "Relationship of the colors and tones in an image to the colors and tones of the object reproduced.".freeze,
|
2079
3395
|
domain: "bf2:Instance".freeze,
|
2080
3396
|
label: "Polarity".freeze,
|
2081
3397
|
range: "bf2:Polarity".freeze,
|
2082
3398
|
type: "owl:ObjectProperty".freeze
|
2083
3399
|
property :precededBy,
|
2084
|
-
comment: [
|
3400
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2085
3401
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
2086
|
-
definition:
|
3402
|
+
definition: "Resource that precedes the resource being described, e.g., is earlier in time or before in narrative.".freeze,
|
2087
3403
|
inverseOf: "bf2:succeededBy".freeze,
|
2088
3404
|
label: "Preceded by".freeze,
|
2089
3405
|
subPropertyOf: "bf2:relatedTo".freeze,
|
2090
3406
|
type: "owl:ObjectProperty".freeze
|
2091
3407
|
property :preferredCitation,
|
2092
|
-
comment:
|
3408
|
+
comment: "Used with Work or Instance".freeze,
|
2093
3409
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2094
|
-
definition:
|
3410
|
+
definition: "Citation to the resource preferred by its custodian of the resource.".freeze,
|
2095
3411
|
label: "Preferred citation".freeze,
|
2096
3412
|
range: "rdfs:Literal".freeze,
|
2097
3413
|
type: "owl:DatatypeProperty".freeze
|
2098
3414
|
property :productionMethod,
|
2099
3415
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2100
|
-
definition:
|
3416
|
+
definition: "Process used to produce a resource.".freeze,
|
2101
3417
|
domain: "bf2:Instance".freeze,
|
2102
3418
|
label: "Production method".freeze,
|
2103
3419
|
range: "bf2:ProductionMethod".freeze,
|
2104
3420
|
type: "owl:ObjectProperty".freeze
|
2105
3421
|
property :projection,
|
2106
3422
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze],
|
2107
|
-
definition:
|
3423
|
+
definition: "Method or system used to represent the surface of the earth or of a celestial sphere on a plane.".freeze,
|
2108
3424
|
domain: "bf2:Cartographic".freeze,
|
2109
3425
|
label: "Cartographic projection".freeze,
|
2110
3426
|
range: "bf2:Projection".freeze,
|
2111
3427
|
type: "owl:ObjectProperty".freeze
|
2112
3428
|
property :projectionCharacteristic,
|
2113
3429
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (fixed typo in property name)".freeze],
|
2114
|
-
definition:
|
3430
|
+
definition: "Technical specification relating to the projection of a motion picture film.".freeze,
|
2115
3431
|
domain: "bf2:Instance".freeze,
|
2116
3432
|
label: "Projection characteristic".freeze,
|
2117
3433
|
range: "bf2:ProjectionCharacteristic".freeze,
|
2118
3434
|
type: "owl:ObjectProperty".freeze
|
2119
3435
|
property :provisionActivity,
|
2120
3436
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (revised label and slightly revised definition)".freeze],
|
2121
|
-
definition:
|
3437
|
+
definition: "Place, name, and/or date information relating to the publication, printing, distribution, issue, release, production, etc. of a resource.".freeze,
|
2122
3438
|
domain: "bf2:Instance".freeze,
|
2123
3439
|
label: "Provision activity".freeze,
|
2124
3440
|
range: "bf2:ProvisionActivity".freeze,
|
2125
3441
|
type: "owl:ObjectProperty".freeze
|
2126
3442
|
property :provisionActivityStatement,
|
2127
3443
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2128
|
-
definition:
|
3444
|
+
definition: "Statement relating to providers of a resource; usually transcribed.".freeze,
|
2129
3445
|
domain: "bf2:Instance".freeze,
|
2130
3446
|
label: "Provider statement".freeze,
|
2131
3447
|
range: "rdfs:Literal".freeze,
|
2132
3448
|
type: "owl:DatatypeProperty".freeze
|
2133
3449
|
property :qualifier,
|
2134
|
-
comment:
|
3450
|
+
comment: "Used with Unspecified".freeze,
|
2135
3451
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2136
|
-
definition:
|
3452
|
+
definition: "Qualifier of information, such as an addition to a title to make it unique or qualifying information associated with an identifier.".freeze,
|
2137
3453
|
label: "Qualifier".freeze,
|
2138
3454
|
range: "rdfs:Literal".freeze,
|
2139
3455
|
type: "owl:DatatypeProperty".freeze
|
2140
3456
|
property :reductionRatio,
|
2141
3457
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2142
|
-
definition:
|
3458
|
+
definition: "Size of a micro-image in relation to the original from which it was produced.".freeze,
|
2143
3459
|
domain: "bf2:Instance".freeze,
|
2144
3460
|
label: "Reduction ratio".freeze,
|
2145
3461
|
range: "bf2:ReductionRatio".freeze,
|
2146
3462
|
type: "owl:ObjectProperty".freeze
|
2147
3463
|
property :referencedBy,
|
2148
|
-
comment: [
|
3464
|
+
comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze],
|
2149
3465
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
2150
|
-
definition:
|
3466
|
+
definition: "Resource that references the described resource".freeze,
|
2151
3467
|
inverseOf: "bf2:references".freeze,
|
2152
3468
|
label: "Referenced by".freeze,
|
2153
3469
|
subPropertyOf: "bf2:relatedTo".freeze,
|
2154
3470
|
type: "owl:ObjectProperty".freeze
|
2155
3471
|
property :references,
|
2156
|
-
comment: [
|
3472
|
+
comment: ["Expected value Work, Instance or Item".freeze, "Used with Work, Instance or Item".freeze],
|
2157
3473
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
2158
|
-
definition:
|
3474
|
+
definition: "Resource that is referenced by the described resource.".freeze,
|
2159
3475
|
inverseOf: "bf2:referencedBy".freeze,
|
2160
3476
|
label: "References".freeze,
|
2161
3477
|
subPropertyOf: "bf2:relatedTo".freeze,
|
2162
3478
|
type: "owl:ObjectProperty".freeze
|
2163
3479
|
property :relatedTo,
|
2164
3480
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2165
|
-
definition:
|
3481
|
+
definition: "Any relationship between Work, Instance, and Item resources.".freeze,
|
2166
3482
|
label: "Related resource".freeze,
|
2167
3483
|
type: "owl:SymmetricProperty".freeze
|
2168
3484
|
property :replacedBy,
|
2169
|
-
comment: [
|
3485
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2170
3486
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
2171
|
-
definition:
|
3487
|
+
definition: "Later resource used in place of an earlier resource, usually because the later resource contains updated or new information.".freeze,
|
2172
3488
|
inverseOf: "bf2:replacementOf".freeze,
|
2173
3489
|
label: "Succeeded by".freeze,
|
2174
3490
|
subPropertyOf: "bf2:succeededBy".freeze,
|
2175
3491
|
type: "owl:ObjectProperty".freeze
|
2176
3492
|
property :replacementOf,
|
2177
|
-
comment: [
|
3493
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2178
3494
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
2179
|
-
definition:
|
3495
|
+
definition: "Earlier resource whose content has been replaced by a later resource, usually because the later resource contains updated or new information.".freeze,
|
2180
3496
|
inverseOf: "bf2:replacedBy".freeze,
|
2181
3497
|
label: "Preceded by".freeze,
|
2182
3498
|
subPropertyOf: "bf2:precededBy".freeze,
|
2183
3499
|
type: "owl:ObjectProperty".freeze
|
2184
3500
|
property :reproductionOf,
|
2185
3501
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
2186
|
-
definition:
|
3502
|
+
definition: "Resource that is a reproduction of another Resource.".freeze,
|
2187
3503
|
domain: "bf2:Instance".freeze,
|
2188
3504
|
inverseOf: "bf2:hasReproduction".freeze,
|
2189
3505
|
label: "Reproduction of".freeze,
|
@@ -2192,302 +3508,302 @@ module RDF::Vocab
|
|
2192
3508
|
type: "owl:ObjectProperty".freeze
|
2193
3509
|
property :responsibilityStatement,
|
2194
3510
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2195
|
-
definition:
|
3511
|
+
definition: "Statement relating to any persons, families, or corporate bodies responsible for the creation of, or contributing to the content of a resource; usually transcribed.".freeze,
|
2196
3512
|
domain: "bf2:Instance".freeze,
|
2197
3513
|
label: "Creative responsibility statement".freeze,
|
2198
3514
|
range: "rdfs:Literal".freeze,
|
2199
3515
|
type: "owl:DatatypeProperty".freeze
|
2200
3516
|
property :review,
|
2201
|
-
comment:
|
3517
|
+
comment: "Used with Work or Instance".freeze,
|
2202
3518
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2203
|
-
definition:
|
3519
|
+
definition: "Review of a resource.".freeze,
|
2204
3520
|
label: "Review content".freeze,
|
2205
3521
|
range: "bf2:Review".freeze,
|
2206
3522
|
type: "owl:ObjectProperty".freeze
|
2207
3523
|
property :role,
|
2208
3524
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (Changed from data to object property, adjusted label and definition)".freeze],
|
2209
|
-
definition:
|
3525
|
+
definition: "Function provided by a contributor, e.g., author, illustrator, etc.".freeze,
|
2210
3526
|
domain: "bf2:Contribution".freeze,
|
2211
3527
|
label: "Contributor role".freeze,
|
2212
3528
|
range: "bf2:Role".freeze,
|
2213
3529
|
type: "owl:ObjectProperty".freeze
|
2214
3530
|
property :scale,
|
2215
|
-
comment:
|
3531
|
+
comment: "Used with Work or Instance".freeze,
|
2216
3532
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-03 (changed from data to object property)".freeze],
|
2217
|
-
definition:
|
3533
|
+
definition: "Ratio of the dimensions of a form contained or embodied in a resource to the dimensions of the entity it represents, e.g., for images or cartographic resources.".freeze,
|
2218
3534
|
label: "Scale".freeze,
|
2219
3535
|
range: "bf2:Scale".freeze,
|
2220
3536
|
type: "owl:ObjectProperty".freeze
|
2221
3537
|
property :schedulePart,
|
2222
3538
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2223
|
-
definition:
|
3539
|
+
definition: "Designates whether the classification number is from the standard or optional part of a schedule or table.".freeze,
|
2224
3540
|
domain: "bf2:Classification".freeze,
|
2225
3541
|
label: "Classification designation".freeze,
|
2226
3542
|
range: "rdfs:Literal".freeze,
|
2227
3543
|
type: "owl:DatatypeProperty".freeze
|
2228
3544
|
property :separatedFrom,
|
2229
|
-
comment: [
|
3545
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2230
3546
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
2231
|
-
definition:
|
3547
|
+
definition: "Resource that spun off a part of its content to form a new resource.".freeze,
|
2232
3548
|
inverseOf: "bf2:continuedInPartBy".freeze,
|
2233
3549
|
label: "Separated from".freeze,
|
2234
3550
|
subPropertyOf: "bf2:precededBy".freeze,
|
2235
3551
|
type: "owl:ObjectProperty".freeze
|
2236
3552
|
property :seriesEnumeration,
|
2237
3553
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2238
|
-
definition:
|
3554
|
+
definition: "Series enumeration of the resource; usually transcribed.".freeze,
|
2239
3555
|
domain: "bf2:Instance".freeze,
|
2240
3556
|
label: "Series enumeration".freeze,
|
2241
3557
|
range: "rdfs:Literal".freeze,
|
2242
3558
|
type: "owl:DatatypeProperty".freeze
|
2243
3559
|
property :seriesOf,
|
2244
|
-
comment: [
|
3560
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2245
3561
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
2246
|
-
definition:
|
3562
|
+
definition: "Resource that is a part of a larger resource.".freeze,
|
2247
3563
|
inverseOf: "bf2:hasSeries".freeze,
|
2248
3564
|
label: "Series container of".freeze,
|
2249
3565
|
subPropertyOf: "bf2:hasPart".freeze,
|
2250
3566
|
type: "owl:ObjectProperty".freeze
|
2251
3567
|
property :seriesStatement,
|
2252
3568
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2253
|
-
definition:
|
3569
|
+
definition: "Statement of the series the resource is in; usually transcribed; includes the ISSN if applicable.".freeze,
|
2254
3570
|
domain: "bf2:Instance".freeze,
|
2255
3571
|
label: "Series statement".freeze,
|
2256
3572
|
range: "rdfs:Literal".freeze,
|
2257
3573
|
type: "owl:DatatypeProperty".freeze
|
2258
3574
|
property :shelfMark,
|
2259
3575
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2260
|
-
definition:
|
3576
|
+
definition: "Piece identifier, such as a call or other type of number.".freeze,
|
2261
3577
|
domain: "bf2:Item".freeze,
|
2262
3578
|
label: "Shelf mark".freeze,
|
2263
3579
|
range: "bf2:ShelfMark".freeze,
|
2264
3580
|
type: "owl:ObjectProperty".freeze
|
2265
3581
|
property :soundCharacteristic,
|
2266
3582
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-21 (fixed name and range typos)".freeze],
|
2267
|
-
definition:
|
3583
|
+
definition: "Technical specification relating to the encoding of sound in a resource.".freeze,
|
2268
3584
|
domain: "bf2:Instance".freeze,
|
2269
3585
|
label: "Sound characteristic".freeze,
|
2270
3586
|
range: "bf2:SoundCharacteristic".freeze,
|
2271
3587
|
type: "owl:ObjectProperty".freeze
|
2272
3588
|
property :soundContent,
|
2273
|
-
comment:
|
3589
|
+
comment: "Used with Work or Instance".freeze,
|
2274
3590
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2275
|
-
definition:
|
3591
|
+
definition: "Indication of whether the production of sound is an integral part of the resource.".freeze,
|
2276
3592
|
label: "Sound content".freeze,
|
2277
3593
|
range: "bf2:SoundContent".freeze,
|
2278
3594
|
type: "owl:ObjectProperty".freeze
|
2279
3595
|
property :source,
|
2280
|
-
comment:
|
3596
|
+
comment: "Used with Unspecified".freeze,
|
2281
3597
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2282
|
-
definition:
|
3598
|
+
definition: "Resource from which value or label came or was derived, such as the formal source/scheme from which a classification number is taken or derived, list from which an agent name is taken or derived, source within which an identifier is unique.".freeze,
|
2283
3599
|
label: "Source".freeze,
|
2284
3600
|
range: "bf2:Source".freeze,
|
2285
3601
|
type: "owl:ObjectProperty".freeze
|
2286
3602
|
property :spanEnd,
|
2287
3603
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2288
|
-
definition:
|
3604
|
+
definition: "Ending number of classification number span.".freeze,
|
2289
3605
|
domain: "bf2:Classification".freeze,
|
2290
3606
|
label: "Classification number span end".freeze,
|
2291
3607
|
range: "rdfs:Literal".freeze,
|
2292
3608
|
type: "owl:DatatypeProperty".freeze
|
2293
3609
|
property :splitInto,
|
2294
|
-
comment: [
|
3610
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2295
3611
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
2296
|
-
definition:
|
3612
|
+
definition: "One of two or more resources resulting from the division of an earlier resource into separate resources.".freeze,
|
2297
3613
|
inverseOf: "bf2:continuesInPart".freeze,
|
2298
3614
|
label: "Split into".freeze,
|
2299
3615
|
subPropertyOf: "bf2:succeededBy".freeze,
|
2300
3616
|
type: "owl:ObjectProperty".freeze
|
2301
3617
|
property :status,
|
2302
|
-
comment:
|
3618
|
+
comment: "Used with Unspecified".freeze,
|
2303
3619
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2304
|
-
definition:
|
3620
|
+
definition: "Designation of the validity or position of something, such as indication that the classification number is canceled or invalid, circulation availability of an item, indication of whether the identifier is canceled or invalid.".freeze,
|
2305
3621
|
label: "Status".freeze,
|
2306
3622
|
range: "bf2:Status".freeze,
|
2307
3623
|
type: "owl:ObjectProperty".freeze
|
2308
3624
|
property :subject,
|
2309
|
-
comment:
|
3625
|
+
comment: "Used with Work, Instance or Item".freeze,
|
2310
3626
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2311
|
-
definition:
|
3627
|
+
definition: "Subject term(s) describing a resource.".freeze,
|
2312
3628
|
label: "Subject".freeze,
|
2313
3629
|
type: "owl:ObjectProperty".freeze
|
2314
3630
|
property :sublocation,
|
2315
3631
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2316
|
-
definition:
|
3632
|
+
definition: "Specific place within the holding entity where the item is located or made available.".freeze,
|
2317
3633
|
domain: "bf2:Item".freeze,
|
2318
3634
|
label: "Held in sublocation".freeze,
|
2319
3635
|
range: "bf2:Sublocation".freeze,
|
2320
3636
|
type: "owl:ObjectProperty".freeze
|
2321
3637
|
property :subseriesEnumeration,
|
2322
3638
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2323
|
-
definition:
|
3639
|
+
definition: "Subseries enumeration of the resource; usually transcribed.".freeze,
|
2324
3640
|
domain: "bf2:Instance".freeze,
|
2325
3641
|
label: "Subseries enumeration".freeze,
|
2326
3642
|
range: "rdfs:Literal".freeze,
|
2327
3643
|
type: "owl:DatatypeProperty".freeze
|
2328
3644
|
property :subseriesOf,
|
2329
|
-
comment: [
|
3645
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2330
3646
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
2331
|
-
definition:
|
3647
|
+
definition: "Series resource of which the described resource is a part.".freeze,
|
2332
3648
|
inverseOf: "bf2:hasSubseries".freeze,
|
2333
3649
|
label: "Subseries of".freeze,
|
2334
3650
|
subPropertyOf: "bf2:hasPart".freeze,
|
2335
3651
|
type: "owl:ObjectProperty".freeze
|
2336
3652
|
property :subseriesStatement,
|
2337
3653
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2338
|
-
definition:
|
3654
|
+
definition: "Statement of the subseries the resource is in; usually transcribed; includes the ISSN if applicable.".freeze,
|
2339
3655
|
domain: "bf2:Instance".freeze,
|
2340
3656
|
label: "Subseries statement".freeze,
|
2341
3657
|
range: "rdfs:Literal".freeze,
|
2342
3658
|
type: "owl:DatatypeProperty".freeze
|
2343
3659
|
property :subtitle,
|
2344
3660
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2345
|
-
definition:
|
3661
|
+
definition: "Word, character, or group of words and/or characters that contains the remainder of the title after the main title. Possible title component.".freeze,
|
2346
3662
|
domain: "bf2:Title".freeze,
|
2347
3663
|
label: "Subtitle".freeze,
|
2348
3664
|
range: "rdfs:Literal".freeze,
|
2349
3665
|
type: "owl:DatatypeProperty".freeze
|
2350
3666
|
property :succeededBy,
|
2351
|
-
comment: [
|
3667
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2352
3668
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse)".freeze],
|
2353
|
-
definition:
|
3669
|
+
definition: "Resource that succeeds the resource being described, e.g., later in time or after in a narrative.".freeze,
|
2354
3670
|
inverseOf: "bf2:precededBy".freeze,
|
2355
3671
|
label: "Succeeded by".freeze,
|
2356
3672
|
subPropertyOf: "bf2:relatedTo".freeze,
|
2357
3673
|
type: "owl:ObjectProperty".freeze
|
2358
3674
|
property :summary,
|
2359
|
-
comment:
|
3675
|
+
comment: "Used with Work or Instance".freeze,
|
2360
3676
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2361
|
-
definition:
|
3677
|
+
definition: "Summary or abstract of the resource described.".freeze,
|
2362
3678
|
label: "Summary content".freeze,
|
2363
3679
|
range: "bf2:Summary".freeze,
|
2364
3680
|
type: "owl:ObjectProperty".freeze
|
2365
3681
|
property :supplement,
|
2366
|
-
comment: [
|
3682
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2367
3683
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
2368
|
-
definition:
|
3684
|
+
definition: "Resource that updates or otherwise complements the predominant resource.".freeze,
|
2369
3685
|
inverseOf: "bf2:supplementTo".freeze,
|
2370
3686
|
label: "Supplement".freeze,
|
2371
3687
|
subPropertyOf: "bf2:accompaniedBy".freeze,
|
2372
3688
|
type: "owl:ObjectProperty".freeze
|
2373
3689
|
property :supplementTo,
|
2374
|
-
comment: [
|
3690
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2375
3691
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze],
|
2376
|
-
definition:
|
3692
|
+
definition: "Resource that is updated or otherwise complemented by the augmenting resource.".freeze,
|
2377
3693
|
inverseOf: "bf2:supplement".freeze,
|
2378
3694
|
label: "Supplement to".freeze,
|
2379
3695
|
subPropertyOf: "bf2:accompanies".freeze,
|
2380
3696
|
type: "owl:ObjectProperty".freeze
|
2381
3697
|
property :supplementaryContent,
|
2382
|
-
comment:
|
3698
|
+
comment: "Used with Work or Instance".freeze,
|
2383
3699
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2384
|
-
definition:
|
3700
|
+
definition: "Material such as an index, bibliography, appendix intended to supplement the primary content of a resource.".freeze,
|
2385
3701
|
label: "Supplementary material".freeze,
|
2386
3702
|
range: "bf2:SupplementaryContent".freeze,
|
2387
3703
|
type: "owl:ObjectProperty".freeze
|
2388
3704
|
property :systemRequirement,
|
2389
3705
|
"dc:modified": ["2016-04-21 (New)".freeze, "2017-02-06 (Changed from data to object property, changed property name from plural to singular)".freeze],
|
2390
|
-
definition:
|
3706
|
+
definition: "Equipment or system requirement beyond what is normal and obvious for the type of carrier or type of file, such as make and model of equipment or hardware, operating system, amount of memory, programming language, other necessary software, any plug-ins or peripherals required to play, view, or run the resource, etc.".freeze,
|
2391
3707
|
domain: "bf2:Instance".freeze,
|
2392
3708
|
label: "Equipment or system requirements".freeze,
|
2393
3709
|
range: "bf2:SystemRequirement".freeze,
|
2394
3710
|
type: "owl:ObjectProperty".freeze
|
2395
3711
|
property :table,
|
2396
3712
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2397
|
-
definition:
|
3713
|
+
definition: "Number of the table from which the classification number in a subdivision entry is taken, e.g., a DDC table.".freeze,
|
2398
3714
|
domain: "bf2:Classification".freeze,
|
2399
3715
|
label: "Classification table identification".freeze,
|
2400
3716
|
range: "rdfs:Literal".freeze,
|
2401
3717
|
type: "owl:DatatypeProperty".freeze
|
2402
3718
|
property :tableOfContents,
|
2403
|
-
comment:
|
3719
|
+
comment: "Used with Work or Instance".freeze,
|
2404
3720
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2405
|
-
definition:
|
3721
|
+
definition: "Table of contents of the described resource.".freeze,
|
2406
3722
|
label: "Table of contents content".freeze,
|
2407
3723
|
range: "bf2:TableOfContents".freeze,
|
2408
3724
|
type: "owl:ObjectProperty".freeze
|
2409
3725
|
property :tableSeq,
|
2410
3726
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2411
|
-
definition:
|
3727
|
+
definition: "Sequence number or other identifier for an internal classification sub arrangement or add in a classification scheme.".freeze,
|
2412
3728
|
domain: "bf2:Classification".freeze,
|
2413
3729
|
label: "Classification table sequence number".freeze,
|
2414
3730
|
range: "rdfs:Literal".freeze,
|
2415
3731
|
type: "owl:DatatypeProperty".freeze
|
2416
3732
|
property :temporalCoverage,
|
2417
3733
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2418
|
-
definition:
|
3734
|
+
definition: "Time period coverage of the content of the resource.".freeze,
|
2419
3735
|
domain: "bf2:Work".freeze,
|
2420
3736
|
label: "Temporal coverage".freeze,
|
2421
3737
|
range: "rdfs:Literal".freeze,
|
2422
3738
|
type: "owl:DatatypeProperty".freeze
|
2423
3739
|
property :title,
|
2424
|
-
comment:
|
3740
|
+
comment: "Used with Work, Instance or Item".freeze,
|
2425
3741
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2426
|
-
definition:
|
3742
|
+
definition: "Name given to a resource.".freeze,
|
2427
3743
|
label: "Title resource".freeze,
|
2428
3744
|
range: "bf2:Title".freeze,
|
2429
3745
|
type: "owl:ObjectProperty".freeze
|
2430
3746
|
property :translation,
|
2431
|
-
comment: [
|
3747
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2432
3748
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected subproperty)".freeze],
|
2433
|
-
definition:
|
3749
|
+
definition: "Resource that translates the text of the source entity into a language different from that of the original.".freeze,
|
2434
3750
|
inverseOf: "bf2:translationOf".freeze,
|
2435
3751
|
label: "Translation as".freeze,
|
2436
3752
|
subPropertyOf: "bf2:hasDerivative".freeze,
|
2437
3753
|
type: "owl:ObjectProperty".freeze
|
2438
3754
|
property :translationOf,
|
2439
|
-
comment: [
|
3755
|
+
comment: ["Expected value Work or Instance".freeze, "Used with Work or Instance".freeze],
|
2440
3756
|
"dc:modified": ["2016-04-21 (New)".freeze, "2016-04-29 (added inverse, updated range)".freeze, "2017-02-03 (corrected subproperty)".freeze],
|
2441
|
-
definition:
|
3757
|
+
definition: "Resource that has been translated, i.e., the text is expressed in a language different from that of the original resource.".freeze,
|
2442
3758
|
inverseOf: "bf2:translation".freeze,
|
2443
3759
|
label: "Translation of".freeze,
|
2444
3760
|
subPropertyOf: "bf2:derivativeOf".freeze,
|
2445
3761
|
type: "owl:ObjectProperty".freeze
|
2446
3762
|
property :unit,
|
2447
|
-
comment:
|
3763
|
+
comment: "Used with Unspecified".freeze,
|
2448
3764
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2449
|
-
definition:
|
3765
|
+
definition: "Units in which a value is expressed, such as the physical or logical constituent of a resource (e.g., a volume, audiocassette, film reel, a map, a digital file).".freeze,
|
2450
3766
|
label: "Type of unit".freeze,
|
2451
3767
|
range: "bf2:Unit".freeze,
|
2452
3768
|
type: "owl:ObjectProperty".freeze
|
2453
3769
|
property :usageAndAccessPolicy,
|
2454
|
-
comment:
|
3770
|
+
comment: "Used with Work, Instance or Item".freeze,
|
2455
3771
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2456
|
-
definition:
|
3772
|
+
definition: "General statement of allowances and restrictions on access to a resource, including retention, reproduction, access, and lending.".freeze,
|
2457
3773
|
label: "Use and access condition".freeze,
|
2458
3774
|
range: "bf2:UsageAndAccessPolicy".freeze,
|
2459
3775
|
type: "owl:ObjectProperty".freeze
|
2460
3776
|
property :variantType,
|
2461
3777
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2462
|
-
definition:
|
3778
|
+
definition: "Type of title variation, e.g., acronym, cover, spine, earlier, later, series version.".freeze,
|
2463
3779
|
domain: "bf2:VariantTitle".freeze,
|
2464
3780
|
label: "Variant title type".freeze,
|
2465
3781
|
range: "rdfs:Literal".freeze,
|
2466
3782
|
type: "owl:DatatypeProperty".freeze
|
2467
3783
|
property :version,
|
2468
3784
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2469
|
-
definition:
|
3785
|
+
definition: "Term or terms that identify works such as arranged for music, vulgate for religious work, etc.".freeze,
|
2470
3786
|
domain: "bf2:Work".freeze,
|
2471
3787
|
label: "Version".freeze,
|
2472
3788
|
range: "rdfs:Literal".freeze,
|
2473
3789
|
type: "owl:DatatypeProperty".freeze
|
2474
3790
|
property :videoCharacteristic,
|
2475
3791
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2476
|
-
definition:
|
3792
|
+
definition: "Technical specification relating to the encoding of video images in a resource".freeze,
|
2477
3793
|
domain: "bf2:Instance".freeze,
|
2478
3794
|
label: "Video characteristic".freeze,
|
2479
3795
|
range: "bf2:VideoCharacteristic".freeze,
|
2480
3796
|
type: "owl:ObjectProperty".freeze
|
2481
3797
|
property :voice,
|
2482
3798
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2483
|
-
definition:
|
3799
|
+
definition: "Voice for which a musical work is appropriate, such as soprano, tenor, mixed.".freeze,
|
2484
3800
|
domain: "bf2:Work".freeze,
|
2485
3801
|
label: "Voice".freeze,
|
2486
3802
|
range: "bf2:MusicVoice".freeze,
|
2487
3803
|
type: "owl:ObjectProperty".freeze
|
2488
3804
|
property :voiceType,
|
2489
3805
|
"dc:modified": "2016-04-21 (New)".freeze,
|
2490
|
-
definition:
|
3806
|
+
definition: "Specific type of voice group, such as chorus, solo.".freeze,
|
2491
3807
|
domain: "bf2:MusicVoice".freeze,
|
2492
3808
|
label: "Type of voice".freeze,
|
2493
3809
|
range: "rdfs:Literal".freeze,
|