rdf-vocab 3.1.4 → 3.1.5
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 +14 -28
- data/lib/rdf/vocab/acl.rb +84 -1
- data/lib/rdf/vocab/as.rb +466 -1
- data/lib/rdf/vocab/bf2.rb +1317 -1
- data/lib/rdf/vocab/bibframe.rb +1 -2
- data/lib/rdf/vocab/bibo.rb +496 -1
- data/lib/rdf/vocab/cc.rb +107 -1
- data/lib/rdf/vocab/cert.rb +68 -1
- data/lib/rdf/vocab/cnt.rb +79 -1
- data/lib/rdf/vocab/crm.rb +1303 -1
- data/lib/rdf/vocab/datacite.rb +1 -1
- data/lib/rdf/vocab/dbo.rb +10463 -1
- data/lib/rdf/vocab/dc.rb +1 -1
- data/lib/rdf/vocab/dc11.rb +63 -1
- data/lib/rdf/vocab/dcat.rb +152 -4
- data/lib/rdf/vocab/dcmitype.rb +1 -1
- data/lib/rdf/vocab/disco.rb +228 -1
- data/lib/rdf/vocab/doap.rb +175 -1
- data/lib/rdf/vocab/dwc.rb +753 -1
- data/lib/rdf/vocab/earl.rb +135 -1
- data/lib/rdf/vocab/ebucore.rb +7335 -1974
- data/lib/rdf/vocab/edm.rb +150 -1
- data/lib/rdf/vocab/exif.rb +650 -1
- data/lib/rdf/vocab/extensions.rb +253 -203
- data/lib/rdf/vocab/fcrepo4.rb +377 -1
- data/lib/rdf/vocab/foaf.rb +305 -1
- data/lib/rdf/vocab/geo.rb +39 -1
- data/lib/rdf/vocab/geojson.rb +66 -1
- data/lib/rdf/vocab/geonames.rb +166 -1
- data/lib/rdf/vocab/gr.rb +684 -1
- data/lib/rdf/vocab/gs1.rb +1597 -1
- data/lib/rdf/vocab/ht.rb +164 -1
- data/lib/rdf/vocab/hydra.rb +236 -2
- data/lib/rdf/vocab/iana.rb +230 -1
- data/lib/rdf/vocab/ical.rb +462 -1
- data/lib/rdf/vocab/identifiers.rb +462 -1
- data/lib/rdf/vocab/iiif.rb +136 -1
- data/lib/rdf/vocab/jsonld.rb +135 -1
- data/lib/rdf/vocab/ldp.rb +130 -1
- data/lib/rdf/vocab/lrmi.rb +1 -1
- data/lib/rdf/vocab/ma.rb +381 -1
- data/lib/rdf/vocab/mads.rb +600 -22
- data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +809 -1
- data/lib/rdf/vocab/mo.rb +919 -1
- data/lib/rdf/vocab/mods.rb +516 -1
- data/lib/rdf/vocab/nfo.rb +1 -1
- data/lib/rdf/vocab/oa.rb +275 -1
- data/lib/rdf/vocab/og.rb +78 -1
- data/lib/rdf/vocab/ogc.rb +34 -1
- data/lib/rdf/vocab/ore.rb +56 -1
- data/lib/rdf/vocab/org.rb +189 -1
- data/lib/rdf/vocab/pcdm.rb +47 -1
- data/lib/rdf/vocab/pplan.rb +64 -1
- data/lib/rdf/vocab/premis.rb +1266 -779
- data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +155 -1
- data/lib/rdf/vocab/prov.rb +619 -1
- data/lib/rdf/vocab/ptr.rb +138 -1
- data/lib/rdf/vocab/rightsstatements.rb +5 -1
- data/lib/rdf/vocab/rsa.rb +30 -1
- data/lib/rdf/vocab/rss.rb +1 -1
- data/lib/rdf/vocab/schema.rb +10032 -12
- data/lib/rdf/vocab/sd.rb +372 -0
- data/lib/rdf/vocab/sh.rb +736 -1
- data/lib/rdf/vocab/sioc.rb +401 -1
- data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +38 -1
- data/lib/rdf/vocab/{sioct.rb → sioctypes.rb} +158 -1
- data/lib/rdf/vocab/skos.rb +119 -1
- data/lib/rdf/vocab/skosxl.rb +30 -1
- data/lib/rdf/vocab/v.rb +291 -1
- data/lib/rdf/vocab/vcard.rb +508 -1
- data/lib/rdf/vocab/vmd.rb +291 -1
- data/lib/rdf/vocab/void.rb +121 -1
- data/lib/rdf/vocab/vs.rb +19 -1
- data/lib/rdf/vocab/wdrs.rb +90 -1
- data/lib/rdf/vocab/wot.rb +78 -1
- data/lib/rdf/vocab/xhtml.rb +2 -1
- data/lib/rdf/vocab/xhv.rb +338 -1
- data/lib/rdf/vocab/xkos.rb +150 -1
- data/spec/extensions_spec.rb +68 -0
- data/spec/vocab_spec.rb +10 -0
- metadata +15 -8
data/lib/rdf/vocab/bf2.rb
CHANGED
@@ -5,9 +5,1325 @@ 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
|
+
# # Used with Work or Instance
|
571
|
+
# #
|
572
|
+
# # Expected value Work or Instance
|
573
|
+
# # @return [RDF::Vocabulary::Term]
|
574
|
+
# attr_reader :absorbed
|
575
|
+
#
|
576
|
+
# # Used with Work or Instance
|
577
|
+
# #
|
578
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
674
|
+
# #
|
675
|
+
# # Expected value Work or Instance
|
676
|
+
# # @return [RDF::Vocabulary::Term]
|
677
|
+
# attr_reader :continuedBy
|
678
|
+
#
|
679
|
+
# # Used with Work or Instance
|
680
|
+
# #
|
681
|
+
# # Expected value Work or Instance
|
682
|
+
# # @return [RDF::Vocabulary::Term]
|
683
|
+
# attr_reader :continuedInPartBy
|
684
|
+
#
|
685
|
+
# # Used with Work or Instance
|
686
|
+
# #
|
687
|
+
# # Expected value Work or Instance
|
688
|
+
# # @return [RDF::Vocabulary::Term]
|
689
|
+
# attr_reader :continues
|
690
|
+
#
|
691
|
+
# # Used with Work or Instance
|
692
|
+
# #
|
693
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
732
|
+
# #
|
733
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
745
|
+
# #
|
746
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
822
|
+
# #
|
823
|
+
# # Expected value Work or Instance
|
824
|
+
# # @return [RDF::Vocabulary::Term]
|
825
|
+
# attr_reader :findingAid
|
826
|
+
#
|
827
|
+
# # Used with Work or Instance
|
828
|
+
# #
|
829
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
864
|
+
# #
|
865
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
894
|
+
# #
|
895
|
+
# # Expected value Work or Instance
|
896
|
+
# # @return [RDF::Vocabulary::Term]
|
897
|
+
# attr_reader :hasSeries
|
898
|
+
#
|
899
|
+
# # Used with Work or Instance
|
900
|
+
# #
|
901
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
929
|
+
# #
|
930
|
+
# # Expected value Work or Instance
|
931
|
+
# # @return [RDF::Vocabulary::Term]
|
932
|
+
# attr_reader :index
|
933
|
+
#
|
934
|
+
# # Used with Work or Instance
|
935
|
+
# #
|
936
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
988
|
+
# #
|
989
|
+
# # Expected value Work or Instance
|
990
|
+
# # @return [RDF::Vocabulary::Term]
|
991
|
+
# attr_reader :mergedToForm
|
992
|
+
#
|
993
|
+
# # Used with Work or Instance
|
994
|
+
# #
|
995
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
1046
|
+
# #
|
1047
|
+
# # Expected value Work or Instance
|
1048
|
+
# # @return [RDF::Vocabulary::Term]
|
1049
|
+
# attr_reader :originalVersion
|
1050
|
+
#
|
1051
|
+
# # Used with Work or Instance
|
1052
|
+
# #
|
1053
|
+
# # Expected value Work or Instance
|
1054
|
+
# # @return [RDF::Vocabulary::Term]
|
1055
|
+
# attr_reader :originalVersionOf
|
1056
|
+
#
|
1057
|
+
# # Used with Work or Instance
|
1058
|
+
# #
|
1059
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
1099
|
+
# #
|
1100
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
1146
|
+
# #
|
1147
|
+
# # Expected value Work or Instance
|
1148
|
+
# # @return [RDF::Vocabulary::Term]
|
1149
|
+
# attr_reader :replacedBy
|
1150
|
+
#
|
1151
|
+
# # Used with Work or Instance
|
1152
|
+
# #
|
1153
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
1178
|
+
# #
|
1179
|
+
# # Expected value Work or Instance
|
1180
|
+
# # @return [RDF::Vocabulary::Term]
|
1181
|
+
# attr_reader :separatedFrom
|
1182
|
+
#
|
1183
|
+
# # @return [RDF::Vocabulary::Term]
|
1184
|
+
# attr_reader :seriesEnumeration
|
1185
|
+
#
|
1186
|
+
# # Used with Work or Instance
|
1187
|
+
# #
|
1188
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
1213
|
+
# #
|
1214
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
1233
|
+
# #
|
1234
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
1245
|
+
# #
|
1246
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
1255
|
+
# #
|
1256
|
+
# # Expected value Work or Instance
|
1257
|
+
# # @return [RDF::Vocabulary::Term]
|
1258
|
+
# attr_reader :supplement
|
1259
|
+
#
|
1260
|
+
# # Used with Work or Instance
|
1261
|
+
# #
|
1262
|
+
# # Expected value 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
|
+
# # Used with Work or Instance
|
1291
|
+
# #
|
1292
|
+
# # Expected value Work or Instance
|
1293
|
+
# # @return [RDF::Vocabulary::Term]
|
1294
|
+
# attr_reader :translation
|
1295
|
+
#
|
1296
|
+
# # Used with Work or Instance
|
1297
|
+
# #
|
1298
|
+
# # Expected value 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/",
|