rdf-vocab 3.1.1 → 3.1.7
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 +55 -39
- 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 +470 -301
- data/lib/rdf/vocab/dc11.rb +88 -57
- data/lib/rdf/vocab/dcat.rb +153 -5
- data/lib/rdf/vocab/dcmitype.rb +51 -25
- 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 +324 -0
- 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 +265 -212
- 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 +238 -4
- 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 +147 -3
- data/lib/rdf/vocab/ldp.rb +130 -1
- data/lib/rdf/vocab/lrmi.rb +69 -1
- data/lib/rdf/vocab/ma.rb +381 -1
- data/lib/rdf/vocab/mads.rb +610 -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 +100 -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 +42 -1
- data/lib/rdf/vocab/schema.rb +12470 -804
- 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 +16 -8
data/lib/rdf/vocab/fcrepo4.rb
CHANGED
@@ -5,9 +5,385 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://fedora.info/definitions/v4/repository#>
|
8
|
+
# #
|
9
|
+
# # Fedora Commons Repository Ontology
|
10
|
+
# #
|
11
|
+
# # Ontology for the Fedora data model, intended primarily to make it possible to expose Fedora-curated RDF predicates via de-reference-able URIs.
|
12
|
+
# # @version v4/2015/07/24
|
8
13
|
# class Fcrepo4 < RDF::StrictVocabulary
|
14
|
+
# # A Resource that maintains properties in its own right.
|
15
|
+
# # @return [RDF::Vocabulary::Term]
|
16
|
+
# attr_reader :AnnotatedResource
|
17
|
+
#
|
18
|
+
# # A bitstream, with no further data properties.
|
19
|
+
# # @return [RDF::Vocabulary::Term]
|
20
|
+
# attr_reader :Binary
|
21
|
+
#
|
22
|
+
# # A container for transform configuration.
|
23
|
+
# # @return [RDF::Vocabulary::Term]
|
24
|
+
# attr_reader :Configuration
|
25
|
+
#
|
26
|
+
# # A Fedora Container: the fundamental quantum of durable content in a Fedora repository.
|
27
|
+
# # @return [RDF::Vocabulary::Term]
|
28
|
+
# attr_reader :Container
|
29
|
+
#
|
30
|
+
# # The set of triples representing child resources of a given resource.
|
31
|
+
# # @return [RDF::Vocabulary::Term]
|
32
|
+
# attr_reader :EmbedResources
|
33
|
+
#
|
34
|
+
# # The set of triples representing other repository resources which link to a given resource.
|
35
|
+
# # @return [RDF::Vocabulary::Term]
|
36
|
+
# attr_reader :InboundReferences
|
37
|
+
#
|
38
|
+
# # A container for transform node type configuration.
|
39
|
+
# # @return [RDF::Vocabulary::Term]
|
40
|
+
# attr_reader :NodeTypeConfiguration
|
41
|
+
#
|
42
|
+
# # A container for a bitstream and associated properties.
|
43
|
+
# # @return [RDF::Vocabulary::Term]
|
44
|
+
# attr_reader :NonRdfSourceDescription
|
45
|
+
#
|
46
|
+
# # An entity that is a an intermediary node created in a PairTree hierarchy.
|
47
|
+
# # @return [RDF::Vocabulary::Term]
|
48
|
+
# attr_reader :Pairtree
|
49
|
+
#
|
50
|
+
# # An entity that may be related to other repository entities.
|
51
|
+
# # @return [RDF::Vocabulary::Term]
|
52
|
+
# attr_reader :Relations
|
53
|
+
#
|
54
|
+
# # An entity that has been committed to the repository for safekeeping. For example, Fedora objects and datastreams are resources. A Fixity is not, because the provenance of the instance is entirely internal to the repository.
|
55
|
+
# # @return [RDF::Vocabulary::Term]
|
56
|
+
# attr_reader :Resource
|
57
|
+
#
|
58
|
+
# # The system-generated triples for a given resource (as opposed to explicity-declared properties).
|
59
|
+
# # @return [RDF::Vocabulary::Term]
|
60
|
+
# attr_reader :ServerManaged
|
61
|
+
#
|
62
|
+
# # An entity that is a representation of an RDF Skolem node.
|
63
|
+
# # @return [RDF::Vocabulary::Term]
|
64
|
+
# attr_reader :Skolem
|
65
|
+
#
|
66
|
+
# # Something that is contemplated in the Fedora repository model.
|
67
|
+
# # @return [RDF::Vocabulary::Term]
|
68
|
+
# attr_reader :Thing
|
69
|
+
#
|
70
|
+
# # An entity that is a marker for a deleted node.
|
71
|
+
# # @return [RDF::Vocabulary::Term]
|
72
|
+
# attr_reader :Tombstone
|
73
|
+
#
|
74
|
+
# # @return [RDF::Vocabulary::Term]
|
75
|
+
# attr_reader :Version
|
76
|
+
#
|
77
|
+
# # @return [RDF::Vocabulary::Term]
|
78
|
+
# attr_reader :UnmappedType
|
79
|
+
#
|
80
|
+
# # @return [RDF::Vocabulary::Term]
|
81
|
+
# attr_reader :baseVersion
|
82
|
+
#
|
83
|
+
# # @return [RDF::Vocabulary::Term]
|
84
|
+
# attr_reader :clusterCacheMode
|
85
|
+
#
|
86
|
+
# # @return [RDF::Vocabulary::Term]
|
87
|
+
# attr_reader :clusterMembers
|
88
|
+
#
|
89
|
+
# # @return [RDF::Vocabulary::Term]
|
90
|
+
# attr_reader :clusterName
|
91
|
+
#
|
92
|
+
# # @return [RDF::Vocabulary::Term]
|
93
|
+
# attr_reader :clusterNodeAddress
|
94
|
+
#
|
95
|
+
# # @return [RDF::Vocabulary::Term]
|
96
|
+
# attr_reader :clusterNodeView
|
97
|
+
#
|
98
|
+
# # @return [RDF::Vocabulary::Term]
|
99
|
+
# attr_reader :clusterPhysicalAddress
|
100
|
+
#
|
101
|
+
# # @return [RDF::Vocabulary::Term]
|
102
|
+
# attr_reader :clusterSize
|
103
|
+
#
|
104
|
+
# # @return [RDF::Vocabulary::Term]
|
105
|
+
# attr_reader :computedChecksum
|
106
|
+
#
|
107
|
+
# # @return [RDF::Vocabulary::Term]
|
108
|
+
# attr_reader :computedSize
|
109
|
+
#
|
110
|
+
# # @return [RDF::Vocabulary::Term]
|
111
|
+
# attr_reader :couldNotStoreProperty
|
112
|
+
#
|
113
|
+
# # @return [RDF::Vocabulary::Term]
|
114
|
+
# attr_reader :created
|
115
|
+
#
|
116
|
+
# # @return [RDF::Vocabulary::Term]
|
117
|
+
# attr_reader :createdBy
|
118
|
+
#
|
119
|
+
# # @return [RDF::Vocabulary::Term]
|
120
|
+
# attr_reader :exportsAs
|
121
|
+
#
|
122
|
+
# # @return [RDF::Vocabulary::Term]
|
123
|
+
# attr_reader :frozenMixinTypes
|
124
|
+
#
|
125
|
+
# # @return [RDF::Vocabulary::Term]
|
126
|
+
# attr_reader :frozenPrimaryType
|
127
|
+
#
|
128
|
+
# # @return [RDF::Vocabulary::Term]
|
129
|
+
# attr_reader :frozenUuid
|
130
|
+
#
|
131
|
+
# # @return [RDF::Vocabulary::Term]
|
132
|
+
# attr_reader :hasAccessRoles
|
133
|
+
#
|
134
|
+
# # @return [RDF::Vocabulary::Term]
|
135
|
+
# attr_reader :hasChild
|
136
|
+
#
|
137
|
+
# # Indicates a binary in which content is stored for this datastream.
|
138
|
+
# # @return [RDF::Vocabulary::Term]
|
139
|
+
# attr_reader :hasContent
|
140
|
+
#
|
141
|
+
# # Indicates the default workspace of the repository.
|
142
|
+
# # @return [RDF::Vocabulary::Term]
|
143
|
+
# attr_reader :hasDefaultWorkspace
|
144
|
+
#
|
145
|
+
# # @return [RDF::Vocabulary::Term]
|
146
|
+
# attr_reader :hasFixityService
|
147
|
+
#
|
148
|
+
# # @return [RDF::Vocabulary::Term]
|
149
|
+
# attr_reader :hasLocation
|
150
|
+
#
|
151
|
+
# # Links to a newly-minted identifier which can be used to create a repository resource.
|
152
|
+
# # @return [RDF::Vocabulary::Term]
|
153
|
+
# attr_reader :hasMember
|
154
|
+
#
|
155
|
+
# # @return [RDF::Vocabulary::Term]
|
156
|
+
# attr_reader :hasMoreResults
|
157
|
+
#
|
158
|
+
# # @return [RDF::Vocabulary::Term]
|
159
|
+
# attr_reader :hasNamespaces
|
160
|
+
#
|
161
|
+
# # @return [RDF::Vocabulary::Term]
|
162
|
+
# attr_reader :hasNodeType
|
163
|
+
#
|
164
|
+
# # @return [RDF::Vocabulary::Term]
|
165
|
+
# attr_reader :hasParent
|
166
|
+
#
|
167
|
+
# # @return [RDF::Vocabulary::Term]
|
168
|
+
# attr_reader :hasResultsMember
|
169
|
+
#
|
170
|
+
# # @return [RDF::Vocabulary::Term]
|
171
|
+
# attr_reader :hasTransactionProvider
|
172
|
+
#
|
173
|
+
# # @return [RDF::Vocabulary::Term]
|
174
|
+
# attr_reader :hasVersion
|
175
|
+
#
|
176
|
+
# # @return [RDF::Vocabulary::Term]
|
177
|
+
# attr_reader :hasVersionLabel
|
178
|
+
#
|
179
|
+
# # @return [RDF::Vocabulary::Term]
|
180
|
+
# attr_reader :hasVersions
|
181
|
+
#
|
182
|
+
# # Links to a workspace of the repository.
|
183
|
+
# # @return [RDF::Vocabulary::Term]
|
184
|
+
# attr_reader :hasWorkspace
|
185
|
+
#
|
186
|
+
# # @return [RDF::Vocabulary::Term]
|
187
|
+
# attr_reader :hasWorkspaces
|
188
|
+
#
|
189
|
+
# # @return [RDF::Vocabulary::Term]
|
190
|
+
# attr_reader :isCheckedOut
|
191
|
+
#
|
192
|
+
# # Indicates a datastream for which this resource contains the content.
|
193
|
+
# # @return [RDF::Vocabulary::Term]
|
194
|
+
# attr_reader :isContentOf
|
195
|
+
#
|
196
|
+
# # @return [RDF::Vocabulary::Term]
|
197
|
+
# attr_reader :lastModified
|
198
|
+
#
|
199
|
+
# # @return [RDF::Vocabulary::Term]
|
200
|
+
# attr_reader :lastModifiedBy
|
201
|
+
#
|
202
|
+
# # @return [RDF::Vocabulary::Term]
|
203
|
+
# attr_reader :mixinTypes
|
204
|
+
#
|
205
|
+
# # @return [RDF::Vocabulary::Term]
|
206
|
+
# attr_reader :numFixityChecks
|
207
|
+
#
|
208
|
+
# # @return [RDF::Vocabulary::Term]
|
209
|
+
# attr_reader :numFixityErrors
|
210
|
+
#
|
211
|
+
# # @return [RDF::Vocabulary::Term]
|
212
|
+
# attr_reader :numFixityRepaired
|
213
|
+
#
|
214
|
+
# # @return [RDF::Vocabulary::Term]
|
215
|
+
# attr_reader :numberOfChildren
|
216
|
+
#
|
217
|
+
# # @return [RDF::Vocabulary::Term]
|
218
|
+
# attr_reader :objectCount
|
219
|
+
#
|
220
|
+
# # @return [RDF::Vocabulary::Term]
|
221
|
+
# attr_reader :objectSize
|
222
|
+
#
|
223
|
+
# # @return [RDF::Vocabulary::Term]
|
224
|
+
# attr_reader :predecessors
|
225
|
+
#
|
226
|
+
# # @return [RDF::Vocabulary::Term]
|
227
|
+
# attr_reader :primaryType
|
228
|
+
#
|
229
|
+
# # @return [RDF::Vocabulary::Term]
|
230
|
+
# attr_reader :repositoryCustomRepName
|
231
|
+
#
|
232
|
+
# # @return [RDF::Vocabulary::Term]
|
233
|
+
# attr_reader :repositoryIdentifierStability
|
234
|
+
#
|
235
|
+
# # @return [RDF::Vocabulary::Term]
|
236
|
+
# attr_reader :repositoryJcrRepositoryName
|
237
|
+
#
|
238
|
+
# # @return [RDF::Vocabulary::Term]
|
239
|
+
# attr_reader :repositoryJcrRepositoryVendor
|
240
|
+
#
|
241
|
+
# # @return [RDF::Vocabulary::Term]
|
242
|
+
# attr_reader :repositoryJcrRepositoryVendorUrl
|
243
|
+
#
|
244
|
+
# # @return [RDF::Vocabulary::Term]
|
245
|
+
# attr_reader :repositoryJcrRepositoryVersion
|
246
|
+
#
|
247
|
+
# # @return [RDF::Vocabulary::Term]
|
248
|
+
# attr_reader :repositoryJcrSpecificationName
|
249
|
+
#
|
250
|
+
# # @return [RDF::Vocabulary::Term]
|
251
|
+
# attr_reader :repositoryJcrSpecificationVersion
|
252
|
+
#
|
253
|
+
# # @return [RDF::Vocabulary::Term]
|
254
|
+
# attr_reader :repositoryLevel1Supported
|
255
|
+
#
|
256
|
+
# # @return [RDF::Vocabulary::Term]
|
257
|
+
# attr_reader :repositoryLevel2Supported
|
258
|
+
#
|
259
|
+
# # @return [RDF::Vocabulary::Term]
|
260
|
+
# attr_reader :repositoryNodeTypeManagementAutocreatedDefinitionsSupported
|
261
|
+
#
|
262
|
+
# # @return [RDF::Vocabulary::Term]
|
263
|
+
# attr_reader :repositoryNodeTypeManagementInheritance
|
264
|
+
#
|
265
|
+
# # @return [RDF::Vocabulary::Term]
|
266
|
+
# attr_reader :repositoryNodeTypeManagementMultipleBinaryPropertiesSupported
|
267
|
+
#
|
268
|
+
# # @return [RDF::Vocabulary::Term]
|
269
|
+
# attr_reader :repositoryNodeTypeManagementMultivaluedPropertiesSupported
|
270
|
+
#
|
271
|
+
# # @return [RDF::Vocabulary::Term]
|
272
|
+
# attr_reader :repositoryNodeTypeManagementOrderableChildNodesSupported
|
273
|
+
#
|
274
|
+
# # @return [RDF::Vocabulary::Term]
|
275
|
+
# attr_reader :repositoryNodeTypeManagementOverridesSupported
|
276
|
+
#
|
277
|
+
# # @return [RDF::Vocabulary::Term]
|
278
|
+
# attr_reader :repositoryNodeTypeManagementPrimaryItemNameSupported
|
279
|
+
#
|
280
|
+
# # @return [RDF::Vocabulary::Term]
|
281
|
+
# attr_reader :repositoryNodeTypeManagementPropertyTypes
|
282
|
+
#
|
283
|
+
# # @return [RDF::Vocabulary::Term]
|
284
|
+
# attr_reader :repositoryNodeTypeManagementResidualDefinitionsSupported
|
285
|
+
#
|
286
|
+
# # @return [RDF::Vocabulary::Term]
|
287
|
+
# attr_reader :repositoryNodeTypeManagementSameNameSiblingsSupported
|
288
|
+
#
|
289
|
+
# # @return [RDF::Vocabulary::Term]
|
290
|
+
# attr_reader :repositoryNodeTypeManagementUpdateInUseSupported
|
291
|
+
#
|
292
|
+
# # @return [RDF::Vocabulary::Term]
|
293
|
+
# attr_reader :repositoryNodeTypeManagementValueConstraintsSupported
|
294
|
+
#
|
295
|
+
# # @return [RDF::Vocabulary::Term]
|
296
|
+
# attr_reader :repositoryOptionAccessControlSupported
|
297
|
+
#
|
298
|
+
# # @return [RDF::Vocabulary::Term]
|
299
|
+
# attr_reader :repositoryOptionActivitiesSupported
|
300
|
+
#
|
301
|
+
# # @return [RDF::Vocabulary::Term]
|
302
|
+
# attr_reader :repositoryOptionBaselinesSupported
|
303
|
+
#
|
304
|
+
# # @return [RDF::Vocabulary::Term]
|
305
|
+
# attr_reader :repositoryOptionJournaledObservationSupported
|
306
|
+
#
|
307
|
+
# # @return [RDF::Vocabulary::Term]
|
308
|
+
# attr_reader :repositoryOptionLifecycleSupported
|
309
|
+
#
|
310
|
+
# # @return [RDF::Vocabulary::Term]
|
311
|
+
# attr_reader :repositoryOptionLockingSupported
|
312
|
+
#
|
313
|
+
# # @return [RDF::Vocabulary::Term]
|
314
|
+
# attr_reader :repositoryOptionNodeAndPropertyWithSameNameSupported
|
315
|
+
#
|
316
|
+
# # @return [RDF::Vocabulary::Term]
|
317
|
+
# attr_reader :repositoryOptionNodeTypeManagementSupported
|
318
|
+
#
|
319
|
+
# # @return [RDF::Vocabulary::Term]
|
320
|
+
# attr_reader :repositoryOptionObservationSupported
|
321
|
+
#
|
322
|
+
# # @return [RDF::Vocabulary::Term]
|
323
|
+
# attr_reader :repositoryOptionQuerySqlSupported
|
324
|
+
#
|
325
|
+
# # @return [RDF::Vocabulary::Term]
|
326
|
+
# attr_reader :repositoryOptionRetentionSupported
|
327
|
+
#
|
328
|
+
# # @return [RDF::Vocabulary::Term]
|
329
|
+
# attr_reader :repositoryOptionShareableNodesSupported
|
330
|
+
#
|
331
|
+
# # @return [RDF::Vocabulary::Term]
|
332
|
+
# attr_reader :repositoryOptionSimpleVersioningSupported
|
333
|
+
#
|
334
|
+
# # @return [RDF::Vocabulary::Term]
|
335
|
+
# attr_reader :repositoryOptionTransactionsSupported
|
336
|
+
#
|
337
|
+
# # @return [RDF::Vocabulary::Term]
|
338
|
+
# attr_reader :repositoryOptionUnfiledContentSupported
|
339
|
+
#
|
340
|
+
# # @return [RDF::Vocabulary::Term]
|
341
|
+
# attr_reader :repositoryOptionUpdateMixinNodeTypesSupported
|
342
|
+
#
|
343
|
+
# # @return [RDF::Vocabulary::Term]
|
344
|
+
# attr_reader :repositoryOptionUpdatePrimaryNodeTypeSupported
|
345
|
+
#
|
346
|
+
# # @return [RDF::Vocabulary::Term]
|
347
|
+
# attr_reader :repositoryOptionVersioningSupported
|
348
|
+
#
|
349
|
+
# # @return [RDF::Vocabulary::Term]
|
350
|
+
# attr_reader :repositoryOptionWorkspaceManagementSupported
|
351
|
+
#
|
352
|
+
# # @return [RDF::Vocabulary::Term]
|
353
|
+
# attr_reader :repositoryOptionXmlExportSupported
|
354
|
+
#
|
355
|
+
# # @return [RDF::Vocabulary::Term]
|
356
|
+
# attr_reader :repositoryOptionXmlImportSupported
|
357
|
+
#
|
358
|
+
# # @return [RDF::Vocabulary::Term]
|
359
|
+
# attr_reader :repositoryQueryFullTextSearchSupported
|
360
|
+
#
|
361
|
+
# # @return [RDF::Vocabulary::Term]
|
362
|
+
# attr_reader :repositoryQueryJoins
|
363
|
+
#
|
364
|
+
# # @return [RDF::Vocabulary::Term]
|
365
|
+
# attr_reader :repositoryQueryStoredQueriesSupported
|
366
|
+
#
|
367
|
+
# # @return [RDF::Vocabulary::Term]
|
368
|
+
# attr_reader :repositoryQueryXpathDocOrder
|
369
|
+
#
|
370
|
+
# # @return [RDF::Vocabulary::Term]
|
371
|
+
# attr_reader :repositoryQueryXpathPosIndex
|
372
|
+
#
|
373
|
+
# # @return [RDF::Vocabulary::Term]
|
374
|
+
# attr_reader :repositoryWriteSupported
|
375
|
+
#
|
376
|
+
# # @return [RDF::Vocabulary::Term]
|
377
|
+
# attr_reader :sparql
|
378
|
+
#
|
379
|
+
# # @return [RDF::Vocabulary::Term]
|
380
|
+
# attr_reader :uuid
|
381
|
+
#
|
382
|
+
# # @return [RDF::Vocabulary::Term]
|
383
|
+
# attr_reader :writable
|
384
|
+
#
|
9
385
|
# end
|
10
|
-
|
386
|
+
Fcrepo4 = Class.new(RDF::StrictVocabulary("http://fedora.info/definitions/v4/repository#")) do
|
11
387
|
|
12
388
|
# Ontology definition
|
13
389
|
ontology :"http://fedora.info/definitions/v4/repository#",
|
data/lib/rdf/vocab/foaf.rb
CHANGED
@@ -5,9 +5,313 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://xmlns.com/foaf/0.1/>
|
8
|
+
# #
|
9
|
+
# # Friend of a Friend (FOAF) vocabulary
|
10
|
+
# #
|
11
|
+
# # The Friend of a Friend (FOAF) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.
|
8
12
|
# class FOAF < RDF::StrictVocabulary
|
13
|
+
# # An agent (eg. person, group, software or physical artifact).
|
14
|
+
# # @return [RDF::Vocabulary::Term]
|
15
|
+
# attr_reader :Agent
|
16
|
+
#
|
17
|
+
# # A document.
|
18
|
+
# # @return [RDF::Vocabulary::Term]
|
19
|
+
# attr_reader :Document
|
20
|
+
#
|
21
|
+
# # A class of Agents.
|
22
|
+
# # @return [RDF::Vocabulary::Term]
|
23
|
+
# attr_reader :Group
|
24
|
+
#
|
25
|
+
# # An image.
|
26
|
+
# # @return [RDF::Vocabulary::Term]
|
27
|
+
# attr_reader :Image
|
28
|
+
#
|
29
|
+
# # A foaf:LabelProperty is any RDF property with texual values that serve as labels.
|
30
|
+
# # @return [RDF::Vocabulary::Term]
|
31
|
+
# attr_reader :LabelProperty
|
32
|
+
#
|
33
|
+
# # An online account.
|
34
|
+
# # @return [RDF::Vocabulary::Term]
|
35
|
+
# attr_reader :OnlineAccount
|
36
|
+
#
|
37
|
+
# # An online chat account.
|
38
|
+
# # @return [RDF::Vocabulary::Term]
|
39
|
+
# attr_reader :OnlineChatAccount
|
40
|
+
#
|
41
|
+
# # An online e-commerce account.
|
42
|
+
# # @return [RDF::Vocabulary::Term]
|
43
|
+
# attr_reader :OnlineEcommerceAccount
|
44
|
+
#
|
45
|
+
# # An online gaming account.
|
46
|
+
# # @return [RDF::Vocabulary::Term]
|
47
|
+
# attr_reader :OnlineGamingAccount
|
48
|
+
#
|
49
|
+
# # An organization.
|
50
|
+
# # @return [RDF::Vocabulary::Term]
|
51
|
+
# attr_reader :Organization
|
52
|
+
#
|
53
|
+
# # A person.
|
54
|
+
# # @return [RDF::Vocabulary::Term]
|
55
|
+
# attr_reader :Person
|
56
|
+
#
|
57
|
+
# # A personal profile RDF document.
|
58
|
+
# # @return [RDF::Vocabulary::Term]
|
59
|
+
# attr_reader :PersonalProfileDocument
|
60
|
+
#
|
61
|
+
# # A project (a collective endeavour of some kind).
|
62
|
+
# # @return [RDF::Vocabulary::Term]
|
63
|
+
# attr_reader :Project
|
64
|
+
#
|
65
|
+
# # Indicates an account held by this agent.
|
66
|
+
# # @return [RDF::Vocabulary::Term]
|
67
|
+
# attr_reader :account
|
68
|
+
#
|
69
|
+
# # Indicates the name (identifier) associated with this online account.
|
70
|
+
# # @return [RDF::Vocabulary::Term]
|
71
|
+
# attr_reader :accountName
|
72
|
+
#
|
73
|
+
# # Indicates a homepage of the service provide for this online account.
|
74
|
+
# # @return [RDF::Vocabulary::Term]
|
75
|
+
# attr_reader :accountServiceHomepage
|
76
|
+
#
|
77
|
+
# # The age in years of some agent.
|
78
|
+
# # @return [RDF::Vocabulary::Term]
|
79
|
+
# attr_reader :age
|
80
|
+
#
|
81
|
+
# # An AIM chat ID
|
82
|
+
# # @return [RDF::Vocabulary::Term]
|
83
|
+
# attr_reader :aimChatID
|
84
|
+
#
|
85
|
+
# # A location that something is based near, for some broadly human notion of near.
|
86
|
+
# # @return [RDF::Vocabulary::Term]
|
87
|
+
# attr_reader :based_near
|
88
|
+
#
|
89
|
+
# # The birthday of this Agent, represented in mm-dd string form, eg. '12-31'.
|
90
|
+
# # @return [RDF::Vocabulary::Term]
|
91
|
+
# attr_reader :birthday
|
92
|
+
#
|
93
|
+
# # A current project this person works on.
|
94
|
+
# # @return [RDF::Vocabulary::Term]
|
95
|
+
# attr_reader :currentProject
|
96
|
+
#
|
97
|
+
# # A depiction of some thing.
|
98
|
+
# # @return [RDF::Vocabulary::Term]
|
99
|
+
# attr_reader :depiction
|
100
|
+
#
|
101
|
+
# # A thing depicted in this representation.
|
102
|
+
# # @return [RDF::Vocabulary::Term]
|
103
|
+
# attr_reader :depicts
|
104
|
+
#
|
105
|
+
# # A checksum for the DNA of some thing. Joke.
|
106
|
+
# # @return [RDF::Vocabulary::Term]
|
107
|
+
# attr_reader :dnaChecksum
|
108
|
+
#
|
109
|
+
# # The family name of some person.
|
110
|
+
# # @return [RDF::Vocabulary::Term]
|
111
|
+
# attr_reader :familyName
|
112
|
+
#
|
113
|
+
# # The family name of some person.
|
114
|
+
# # @return [RDF::Vocabulary::Term]
|
115
|
+
# attr_reader :family_name
|
116
|
+
#
|
117
|
+
# # The first name of a person.
|
118
|
+
# # @return [RDF::Vocabulary::Term]
|
119
|
+
# attr_reader :firstName
|
120
|
+
#
|
121
|
+
# # The underlying or 'focal' entity associated with some SKOS-described concept.
|
122
|
+
# # @return [RDF::Vocabulary::Term]
|
123
|
+
# attr_reader :focus
|
124
|
+
#
|
125
|
+
# # An organization funding a project or person.
|
126
|
+
# # @return [RDF::Vocabulary::Term]
|
127
|
+
# attr_reader :fundedBy
|
128
|
+
#
|
129
|
+
# # A textual geekcode for this person, see http://www.geekcode.com/geek.html
|
130
|
+
# # @return [RDF::Vocabulary::Term]
|
131
|
+
# attr_reader :geekcode
|
132
|
+
#
|
133
|
+
# # The gender of this Agent (typically but not necessarily 'male' or 'female').
|
134
|
+
# # @return [RDF::Vocabulary::Term]
|
135
|
+
# attr_reader :gender
|
136
|
+
#
|
137
|
+
# # The given name of some person.
|
138
|
+
# # @return [RDF::Vocabulary::Term]
|
139
|
+
# attr_reader :givenName
|
140
|
+
#
|
141
|
+
# # The given name of some person.
|
142
|
+
# # @return [RDF::Vocabulary::Term]
|
143
|
+
# attr_reader :givenname
|
144
|
+
#
|
145
|
+
# # Indicates an account held by this agent.
|
146
|
+
# # @return [RDF::Vocabulary::Term]
|
147
|
+
# attr_reader :holdsAccount
|
148
|
+
#
|
149
|
+
# # A homepage for some thing.
|
150
|
+
# # @return [RDF::Vocabulary::Term]
|
151
|
+
# attr_reader :homepage
|
152
|
+
#
|
153
|
+
# # An ICQ chat ID
|
154
|
+
# # @return [RDF::Vocabulary::Term]
|
155
|
+
# attr_reader :icqChatID
|
156
|
+
#
|
157
|
+
# # An image that can be used to represent some thing (ie. those depictions which are particularly representative of something, eg. one's photo on a homepage).
|
158
|
+
# # @return [RDF::Vocabulary::Term]
|
159
|
+
# attr_reader :img
|
160
|
+
#
|
161
|
+
# # A page about a topic of interest to this person.
|
162
|
+
# # @return [RDF::Vocabulary::Term]
|
163
|
+
# attr_reader :interest
|
164
|
+
#
|
165
|
+
# # A document that this thing is the primary topic of.
|
166
|
+
# # @return [RDF::Vocabulary::Term]
|
167
|
+
# attr_reader :isPrimaryTopicOf
|
168
|
+
#
|
169
|
+
# # A jabber ID for something.
|
170
|
+
# # @return [RDF::Vocabulary::Term]
|
171
|
+
# attr_reader :jabberID
|
172
|
+
#
|
173
|
+
# # A person known by this person (indicating some level of reciprocated interaction between the parties).
|
174
|
+
# # @return [RDF::Vocabulary::Term]
|
175
|
+
# attr_reader :knows
|
176
|
+
#
|
177
|
+
# # The last name of a person.
|
178
|
+
# # @return [RDF::Vocabulary::Term]
|
179
|
+
# attr_reader :lastName
|
180
|
+
#
|
181
|
+
# # A logo representing some thing.
|
182
|
+
# # @return [RDF::Vocabulary::Term]
|
183
|
+
# attr_reader :logo
|
184
|
+
#
|
185
|
+
# # Something that was made by this agent.
|
186
|
+
# # @return [RDF::Vocabulary::Term]
|
187
|
+
# attr_reader :made
|
188
|
+
#
|
189
|
+
# # An agent that made this thing.
|
190
|
+
# # @return [RDF::Vocabulary::Term]
|
191
|
+
# attr_reader :maker
|
192
|
+
#
|
193
|
+
# # A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox. This is a 'static inverse functional property', in that there is (across time and change) at most one individual that ever has any particular value for foaf:mbox.
|
194
|
+
# # @return [RDF::Vocabulary::Term]
|
195
|
+
# attr_reader :mbox
|
196
|
+
#
|
197
|
+
# # The sha1sum of the URI of an Internet mailbox associated with exactly one owner, the first owner of the mailbox.
|
198
|
+
# # @return [RDF::Vocabulary::Term]
|
199
|
+
# attr_reader :mbox_sha1sum
|
200
|
+
#
|
201
|
+
# # Indicates a member of a Group
|
202
|
+
# # @return [RDF::Vocabulary::Term]
|
203
|
+
# attr_reader :member
|
204
|
+
#
|
205
|
+
# # Indicates the class of individuals that are a member of a Group
|
206
|
+
# # @return [RDF::Vocabulary::Term]
|
207
|
+
# attr_reader :membershipClass
|
208
|
+
#
|
209
|
+
# # An MSN chat ID
|
210
|
+
# # @return [RDF::Vocabulary::Term]
|
211
|
+
# attr_reader :msnChatID
|
212
|
+
#
|
213
|
+
# # A Myers Briggs (MBTI) personality classification.
|
214
|
+
# # @return [RDF::Vocabulary::Term]
|
215
|
+
# attr_reader :myersBriggs
|
216
|
+
#
|
217
|
+
# # A name for some thing.
|
218
|
+
# # @return [RDF::Vocabulary::Term]
|
219
|
+
# attr_reader :name
|
220
|
+
#
|
221
|
+
# # A short informal nickname characterising an agent (includes login identifiers, IRC and other chat nicknames).
|
222
|
+
# # @return [RDF::Vocabulary::Term]
|
223
|
+
# attr_reader :nick
|
224
|
+
#
|
225
|
+
# # An OpenID for an Agent.
|
226
|
+
# # @return [RDF::Vocabulary::Term]
|
227
|
+
# attr_reader :openid
|
228
|
+
#
|
229
|
+
# # A page or document about this thing.
|
230
|
+
# # @return [RDF::Vocabulary::Term]
|
231
|
+
# attr_reader :page
|
232
|
+
#
|
233
|
+
# # A project this person has previously worked on.
|
234
|
+
# # @return [RDF::Vocabulary::Term]
|
235
|
+
# attr_reader :pastProject
|
236
|
+
#
|
237
|
+
# # A phone, specified using fully qualified tel: URI scheme (refs: http://www.w3.org/Addressing/schemes.html#tel).
|
238
|
+
# # @return [RDF::Vocabulary::Term]
|
239
|
+
# attr_reader :phone
|
240
|
+
#
|
241
|
+
# # A .plan comment, in the tradition of finger and '.plan' files.
|
242
|
+
# # @return [RDF::Vocabulary::Term]
|
243
|
+
# attr_reader :plan
|
244
|
+
#
|
245
|
+
# # The primary topic of some page or document.
|
246
|
+
# # @return [RDF::Vocabulary::Term]
|
247
|
+
# attr_reader :primaryTopic
|
248
|
+
#
|
249
|
+
# # A link to the publications of this person.
|
250
|
+
# # @return [RDF::Vocabulary::Term]
|
251
|
+
# attr_reader :publications
|
252
|
+
#
|
253
|
+
# # A homepage of a school attended by the person.
|
254
|
+
# # @return [RDF::Vocabulary::Term]
|
255
|
+
# attr_reader :schoolHomepage
|
256
|
+
#
|
257
|
+
# # A sha1sum hash, in hex.
|
258
|
+
# # @return [RDF::Vocabulary::Term]
|
259
|
+
# attr_reader :sha1
|
260
|
+
#
|
261
|
+
# # A Skype ID
|
262
|
+
# # @return [RDF::Vocabulary::Term]
|
263
|
+
# attr_reader :skypeID
|
264
|
+
#
|
265
|
+
# # A string expressing what the user is happy for the general public (normally) to know about their current activity.
|
266
|
+
# # @return [RDF::Vocabulary::Term]
|
267
|
+
# attr_reader :status
|
268
|
+
#
|
269
|
+
# # The surname of some person.
|
270
|
+
# # @return [RDF::Vocabulary::Term]
|
271
|
+
# attr_reader :surname
|
272
|
+
#
|
273
|
+
# # A theme.
|
274
|
+
# # @return [RDF::Vocabulary::Term]
|
275
|
+
# attr_reader :theme
|
276
|
+
#
|
277
|
+
# # A derived thumbnail image.
|
278
|
+
# # @return [RDF::Vocabulary::Term]
|
279
|
+
# attr_reader :thumbnail
|
280
|
+
#
|
281
|
+
# # A tipjar document for this agent, describing means for payment and reward.
|
282
|
+
# # @return [RDF::Vocabulary::Term]
|
283
|
+
# attr_reader :tipjar
|
284
|
+
#
|
285
|
+
# # Title (Mr, Mrs, Ms, Dr. etc)
|
286
|
+
# # @return [RDF::Vocabulary::Term]
|
287
|
+
# attr_reader :title
|
288
|
+
#
|
289
|
+
# # A topic of some page or document.
|
290
|
+
# # @return [RDF::Vocabulary::Term]
|
291
|
+
# attr_reader :topic
|
292
|
+
#
|
293
|
+
# # A thing of interest to this person.
|
294
|
+
# # @return [RDF::Vocabulary::Term]
|
295
|
+
# attr_reader :topic_interest
|
296
|
+
#
|
297
|
+
# # A weblog of some thing (whether person, group, company etc.).
|
298
|
+
# # @return [RDF::Vocabulary::Term]
|
299
|
+
# attr_reader :weblog
|
300
|
+
#
|
301
|
+
# # A work info homepage of some person; a page about their work for some organization.
|
302
|
+
# # @return [RDF::Vocabulary::Term]
|
303
|
+
# attr_reader :workInfoHomepage
|
304
|
+
#
|
305
|
+
# # A workplace homepage of some person; the homepage of an organization they work for.
|
306
|
+
# # @return [RDF::Vocabulary::Term]
|
307
|
+
# attr_reader :workplaceHomepage
|
308
|
+
#
|
309
|
+
# # A Yahoo chat ID
|
310
|
+
# # @return [RDF::Vocabulary::Term]
|
311
|
+
# attr_reader :yahooChatID
|
312
|
+
#
|
9
313
|
# end
|
10
|
-
|
314
|
+
FOAF = Class.new(RDF::StrictVocabulary("http://xmlns.com/foaf/0.1/")) do
|
11
315
|
|
12
316
|
# Ontology definition
|
13
317
|
ontology :"http://xmlns.com/foaf/0.1/",
|