rdf-vocab 3.1.2 → 3.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +69 -45
  4. data/VERSION +1 -1
  5. data/lib/rdf/vocab.rb +60 -40
  6. data/lib/rdf/vocab/acl.rb +104 -61
  7. data/lib/rdf/vocab/as.rb +556 -91
  8. data/lib/rdf/vocab/bf2.rb +1791 -475
  9. data/lib/rdf/vocab/bibframe.rb +1 -2
  10. data/lib/rdf/vocab/bibo.rb +616 -124
  11. data/lib/rdf/vocab/cc.rb +125 -48
  12. data/lib/rdf/vocab/cert.rb +68 -1
  13. data/lib/rdf/vocab/cnt.rb +79 -1
  14. data/lib/rdf/vocab/crm.rb +1543 -776
  15. data/lib/rdf/vocab/datacite.rb +1 -1
  16. data/lib/rdf/vocab/dbo.rb +10463 -1
  17. data/lib/rdf/vocab/dc.rb +485 -99
  18. data/lib/rdf/vocab/dc11.rb +93 -31
  19. data/lib/rdf/vocab/dcat.rb +236 -88
  20. data/lib/rdf/vocab/dcmitype.rb +63 -13
  21. data/lib/rdf/vocab/disco.rb +286 -59
  22. data/lib/rdf/vocab/doap.rb +175 -1
  23. data/lib/rdf/vocab/dwc.rb +941 -189
  24. data/lib/rdf/vocab/earl.rb +324 -0
  25. data/lib/rdf/vocab/ebucore.rb +7255 -2184
  26. data/lib/rdf/vocab/edm.rb +202 -76
  27. data/lib/rdf/vocab/exif.rb +650 -1
  28. data/lib/rdf/vocab/extensions.rb +257 -203
  29. data/lib/rdf/vocab/fcrepo4.rb +398 -22
  30. data/lib/rdf/vocab/foaf.rb +380 -76
  31. data/lib/rdf/vocab/geo.rb +47 -110
  32. data/lib/rdf/vocab/geojson.rb +82 -17
  33. data/lib/rdf/vocab/geonames.rb +1508 -1351
  34. data/lib/rdf/vocab/gr.rb +861 -565
  35. data/lib/rdf/vocab/gs1.rb +1597 -1
  36. data/lib/rdf/vocab/ht.rb +204 -41
  37. data/lib/rdf/vocab/hydra.rb +335 -60
  38. data/lib/rdf/vocab/iana.rb +301 -114
  39. data/lib/rdf/vocab/ical.rb +534 -121
  40. data/lib/rdf/vocab/identifiers.rb +459 -499
  41. data/lib/rdf/vocab/iiif.rb +161 -26
  42. data/lib/rdf/vocab/jsonld.rb +179 -53
  43. data/lib/rdf/vocab/ldp.rb +130 -1
  44. data/lib/rdf/vocab/lrmi.rb +85 -17
  45. data/lib/rdf/vocab/ma.rb +460 -80
  46. data/lib/rdf/vocab/mads.rb +610 -22
  47. data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
  48. data/lib/rdf/vocab/mo.rb +1115 -540
  49. data/lib/rdf/vocab/mods.rb +635 -124
  50. data/lib/rdf/vocab/nfo.rb +1 -1
  51. data/lib/rdf/vocab/oa.rb +343 -73
  52. data/lib/rdf/vocab/og.rb +100 -1
  53. data/lib/rdf/vocab/ogc.rb +42 -9
  54. data/lib/rdf/vocab/ore.rb +69 -14
  55. data/lib/rdf/vocab/org.rb +235 -47
  56. data/lib/rdf/vocab/pcdm.rb +58 -34
  57. data/lib/rdf/vocab/pplan.rb +21 -136
  58. data/lib/rdf/vocab/premis.rb +1171 -779
  59. data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
  60. data/lib/rdf/vocab/prov.rb +700 -107
  61. data/lib/rdf/vocab/ptr.rb +172 -37
  62. data/lib/rdf/vocab/rightsstatements.rb +17 -13
  63. data/lib/rdf/vocab/rsa.rb +30 -1
  64. data/lib/rdf/vocab/rss.rb +52 -11
  65. data/lib/rdf/vocab/schema.rb +14970 -3993
  66. data/lib/rdf/vocab/schemas.rb +27066 -0
  67. data/lib/rdf/vocab/sd.rb +372 -0
  68. data/lib/rdf/vocab/sh.rb +919 -184
  69. data/lib/rdf/vocab/sioc.rb +498 -98
  70. data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
  71. data/lib/rdf/vocab/sioctypes.rb +434 -0
  72. data/lib/rdf/vocab/skos.rb +160 -44
  73. data/lib/rdf/vocab/skosxl.rb +40 -11
  74. data/lib/rdf/vocab/v.rb +323 -37
  75. data/lib/rdf/vocab/vcard.rb +625 -119
  76. data/lib/rdf/vocab/vmd.rb +323 -37
  77. data/lib/rdf/vocab/void.rb +147 -27
  78. data/lib/rdf/vocab/vs.rb +23 -5
  79. data/lib/rdf/vocab/wdrs.rb +112 -23
  80. data/lib/rdf/vocab/wot.rb +96 -19
  81. data/lib/rdf/vocab/xhtml.rb +2 -1
  82. data/lib/rdf/vocab/xhv.rb +422 -201
  83. data/lib/rdf/vocab/xkos.rb +156 -7
  84. data/spec/extensions_spec.rb +68 -0
  85. data/spec/vocab_spec.rb +10 -0
  86. metadata +20 -11
  87. data/lib/rdf/vocab/sioct.rb +0 -277
@@ -5,13 +5,389 @@ 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
- class Fcrepo4 < RDF::StrictVocabulary("http://fedora.info/definitions/v4/repository#")
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#",
14
- 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,
390
+ 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,
15
391
  label: "Fedora Commons Repository Ontology".freeze,
16
392
  "owl:priorVersion": "http://fedora.info/definitions/v4/2015/05/19/repository".freeze,
17
393
  "owl:versionInfo": "v4/2015/07/24".freeze,
@@ -19,77 +395,77 @@ module RDF::Vocab
19
395
 
20
396
  # Class definitions
21
397
  term :AnnotatedResource,
22
- comment: %(A Resource that maintains properties in its own right.).freeze,
398
+ comment: "A Resource that maintains properties in its own right.".freeze,
23
399
  label: "annotated resource".freeze,
24
400
  subClassOf: "fcrepo4:Resource".freeze,
25
401
  type: "owl:Class".freeze
26
402
  term :Binary,
27
- comment: %(A bitstream, with no further data properties.).freeze,
403
+ comment: "A bitstream, with no further data properties.".freeze,
28
404
  label: "binary".freeze,
29
405
  "owl:disjointWith": ["fcrepo4:Container".freeze, "fcrepo4:NonRdfSourceDescription".freeze],
30
406
  subClassOf: "fcrepo4:Resource".freeze,
31
407
  type: "owl:Class".freeze
32
408
  term :Configuration,
33
- comment: %(A container for transform configuration.).freeze,
409
+ comment: "A container for transform configuration.".freeze,
34
410
  label: "Fedora transform configuration".freeze,
35
411
  subClassOf: "fcrepo4:Thing".freeze,
36
412
  type: "owl:Class".freeze
37
413
  term :Container,
38
- comment: %(A Fedora Container: the fundamental quantum of durable content in a Fedora repository.).freeze,
414
+ comment: "A Fedora Container: the fundamental quantum of durable content in a Fedora repository.".freeze,
39
415
  label: "Fedora Container".freeze,
40
416
  subClassOf: "fcrepo4:AnnotatedResource".freeze,
41
417
  type: "owl:Class".freeze
42
418
  term :EmbedResources,
43
- comment: %(The set of triples representing child resources of a given resource.).freeze,
419
+ comment: "The set of triples representing child resources of a given resource.".freeze,
44
420
  label: "embed resources".freeze,
45
421
  subClassOf: "fcrepo4:Thing".freeze,
46
422
  type: "owl:Class".freeze
47
423
  term :InboundReferences,
48
- comment: %(The set of triples representing other repository resources which link to a given resource.).freeze,
424
+ comment: "The set of triples representing other repository resources which link to a given resource.".freeze,
49
425
  label: "inbound references".freeze,
50
426
  subClassOf: "fcrepo4:Thing".freeze,
51
427
  type: "owl:Class".freeze
52
428
  term :NodeTypeConfiguration,
53
- comment: %(A container for transform node type configuration.).freeze,
429
+ comment: "A container for transform node type configuration.".freeze,
54
430
  label: "Fedora transform node type configuration".freeze,
55
431
  subClassOf: "fcrepo4:Thing".freeze,
56
432
  type: "owl:Class".freeze
57
433
  term :NonRdfSourceDescription,
58
- comment: %(A container for a bitstream and associated properties.).freeze,
434
+ comment: "A container for a bitstream and associated properties.".freeze,
59
435
  label: "Fedora NonRdfSourceDescription".freeze,
60
436
  "owl:disjointWith": "fcrepo4:Container".freeze,
61
437
  subClassOf: "fcrepo4:AnnotatedResource".freeze,
62
438
  type: "owl:Class".freeze
63
439
  term :Pairtree,
64
- comment: %(An entity that is a an intermediary node created in a PairTree hierarchy.).freeze,
440
+ comment: "An entity that is a an intermediary node created in a PairTree hierarchy.".freeze,
65
441
  label: "pair tree".freeze,
66
442
  subClassOf: "fcrepo4:Thing".freeze,
67
443
  type: "owl:Class".freeze
68
444
  term :Relations,
69
- comment: %(An entity that may be related to other repository entities.).freeze,
445
+ comment: "An entity that may be related to other repository entities.".freeze,
70
446
  subClassOf: "fcrepo4:Thing".freeze,
71
447
  type: "owl:Class".freeze
72
448
  term :Resource,
73
- 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,
449
+ 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,
74
450
  label: "Fedora resource".freeze,
75
451
  subClassOf: "fcrepo4:Thing".freeze,
76
452
  type: "owl:Class".freeze
77
453
  term :ServerManaged,
78
- comment: %(The system-generated triples for a given resource \(as opposed to explicity-declared properties\).).freeze,
454
+ comment: "The system-generated triples for a given resource (as opposed to explicity-declared properties).".freeze,
79
455
  label: "server managed".freeze,
80
456
  subClassOf: "fcrepo4:Thing".freeze,
81
457
  type: "owl:Class".freeze
82
458
  term :Skolem,
83
- comment: %(An entity that is a representation of an RDF Skolem node.).freeze,
459
+ comment: "An entity that is a representation of an RDF Skolem node.".freeze,
84
460
  label: "skolem".freeze,
85
461
  subClassOf: "fcrepo4:Thing".freeze,
86
462
  type: "owl:Class".freeze
87
463
  term :Thing,
88
- comment: %(Something that is contemplated in the Fedora repository model.).freeze,
464
+ comment: "Something that is contemplated in the Fedora repository model.".freeze,
89
465
  label: "Fedora thing".freeze,
90
466
  type: "owl:Class".freeze
91
467
  term :Tombstone,
92
- comment: %(An entity that is a marker for a deleted node.).freeze,
468
+ comment: "An entity that is a marker for a deleted node.".freeze,
93
469
  label: "tombstone".freeze,
94
470
  type: "owl:Class".freeze
95
471
  term :Version,
@@ -170,13 +546,13 @@ module RDF::Vocab
170
546
  ),
171
547
  type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze]
172
548
  property :hasContent,
173
- comment: %(Indicates a binary in which content is stored for this datastream.).freeze,
549
+ comment: "Indicates a binary in which content is stored for this datastream.".freeze,
174
550
  domain: "fcrepo4:NonRdfSourceDescription".freeze,
175
551
  label: "has content".freeze,
176
552
  range: "fcrepo4:Binary".freeze,
177
553
  type: "owl:ObjectProperty".freeze
178
554
  property :hasDefaultWorkspace,
179
- comment: %(Indicates the default workspace of the repository.).freeze,
555
+ comment: "Indicates the default workspace of the repository.".freeze,
180
556
  label: "has default workspace".freeze,
181
557
  type: "owl:ObjectProperty".freeze
182
558
  property :hasFixityService,
@@ -187,7 +563,7 @@ module RDF::Vocab
187
563
  subPropertyOf: "owl:topDataProperty".freeze,
188
564
  type: "owl:DatatypeProperty".freeze
189
565
  property :hasMember,
190
- comment: %(Links to a newly-minted identifier which can be used to create a repository resource.).freeze,
566
+ comment: "Links to a newly-minted identifier which can be used to create a repository resource.".freeze,
191
567
  label: "has member".freeze,
192
568
  range: "xsd:anyURI".freeze,
193
569
  type: "owl:ObjectProperty".freeze
@@ -226,7 +602,7 @@ module RDF::Vocab
226
602
  label: "has versions".freeze,
227
603
  type: "owl:ObjectProperty".freeze
228
604
  property :hasWorkspace,
229
- comment: %(Links to a workspace of the repository.).freeze,
605
+ comment: "Links to a workspace of the repository.".freeze,
230
606
  label: "has workspace".freeze,
231
607
  type: "owl:ObjectProperty".freeze
232
608
  property :hasWorkspaces,
@@ -237,7 +613,7 @@ module RDF::Vocab
237
613
  subPropertyOf: "owl:topDataProperty".freeze,
238
614
  type: "owl:DatatypeProperty".freeze
239
615
  property :isContentOf,
240
- comment: %(Indicates a datastream for which this resource contains the content. ).freeze,
616
+ comment: "Indicates a datastream for which this resource contains the content. ".freeze,
241
617
  domain: "fcrepo4:Binary".freeze,
242
618
  label: "is content of".freeze,
243
619
  range: "fcrepo4:NonRdfSourceDescription".freeze,