rdf-vocab 3.1.7 → 3.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/lib/rdf/vocab.rb +5 -1
  4. data/lib/rdf/vocab/acl.rb +20 -60
  5. data/lib/rdf/vocab/as.rb +90 -90
  6. data/lib/rdf/vocab/bf2.rb +488 -488
  7. data/lib/rdf/vocab/bibo.rb +120 -123
  8. data/lib/rdf/vocab/cc.rb +18 -47
  9. data/lib/rdf/vocab/crm.rb +240 -775
  10. data/lib/rdf/vocab/dc.rb +98 -98
  11. data/lib/rdf/vocab/dc11.rb +30 -30
  12. data/lib/rdf/vocab/dcat.rb +85 -85
  13. data/lib/rdf/vocab/dcmitype.rb +12 -12
  14. data/lib/rdf/vocab/disco.rb +58 -58
  15. data/lib/rdf/vocab/dwc.rb +188 -188
  16. data/lib/rdf/vocab/earl.rb +27 -27
  17. data/lib/rdf/vocab/ebucore.rb +1232 -1522
  18. data/lib/rdf/vocab/edm.rb +52 -75
  19. data/lib/rdf/vocab/fcrepo4.rb +21 -21
  20. data/lib/rdf/vocab/foaf.rb +75 -75
  21. data/lib/rdf/vocab/geo.rb +8 -109
  22. data/lib/rdf/vocab/geojson.rb +16 -16
  23. data/lib/rdf/vocab/geonames.rb +1344 -1352
  24. data/lib/rdf/vocab/gr.rb +177 -564
  25. data/lib/rdf/vocab/ht.rb +40 -40
  26. data/lib/rdf/vocab/hydra.rb +99 -58
  27. data/lib/rdf/vocab/iana.rb +71 -113
  28. data/lib/rdf/vocab/ical.rb +123 -171
  29. data/lib/rdf/vocab/identifiers.rb +161 -662
  30. data/lib/rdf/vocab/iiif.rb +25 -25
  31. data/lib/rdf/vocab/jsonld.rb +33 -51
  32. data/lib/rdf/vocab/lrmi.rb +16 -16
  33. data/lib/rdf/vocab/ma.rb +79 -79
  34. data/lib/rdf/vocab/marcrelators.rb +4 -3
  35. data/lib/rdf/vocab/mo.rb +196 -539
  36. data/lib/rdf/vocab/mods.rb +119 -123
  37. data/lib/rdf/vocab/oa.rb +68 -72
  38. data/lib/rdf/vocab/ogc.rb +8 -8
  39. data/lib/rdf/vocab/ore.rb +13 -13
  40. data/lib/rdf/vocab/org.rb +46 -46
  41. data/lib/rdf/vocab/pcdm.rb +11 -33
  42. data/lib/rdf/vocab/pplan.rb +18 -196
  43. data/lib/rdf/vocab/premis.rb +321 -416
  44. data/lib/rdf/vocab/premiseventtype.rb +1 -1
  45. data/lib/rdf/vocab/prov.rb +90 -115
  46. data/lib/rdf/vocab/ptr.rb +34 -36
  47. data/lib/rdf/vocab/rightsstatements.rb +12 -12
  48. data/lib/rdf/vocab/rss.rb +10 -10
  49. data/lib/rdf/vocab/schema.rb +3131 -3445
  50. data/lib/rdf/vocab/schemas.rb +27066 -0
  51. data/lib/rdf/vocab/sd.rb +38 -38
  52. data/lib/rdf/vocab/sh.rb +183 -183
  53. data/lib/rdf/vocab/sioc.rb +97 -97
  54. data/lib/rdf/vocab/siocservices.rb +8 -8
  55. data/lib/rdf/vocab/sioctypes.rb +38 -38
  56. data/lib/rdf/vocab/skos.rb +45 -47
  57. data/lib/rdf/vocab/skosxl.rb +10 -10
  58. data/lib/rdf/vocab/v.rb +32 -36
  59. data/lib/rdf/vocab/vcard.rb +117 -118
  60. data/lib/rdf/vocab/vmd.rb +32 -36
  61. data/lib/rdf/vocab/void.rb +26 -26
  62. data/lib/rdf/vocab/vs.rb +4 -4
  63. data/lib/rdf/vocab/wdrs.rb +22 -22
  64. data/lib/rdf/vocab/wot.rb +18 -18
  65. data/lib/rdf/vocab/xhv.rb +84 -200
  66. data/lib/rdf/vocab/xkos.rb +10 -10
  67. metadata +6 -5
@@ -56,53 +56,53 @@ module RDF::Vocab
56
56
 
57
57
  # Class definitions
58
58
  term :Service,
59
- comment: %(A Service is web service associated with a Site or part of it.).freeze,
59
+ comment: "A Service is web service associated with a Site or part of it.".freeze,
60
60
  isDefinedBy: "siocservices:".freeze,
61
61
  label: "Service".freeze,
62
62
  type: ["owl:Class".freeze, "rdfs:Class".freeze]
63
63
 
64
64
  # Property definitions
65
65
  property :has_service,
66
- comment: %(A Service associated with this SIOC object.).freeze,
66
+ comment: "A Service associated with this SIOC object.".freeze,
67
67
  inverseOf: "siocservices:service_of".freeze,
68
68
  isDefinedBy: "siocservices:".freeze,
69
69
  label: "has service".freeze,
70
70
  range: "siocservices:Service".freeze,
71
71
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
72
72
  property :max_results,
73
- comment: %(Maximum number of results results returned by a web service.).freeze,
73
+ comment: "Maximum number of results results returned by a web service.".freeze,
74
74
  domain: "siocservices:Service".freeze,
75
75
  isDefinedBy: "siocservices:".freeze,
76
76
  label: "max results".freeze,
77
77
  range: "xsd:integer".freeze,
78
78
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
79
79
  property :results_format,
80
- comment: %(Format of results returned by a web service.).freeze,
80
+ comment: "Format of results returned by a web service.".freeze,
81
81
  domain: "siocservices:Service".freeze,
82
82
  isDefinedBy: "siocservices:".freeze,
83
83
  label: "results format".freeze,
84
84
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
85
85
  property :service_definition,
86
- comment: %(Links to a web service definition of this sioc:Service.).freeze,
86
+ comment: "Links to a web service definition of this sioc:Service.".freeze,
87
87
  domain: "siocservices:Service".freeze,
88
88
  isDefinedBy: "siocservices:".freeze,
89
89
  label: "service definition".freeze,
90
90
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
91
91
  property :service_endpoint,
92
- comment: %(URL of a web service endpoint.).freeze,
92
+ comment: "URL of a web service endpoint.".freeze,
93
93
  domain: "siocservices:Service".freeze,
94
94
  isDefinedBy: "siocservices:".freeze,
95
95
  label: "service endpoint".freeze,
96
96
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
97
97
  property :service_of,
98
- comment: %(A SIOC object this Service is associated with.).freeze,
98
+ comment: "A SIOC object this Service is associated with.".freeze,
99
99
  domain: "siocservices:Service".freeze,
100
100
  inverseOf: "siocservices:has_service".freeze,
101
101
  isDefinedBy: "siocservices:".freeze,
102
102
  label: "service of".freeze,
103
103
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
104
104
  property :service_protocol,
105
- comment: %(A protocol used by a web service. Possible protocol values include SOAP, REST, SPARQL-QUERY, GData and OpenSearch. These will be added to this module later.).freeze,
105
+ comment: "A protocol used by a web service. Possible protocol values include SOAP, REST, SPARQL-QUERY, GData and OpenSearch. These will be added to this module later.".freeze,
106
106
  domain: "siocservices:Service".freeze,
107
107
  isDefinedBy: "siocservices:".freeze,
108
108
  label: "service protocol".freeze,
@@ -176,256 +176,256 @@ module RDF::Vocab
176
176
 
177
177
  # Class definitions
178
178
  term :AddressBook,
179
- comment: %(Describes a collection of personal or organisational addresses.).freeze,
179
+ comment: "Describes a collection of personal or organisational addresses.".freeze,
180
180
  isDefinedBy: "sioctypes:".freeze,
181
181
  label: "Address Book".freeze,
182
182
  "rdfs:seeAlso": "foaf:Agent".freeze,
183
183
  subClassOf: "sioc:Container".freeze,
184
184
  type: "owl:Class".freeze
185
185
  term :AnnotationSet,
186
- comment: %(Describes a set of annotations, for example, those created by a particular user or related to a particular topic.).freeze,
186
+ comment: "Describes a set of annotations, for example, those created by a particular user or related to a particular topic.".freeze,
187
187
  isDefinedBy: "sioctypes:".freeze,
188
188
  label: "Annotation Set".freeze,
189
189
  "rdfs:seeAlso": "http://www.w3.org/2000/10/annotation-ns#Annotation".freeze,
190
190
  subClassOf: "sioc:Container".freeze,
191
191
  type: "owl:Class".freeze
192
192
  term :Answer,
193
- comment: %(A Post that provides an answer in reply to a Question.).freeze,
193
+ comment: "A Post that provides an answer in reply to a Question.".freeze,
194
194
  isDefinedBy: "sioctypes:".freeze,
195
195
  label: "Answer".freeze,
196
196
  subClassOf: "sioc:Post".freeze,
197
197
  type: "owl:Class".freeze
198
198
  term :ArgumentativeDiscussion,
199
- comment: %(Describes a discussion area where logical arguments can take place.).freeze,
199
+ comment: "Describes a discussion area where logical arguments can take place.".freeze,
200
200
  isDefinedBy: "sioctypes:".freeze,
201
201
  label: "Argumentative Discussion".freeze,
202
202
  "rdfs:seeAlso": "http://purl.org/ibis#Idea".freeze,
203
203
  subClassOf: "sioc:Forum".freeze,
204
204
  type: "owl:Class".freeze
205
205
  term :AudioChannel,
206
- comment: %(Describes a channel for distributing audio or sound files, for example, a podcast.).freeze,
206
+ comment: "Describes a channel for distributing audio or sound files, for example, a podcast.".freeze,
207
207
  isDefinedBy: "sioctypes:".freeze,
208
208
  label: "Audio Channel".freeze,
209
209
  "rdfs:seeAlso": "dcmitype:Sound".freeze,
210
210
  subClassOf: "sioc:Container".freeze,
211
211
  type: "owl:Class".freeze
212
212
  term :BestAnswer,
213
- comment: %(A Post that is the best answer to a Question, as chosen by the UserAccount who asked the Question or as voted by a Community of UserAccounts.).freeze,
213
+ comment: "A Post that is the best answer to a Question, as chosen by the UserAccount who asked the Question or as voted by a Community of UserAccounts.".freeze,
214
214
  isDefinedBy: "sioctypes:".freeze,
215
215
  label: "Best Answer".freeze,
216
216
  subClassOf: "sioc:Post".freeze,
217
217
  type: "owl:Class".freeze
218
218
  term :BlogPost,
219
- comment: %(Describes a post that is specifically made on a weblog.).freeze,
219
+ comment: "Describes a post that is specifically made on a weblog.".freeze,
220
220
  isDefinedBy: "sioctypes:".freeze,
221
221
  label: "Blog Post".freeze,
222
222
  "rdfs:seeAlso": "sioctypes:Weblog".freeze,
223
223
  subClassOf: "sioc:Post".freeze,
224
224
  type: "owl:Class".freeze
225
225
  term :BoardPost,
226
- comment: %(Describes a post that is specifically made on a message board.).freeze,
226
+ comment: "Describes a post that is specifically made on a message board.".freeze,
227
227
  isDefinedBy: "sioctypes:".freeze,
228
228
  label: "Board Post".freeze,
229
229
  "rdfs:seeAlso": "sioctypes:MessageBoard".freeze,
230
230
  subClassOf: "sioc:Post".freeze,
231
231
  type: "owl:Class".freeze
232
232
  term :BookmarkFolder,
233
- comment: %(Describes a shared collection of bookmarks.).freeze,
233
+ comment: "Describes a shared collection of bookmarks.".freeze,
234
234
  isDefinedBy: "sioctypes:".freeze,
235
235
  label: "Bookmark Folder".freeze,
236
236
  "rdfs:seeAlso": "http://www.w3.org/2002/01/bookmark#Bookmark".freeze,
237
237
  subClassOf: "sioc:Container".freeze,
238
238
  type: "owl:Class".freeze
239
239
  term :Briefcase,
240
- comment: %(Describes a briefcase or file service.).freeze,
240
+ comment: "Describes a briefcase or file service.".freeze,
241
241
  isDefinedBy: "sioctypes:".freeze,
242
242
  label: "Briefcase".freeze,
243
243
  "rdfs:seeAlso": "foaf:Document".freeze,
244
244
  subClassOf: "sioc:Container".freeze,
245
245
  type: "owl:Class".freeze
246
246
  term :Category,
247
- comment: %(Category is used on the object of sioc:topic to indicate that this resource is a category on a site.).freeze,
247
+ comment: "Category is used on the object of sioc:topic to indicate that this resource is a category on a site.".freeze,
248
248
  isDefinedBy: "sioctypes:".freeze,
249
249
  label: "Category".freeze,
250
250
  subClassOf: "http://www.w3.org/2008/05/skos#Concept".freeze,
251
251
  type: "owl:Class".freeze
252
252
  term :ChatChannel,
253
- comment: %(Describes a channel for chat or instant messages, for example, via IRC or IM.).freeze,
253
+ comment: "Describes a channel for chat or instant messages, for example, via IRC or IM.".freeze,
254
254
  isDefinedBy: "sioctypes:".freeze,
255
255
  label: "Chat Channel".freeze,
256
256
  "rdfs:seeAlso": "sioctypes:InstantMessage".freeze,
257
257
  subClassOf: "sioc:Forum".freeze,
258
258
  type: "owl:Class".freeze
259
259
  term :Comment,
260
- comment: %(Comment is a subtype of sioc:Post and allows one to explicitly indicate that this SIOC post is a comment. Note that comments have a narrower scope than sioc:Post and may not apply to all types of community site.).freeze,
260
+ comment: "Comment is a subtype of sioc:Post and allows one to explicitly indicate that this SIOC post is a comment. Note that comments have a narrower scope than sioc:Post and may not apply to all types of community site.".freeze,
261
261
  isDefinedBy: "sioctypes:".freeze,
262
262
  label: "Comment".freeze,
263
263
  "rdfs:seeAlso": "sioctypes:Forum".freeze,
264
264
  subClassOf: "sioc:Post".freeze,
265
265
  type: "owl:Class".freeze
266
266
  term :EventCalendar,
267
- comment: %(Describes a calendar of events.).freeze,
267
+ comment: "Describes a calendar of events.".freeze,
268
268
  isDefinedBy: "sioctypes:".freeze,
269
269
  label: "Event Calendar".freeze,
270
270
  "rdfs:seeAlso": "ical:VEVENT".freeze,
271
271
  subClassOf: "sioc:Container".freeze,
272
272
  type: "owl:Class".freeze
273
273
  term :FavouriteThings,
274
- comment: %(Describes a list or a collection of one's favourite things.).freeze,
274
+ comment: "Describes a list or a collection of one's favourite things.".freeze,
275
275
  isDefinedBy: "sioctypes:".freeze,
276
276
  label: "Favourite Things".freeze,
277
277
  subClassOf: "sioc:Container".freeze,
278
278
  type: "owl:Class".freeze
279
279
  term :ImageGallery,
280
- comment: %(Describes an image gallery, for example, a photo album.).freeze,
280
+ comment: "Describes an image gallery, for example, a photo album.".freeze,
281
281
  isDefinedBy: "sioctypes:".freeze,
282
282
  label: "Image Gallery".freeze,
283
283
  "rdfs:seeAlso": "http://www.w3.org/2003/12/exif/ns/IFD".freeze,
284
284
  subClassOf: "sioc:Container".freeze,
285
285
  type: "owl:Class".freeze
286
286
  term :InstantMessage,
287
- comment: %(Describes an instant message, e.g. sent via Jabber.).freeze,
287
+ comment: "Describes an instant message, e.g. sent via Jabber.".freeze,
288
288
  isDefinedBy: "sioctypes:".freeze,
289
289
  label: "Instant Message".freeze,
290
290
  "rdfs:seeAlso": "sioctypes:ChatChannel".freeze,
291
291
  subClassOf: "sioc:Post".freeze,
292
292
  type: "owl:Class".freeze
293
293
  term :MailMessage,
294
- comment: %(Describes an electronic mail message, e.g. a post sent to a mailing list.).freeze,
294
+ comment: "Describes an electronic mail message, e.g. a post sent to a mailing list.".freeze,
295
295
  isDefinedBy: "sioctypes:".freeze,
296
296
  label: "Mail Message".freeze,
297
297
  "rdfs:seeAlso": "sioctypes:MailingList".freeze,
298
298
  subClassOf: "sioc:Post".freeze,
299
299
  type: "owl:Class".freeze
300
300
  term :MailingList,
301
- comment: %(Describes an electronic mailing list.).freeze,
301
+ comment: "Describes an electronic mailing list.".freeze,
302
302
  isDefinedBy: "sioctypes:".freeze,
303
303
  label: "Mailing List".freeze,
304
304
  "rdfs:seeAlso": "sioctypes:MailMessage".freeze,
305
305
  subClassOf: "sioc:Forum".freeze,
306
306
  type: "owl:Class".freeze
307
307
  term :MessageBoard,
308
- comment: %(Describes a message board, also known as an online bulletin board or discussion forum.).freeze,
308
+ comment: "Describes a message board, also known as an online bulletin board or discussion forum.".freeze,
309
309
  isDefinedBy: "sioctypes:".freeze,
310
310
  label: "Message Board".freeze,
311
311
  "rdfs:seeAlso": "sioctypes:BoardPost".freeze,
312
312
  subClassOf: "sioc:Forum".freeze,
313
313
  type: "owl:Class".freeze
314
314
  term :Microblog,
315
- comment: %(Describes a microblog, i.e. a blog consisting of short text messages.).freeze,
315
+ comment: "Describes a microblog, i.e. a blog consisting of short text messages.".freeze,
316
316
  isDefinedBy: "sioctypes:".freeze,
317
317
  label: "Microblog".freeze,
318
318
  "rdfs:seeAlso": "sioctypes:MicroblogPost".freeze,
319
319
  subClassOf: "sioc:Forum".freeze,
320
320
  type: "owl:Class".freeze
321
321
  term :MicroblogPost,
322
- comment: %(Describes a post that is specifically made on a microblog.).freeze,
322
+ comment: "Describes a post that is specifically made on a microblog.".freeze,
323
323
  isDefinedBy: "sioctypes:".freeze,
324
324
  label: "Microblog Post".freeze,
325
325
  "rdfs:seeAlso": "sioctypes:Microblog".freeze,
326
326
  subClassOf: "sioc:Post".freeze,
327
327
  type: "owl:Class".freeze
328
328
  term :OfferList,
329
- comment: %(Describes a list of the items someone has available to offer.).freeze,
329
+ comment: "Describes a list of the items someone has available to offer.".freeze,
330
330
  isDefinedBy: "sioctypes:".freeze,
331
331
  label: "Offer List".freeze,
332
332
  subClassOf: "sioc:Container".freeze,
333
333
  type: "owl:Class".freeze
334
334
  term :Playlist,
335
- comment: %(Describes a list of media items that have been played or can be played.).freeze,
335
+ comment: "Describes a list of media items that have been played or can be played.".freeze,
336
336
  isDefinedBy: "sioctypes:".freeze,
337
337
  label: "Playlist".freeze,
338
338
  subClassOf: "sioc:Container".freeze,
339
339
  type: "owl:Class".freeze
340
340
  term :Poll,
341
- comment: %(Describes a posted item that contains a poll or survey content.).freeze,
341
+ comment: "Describes a posted item that contains a poll or survey content.".freeze,
342
342
  isDefinedBy: "sioctypes:".freeze,
343
343
  label: "Poll".freeze,
344
344
  "rdfs:seeAlso": "sioctypes:SurveyCollection".freeze,
345
345
  subClassOf: "sioc:Item".freeze,
346
346
  type: "owl:Class".freeze
347
347
  term :ProjectDirectory,
348
- comment: %(Describes a project directory.).freeze,
348
+ comment: "Describes a project directory.".freeze,
349
349
  isDefinedBy: "sioctypes:".freeze,
350
350
  label: "Project Directory".freeze,
351
351
  "rdfs:seeAlso": "doap:Project".freeze,
352
352
  subClassOf: "sioc:Container".freeze,
353
353
  type: "owl:Class".freeze
354
354
  term :Question,
355
- comment: %(A Post that asks a Question.).freeze,
355
+ comment: "A Post that asks a Question.".freeze,
356
356
  isDefinedBy: "sioctypes:".freeze,
357
357
  label: "Question".freeze,
358
358
  subClassOf: "sioc:Post".freeze,
359
359
  type: "owl:Class".freeze
360
360
  term :ReadingList,
361
- comment: %(Describes a list of books or other materials that have been read or are suggested for reading.).freeze,
361
+ comment: "Describes a list of books or other materials that have been read or are suggested for reading.".freeze,
362
362
  isDefinedBy: "sioctypes:".freeze,
363
363
  label: "Reading List".freeze,
364
364
  subClassOf: "sioc:Container".freeze,
365
365
  type: "owl:Class".freeze
366
366
  term :ResumeBank,
367
- comment: %(Describes a collection of resumes.).freeze,
367
+ comment: "Describes a collection of resumes.".freeze,
368
368
  isDefinedBy: "sioctypes:".freeze,
369
369
  label: "Resume Bank".freeze,
370
370
  "rdfs:seeAlso": "http://captsolo.net/semweb/resume/cv.rdfs#Resume".freeze,
371
371
  subClassOf: "sioc:Container".freeze,
372
372
  type: "owl:Class".freeze
373
373
  term :ReviewArea,
374
- comment: %(Describes an area where reviews are posted.).freeze,
374
+ comment: "Describes an area where reviews are posted.".freeze,
375
375
  isDefinedBy: "sioctypes:".freeze,
376
376
  label: "Review Area".freeze,
377
377
  "rdfs:seeAlso": ["http://purl.org/stuff/rev#Review".freeze, "http://www.isi.edu/webscripter/communityreview/abstract-review-o#Review".freeze],
378
378
  subClassOf: "sioc:Container".freeze,
379
379
  type: "owl:Class".freeze
380
380
  term :SubscriptionList,
381
- comment: %(Describes a shared set of feed subscriptions.).freeze,
381
+ comment: "Describes a shared set of feed subscriptions.".freeze,
382
382
  isDefinedBy: "sioctypes:".freeze,
383
383
  label: "Subscription List".freeze,
384
384
  "rdfs:seeAlso": "http://atomowl.org/ontologies/atomrdf#Feed".freeze,
385
385
  subClassOf: "sioc:Container".freeze,
386
386
  type: "owl:Class".freeze
387
387
  term :SurveyCollection,
388
- comment: %(Describes an area where survey data can be collected, e.g. from polls.).freeze,
388
+ comment: "Describes an area where survey data can be collected, e.g. from polls.".freeze,
389
389
  isDefinedBy: "sioctypes:".freeze,
390
390
  label: "Survey Collection".freeze,
391
391
  "rdfs:seeAlso": "sioctypes:Poll".freeze,
392
392
  subClassOf: "sioc:Container".freeze,
393
393
  type: "owl:Class".freeze
394
394
  term :Tag,
395
- comment: %(Tag is used on the object of sioc:topic to indicate that this resource is a tag on a site.).freeze,
395
+ comment: "Tag is used on the object of sioc:topic to indicate that this resource is a tag on a site.".freeze,
396
396
  isDefinedBy: "sioctypes:".freeze,
397
397
  label: "Tag".freeze,
398
398
  type: "owl:Class".freeze
399
399
  term :VideoChannel,
400
- comment: %(Describes a channel for distributing videos \(moving image\) files, for example, a video podcast.).freeze,
400
+ comment: "Describes a channel for distributing videos (moving image) files, for example, a video podcast.".freeze,
401
401
  isDefinedBy: "sioctypes:".freeze,
402
402
  label: "Video Channel".freeze,
403
403
  "rdfs:seeAlso": "dcmitype:MovingImage".freeze,
404
404
  subClassOf: "sioc:Container".freeze,
405
405
  type: "owl:Class".freeze
406
406
  term :Weblog,
407
- comment: %(Describes a weblog \(blog\), i.e. an online journal.).freeze,
407
+ comment: "Describes a weblog (blog), i.e. an online journal.".freeze,
408
408
  isDefinedBy: "sioctypes:".freeze,
409
409
  label: "Weblog".freeze,
410
410
  "rdfs:seeAlso": "sioctypes:BlogPost".freeze,
411
411
  subClassOf: "sioc:Forum".freeze,
412
412
  type: "owl:Class".freeze
413
413
  term :Wiki,
414
- comment: %(Describes a wiki space.).freeze,
414
+ comment: "Describes a wiki space.".freeze,
415
415
  isDefinedBy: "sioctypes:".freeze,
416
416
  label: "Wiki".freeze,
417
417
  "rdfs:seeAlso": "sioctypes:WikiArticle".freeze,
418
418
  subClassOf: "sioc:Container".freeze,
419
419
  type: "owl:Class".freeze
420
420
  term :WikiArticle,
421
- comment: %(Describes a wiki article.).freeze,
421
+ comment: "Describes a wiki article.".freeze,
422
422
  isDefinedBy: "sioctypes:".freeze,
423
423
  label: "Wiki Article".freeze,
424
424
  "rdfs:seeAlso": "sioctypes:Wiki".freeze,
425
425
  subClassOf: "sioc:Item".freeze,
426
426
  type: "owl:Class".freeze
427
427
  term :WishList,
428
- comment: %(Describes a list of the items someone wishes to get.).freeze,
428
+ comment: "Describes a list of the items someone wishes to get.".freeze,
429
429
  isDefinedBy: "sioctypes:".freeze,
430
430
  label: "Wish List".freeze,
431
431
  subClassOf: "sioc:Container".freeze,
@@ -61,9 +61,9 @@ module RDF::Vocab
61
61
  # # @return [RDF::Vocabulary::Term]
62
62
  # attr_reader :hasTopConcept
63
63
  #
64
- # # The range of skos:hiddenLabel is the class of RDF plain literals.
65
- # #
66
64
  # # skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.
65
+ # #
66
+ # # The range of skos:hiddenLabel is the class of RDF plain literals.
67
67
  # # @return [RDF::Vocabulary::Term]
68
68
  # attr_reader :hiddenLabel
69
69
  #
@@ -100,11 +100,11 @@ module RDF::Vocab
100
100
  # # @return [RDF::Vocabulary::Term]
101
101
  # attr_reader :note
102
102
  #
103
+ # # The range of skos:prefLabel is the class of RDF plain literals.
104
+ # #
103
105
  # # A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.
104
106
  # #
105
107
  # # skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.
106
- # #
107
- # # The range of skos:prefLabel is the class of RDF plain literals.
108
108
  # # @return [RDF::Vocabulary::Term]
109
109
  # attr_reader :prefLabel
110
110
  #
@@ -138,19 +138,19 @@ module RDF::Vocab
138
138
 
139
139
  # Class definitions
140
140
  term :Collection,
141
- definition: %(A meaningful collection of concepts.).freeze,
141
+ definition: "A meaningful collection of concepts.".freeze,
142
142
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
143
143
  label: "Collection".freeze,
144
144
  "owl:disjointWith": ["skos:Concept".freeze, "skos:ConceptScheme".freeze],
145
145
  "skos:scopeNote": "Labelled collections can be used where you would like a set of concepts to be displayed under a 'node label' in the hierarchy.".freeze,
146
146
  type: "owl:Class".freeze
147
147
  term :Concept,
148
- definition: %(An idea or notion; a unit of thought.).freeze,
148
+ definition: "An idea or notion; a unit of thought.".freeze,
149
149
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
150
150
  label: "Concept".freeze,
151
151
  type: "owl:Class".freeze
152
152
  term :ConceptScheme,
153
- definition: %(A set of concepts, optionally including statements about semantic relationships between those concepts.).freeze,
153
+ definition: "A set of concepts, optionally including statements about semantic relationships between those concepts.".freeze,
154
154
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
155
155
  label: "Concept Scheme".freeze,
156
156
  "owl:disjointWith": "skos:Concept".freeze,
@@ -158,7 +158,7 @@ module RDF::Vocab
158
158
  "skos:scopeNote": "A concept scheme may be defined to include concepts from different sources.".freeze,
159
159
  type: "owl:Class".freeze
160
160
  term :OrderedCollection,
161
- definition: %(An ordered collection of concepts, where both the grouping and the ordering are meaningful.).freeze,
161
+ definition: "An ordered collection of concepts, where both the grouping and the ordering are meaningful.".freeze,
162
162
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
163
163
  label: "Ordered Collection".freeze,
164
164
  "skos:scopeNote": "Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a 'node label'.".freeze,
@@ -167,23 +167,23 @@ module RDF::Vocab
167
167
 
168
168
  # Property definitions
169
169
  property :altLabel,
170
- comment: [%(The range of skos:altLabel is the class of RDF plain literals.).freeze, %(skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.).freeze],
171
- definition: %(An alternative lexical label for a resource.).freeze,
170
+ comment: ["The range of skos:altLabel is the class of RDF plain literals.".freeze, "skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.".freeze],
171
+ definition: "An alternative lexical label for a resource.".freeze,
172
172
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
173
173
  label: "alternative label".freeze,
174
174
  "skos:example": "Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).".freeze,
175
175
  subPropertyOf: "rdfs:label".freeze,
176
176
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
177
177
  property :broadMatch,
178
- definition: %(skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.).freeze,
178
+ definition: "skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.".freeze,
179
179
  inverseOf: "skos:narrowMatch".freeze,
180
180
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
181
181
  label: "has broader match".freeze,
182
182
  subPropertyOf: ["skos:broader".freeze, "skos:mappingRelation".freeze],
183
183
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
184
184
  property :broader,
185
- comment: %(Broader concepts are typically rendered as parents in a concept hierarchy \(tree\).).freeze,
186
- definition: %(Relates a concept to a concept that is more general in meaning.).freeze,
185
+ comment: "Broader concepts are typically rendered as parents in a concept hierarchy (tree).".freeze,
186
+ definition: "Relates a concept to a concept that is more general in meaning.".freeze,
187
187
  inverseOf: "skos:narrower".freeze,
188
188
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
189
189
  label: "has broader".freeze,
@@ -191,7 +191,7 @@ module RDF::Vocab
191
191
  subPropertyOf: "skos:broaderTransitive".freeze,
192
192
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
193
193
  property :broaderTransitive,
194
- definition: %(skos:broaderTransitive is a transitive superproperty of skos:broader.).freeze,
194
+ definition: "skos:broaderTransitive is a transitive superproperty of skos:broader.".freeze,
195
195
  inverseOf: "skos:narrowerTransitive".freeze,
196
196
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
197
197
  label: "has broader transitive".freeze,
@@ -199,44 +199,44 @@ module RDF::Vocab
199
199
  subPropertyOf: "skos:semanticRelation".freeze,
200
200
  type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze, "rdf:Property".freeze]
201
201
  property :changeNote,
202
- definition: %(A note about a modification to a concept.).freeze,
202
+ definition: "A note about a modification to a concept.".freeze,
203
203
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
204
204
  label: "change note".freeze,
205
205
  subPropertyOf: "skos:note".freeze,
206
206
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
207
207
  property :closeMatch,
208
- definition: %(skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of "compound errors" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.).freeze,
208
+ definition: "skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \"compound errors\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.".freeze,
209
209
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
210
210
  label: "has close match".freeze,
211
211
  subPropertyOf: "skos:mappingRelation".freeze,
212
212
  type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze, "rdf:Property".freeze]
213
213
  property :definition,
214
- definition: %(A statement or formal explanation of the meaning of a concept.).freeze,
214
+ definition: "A statement or formal explanation of the meaning of a concept.".freeze,
215
215
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
216
216
  label: "definition".freeze,
217
217
  subPropertyOf: "skos:note".freeze,
218
218
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
219
219
  property :editorialNote,
220
- definition: %(A note for an editor, translator or maintainer of the vocabulary.).freeze,
220
+ definition: "A note for an editor, translator or maintainer of the vocabulary.".freeze,
221
221
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
222
222
  label: "editorial note".freeze,
223
223
  subPropertyOf: "skos:note".freeze,
224
224
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
225
225
  property :exactMatch,
226
- comment: %(skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.).freeze,
227
- definition: %(skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.).freeze,
226
+ comment: "skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.".freeze,
227
+ definition: "skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.".freeze,
228
228
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
229
229
  label: "has exact match".freeze,
230
230
  subPropertyOf: "skos:closeMatch".freeze,
231
231
  type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze, "owl:TransitiveProperty".freeze, "rdf:Property".freeze]
232
232
  property :example,
233
- definition: %(An example of the use of a concept.).freeze,
233
+ definition: "An example of the use of a concept.".freeze,
234
234
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
235
235
  label: "example".freeze,
236
236
  subPropertyOf: "skos:note".freeze,
237
237
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
238
238
  property :hasTopConcept,
239
- definition: %(Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.).freeze,
239
+ definition: "Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.".freeze,
240
240
  domain: "skos:ConceptScheme".freeze,
241
241
  inverseOf: "skos:topConceptOf".freeze,
242
242
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
@@ -244,34 +244,34 @@ module RDF::Vocab
244
244
  range: "skos:Concept".freeze,
245
245
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
246
246
  property :hiddenLabel,
247
- comment: [%(The range of skos:hiddenLabel is the class of RDF plain literals.).freeze, %(skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.).freeze],
248
- definition: %(A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.).freeze,
247
+ comment: ["The range of skos:hiddenLabel is the class of RDF plain literals.".freeze, "skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.".freeze],
248
+ definition: "A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.".freeze,
249
249
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
250
250
  label: "hidden label".freeze,
251
251
  subPropertyOf: "rdfs:label".freeze,
252
252
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
253
253
  property :historyNote,
254
- definition: %(A note about the past state/use/meaning of a concept.).freeze,
254
+ definition: "A note about the past state/use/meaning of a concept.".freeze,
255
255
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
256
256
  label: "history note".freeze,
257
257
  subPropertyOf: "skos:note".freeze,
258
258
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
259
259
  property :inScheme,
260
- definition: %(Relates a resource \(for example a concept\) to a concept scheme in which it is included.).freeze,
260
+ definition: "Relates a resource (for example a concept) to a concept scheme in which it is included.".freeze,
261
261
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
262
262
  label: "is in scheme".freeze,
263
263
  range: "skos:ConceptScheme".freeze,
264
264
  "skos:scopeNote": "A concept may be a member of more than one concept scheme.".freeze,
265
265
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
266
266
  property :mappingRelation,
267
- comment: %(These concept mapping relations mirror semantic relations, and the data model defined below is similar \(with the exception of skos:exactMatch\) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.).freeze,
268
- definition: %(Relates two concepts coming, by convention, from different schemes, and that have comparable meanings).freeze,
267
+ comment: "These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.".freeze,
268
+ definition: "Relates two concepts coming, by convention, from different schemes, and that have comparable meanings".freeze,
269
269
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
270
270
  label: "is in mapping relation with".freeze,
271
271
  subPropertyOf: "skos:semanticRelation".freeze,
272
272
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
273
273
  property :member,
274
- definition: %(Relates a collection to one of its members.).freeze,
274
+ definition: "Relates a collection to one of its members.".freeze,
275
275
  domain: "skos:Collection".freeze,
276
276
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
277
277
  label: "has member".freeze,
@@ -281,24 +281,23 @@ module RDF::Vocab
281
281
  ),
282
282
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
283
283
  property :memberList,
284
- comment: %(For any resource, every item in the list given as the value of the
285
- skos:memberList property is also a value of the skos:member property.).freeze,
286
- definition: %(Relates an ordered collection to the RDF list containing its members.).freeze,
284
+ comment: "For any resource, every item in the list given as the value of the\n skos:memberList property is also a value of the skos:member property.".freeze,
285
+ definition: "Relates an ordered collection to the RDF list containing its members.".freeze,
287
286
  domain: "skos:OrderedCollection".freeze,
288
287
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
289
288
  label: "has member list".freeze,
290
289
  range: "rdf:List".freeze,
291
290
  type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze]
292
291
  property :narrowMatch,
293
- definition: %(skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.).freeze,
292
+ definition: "skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.".freeze,
294
293
  inverseOf: "skos:broadMatch".freeze,
295
294
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
296
295
  label: "has narrower match".freeze,
297
296
  subPropertyOf: ["skos:mappingRelation".freeze, "skos:narrower".freeze],
298
297
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
299
298
  property :narrower,
300
- comment: %(Narrower concepts are typically rendered as children in a concept hierarchy \(tree\).).freeze,
301
- definition: %(Relates a concept to a concept that is more specific in meaning.).freeze,
299
+ comment: "Narrower concepts are typically rendered as children in a concept hierarchy (tree).".freeze,
300
+ definition: "Relates a concept to a concept that is more specific in meaning.".freeze,
302
301
  inverseOf: "skos:broader".freeze,
303
302
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
304
303
  label: "has narrower".freeze,
@@ -306,7 +305,7 @@ module RDF::Vocab
306
305
  subPropertyOf: "skos:narrowerTransitive".freeze,
307
306
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
308
307
  property :narrowerTransitive,
309
- definition: %(skos:narrowerTransitive is a transitive superproperty of skos:narrower.).freeze,
308
+ definition: "skos:narrowerTransitive is a transitive superproperty of skos:narrower.".freeze,
310
309
  inverseOf: "skos:broaderTransitive".freeze,
311
310
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
312
311
  label: "has narrower transitive".freeze,
@@ -314,46 +313,45 @@ module RDF::Vocab
314
313
  subPropertyOf: "skos:semanticRelation".freeze,
315
314
  type: ["owl:ObjectProperty".freeze, "owl:TransitiveProperty".freeze, "rdf:Property".freeze]
316
315
  property :notation,
317
- definition: %(A notation, also known as classification code, is a string of characters such as "T58.5" or "303.4833" used to uniquely identify a concept within the scope of a given concept scheme.).freeze,
316
+ definition: "A notation, also known as classification code, is a string of characters such as \"T58.5\" or \"303.4833\" used to uniquely identify a concept within the scope of a given concept scheme.".freeze,
318
317
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
319
318
  label: "notation".freeze,
320
319
  "skos:scopeNote": "By convention, skos:notation is used with a typed literal in the object position of the triple.".freeze,
321
320
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze]
322
321
  property :note,
323
- definition: %(A general note, for any purpose.).freeze,
322
+ definition: "A general note, for any purpose.".freeze,
324
323
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
325
324
  label: "note".freeze,
326
325
  "skos:scopeNote": "This property may be used directly, or as a super-property for more specific note types.".freeze,
327
326
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
328
327
  property :prefLabel,
329
- comment: [%(A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.).freeze, %(The range of skos:prefLabel is the class of RDF plain literals.).freeze, %(skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise
330
- disjoint properties.).freeze],
331
- definition: %(The preferred lexical label for a resource, in a given language.).freeze,
328
+ comment: ["A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.".freeze, "The range of skos:prefLabel is the class of RDF plain literals.".freeze, "skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\n disjoint properties.".freeze],
329
+ definition: "The preferred lexical label for a resource, in a given language.".freeze,
332
330
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
333
331
  label: "preferred label".freeze,
334
332
  subPropertyOf: "rdfs:label".freeze,
335
333
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
336
334
  property :related,
337
- comment: %(skos:related is disjoint with skos:broaderTransitive).freeze,
338
- definition: %(Relates a concept to a concept with which there is an associative semantic relationship.).freeze,
335
+ comment: "skos:related is disjoint with skos:broaderTransitive".freeze,
336
+ definition: "Relates a concept to a concept with which there is an associative semantic relationship.".freeze,
339
337
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
340
338
  label: "has related".freeze,
341
339
  subPropertyOf: "skos:semanticRelation".freeze,
342
340
  type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze, "rdf:Property".freeze]
343
341
  property :relatedMatch,
344
- definition: %(skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.).freeze,
342
+ definition: "skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.".freeze,
345
343
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
346
344
  label: "has related match".freeze,
347
345
  subPropertyOf: ["skos:mappingRelation".freeze, "skos:related".freeze],
348
346
  type: ["owl:ObjectProperty".freeze, "owl:SymmetricProperty".freeze, "rdf:Property".freeze]
349
347
  property :scopeNote,
350
- definition: %(A note that helps to clarify the meaning and/or the use of a concept.).freeze,
348
+ definition: "A note that helps to clarify the meaning and/or the use of a concept.".freeze,
351
349
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
352
350
  label: "scope note".freeze,
353
351
  subPropertyOf: "skos:note".freeze,
354
352
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze]
355
353
  property :semanticRelation,
356
- definition: %(Links a concept to a concept related by meaning.).freeze,
354
+ definition: "Links a concept to a concept related by meaning.".freeze,
357
355
  domain: "skos:Concept".freeze,
358
356
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,
359
357
  label: "is in semantic relation with".freeze,
@@ -361,7 +359,7 @@ module RDF::Vocab
361
359
  "skos:scopeNote": "This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.".freeze,
362
360
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze]
363
361
  property :topConceptOf,
364
- definition: %(Relates a concept to the concept scheme that it is a top level concept of.).freeze,
362
+ definition: "Relates a concept to the concept scheme that it is a top level concept of.".freeze,
365
363
  domain: "skos:Concept".freeze,
366
364
  inverseOf: "skos:hasTopConcept".freeze,
367
365
  isDefinedBy: "http://www.w3.org/2004/02/skos/core".freeze,