rdf-vocab 3.1.6 → 3.1.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -3
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +25 -8
- data/lib/rdf/vocab/acl.rb +67 -194
- data/lib/rdf/vocab/as.rb +471 -984
- data/lib/rdf/vocab/bf2.rb +1714 -3034
- data/lib/rdf/vocab/bibframe.rb +2270 -1840
- data/lib/rdf/vocab/bibo.rb +696 -1201
- data/lib/rdf/vocab/cc.rb +75 -214
- data/lib/rdf/vocab/cert.rb +90 -268
- data/lib/rdf/vocab/cnt.rb +70 -152
- data/lib/rdf/vocab/crm.rb +1420 -3261
- data/lib/rdf/vocab/datacite.rb +161 -161
- data/lib/rdf/vocab/dbo.rb +3901 -14146
- data/lib/rdf/vocab/dc.rb +556 -898
- data/lib/rdf/vocab/dc11.rb +92 -158
- data/lib/rdf/vocab/dcat.rb +300 -466
- data/lib/rdf/vocab/dcmitype.rb +77 -131
- data/lib/rdf/vocab/disco.rb +228 -459
- data/lib/rdf/vocab/doap.rb +250 -430
- data/lib/rdf/vocab/dwc.rb +1639 -2395
- data/lib/rdf/vocab/earl.rb +105 -243
- data/lib/rdf/vocab/ebucore.rb +3957 -8695
- data/lib/rdf/vocab/edm.rb +211 -426
- data/lib/rdf/vocab/exif.rb +614 -1268
- data/lib/rdf/vocab/extensions.rb +3 -3
- data/lib/rdf/vocab/fcrepo4.rb +268 -648
- data/lib/rdf/vocab/foaf.rb +448 -756
- data/lib/rdf/vocab/geo.rb +24 -167
- data/lib/rdf/vocab/geojson.rb +32 -101
- data/lib/rdf/vocab/geonames.rb +2915 -3092
- data/lib/rdf/vocab/gr.rb +716 -1991
- data/lib/rdf/vocab/gs1.rb +3780 -5380
- data/lib/rdf/vocab/ht.rb +133 -300
- data/lib/rdf/vocab/hydra.rb +298 -511
- data/lib/rdf/vocab/iana.rb +142 -417
- data/lib/rdf/vocab/ical.rb +532 -1045
- data/lib/rdf/vocab/identifiers.rb +215 -1019
- data/lib/rdf/vocab/iiif.rb +106 -245
- data/lib/rdf/vocab/jsonld.rb +163 -323
- data/lib/rdf/vocab/ldp.rb +161 -294
- data/lib/rdf/vocab/lrmi.rb +175 -199
- data/lib/rdf/vocab/ma.rb +312 -702
- data/lib/rdf/vocab/mads.rb +516 -1113
- data/lib/rdf/vocab/marcrelators.rb +540 -1351
- data/lib/rdf/vocab/mo.rb +1579 -2844
- data/lib/rdf/vocab/mods.rb +503 -1026
- data/lib/rdf/vocab/nfo.rb +311 -315
- data/lib/rdf/vocab/oa.rb +264 -546
- data/lib/rdf/vocab/og.rb +158 -239
- data/lib/rdf/vocab/ogc.rb +33 -70
- data/lib/rdf/vocab/ore.rb +64 -123
- data/lib/rdf/vocab/org.rb +226 -422
- data/lib/rdf/vocab/pcdm.rb +61 -133
- data/lib/rdf/vocab/pplan.rb +16 -202
- data/lib/rdf/vocab/premis.rb +793 -2039
- data/lib/rdf/vocab/premiseventtype.rb +115 -273
- data/lib/rdf/vocab/prov.rb +1077 -1724
- data/lib/rdf/vocab/ptr.rb +111 -254
- data/lib/rdf/vocab/rdau.rb +10506 -0
- data/lib/rdf/vocab/rightsstatements.rb +102 -110
- data/lib/rdf/vocab/rsa.rb +37 -89
- data/lib/rdf/vocab/rss.rb +34 -79
- data/lib/rdf/vocab/schema.rb +11193 -22240
- data/lib/rdf/vocab/schemas.rb +16333 -0
- data/lib/rdf/vocab/sd.rb +123 -280
- data/lib/rdf/vocab/sh.rb +912 -1651
- data/lib/rdf/vocab/sioc.rb +513 -917
- data/lib/rdf/vocab/siocservices.rb +39 -80
- data/lib/rdf/vocab/sioctypes.rb +183 -344
- data/lib/rdf/vocab/skos.rb +136 -260
- data/lib/rdf/vocab/skosxl.rb +36 -69
- data/lib/rdf/vocab/v.rb +231 -529
- data/lib/rdf/vocab/vcard.rb +407 -1038
- data/lib/rdf/vocab/vmd.rb +231 -529
- data/lib/rdf/vocab/void.rb +112 -236
- data/lib/rdf/vocab/vs.rb +20 -42
- data/lib/rdf/vocab/wdrs.rb +65 -158
- data/lib/rdf/vocab/wot.rb +113 -194
- data/lib/rdf/vocab/xhtml.rb +2 -7
- data/lib/rdf/vocab/xhv.rb +206 -663
- data/lib/rdf/vocab/xkos.rb +122 -275
- data/spec/extensions_spec.rb +1 -1
- data/spec/spec_helper.rb +13 -0
- metadata +72 -24
data/lib/rdf/vocab/extensions.rb
CHANGED
@@ -136,7 +136,7 @@ module RDF
|
|
136
136
|
po = {}
|
137
137
|
|
138
138
|
# Group predicates with their values
|
139
|
-
graph.query(subject: subject) do |statement|
|
139
|
+
graph.query({subject: subject}) do |statement|
|
140
140
|
# Sanity check this, as these are set to an empty string if not defined.
|
141
141
|
next if [RDF::RDFS.label, RDF::RDFS.comment].include?(statement.predicate) && statement.object.to_s.empty?
|
142
142
|
po[statement.predicate] ||= []
|
@@ -262,7 +262,7 @@ module RDF
|
|
262
262
|
po = {}
|
263
263
|
|
264
264
|
# Group predicates with their values
|
265
|
-
graph.query(subject: subject) do |statement|
|
265
|
+
graph.query({subject: subject}) do |statement|
|
266
266
|
# Sanity check this, as these are set to an empty string if not defined.
|
267
267
|
next if [RDF::RDFS.label, RDF::RDFS.comment].include?(statement.predicate) && statement.object.to_s.empty?
|
268
268
|
po[statement.predicate] ||= []
|
@@ -451,7 +451,7 @@ module RDF
|
|
451
451
|
cats = {}
|
452
452
|
categorized = {}
|
453
453
|
uncategorized = {}
|
454
|
-
graph.query(predicate: RDF.type) do |statement|
|
454
|
+
graph.query({predicate: RDF.type}) do |statement|
|
455
455
|
# Only serialize statements that are in the defined vocabulary
|
456
456
|
next unless statement.subject.uri? && statement.subject.start_with?(self.to_uri)
|
457
457
|
case statement.object
|
data/lib/rdf/vocab/fcrepo4.rb
CHANGED
@@ -3,817 +3,437 @@
|
|
3
3
|
# This file generated automatically using rdf vocabulary format from http://fedora.info/definitions/v4/repository#
|
4
4
|
require 'rdf'
|
5
5
|
module RDF::Vocab
|
6
|
-
# @!parse
|
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
|
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
|
-
#
|
385
|
-
# end
|
386
6
|
Fcrepo4 = Class.new(RDF::StrictVocabulary("http://fedora.info/definitions/v4/repository#")) do
|
387
7
|
|
388
8
|
# Ontology definition
|
389
9
|
ontology :"http://fedora.info/definitions/v4/repository#",
|
390
|
-
comment:
|
10
|
+
comment: "Ontology for the Fedora data model, intended primarily to make it possible to expose Fedora-curated RDF predicates via de-reference-able URIs.".freeze,
|
11
|
+
"http://www.w3.org/2002/07/owl#priorVersion": "http://fedora.info/definitions/v4/2015/05/19/repository".freeze,
|
12
|
+
"http://www.w3.org/2002/07/owl#versionInfo": "v4/2015/07/24".freeze,
|
391
13
|
label: "Fedora Commons Repository Ontology".freeze,
|
392
|
-
|
393
|
-
"owl:versionInfo": "v4/2015/07/24".freeze,
|
394
|
-
type: "owl:Ontology".freeze
|
14
|
+
type: "http://www.w3.org/2002/07/owl#Ontology".freeze
|
395
15
|
|
396
16
|
# Class definitions
|
397
17
|
term :AnnotatedResource,
|
398
|
-
comment:
|
18
|
+
comment: "A Resource that maintains properties in its own right.".freeze,
|
399
19
|
label: "annotated resource".freeze,
|
400
|
-
subClassOf: "
|
401
|
-
type: "owl
|
20
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#Resource".freeze,
|
21
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
402
22
|
term :Binary,
|
403
|
-
comment:
|
23
|
+
comment: "A bitstream, with no further data properties.".freeze,
|
24
|
+
"http://www.w3.org/2002/07/owl#disjointWith": ["http://fedora.info/definitions/v4/repository#Container".freeze, "http://fedora.info/definitions/v4/repository#NonRdfSourceDescription".freeze],
|
404
25
|
label: "binary".freeze,
|
405
|
-
|
406
|
-
|
407
|
-
type: "owl:Class".freeze
|
26
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#Resource".freeze,
|
27
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
408
28
|
term :Configuration,
|
409
|
-
comment:
|
29
|
+
comment: "A container for transform configuration.".freeze,
|
410
30
|
label: "Fedora transform configuration".freeze,
|
411
|
-
subClassOf: "
|
412
|
-
type: "owl
|
31
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze,
|
32
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
413
33
|
term :Container,
|
414
|
-
comment:
|
34
|
+
comment: "A Fedora Container: the fundamental quantum of durable content in a Fedora repository.".freeze,
|
415
35
|
label: "Fedora Container".freeze,
|
416
|
-
subClassOf: "
|
417
|
-
type: "owl
|
36
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#AnnotatedResource".freeze,
|
37
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
418
38
|
term :EmbedResources,
|
419
|
-
comment:
|
39
|
+
comment: "The set of triples representing child resources of a given resource.".freeze,
|
420
40
|
label: "embed resources".freeze,
|
421
|
-
subClassOf: "
|
422
|
-
type: "owl
|
41
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze,
|
42
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
423
43
|
term :InboundReferences,
|
424
|
-
comment:
|
44
|
+
comment: "The set of triples representing other repository resources which link to a given resource.".freeze,
|
425
45
|
label: "inbound references".freeze,
|
426
|
-
subClassOf: "
|
427
|
-
type: "owl
|
46
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze,
|
47
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
428
48
|
term :NodeTypeConfiguration,
|
429
|
-
comment:
|
49
|
+
comment: "A container for transform node type configuration.".freeze,
|
430
50
|
label: "Fedora transform node type configuration".freeze,
|
431
|
-
subClassOf: "
|
432
|
-
type: "owl
|
51
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze,
|
52
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
433
53
|
term :NonRdfSourceDescription,
|
434
|
-
comment:
|
54
|
+
comment: "A container for a bitstream and associated properties.".freeze,
|
55
|
+
"http://www.w3.org/2002/07/owl#disjointWith": "http://fedora.info/definitions/v4/repository#Container".freeze,
|
435
56
|
label: "Fedora NonRdfSourceDescription".freeze,
|
436
|
-
|
437
|
-
|
438
|
-
type: "owl:Class".freeze
|
57
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#AnnotatedResource".freeze,
|
58
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
439
59
|
term :Pairtree,
|
440
|
-
comment:
|
60
|
+
comment: "An entity that is a an intermediary node created in a PairTree hierarchy.".freeze,
|
441
61
|
label: "pair tree".freeze,
|
442
|
-
subClassOf: "
|
443
|
-
type: "owl
|
62
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze,
|
63
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
444
64
|
term :Relations,
|
445
|
-
comment:
|
446
|
-
subClassOf: "
|
447
|
-
type: "owl
|
65
|
+
comment: "An entity that may be related to other repository entities.".freeze,
|
66
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze,
|
67
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
448
68
|
term :Resource,
|
449
|
-
comment:
|
69
|
+
comment: "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.".freeze,
|
450
70
|
label: "Fedora resource".freeze,
|
451
|
-
subClassOf: "
|
452
|
-
type: "owl
|
71
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze,
|
72
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
453
73
|
term :ServerManaged,
|
454
|
-
comment:
|
74
|
+
comment: "The system-generated triples for a given resource (as opposed to explicity-declared properties).".freeze,
|
455
75
|
label: "server managed".freeze,
|
456
|
-
subClassOf: "
|
457
|
-
type: "owl
|
76
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze,
|
77
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
458
78
|
term :Skolem,
|
459
|
-
comment:
|
79
|
+
comment: "An entity that is a representation of an RDF Skolem node.".freeze,
|
460
80
|
label: "skolem".freeze,
|
461
|
-
subClassOf: "
|
462
|
-
type: "owl
|
81
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#Thing".freeze,
|
82
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
463
83
|
term :Thing,
|
464
|
-
comment:
|
84
|
+
comment: "Something that is contemplated in the Fedora repository model.".freeze,
|
465
85
|
label: "Fedora thing".freeze,
|
466
|
-
type: "owl
|
86
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
467
87
|
term :Tombstone,
|
468
|
-
comment:
|
88
|
+
comment: "An entity that is a marker for a deleted node.".freeze,
|
469
89
|
label: "tombstone".freeze,
|
470
|
-
type: "owl
|
90
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
471
91
|
term :Version,
|
472
92
|
label: "A snapshot of a Fedora object at a given point in time.".freeze,
|
473
|
-
subClassOf: "
|
474
|
-
type: "owl
|
93
|
+
subClassOf: "http://fedora.info/definitions/v4/repository#Container".freeze,
|
94
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze
|
475
95
|
|
476
96
|
# Property definitions
|
477
97
|
property :UnmappedType,
|
478
|
-
subPropertyOf: "owl
|
479
|
-
type: "owl
|
98
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
99
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
480
100
|
property :baseVersion,
|
481
|
-
domain: "
|
101
|
+
domain: "http://fedora.info/definitions/v4/repository#Container".freeze,
|
482
102
|
label: "base version".freeze,
|
483
|
-
range: "
|
484
|
-
type: ["owl
|
103
|
+
range: "http://fedora.info/definitions/v4/repository#Version".freeze,
|
104
|
+
type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
|
485
105
|
property :clusterCacheMode,
|
486
|
-
subPropertyOf: "owl
|
487
|
-
type: "owl
|
106
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
107
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
488
108
|
property :clusterMembers,
|
489
|
-
subPropertyOf: "owl
|
490
|
-
type: "owl
|
109
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
110
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
491
111
|
property :clusterName,
|
492
|
-
range: "
|
493
|
-
subPropertyOf: "owl
|
494
|
-
type: "owl
|
112
|
+
range: "http://www.w3.org/2001/XMLSchema#string".freeze,
|
113
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
114
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
495
115
|
property :clusterNodeAddress,
|
496
|
-
subPropertyOf: "owl
|
497
|
-
type: "owl
|
116
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
117
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
498
118
|
property :clusterNodeView,
|
499
|
-
subPropertyOf: "owl
|
500
|
-
type: "owl
|
119
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
120
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
501
121
|
property :clusterPhysicalAddress,
|
502
|
-
subPropertyOf: "owl
|
503
|
-
type: "owl
|
122
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
123
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
504
124
|
property :clusterSize,
|
505
|
-
range: "
|
506
|
-
subPropertyOf: "owl
|
507
|
-
type: "owl
|
125
|
+
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
|
126
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
127
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
508
128
|
property :computedChecksum,
|
509
|
-
subPropertyOf: "owl
|
510
|
-
type: "owl
|
129
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
130
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
511
131
|
property :computedSize,
|
512
|
-
subPropertyOf: "owl
|
513
|
-
type: "owl
|
132
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
133
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
514
134
|
property :couldNotStoreProperty,
|
515
|
-
subPropertyOf: "owl
|
516
|
-
type: "owl
|
135
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
136
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
517
137
|
property :created,
|
518
|
-
range: "
|
519
|
-
subPropertyOf: "owl
|
520
|
-
type: "owl
|
138
|
+
range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze,
|
139
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
140
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
521
141
|
property :createdBy,
|
522
|
-
subPropertyOf: "owl
|
523
|
-
type: "owl
|
142
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
143
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
524
144
|
property :exportsAs,
|
525
145
|
label: "exports as".freeze,
|
526
|
-
range: "
|
527
|
-
type: "owl
|
146
|
+
range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze,
|
147
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
528
148
|
property :frozenMixinTypes,
|
529
|
-
subPropertyOf: "
|
530
|
-
type: "owl
|
149
|
+
subPropertyOf: "http://fedora.info/definitions/v4/repository#mixinTypes".freeze,
|
150
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
531
151
|
property :frozenPrimaryType,
|
532
|
-
subPropertyOf: "
|
533
|
-
type: "owl
|
152
|
+
subPropertyOf: "http://fedora.info/definitions/v4/repository#primaryType".freeze,
|
153
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
534
154
|
property :frozenUuid,
|
535
|
-
subPropertyOf: "
|
536
|
-
type: "owl
|
155
|
+
subPropertyOf: "http://fedora.info/definitions/v4/repository#uuid".freeze,
|
156
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
537
157
|
property :hasAccessRoles,
|
538
158
|
label: "has access roles".freeze,
|
539
|
-
type: "owl
|
159
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
540
160
|
property :hasChild,
|
541
|
-
domain: "
|
161
|
+
domain: "http://fedora.info/definitions/v4/repository#Container".freeze,
|
542
162
|
label: "has child".freeze,
|
543
163
|
range: term(
|
544
|
-
type: "owl
|
545
|
-
unionOf: list("
|
164
|
+
type: "http://www.w3.org/2002/07/owl#Class".freeze,
|
165
|
+
unionOf: list("http://fedora.info/definitions/v4/repository#NonRdfSourceDescription".freeze, "http://fedora.info/definitions/v4/repository#Container".freeze)
|
546
166
|
),
|
547
|
-
type: ["owl
|
167
|
+
type: ["http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
|
548
168
|
property :hasContent,
|
549
|
-
comment:
|
550
|
-
domain: "
|
169
|
+
comment: "Indicates a binary in which content is stored for this datastream.".freeze,
|
170
|
+
domain: "http://fedora.info/definitions/v4/repository#NonRdfSourceDescription".freeze,
|
551
171
|
label: "has content".freeze,
|
552
|
-
range: "
|
553
|
-
type: "owl
|
172
|
+
range: "http://fedora.info/definitions/v4/repository#Binary".freeze,
|
173
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
554
174
|
property :hasDefaultWorkspace,
|
555
|
-
comment:
|
175
|
+
comment: "Indicates the default workspace of the repository.".freeze,
|
556
176
|
label: "has default workspace".freeze,
|
557
|
-
type: "owl
|
177
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
558
178
|
property :hasFixityService,
|
559
179
|
label: "has fixity service".freeze,
|
560
|
-
type: "owl
|
180
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
561
181
|
property :hasLocation,
|
562
|
-
range: "
|
563
|
-
subPropertyOf: "owl
|
564
|
-
type: "owl
|
182
|
+
range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze,
|
183
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
184
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
565
185
|
property :hasMember,
|
566
|
-
comment:
|
186
|
+
comment: "Links to a newly-minted identifier which can be used to create a repository resource.".freeze,
|
567
187
|
label: "has member".freeze,
|
568
|
-
range: "
|
569
|
-
type: "owl
|
188
|
+
range: "http://www.w3.org/2001/XMLSchema#anyURI".freeze,
|
189
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
570
190
|
property :hasMoreResults,
|
571
191
|
label: "has more results".freeze,
|
572
|
-
range: "
|
573
|
-
type: "owl
|
192
|
+
range: "http://www.w3.org/2001/XMLSchema#boolean".freeze,
|
193
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
574
194
|
property :hasNamespaces,
|
575
195
|
label: "has namespaces".freeze,
|
576
|
-
type: "owl
|
196
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
577
197
|
property :hasNodeType,
|
578
|
-
subPropertyOf: "owl
|
579
|
-
type: "owl
|
198
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
199
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
580
200
|
property :hasParent,
|
581
|
-
domain: "
|
201
|
+
domain: "http://fedora.info/definitions/v4/repository#Resource".freeze,
|
582
202
|
label: "has parent".freeze,
|
583
|
-
range: "
|
584
|
-
type: ["owl
|
203
|
+
range: "http://fedora.info/definitions/v4/repository#Container".freeze,
|
204
|
+
type: ["http://www.w3.org/2002/07/owl#FunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
|
585
205
|
property :hasResultsMember,
|
586
206
|
label: "has results member".freeze,
|
587
|
-
range: "
|
588
|
-
type: "owl
|
207
|
+
range: "http://fedora.info/definitions/v4/repository#Resource".freeze,
|
208
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
589
209
|
property :hasTransactionProvider,
|
590
210
|
label: "has transaction provider".freeze,
|
591
|
-
type: "owl
|
211
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
592
212
|
property :hasVersion,
|
593
|
-
domain: "
|
213
|
+
domain: "http://fedora.info/definitions/v4/repository#Container".freeze,
|
594
214
|
label: "has version".freeze,
|
595
|
-
range: "
|
596
|
-
type: "owl
|
215
|
+
range: "http://fedora.info/definitions/v4/repository#Version".freeze,
|
216
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
597
217
|
property :hasVersionLabel,
|
598
|
-
range: "
|
599
|
-
subPropertyOf: "owl
|
600
|
-
type: "owl
|
218
|
+
range: "http://www.w3.org/2001/XMLSchema#string".freeze,
|
219
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
220
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
601
221
|
property :hasVersions,
|
602
222
|
label: "has versions".freeze,
|
603
|
-
type: "owl
|
223
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
604
224
|
property :hasWorkspace,
|
605
|
-
comment:
|
225
|
+
comment: "Links to a workspace of the repository.".freeze,
|
606
226
|
label: "has workspace".freeze,
|
607
|
-
type: "owl
|
227
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
608
228
|
property :hasWorkspaces,
|
609
229
|
label: "has workspaces".freeze,
|
610
|
-
type: "owl
|
230
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
611
231
|
property :isCheckedOut,
|
612
|
-
range: "
|
613
|
-
subPropertyOf: "owl
|
614
|
-
type: "owl
|
232
|
+
range: "http://www.w3.org/2001/XMLSchema#boolean".freeze,
|
233
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
234
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
615
235
|
property :isContentOf,
|
616
|
-
comment:
|
617
|
-
domain: "
|
236
|
+
comment: "Indicates a datastream for which this resource contains the content. ".freeze,
|
237
|
+
domain: "http://fedora.info/definitions/v4/repository#Binary".freeze,
|
618
238
|
label: "is content of".freeze,
|
619
|
-
range: "
|
620
|
-
type: ["owl
|
239
|
+
range: "http://fedora.info/definitions/v4/repository#NonRdfSourceDescription".freeze,
|
240
|
+
type: ["http://www.w3.org/2002/07/owl#InverseFunctionalProperty".freeze, "http://www.w3.org/2002/07/owl#ObjectProperty".freeze]
|
621
241
|
property :lastModified,
|
622
|
-
range: "
|
623
|
-
subPropertyOf: "owl
|
624
|
-
type: "owl
|
242
|
+
range: "http://www.w3.org/2001/XMLSchema#dateTime".freeze,
|
243
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
244
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
625
245
|
property :lastModifiedBy,
|
626
|
-
subPropertyOf: "owl
|
627
|
-
type: "owl
|
246
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
247
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
628
248
|
property :mixinTypes,
|
629
|
-
subPropertyOf: "owl
|
630
|
-
type: "owl
|
249
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
250
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
631
251
|
property :numFixityChecks,
|
632
|
-
range: "
|
633
|
-
subPropertyOf: "owl
|
634
|
-
type: "owl
|
252
|
+
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
|
253
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
254
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
635
255
|
property :numFixityErrors,
|
636
|
-
range: "
|
637
|
-
subPropertyOf: "owl
|
638
|
-
type: "owl
|
256
|
+
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
|
257
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
258
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
639
259
|
property :numFixityRepaired,
|
640
|
-
range: "
|
641
|
-
subPropertyOf: "owl
|
642
|
-
type: "owl
|
260
|
+
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
|
261
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
262
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
643
263
|
property :numberOfChildren,
|
644
|
-
range: "
|
645
|
-
subPropertyOf: "owl
|
646
|
-
type: "owl
|
264
|
+
range: "http://www.w3.org/2001/XMLSchema#nonNegativeInteger".freeze,
|
265
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
266
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
647
267
|
property :objectCount,
|
648
|
-
subPropertyOf: "owl
|
649
|
-
type: "owl
|
268
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
269
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
650
270
|
property :objectSize,
|
651
|
-
subPropertyOf: "owl
|
652
|
-
type: "owl
|
271
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
272
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
653
273
|
property :predecessors,
|
654
|
-
domain: "
|
274
|
+
domain: "http://fedora.info/definitions/v4/repository#Version".freeze,
|
655
275
|
label: "predecessors".freeze,
|
656
|
-
range: "
|
657
|
-
type: "owl
|
276
|
+
range: "http://fedora.info/definitions/v4/repository#Version".freeze,
|
277
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
658
278
|
property :primaryType,
|
659
|
-
subPropertyOf: "owl
|
660
|
-
type: "owl
|
279
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
280
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
661
281
|
property :repositoryCustomRepName,
|
662
|
-
"rdf
|
663
|
-
type: "owl
|
282
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
283
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
664
284
|
property :repositoryIdentifierStability,
|
665
|
-
"rdf
|
666
|
-
type: "owl
|
285
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
286
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
667
287
|
property :repositoryJcrRepositoryName,
|
668
|
-
"rdf
|
669
|
-
type: "owl
|
288
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
289
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
670
290
|
property :repositoryJcrRepositoryVendor,
|
671
|
-
"rdf
|
672
|
-
type: "owl
|
291
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
292
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
673
293
|
property :repositoryJcrRepositoryVendorUrl,
|
674
|
-
"rdf
|
675
|
-
type: "owl
|
294
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
295
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
676
296
|
property :repositoryJcrRepositoryVersion,
|
677
|
-
"rdf
|
678
|
-
type: "owl
|
297
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
298
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
679
299
|
property :repositoryJcrSpecificationName,
|
680
|
-
"rdf
|
681
|
-
type: "owl
|
300
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
301
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
682
302
|
property :repositoryJcrSpecificationVersion,
|
683
|
-
"rdf
|
684
|
-
type: "owl
|
303
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
304
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
685
305
|
property :repositoryLevel1Supported,
|
686
|
-
"rdf
|
687
|
-
type: "owl
|
306
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
307
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
688
308
|
property :repositoryLevel2Supported,
|
689
|
-
"rdf
|
690
|
-
type: "owl
|
309
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
310
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
691
311
|
property :repositoryNodeTypeManagementAutocreatedDefinitionsSupported,
|
692
|
-
"rdf
|
693
|
-
type: "owl
|
312
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
313
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
694
314
|
property :repositoryNodeTypeManagementInheritance,
|
695
|
-
"rdf
|
696
|
-
type: "owl
|
315
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
316
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
697
317
|
property :repositoryNodeTypeManagementMultipleBinaryPropertiesSupported,
|
698
|
-
"rdf
|
699
|
-
type: "owl
|
318
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
319
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
700
320
|
property :repositoryNodeTypeManagementMultivaluedPropertiesSupported,
|
701
|
-
"rdf
|
702
|
-
type: "owl
|
321
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
322
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
703
323
|
property :repositoryNodeTypeManagementOrderableChildNodesSupported,
|
704
|
-
"rdf
|
705
|
-
type: "owl
|
324
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
325
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
706
326
|
property :repositoryNodeTypeManagementOverridesSupported,
|
707
|
-
"rdf
|
708
|
-
type: "owl
|
327
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
328
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
709
329
|
property :repositoryNodeTypeManagementPrimaryItemNameSupported,
|
710
|
-
"rdf
|
711
|
-
type: "owl
|
330
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
331
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
712
332
|
property :repositoryNodeTypeManagementPropertyTypes,
|
713
|
-
"rdf
|
714
|
-
type: "owl
|
333
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
334
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
715
335
|
property :repositoryNodeTypeManagementResidualDefinitionsSupported,
|
716
|
-
"rdf
|
717
|
-
type: "owl
|
336
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
337
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
718
338
|
property :repositoryNodeTypeManagementSameNameSiblingsSupported,
|
719
|
-
"rdf
|
720
|
-
type: "owl
|
339
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
340
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
721
341
|
property :repositoryNodeTypeManagementUpdateInUseSupported,
|
722
|
-
"rdf
|
723
|
-
type: "owl
|
342
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
343
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
724
344
|
property :repositoryNodeTypeManagementValueConstraintsSupported,
|
725
|
-
"rdf
|
726
|
-
type: "owl
|
345
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
346
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
727
347
|
property :repositoryOptionAccessControlSupported,
|
728
|
-
"rdf
|
729
|
-
type: "owl
|
348
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
349
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
730
350
|
property :repositoryOptionActivitiesSupported,
|
731
|
-
"rdf
|
732
|
-
type: "owl
|
351
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
352
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
733
353
|
property :repositoryOptionBaselinesSupported,
|
734
|
-
"rdf
|
735
|
-
type: "owl
|
354
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
355
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
736
356
|
property :repositoryOptionJournaledObservationSupported,
|
737
|
-
"rdf
|
738
|
-
type: "owl
|
357
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
358
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
739
359
|
property :repositoryOptionLifecycleSupported,
|
740
|
-
"rdf
|
741
|
-
type: "owl
|
360
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
361
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
742
362
|
property :repositoryOptionLockingSupported,
|
743
|
-
"rdf
|
744
|
-
type: "owl
|
363
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
364
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
745
365
|
property :repositoryOptionNodeAndPropertyWithSameNameSupported,
|
746
|
-
"rdf
|
747
|
-
type: "owl
|
366
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
367
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
748
368
|
property :repositoryOptionNodeTypeManagementSupported,
|
749
|
-
"rdf
|
750
|
-
type: "owl
|
369
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
370
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
751
371
|
property :repositoryOptionObservationSupported,
|
752
|
-
"rdf
|
753
|
-
type: "owl
|
372
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
373
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
754
374
|
property :repositoryOptionQuerySqlSupported,
|
755
|
-
"rdf
|
756
|
-
type: "owl
|
375
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
376
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
757
377
|
property :repositoryOptionRetentionSupported,
|
758
|
-
"rdf
|
759
|
-
type: "owl
|
378
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
379
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
760
380
|
property :repositoryOptionShareableNodesSupported,
|
761
|
-
"rdf
|
762
|
-
type: "owl
|
381
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
382
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
763
383
|
property :repositoryOptionSimpleVersioningSupported,
|
764
|
-
"rdf
|
765
|
-
type: "owl
|
384
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
385
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
766
386
|
property :repositoryOptionTransactionsSupported,
|
767
|
-
"rdf
|
768
|
-
type: "owl
|
387
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
388
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
769
389
|
property :repositoryOptionUnfiledContentSupported,
|
770
|
-
"rdf
|
771
|
-
type: "owl
|
390
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
391
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
772
392
|
property :repositoryOptionUpdateMixinNodeTypesSupported,
|
773
|
-
"rdf
|
774
|
-
type: "owl
|
393
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
394
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
775
395
|
property :repositoryOptionUpdatePrimaryNodeTypeSupported,
|
776
|
-
"rdf
|
777
|
-
type: "owl
|
396
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
397
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
778
398
|
property :repositoryOptionVersioningSupported,
|
779
|
-
"rdf
|
780
|
-
type: "owl
|
399
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
400
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
781
401
|
property :repositoryOptionWorkspaceManagementSupported,
|
782
|
-
"rdf
|
783
|
-
type: "owl
|
402
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
403
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
784
404
|
property :repositoryOptionXmlExportSupported,
|
785
|
-
"rdf
|
786
|
-
type: "owl
|
405
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
406
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
787
407
|
property :repositoryOptionXmlImportSupported,
|
788
|
-
"rdf
|
789
|
-
type: "owl
|
408
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
409
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
790
410
|
property :repositoryQueryFullTextSearchSupported,
|
791
|
-
"rdf
|
792
|
-
type: "owl
|
411
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
412
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
793
413
|
property :repositoryQueryJoins,
|
794
|
-
"rdf
|
795
|
-
type: "owl
|
414
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
415
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
796
416
|
property :repositoryQueryStoredQueriesSupported,
|
797
|
-
"rdf
|
798
|
-
type: "owl
|
417
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
418
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
799
419
|
property :repositoryQueryXpathDocOrder,
|
800
|
-
"rdf
|
801
|
-
type: "owl
|
420
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
421
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
802
422
|
property :repositoryQueryXpathPosIndex,
|
803
|
-
"rdf
|
804
|
-
type: "owl
|
423
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
424
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
805
425
|
property :repositoryWriteSupported,
|
806
|
-
"rdf
|
807
|
-
type: "owl
|
426
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#subPropertyOf": "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
427
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
808
428
|
property :sparql,
|
809
429
|
label: "has sparql service".freeze,
|
810
|
-
type: "owl
|
430
|
+
type: "http://www.w3.org/2002/07/owl#ObjectProperty".freeze
|
811
431
|
property :uuid,
|
812
|
-
subPropertyOf: "owl
|
813
|
-
type: "owl
|
432
|
+
subPropertyOf: "http://www.w3.org/2002/07/owl#topDataProperty".freeze,
|
433
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
814
434
|
property :writable,
|
815
435
|
label: "writable".freeze,
|
816
|
-
range: "
|
817
|
-
type: "owl
|
436
|
+
range: "http://www.w3.org/2001/XMLSchema#boolean".freeze,
|
437
|
+
type: "http://www.w3.org/2002/07/owl#DatatypeProperty".freeze
|
818
438
|
end
|
819
439
|
end
|