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,55 +5,520 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <https://www.w3.org/ns/activitystreams#>
8
+ # #
9
+ # # Activity Streams 2.0
10
+ # #
11
+ # # Extended Activity Streams 2.0 Vocabulary
8
12
  # class AS < RDF::StrictVocabulary
13
+ # # Actor accepts the Object
14
+ # # @return [RDF::Vocabulary::Term]
15
+ # attr_reader :Accept
16
+ #
17
+ # # An Object representing some form of Action that has been taken
18
+ # # @return [RDF::Vocabulary::Term]
19
+ # attr_reader :Activity
20
+ #
21
+ # # To Add an Object or Link to Something
22
+ # # @return [RDF::Vocabulary::Term]
23
+ # attr_reader :Add
24
+ #
25
+ # # Actor announces the object to the target
26
+ # # @return [RDF::Vocabulary::Term]
27
+ # attr_reader :Announce
28
+ #
29
+ # # Represents a software application of any sort
30
+ # # @return [RDF::Vocabulary::Term]
31
+ # attr_reader :Application
32
+ #
33
+ # # To Arrive Somewhere (can be used, for instance, to indicate that a particular entity is currently located somewhere, e.g. a "check-in")
34
+ # # @return [RDF::Vocabulary::Term]
35
+ # attr_reader :Arrive
36
+ #
37
+ # # A written work. Typically several paragraphs long. For example, a blog post or a news article.
38
+ # # @return [RDF::Vocabulary::Term]
39
+ # attr_reader :Article
40
+ #
41
+ # # An audio file
42
+ # # @return [RDF::Vocabulary::Term]
43
+ # attr_reader :Audio
44
+ #
45
+ # # @return [RDF::Vocabulary::Term]
46
+ # attr_reader :Block
47
+ #
48
+ # # An ordered or unordered collection of Objects or Links
49
+ # # @return [RDF::Vocabulary::Term]
50
+ # attr_reader :Collection
51
+ #
52
+ # # A subset of items from a Collection
53
+ # # @return [RDF::Vocabulary::Term]
54
+ # attr_reader :CollectionPage
55
+ #
56
+ # # To Create Something
57
+ # # @return [RDF::Vocabulary::Term]
58
+ # attr_reader :Create
59
+ #
60
+ # # To Delete Something
61
+ # # @return [RDF::Vocabulary::Term]
62
+ # attr_reader :Delete
63
+ #
64
+ # # The actor dislikes the object
65
+ # # @return [RDF::Vocabulary::Term]
66
+ # attr_reader :Dislike
67
+ #
68
+ # # Represents a digital document/file of any sort
69
+ # # @return [RDF::Vocabulary::Term]
70
+ # attr_reader :Document
71
+ #
72
+ # # An Event of any kind
73
+ # # @return [RDF::Vocabulary::Term]
74
+ # attr_reader :Event
75
+ #
76
+ # # To flag something (e.g. flag as inappropriate, flag as spam, etc)
77
+ # # @return [RDF::Vocabulary::Term]
78
+ # attr_reader :Flag
79
+ #
80
+ # # To Express Interest in Something
81
+ # # @return [RDF::Vocabulary::Term]
82
+ # attr_reader :Follow
83
+ #
84
+ # # A Group of any kind.
85
+ # # @return [RDF::Vocabulary::Term]
86
+ # attr_reader :Group
87
+ #
88
+ # # Actor is ignoring the Object
89
+ # # @return [RDF::Vocabulary::Term]
90
+ # attr_reader :Ignore
91
+ #
92
+ # # An Image file
93
+ # # @return [RDF::Vocabulary::Term]
94
+ # attr_reader :Image
95
+ #
96
+ # # An Activity that has no direct object
97
+ # # @return [RDF::Vocabulary::Term]
98
+ # attr_reader :IntransitiveActivity
99
+ #
100
+ # # To invite someone or something to something
101
+ # # @return [RDF::Vocabulary::Term]
102
+ # attr_reader :Invite
103
+ #
104
+ # # To Join Something
105
+ # # @return [RDF::Vocabulary::Term]
106
+ # attr_reader :Join
107
+ #
108
+ # # To Leave Something
109
+ # # @return [RDF::Vocabulary::Term]
110
+ # attr_reader :Leave
111
+ #
112
+ # # To Like Something
113
+ # # @return [RDF::Vocabulary::Term]
114
+ # attr_reader :Like
115
+ #
116
+ # # Represents a qualified reference to another resource. Patterned after the RFC5988 Web Linking Model
117
+ # # @return [RDF::Vocabulary::Term]
118
+ # attr_reader :Link
119
+ #
120
+ # # The actor listened to the object
121
+ # # @return [RDF::Vocabulary::Term]
122
+ # attr_reader :Listen
123
+ #
124
+ # # A specialized Link that represents an @mention
125
+ # # @return [RDF::Vocabulary::Term]
126
+ # attr_reader :Mention
127
+ #
128
+ # # The actor is moving the object. The target specifies where the object is moving to. The origin specifies where the object is moving from.
129
+ # # @return [RDF::Vocabulary::Term]
130
+ # attr_reader :Move
131
+ #
132
+ # # A Short note, typically less than a single paragraph. A "tweet" is an example, or a "status update"
133
+ # # @return [RDF::Vocabulary::Term]
134
+ # attr_reader :Note
135
+ #
136
+ # # @return [RDF::Vocabulary::Term]
137
+ # attr_reader :Object
138
+ #
139
+ # # To Offer something to someone or something
140
+ # # @return [RDF::Vocabulary::Term]
141
+ # attr_reader :Offer
142
+ #
143
+ # # A variation of Collection in which items are strictly ordered
144
+ # # @return [RDF::Vocabulary::Term]
145
+ # attr_reader :OrderedCollection
146
+ #
147
+ # # An ordered subset of items from an OrderedCollection
148
+ # # @return [RDF::Vocabulary::Term]
149
+ # attr_reader :OrderedCollectionPage
150
+ #
151
+ # # A rdf:List variant for Objects and Links
152
+ # # @return [RDF::Vocabulary::Term]
153
+ # attr_reader :OrderedItems
154
+ #
155
+ # # An Organization
156
+ # # @return [RDF::Vocabulary::Term]
157
+ # attr_reader :Organization
158
+ #
159
+ # # A Web Page
160
+ # # @return [RDF::Vocabulary::Term]
161
+ # attr_reader :Page
162
+ #
163
+ # # A Person
164
+ # # @return [RDF::Vocabulary::Term]
165
+ # attr_reader :Person
166
+ #
167
+ # # A physical or logical location
168
+ # # @return [RDF::Vocabulary::Term]
169
+ # attr_reader :Place
170
+ #
171
+ # # A Profile Document
172
+ # # @return [RDF::Vocabulary::Term]
173
+ # attr_reader :Profile
174
+ #
175
+ # # A question of any sort.
176
+ # # @return [RDF::Vocabulary::Term]
177
+ # attr_reader :Question
178
+ #
179
+ # # The actor read the object
180
+ # # @return [RDF::Vocabulary::Term]
181
+ # attr_reader :Read
182
+ #
183
+ # # Actor rejects the Object
184
+ # # @return [RDF::Vocabulary::Term]
185
+ # attr_reader :Reject
186
+ #
187
+ # # Represents a Social Graph relationship between two Individuals (indicated by the 'a' and 'b' properties)
188
+ # # @return [RDF::Vocabulary::Term]
189
+ # attr_reader :Relationship
190
+ #
191
+ # # To Remove Something
192
+ # # @return [RDF::Vocabulary::Term]
193
+ # attr_reader :Remove
194
+ #
195
+ # # A service provided by some entity
196
+ # # @return [RDF::Vocabulary::Term]
197
+ # attr_reader :Service
198
+ #
199
+ # # Actor tentatively accepts the Object
200
+ # # @return [RDF::Vocabulary::Term]
201
+ # attr_reader :TentativeAccept
202
+ #
203
+ # # Actor tentatively rejects the object
204
+ # # @return [RDF::Vocabulary::Term]
205
+ # attr_reader :TentativeReject
206
+ #
207
+ # # A placeholder for a deleted object
208
+ # # @return [RDF::Vocabulary::Term]
209
+ # attr_reader :Tombstone
210
+ #
211
+ # # The actor is traveling to the target. The origin specifies where the actor is traveling from.
212
+ # # @return [RDF::Vocabulary::Term]
213
+ # attr_reader :Travel
214
+ #
215
+ # # To Undo Something. This would typically be used to indicate that a previous Activity has been undone.
216
+ # # @return [RDF::Vocabulary::Term]
217
+ # attr_reader :Undo
218
+ #
219
+ # # To Update/Modify Something
220
+ # # @return [RDF::Vocabulary::Term]
221
+ # attr_reader :Update
222
+ #
223
+ # # A Video document of any kind.
224
+ # # @return [RDF::Vocabulary::Term]
225
+ # attr_reader :Video
226
+ #
227
+ # # The actor viewed the object
228
+ # # @return [RDF::Vocabulary::Term]
229
+ # attr_reader :View
230
+ #
231
+ # # Specifies the accuracy around the point established by the longitude and latitude
232
+ # # @return [RDF::Vocabulary::Term]
233
+ # attr_reader :accuracy
234
+ #
235
+ # # Subproperty of as:attributedTo that identifies the primary actor
236
+ # # @return [RDF::Vocabulary::Term]
237
+ # attr_reader :actor
238
+ #
239
+ # # The altitude of a place
240
+ # # @return [RDF::Vocabulary::Term]
241
+ # attr_reader :altitude
242
+ #
243
+ # # Describes a possible inclusive answer or option for a question.
244
+ # # @return [RDF::Vocabulary::Term]
245
+ # attr_reader :anyOf
246
+ #
247
+ # # @return [RDF::Vocabulary::Term]
248
+ # attr_reader :attachment
249
+ #
250
+ # # @return [RDF::Vocabulary::Term]
251
+ # attr_reader :attachments
252
+ #
253
+ # # Identifies an entity to which an object is attributed
254
+ # # @return [RDF::Vocabulary::Term]
255
+ # attr_reader :attributedTo
256
+ #
257
+ # # @return [RDF::Vocabulary::Term]
258
+ # attr_reader :audience
259
+ #
260
+ # # Identifies the author of an object. Deprecated. Use as:attributedTo instead
261
+ # # @return [RDF::Vocabulary::Term]
262
+ # attr_reader :author
263
+ #
264
+ # # @return [RDF::Vocabulary::Term]
265
+ # attr_reader :bcc
266
+ #
267
+ # # @return [RDF::Vocabulary::Term]
268
+ # attr_reader :bto
269
+ #
270
+ # # @return [RDF::Vocabulary::Term]
271
+ # attr_reader :cc
272
+ #
273
+ # # The content of the object.
274
+ # # @return [RDF::Vocabulary::Term]
275
+ # attr_reader :content
276
+ #
277
+ # # Specifies the context within which an object exists or an activity was performed
278
+ # # @return [RDF::Vocabulary::Term]
279
+ # attr_reader :context
280
+ #
281
+ # # @return [RDF::Vocabulary::Term]
282
+ # attr_reader :current
283
+ #
284
+ # # Specifies the date and time the object was deleted
285
+ # # @return [RDF::Vocabulary::Term]
286
+ # attr_reader :deleted
287
+ #
288
+ # # On a Profile object, describes the object described by the profile
289
+ # # @return [RDF::Vocabulary::Term]
290
+ # attr_reader :describes
291
+ #
292
+ # # @return [RDF::Vocabulary::Term]
293
+ # attr_reader :downstreamDuplicates
294
+ #
295
+ # # The duration of the object
296
+ # # @return [RDF::Vocabulary::Term]
297
+ # attr_reader :duration
298
+ #
299
+ # # The ending time of the object
300
+ # # @return [RDF::Vocabulary::Term]
301
+ # attr_reader :endTime
302
+ #
303
+ # # @return [RDF::Vocabulary::Term]
304
+ # attr_reader :first
305
+ #
306
+ # # On a Tombstone object, describes the former type of the deleted object
307
+ # # @return [RDF::Vocabulary::Term]
308
+ # attr_reader :formerType
309
+ #
310
+ # # @return [RDF::Vocabulary::Term]
311
+ # attr_reader :generator
312
+ #
313
+ # # The display height expressed as device independent pixels
314
+ # # @return [RDF::Vocabulary::Term]
315
+ # attr_reader :height
316
+ #
317
+ # # The target URI of the Link
318
+ # # @return [RDF::Vocabulary::Term]
319
+ # attr_reader :href
320
+ #
321
+ # # A hint about the language of the referenced resource
322
+ # # @return [RDF::Vocabulary::Term]
323
+ # attr_reader :hreflang
324
+ #
325
+ # # @return [RDF::Vocabulary::Term]
326
+ # attr_reader :icon
327
+ #
328
+ # # @return [RDF::Vocabulary::Term]
329
+ # attr_reader :id
330
+ #
331
+ # # @return [RDF::Vocabulary::Term]
332
+ # attr_reader :image
333
+ #
334
+ # # @return [RDF::Vocabulary::Term]
335
+ # attr_reader :inReplyTo
336
+ #
337
+ # # Indentifies an object used (or to be used) to complete an activity
338
+ # # @return [RDF::Vocabulary::Term]
339
+ # attr_reader :instrument
340
+ #
341
+ # # @return [RDF::Vocabulary::Term]
342
+ # attr_reader :items
343
+ #
344
+ # # @return [RDF::Vocabulary::Term]
345
+ # attr_reader :last
346
+ #
347
+ # # The latitude
348
+ # # @return [RDF::Vocabulary::Term]
349
+ # attr_reader :latitude
350
+ #
351
+ # # @return [RDF::Vocabulary::Term]
352
+ # attr_reader :location
353
+ #
354
+ # # The longitude
355
+ # # @return [RDF::Vocabulary::Term]
356
+ # attr_reader :longitude
357
+ #
358
+ # # The MIME Media Type
359
+ # # @return [RDF::Vocabulary::Term]
360
+ # attr_reader :mediaType
361
+ #
362
+ # # @return [RDF::Vocabulary::Term]
363
+ # attr_reader :name
364
+ #
365
+ # # @return [RDF::Vocabulary::Term]
366
+ # attr_reader :next
367
+ #
368
+ # # @return [RDF::Vocabulary::Term]
369
+ # attr_reader :object
370
+ #
371
+ # # @return [RDF::Vocabulary::Term]
372
+ # attr_reader :objectType
373
+ #
374
+ # # Describes a possible exclusive answer or option for a question.
375
+ # # @return [RDF::Vocabulary::Term]
376
+ # attr_reader :oneOf
377
+ #
378
+ # # For certain activities, specifies the entity from which the action is directed.
379
+ # # @return [RDF::Vocabulary::Term]
380
+ # attr_reader :origin
381
+ #
382
+ # # @return [RDF::Vocabulary::Term]
383
+ # attr_reader :partOf
384
+ #
385
+ # # @return [RDF::Vocabulary::Term]
386
+ # attr_reader :prev
387
+ #
388
+ # # @return [RDF::Vocabulary::Term]
389
+ # attr_reader :preview
390
+ #
391
+ # # @return [RDF::Vocabulary::Term]
392
+ # attr_reader :provider
393
+ #
394
+ # # Specifies the date and time the object was published
395
+ # # @return [RDF::Vocabulary::Term]
396
+ # attr_reader :published
397
+ #
398
+ # # Specifies a radius around the point established by the longitude and latitude
399
+ # # @return [RDF::Vocabulary::Term]
400
+ # attr_reader :radius
401
+ #
402
+ # # A numeric rating (>= 0.0, <= 5.0) for the object
403
+ # # @return [RDF::Vocabulary::Term]
404
+ # attr_reader :rating
405
+ #
406
+ # # The RFC 5988 or HTML5 Link Relation associated with the Link
407
+ # # @return [RDF::Vocabulary::Term]
408
+ # attr_reader :rel
409
+ #
410
+ # # On a Relationship object, describes the type of relationship
411
+ # # @return [RDF::Vocabulary::Term]
412
+ # attr_reader :relationship
413
+ #
414
+ # # @return [RDF::Vocabulary::Term]
415
+ # attr_reader :replies
416
+ #
417
+ # # @return [RDF::Vocabulary::Term]
418
+ # attr_reader :result
419
+ #
420
+ # # In a strictly ordered logical collection, specifies the index position of the first item in the items list
421
+ # # @return [RDF::Vocabulary::Term]
422
+ # attr_reader :startIndex
423
+ #
424
+ # # The starting time of the object
425
+ # # @return [RDF::Vocabulary::Term]
426
+ # attr_reader :startTime
427
+ #
428
+ # # On a Relationship object, identifies the subject. e.g. when saying "John is connected to Sally", 'subject' refers to 'John'
429
+ # # @return [RDF::Vocabulary::Term]
430
+ # attr_reader :subject
431
+ #
432
+ # # A short summary of the object
433
+ # # @return [RDF::Vocabulary::Term]
434
+ # attr_reader :summary
435
+ #
436
+ # # @return [RDF::Vocabulary::Term]
437
+ # attr_reader :tag
438
+ #
439
+ # # @return [RDF::Vocabulary::Term]
440
+ # attr_reader :tags
441
+ #
442
+ # # @return [RDF::Vocabulary::Term]
443
+ # attr_reader :target
444
+ #
445
+ # # @return [RDF::Vocabulary::Term]
446
+ # attr_reader :to
447
+ #
448
+ # # The total number of items in a logical collection
449
+ # # @return [RDF::Vocabulary::Term]
450
+ # attr_reader :totalItems
451
+ #
452
+ # # Identifies the unit of measurement used by the radius, altitude and accuracy properties. The value can be expressed either as one of a set of predefined units or as a well-known common URI that identifies units.
453
+ # # @return [RDF::Vocabulary::Term]
454
+ # attr_reader :units
455
+ #
456
+ # # Specifies when the object was last updated
457
+ # # @return [RDF::Vocabulary::Term]
458
+ # attr_reader :updated
459
+ #
460
+ # # @return [RDF::Vocabulary::Term]
461
+ # attr_reader :upstreamDuplicates
462
+ #
463
+ # # Specifies a link to a specific representation of the Object
464
+ # # @return [RDF::Vocabulary::Term]
465
+ # attr_reader :url
466
+ #
467
+ # # @return [RDF::Vocabulary::Term]
468
+ # attr_reader :verb
469
+ #
470
+ # # Specifies the preferred display width of the content, expressed in terms of device independent pixels.
471
+ # # @return [RDF::Vocabulary::Term]
472
+ # attr_reader :width
473
+ #
9
474
  # end
10
- class AS < RDF::StrictVocabulary("https://www.w3.org/ns/activitystreams#")
475
+ AS = Class.new(RDF::StrictVocabulary("https://www.w3.org/ns/activitystreams#")) do
11
476
 
12
477
  # Ontology definition
13
478
  ontology :"https://www.w3.org/ns/activitystreams#",
14
- comment: %(Extended Activity Streams 2.0 Vocabulary).freeze,
479
+ comment: "Extended Activity Streams 2.0 Vocabulary".freeze,
15
480
  label: "Activity Streams 2.0".freeze,
16
481
  "owl:imports": "prov:".freeze,
17
482
  type: "owl:Ontology".freeze
18
483
 
19
484
  # Class definitions
20
485
  term :Accept,
21
- comment: %(Actor accepts the Object).freeze,
486
+ comment: "Actor accepts the Object".freeze,
22
487
  label: "Accept".freeze,
23
488
  subClassOf: "as:Activity".freeze,
24
489
  type: "owl:Class".freeze
25
490
  term :Activity,
26
- comment: %(An Object representing some form of Action that has been taken).freeze,
491
+ comment: "An Object representing some form of Action that has been taken".freeze,
27
492
  label: "Activity".freeze,
28
493
  subClassOf: "as:Object".freeze,
29
494
  type: "owl:Class".freeze
30
495
  term :Add,
31
- comment: %(To Add an Object or Link to Something).freeze,
496
+ comment: "To Add an Object or Link to Something".freeze,
32
497
  label: "Add".freeze,
33
498
  subClassOf: "as:Activity".freeze,
34
499
  type: "owl:Class".freeze
35
500
  term :Announce,
36
- comment: %(Actor announces the object to the target).freeze,
501
+ comment: "Actor announces the object to the target".freeze,
37
502
  label: "Announce".freeze,
38
503
  subClassOf: "as:Activity".freeze,
39
504
  type: "owl:Class".freeze
40
505
  term :Application,
41
- comment: %(Represents a software application of any sort).freeze,
506
+ comment: "Represents a software application of any sort".freeze,
42
507
  label: "Application".freeze,
43
508
  subClassOf: "as:Object".freeze,
44
509
  type: "owl:Class".freeze
45
510
  term :Arrive,
46
- comment: %(To Arrive Somewhere \(can be used, for instance, to indicate that a particular entity is currently located somewhere, e.g. a "check-in"\)).freeze,
511
+ comment: "To Arrive Somewhere (can be used, for instance, to indicate that a particular entity is currently located somewhere, e.g. a \"check-in\")".freeze,
47
512
  label: "Arrive".freeze,
48
513
  subClassOf: "as:IntransitiveActivity".freeze,
49
514
  type: "owl:Class".freeze
50
515
  term :Article,
51
- comment: %(A written work. Typically several paragraphs long. For example, a blog post or a news article.).freeze,
516
+ comment: "A written work. Typically several paragraphs long. For example, a blog post or a news article.".freeze,
52
517
  label: "Article".freeze,
53
518
  subClassOf: "as:Object".freeze,
54
519
  type: "owl:Class".freeze
55
520
  term :Audio,
56
- comment: %(An audio file).freeze,
521
+ comment: "An audio file".freeze,
57
522
  label: "Audio".freeze,
58
523
  subClassOf: "as:Document".freeze,
59
524
  type: "owl:Class".freeze
@@ -62,67 +527,67 @@ module RDF::Vocab
62
527
  subClassOf: "as:Ignore".freeze,
63
528
  type: "owl:Class".freeze
64
529
  term :Collection,
65
- comment: %(An ordered or unordered collection of Objects or Links).freeze,
530
+ comment: "An ordered or unordered collection of Objects or Links".freeze,
66
531
  label: "Collection".freeze,
67
532
  subClassOf: "as:Object".freeze,
68
533
  type: "owl:Class".freeze
69
534
  term :CollectionPage,
70
- comment: %(A subset of items from a Collection).freeze,
535
+ comment: "A subset of items from a Collection".freeze,
71
536
  label: "CollectionPage".freeze,
72
537
  subClassOf: "as:Collection".freeze,
73
538
  type: "owl:Class".freeze
74
539
  term :Create,
75
- comment: %(To Create Something).freeze,
540
+ comment: "To Create Something".freeze,
76
541
  label: "Create".freeze,
77
542
  subClassOf: "as:Activity".freeze,
78
543
  type: "owl:Class".freeze
79
544
  term :Delete,
80
- comment: %(To Delete Something).freeze,
545
+ comment: "To Delete Something".freeze,
81
546
  label: "Delete".freeze,
82
547
  subClassOf: "as:Activity".freeze,
83
548
  type: "owl:Class".freeze
84
549
  term :Dislike,
85
- comment: %(The actor dislikes the object).freeze,
550
+ comment: "The actor dislikes the object".freeze,
86
551
  label: "Dislike".freeze,
87
552
  subClassOf: "as:Activity".freeze,
88
553
  type: "owl:Class".freeze
89
554
  term :Document,
90
- comment: %(Represents a digital document/file of any sort).freeze,
555
+ comment: "Represents a digital document/file of any sort".freeze,
91
556
  label: "Document".freeze,
92
557
  subClassOf: "as:Object".freeze,
93
558
  type: "owl:Class".freeze
94
559
  term :Event,
95
- comment: %(An Event of any kind).freeze,
560
+ comment: "An Event of any kind".freeze,
96
561
  label: "Event".freeze,
97
562
  subClassOf: "as:Object".freeze,
98
563
  type: "owl:Class".freeze
99
564
  term :Flag,
100
- comment: %(To flag something \(e.g. flag as inappropriate, flag as spam, etc\)).freeze,
565
+ comment: "To flag something (e.g. flag as inappropriate, flag as spam, etc)".freeze,
101
566
  label: "Flag".freeze,
102
567
  subClassOf: "as:Activity".freeze,
103
568
  type: "owl:Class".freeze
104
569
  term :Follow,
105
- comment: %(To Express Interest in Something).freeze,
570
+ comment: "To Express Interest in Something".freeze,
106
571
  label: "Follow".freeze,
107
572
  subClassOf: "as:Activity".freeze,
108
573
  type: "owl:Class".freeze
109
574
  term :Group,
110
- comment: %(A Group of any kind.).freeze,
575
+ comment: "A Group of any kind.".freeze,
111
576
  label: "Group".freeze,
112
577
  subClassOf: "as:Object".freeze,
113
578
  type: "owl:Class".freeze
114
579
  term :Ignore,
115
- comment: %(Actor is ignoring the Object).freeze,
580
+ comment: "Actor is ignoring the Object".freeze,
116
581
  label: "Ignore".freeze,
117
582
  subClassOf: "as:Activity".freeze,
118
583
  type: "owl:Class".freeze
119
584
  term :Image,
120
- comment: %(An Image file).freeze,
585
+ comment: "An Image file".freeze,
121
586
  label: "Image".freeze,
122
587
  subClassOf: "as:Document".freeze,
123
588
  type: "owl:Class".freeze
124
589
  term :IntransitiveActivity,
125
- comment: %(An Activity that has no direct object).freeze,
590
+ comment: "An Activity that has no direct object".freeze,
126
591
  label: "IntransitiveActivity".freeze,
127
592
  subClassOf: ["as:Activity".freeze, term(
128
593
  maxCardinality: "0".freeze,
@@ -131,47 +596,47 @@ module RDF::Vocab
131
596
  )],
132
597
  type: "owl:Class".freeze
133
598
  term :Invite,
134
- comment: %(To invite someone or something to something).freeze,
599
+ comment: "To invite someone or something to something".freeze,
135
600
  label: "Invite".freeze,
136
601
  subClassOf: "as:Offer".freeze,
137
602
  type: "owl:Class".freeze
138
603
  term :Join,
139
- comment: %(To Join Something).freeze,
604
+ comment: "To Join Something".freeze,
140
605
  label: "Join".freeze,
141
606
  subClassOf: "as:Activity".freeze,
142
607
  type: "owl:Class".freeze
143
608
  term :Leave,
144
- comment: %(To Leave Something).freeze,
609
+ comment: "To Leave Something".freeze,
145
610
  label: "Leave".freeze,
146
611
  subClassOf: "as:Activity".freeze,
147
612
  type: "owl:Class".freeze
148
613
  term :Like,
149
- comment: %(To Like Something).freeze,
614
+ comment: "To Like Something".freeze,
150
615
  label: "Like".freeze,
151
616
  subClassOf: "as:Activity".freeze,
152
617
  type: "owl:Class".freeze
153
618
  term :Link,
154
- comment: %(Represents a qualified reference to another resource. Patterned after the RFC5988 Web Linking Model).freeze,
619
+ comment: "Represents a qualified reference to another resource. Patterned after the RFC5988 Web Linking Model".freeze,
155
620
  label: "Link".freeze,
156
621
  "owl:disjointWith": "as:Object".freeze,
157
622
  type: "owl:Class".freeze
158
623
  term :Listen,
159
- comment: %(The actor listened to the object).freeze,
624
+ comment: "The actor listened to the object".freeze,
160
625
  label: "Listen".freeze,
161
626
  subClassOf: "as:Activity".freeze,
162
627
  type: "owl:Class".freeze
163
628
  term :Mention,
164
- comment: %(A specialized Link that represents an @mention).freeze,
629
+ comment: "A specialized Link that represents an @mention".freeze,
165
630
  label: "Mention".freeze,
166
631
  subClassOf: "as:Link".freeze,
167
632
  type: "owl:Class".freeze
168
633
  term :Move,
169
- comment: %(The actor is moving the object. The target specifies where the object is moving to. The origin specifies where the object is moving from.).freeze,
634
+ comment: "The actor is moving the object. The target specifies where the object is moving to. The origin specifies where the object is moving from.".freeze,
170
635
  label: "Move".freeze,
171
636
  subClassOf: "as:Activity".freeze,
172
637
  type: "owl:Class".freeze
173
638
  term :Note,
174
- comment: %(A Short note, typically less than a single paragraph. A "tweet" is an example, or a "status update").freeze,
639
+ comment: "A Short note, typically less than a single paragraph. A \"tweet\" is an example, or a \"status update\"".freeze,
175
640
  label: "Note".freeze,
176
641
  subClassOf: "as:Object".freeze,
177
642
  type: "owl:Class".freeze
@@ -179,12 +644,12 @@ module RDF::Vocab
179
644
  label: "Object".freeze,
180
645
  type: "owl:Class".freeze
181
646
  term :Offer,
182
- comment: %(To Offer something to someone or something).freeze,
647
+ comment: "To Offer something to someone or something".freeze,
183
648
  label: "Offer".freeze,
184
649
  subClassOf: "as:Activity".freeze,
185
650
  type: "owl:Class".freeze
186
651
  term :OrderedCollection,
187
- comment: %(A variation of Collection in which items are strictly ordered).freeze,
652
+ comment: "A variation of Collection in which items are strictly ordered".freeze,
188
653
  label: "OrderedCollection".freeze,
189
654
  subClassOf: term(
190
655
  intersectionOf: list("as:Collection".freeze, term(
@@ -205,12 +670,12 @@ module RDF::Vocab
205
670
  ),
206
671
  type: "owl:Class".freeze
207
672
  term :OrderedCollectionPage,
208
- comment: %(An ordered subset of items from an OrderedCollection).freeze,
673
+ comment: "An ordered subset of items from an OrderedCollection".freeze,
209
674
  label: "OrderedCollectionPage".freeze,
210
675
  subClassOf: ["as:CollectionPage".freeze, "as:OrderedCollection".freeze],
211
676
  type: "owl:Class".freeze
212
677
  term :OrderedItems,
213
- comment: %(A rdf:List variant for Objects and Links).freeze,
678
+ comment: "A rdf:List variant for Objects and Links".freeze,
214
679
  label: "OrderedItems".freeze,
215
680
  subClassOf: term(
216
681
  intersectionOf: list("rdf:List".freeze, term(
@@ -229,104 +694,104 @@ module RDF::Vocab
229
694
  ),
230
695
  type: "owl:Class".freeze
231
696
  term :Organization,
232
- comment: %(An Organization).freeze,
697
+ comment: "An Organization".freeze,
233
698
  label: "Organization".freeze,
234
699
  subClassOf: "as:Object".freeze,
235
700
  type: "owl:Class".freeze
236
701
  term :Page,
237
- comment: %(A Web Page).freeze,
702
+ comment: "A Web Page".freeze,
238
703
  label: "Page".freeze,
239
704
  subClassOf: "as:Object".freeze,
240
705
  type: "owl:Class".freeze
241
706
  term :Person,
242
- comment: %(A Person).freeze,
707
+ comment: "A Person".freeze,
243
708
  label: "Person".freeze,
244
709
  subClassOf: "as:Object".freeze,
245
710
  type: "owl:Class".freeze
246
711
  term :Place,
247
- comment: %(A physical or logical location).freeze,
712
+ comment: "A physical or logical location".freeze,
248
713
  label: "Place".freeze,
249
714
  subClassOf: "as:Object".freeze,
250
715
  type: "owl:Class".freeze
251
716
  term :Profile,
252
- comment: %(A Profile Document).freeze,
717
+ comment: "A Profile Document".freeze,
253
718
  label: "Profile".freeze,
254
719
  subClassOf: "as:Object".freeze,
255
720
  type: "owl:Class".freeze
256
721
  term :Question,
257
- comment: %(A question of any sort.).freeze,
722
+ comment: "A question of any sort.".freeze,
258
723
  label: "Question".freeze,
259
724
  subClassOf: "as:IntransitiveActivity".freeze,
260
725
  type: "owl:Class".freeze
261
726
  term :Read,
262
- comment: %(The actor read the object).freeze,
727
+ comment: "The actor read the object".freeze,
263
728
  label: "Read".freeze,
264
729
  subClassOf: "as:Activity".freeze,
265
730
  type: "owl:Class".freeze
266
731
  term :Reject,
267
- comment: %(Actor rejects the Object).freeze,
732
+ comment: "Actor rejects the Object".freeze,
268
733
  label: "Reject".freeze,
269
734
  subClassOf: "as:Activity".freeze,
270
735
  type: "owl:Class".freeze
271
736
  term :Relationship,
272
- comment: %(Represents a Social Graph relationship between two Individuals \(indicated by the 'a' and 'b' properties\)).freeze,
737
+ comment: "Represents a Social Graph relationship between two Individuals (indicated by the 'a' and 'b' properties)".freeze,
273
738
  label: "Relationship".freeze,
274
739
  subClassOf: "as:Object".freeze,
275
740
  type: ["owl:Class".freeze, "rdf:Statement".freeze]
276
741
  term :Remove,
277
- comment: %(To Remove Something).freeze,
742
+ comment: "To Remove Something".freeze,
278
743
  label: "Remove".freeze,
279
744
  subClassOf: "as:Activity".freeze,
280
745
  type: "owl:Class".freeze
281
746
  term :Service,
282
- comment: %(A service provided by some entity).freeze,
747
+ comment: "A service provided by some entity".freeze,
283
748
  label: "Service".freeze,
284
749
  subClassOf: "as:Object".freeze,
285
750
  type: "owl:Class".freeze
286
751
  term :TentativeAccept,
287
- comment: %(Actor tentatively accepts the Object).freeze,
752
+ comment: "Actor tentatively accepts the Object".freeze,
288
753
  label: "TentativeAccept".freeze,
289
754
  subClassOf: "as:Accept".freeze,
290
755
  type: "owl:Class".freeze
291
756
  term :TentativeReject,
292
- comment: %(Actor tentatively rejects the object).freeze,
757
+ comment: "Actor tentatively rejects the object".freeze,
293
758
  label: "TentativeReject".freeze,
294
759
  subClassOf: "as:Reject".freeze,
295
760
  type: "owl:Class".freeze
296
761
  term :Tombstone,
297
- comment: %(A placeholder for a deleted object).freeze,
762
+ comment: "A placeholder for a deleted object".freeze,
298
763
  label: "Tombstone".freeze,
299
764
  subClassOf: "as:Object".freeze,
300
765
  type: "owl:Class".freeze
301
766
  term :Travel,
302
- comment: %(The actor is traveling to the target. The origin specifies where the actor is traveling from.).freeze,
767
+ comment: "The actor is traveling to the target. The origin specifies where the actor is traveling from.".freeze,
303
768
  label: "Travel".freeze,
304
769
  subClassOf: "as:IntransitiveActivity".freeze,
305
770
  type: "owl:Class".freeze
306
771
  term :Undo,
307
- comment: %(To Undo Something. This would typically be used to indicate that a previous Activity has been undone.).freeze,
772
+ comment: "To Undo Something. This would typically be used to indicate that a previous Activity has been undone.".freeze,
308
773
  label: "Undo".freeze,
309
774
  subClassOf: "as:Activity".freeze,
310
775
  type: "owl:Class".freeze
311
776
  term :Update,
312
- comment: %(To Update/Modify Something).freeze,
777
+ comment: "To Update/Modify Something".freeze,
313
778
  label: "Update".freeze,
314
779
  subClassOf: "as:Activity".freeze,
315
780
  type: "owl:Class".freeze
316
781
  term :Video,
317
- comment: %(A Video document of any kind.).freeze,
782
+ comment: "A Video document of any kind.".freeze,
318
783
  label: "Video".freeze,
319
784
  subClassOf: "as:Document".freeze,
320
785
  type: "owl:Class".freeze
321
786
  term :View,
322
- comment: %(The actor viewed the object).freeze,
787
+ comment: "The actor viewed the object".freeze,
323
788
  label: "View".freeze,
324
789
  subClassOf: "as:Activity".freeze,
325
790
  type: "owl:Class".freeze
326
791
 
327
792
  # Property definitions
328
793
  property :accuracy,
329
- comment: %(Specifies the accuracy around the point established by the longitude and latitude).freeze,
794
+ comment: "Specifies the accuracy around the point established by the longitude and latitude".freeze,
330
795
  domain: "as:Place".freeze,
331
796
  label: "accuracy".freeze,
332
797
  range: term(
@@ -338,7 +803,7 @@ module RDF::Vocab
338
803
  ),
339
804
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
340
805
  property :actor,
341
- comment: %(Subproperty of as:attributedTo that identifies the primary actor).freeze,
806
+ comment: "Subproperty of as:attributedTo that identifies the primary actor".freeze,
342
807
  domain: "as:Activity".freeze,
343
808
  label: "actor".freeze,
344
809
  range: term(
@@ -348,13 +813,13 @@ module RDF::Vocab
348
813
  subPropertyOf: "as:attributedTo".freeze,
349
814
  type: "owl:ObjectProperty".freeze
350
815
  property :altitude,
351
- comment: %(The altitude of a place).freeze,
816
+ comment: "The altitude of a place".freeze,
352
817
  domain: "as:Place".freeze,
353
818
  label: "altitude".freeze,
354
819
  range: "xsd:float".freeze,
355
820
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
356
821
  property :anyOf,
357
- comment: %(Describes a possible inclusive answer or option for a question.).freeze,
822
+ comment: "Describes a possible inclusive answer or option for a question.".freeze,
358
823
  domain: "as:Question".freeze,
359
824
  label: "oneOf".freeze,
360
825
  range: term(
@@ -380,7 +845,7 @@ module RDF::Vocab
380
845
  ),
381
846
  type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
382
847
  property :attributedTo,
383
- comment: %(Identifies an entity to which an object is attributed).freeze,
848
+ comment: "Identifies an entity to which an object is attributed".freeze,
384
849
  domain: term(
385
850
  type: "owl:Class".freeze,
386
851
  unionOf: list("as:Object".freeze, "as:Link".freeze)
@@ -400,7 +865,7 @@ module RDF::Vocab
400
865
  ),
401
866
  type: "owl:ObjectProperty".freeze
402
867
  property :author,
403
- comment: %(Identifies the author of an object. Deprecated. Use as:attributedTo instead).freeze,
868
+ comment: "Identifies the author of an object. Deprecated. Use as:attributedTo instead".freeze,
404
869
  domain: "as:Object".freeze,
405
870
  label: "author".freeze,
406
871
  range: term(
@@ -434,7 +899,7 @@ module RDF::Vocab
434
899
  ),
435
900
  type: "owl:ObjectProperty".freeze
436
901
  property :content,
437
- comment: %(The content of the object.).freeze,
902
+ comment: "The content of the object.".freeze,
438
903
  domain: "as:Object".freeze,
439
904
  label: "content".freeze,
440
905
  range: term(
@@ -445,7 +910,7 @@ module RDF::Vocab
445
910
  ),
446
911
  type: "owl:DatatypeProperty".freeze
447
912
  property :context,
448
- comment: %(Specifies the context within which an object exists or an activity was performed).freeze,
913
+ comment: "Specifies the context within which an object exists or an activity was performed".freeze,
449
914
  domain: "as:Object".freeze,
450
915
  label: "context".freeze,
451
916
  range: term(
@@ -462,13 +927,13 @@ module RDF::Vocab
462
927
  ),
463
928
  type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
464
929
  property :deleted,
465
- comment: %(Specifies the date and time the object was deleted).freeze,
930
+ comment: "Specifies the date and time the object was deleted".freeze,
466
931
  domain: "as:Tombstone".freeze,
467
932
  label: "deleted".freeze,
468
933
  range: "xsd:dateTime".freeze,
469
934
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
470
935
  property :describes,
471
- comment: %(On a Profile object, describes the object described by the profile).freeze,
936
+ comment: "On a Profile object, describes the object described by the profile".freeze,
472
937
  domain: "as:Profile".freeze,
473
938
  label: "describes".freeze,
474
939
  range: "as:Object".freeze,
@@ -479,13 +944,13 @@ module RDF::Vocab
479
944
  range: "xsd:anyURI".freeze,
480
945
  type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
481
946
  property :duration,
482
- comment: %(The duration of the object).freeze,
947
+ comment: "The duration of the object".freeze,
483
948
  domain: "as:Object".freeze,
484
949
  label: "duration".freeze,
485
950
  range: "xsd:duration".freeze,
486
951
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
487
952
  property :endTime,
488
- comment: %(The ending time of the object).freeze,
953
+ comment: "The ending time of the object".freeze,
489
954
  domain: "as:Object".freeze,
490
955
  label: "endTime".freeze,
491
956
  range: "xsd:dateTime".freeze,
@@ -499,7 +964,7 @@ module RDF::Vocab
499
964
  ),
500
965
  type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
501
966
  property :formerType,
502
- comment: %(On a Tombstone object, describes the former type of the deleted object).freeze,
967
+ comment: "On a Tombstone object, describes the former type of the deleted object".freeze,
503
968
  domain: "as:Tombstone".freeze,
504
969
  label: "formerType".freeze,
505
970
  range: "as:Object".freeze,
@@ -513,19 +978,19 @@ module RDF::Vocab
513
978
  ),
514
979
  type: "owl:ObjectProperty".freeze
515
980
  property :height,
516
- comment: %(The display height expressed as device independent pixels).freeze,
981
+ comment: "The display height expressed as device independent pixels".freeze,
517
982
  domain: "as:Link".freeze,
518
983
  label: "height".freeze,
519
984
  range: "xsd:nonNegativeInteger".freeze,
520
985
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
521
986
  property :href,
522
- comment: %(The target URI of the Link).freeze,
987
+ comment: "The target URI of the Link".freeze,
523
988
  domain: "as:Link".freeze,
524
989
  label: "href".freeze,
525
990
  range: "xsd:anyURI".freeze,
526
991
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
527
992
  property :hreflang,
528
- comment: %(A hint about the language of the referenced resource).freeze,
993
+ comment: "A hint about the language of the referenced resource".freeze,
529
994
  domain: "as:Link".freeze,
530
995
  label: "hreflang".freeze,
531
996
  range: "xsd:language".freeze,
@@ -563,7 +1028,7 @@ module RDF::Vocab
563
1028
  ),
564
1029
  type: "owl:ObjectProperty".freeze
565
1030
  property :instrument,
566
- comment: %(Indentifies an object used \(or to be used\) to complete an activity).freeze,
1031
+ comment: "Indentifies an object used (or to be used) to complete an activity".freeze,
567
1032
  domain: "as:Activity".freeze,
568
1033
  label: "instrument".freeze,
569
1034
  range: term(
@@ -591,7 +1056,7 @@ module RDF::Vocab
591
1056
  ),
592
1057
  type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
593
1058
  property :latitude,
594
- comment: %(The latitude).freeze,
1059
+ comment: "The latitude".freeze,
595
1060
  domain: "as:Place".freeze,
596
1061
  label: "latitude".freeze,
597
1062
  range: "xsd:float".freeze,
@@ -605,13 +1070,13 @@ module RDF::Vocab
605
1070
  ),
606
1071
  type: "owl:ObjectProperty".freeze
607
1072
  property :longitude,
608
- comment: %(The longitude).freeze,
1073
+ comment: "The longitude".freeze,
609
1074
  domain: "as:Place".freeze,
610
1075
  label: "longitude".freeze,
611
1076
  range: "xsd:float".freeze,
612
1077
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
613
1078
  property :mediaType,
614
- comment: %(The MIME Media Type).freeze,
1079
+ comment: "The MIME Media Type".freeze,
615
1080
  domain: term(
616
1081
  type: "owl:Class".freeze,
617
1082
  unionOf: list("as:Link".freeze, "as:Object".freeze)
@@ -658,7 +1123,7 @@ module RDF::Vocab
658
1123
  range: "xsd:anyURI".freeze,
659
1124
  type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze, "owl:FunctionalProperty".freeze]
660
1125
  property :oneOf,
661
- comment: %(Describes a possible exclusive answer or option for a question.).freeze,
1126
+ comment: "Describes a possible exclusive answer or option for a question.".freeze,
662
1127
  domain: "as:Question".freeze,
663
1128
  label: "oneOf".freeze,
664
1129
  range: term(
@@ -667,7 +1132,7 @@ module RDF::Vocab
667
1132
  ),
668
1133
  type: "owl:ObjectProperty".freeze
669
1134
  property :origin,
670
- comment: %(For certain activities, specifies the entity from which the action is directed.).freeze,
1135
+ comment: "For certain activities, specifies the entity from which the action is directed.".freeze,
671
1136
  domain: "as:Activity".freeze,
672
1137
  label: "origin".freeze,
673
1138
  range: term(
@@ -711,13 +1176,13 @@ module RDF::Vocab
711
1176
  ),
712
1177
  type: ["owl:DeprecatedProperty".freeze, "owl:ObjectProperty".freeze]
713
1178
  property :published,
714
- comment: %(Specifies the date and time the object was published).freeze,
1179
+ comment: "Specifies the date and time the object was published".freeze,
715
1180
  domain: "as:Object".freeze,
716
1181
  label: "published".freeze,
717
1182
  range: "xsd:dateTime".freeze,
718
1183
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
719
1184
  property :radius,
720
- comment: %(Specifies a radius around the point established by the longitude and latitude).freeze,
1185
+ comment: "Specifies a radius around the point established by the longitude and latitude".freeze,
721
1186
  domain: "as:Place".freeze,
722
1187
  label: "radius".freeze,
723
1188
  range: term(
@@ -729,7 +1194,7 @@ module RDF::Vocab
729
1194
  ),
730
1195
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
731
1196
  property :rating,
732
- comment: %(A numeric rating \(>= 0.0, <= 5.0\) for the object).freeze,
1197
+ comment: "A numeric rating (>= 0.0, <= 5.0) for the object".freeze,
733
1198
  domain: "as:Object".freeze,
734
1199
  label: "rating".freeze,
735
1200
  range: term(
@@ -743,13 +1208,13 @@ module RDF::Vocab
743
1208
  ),
744
1209
  type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze, "owl:FunctionalProperty".freeze]
745
1210
  property :rel,
746
- comment: %(The RFC 5988 or HTML5 Link Relation associated with the Link).freeze,
1211
+ comment: "The RFC 5988 or HTML5 Link Relation associated with the Link".freeze,
747
1212
  domain: "as:Link".freeze,
748
1213
  label: "rel".freeze,
749
1214
  range: "xsd:string".freeze,
750
1215
  type: "owl:DatatypeProperty".freeze
751
1216
  property :relationship,
752
- comment: %(On a Relationship object, describes the type of relationship).freeze,
1217
+ comment: "On a Relationship object, describes the type of relationship".freeze,
753
1218
  domain: "as:Relationship".freeze,
754
1219
  label: "relationship".freeze,
755
1220
  range: "rdf:Property".freeze,
@@ -769,19 +1234,19 @@ module RDF::Vocab
769
1234
  ),
770
1235
  type: "owl:ObjectProperty".freeze
771
1236
  property :startIndex,
772
- comment: %(In a strictly ordered logical collection, specifies the index position of the first item in the items list).freeze,
1237
+ comment: "In a strictly ordered logical collection, specifies the index position of the first item in the items list".freeze,
773
1238
  domain: "as:OrderedCollectionPage".freeze,
774
1239
  label: "startIndex".freeze,
775
1240
  range: "xsd:nonNegativeInteger".freeze,
776
1241
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
777
1242
  property :startTime,
778
- comment: %(The starting time of the object).freeze,
1243
+ comment: "The starting time of the object".freeze,
779
1244
  domain: "as:Object".freeze,
780
1245
  label: "startTime".freeze,
781
1246
  range: "xsd:dateTime".freeze,
782
1247
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
783
1248
  property :subject,
784
- comment: %(On a Relationship object, identifies the subject. e.g. when saying "John is connected to Sally", 'subject' refers to 'John').freeze,
1249
+ comment: "On a Relationship object, identifies the subject. e.g. when saying \"John is connected to Sally\", 'subject' refers to 'John'".freeze,
785
1250
  domain: "as:Relationship".freeze,
786
1251
  label: "a".freeze,
787
1252
  range: term(
@@ -791,7 +1256,7 @@ module RDF::Vocab
791
1256
  subPropertyOf: "rdf:subject".freeze,
792
1257
  type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze]
793
1258
  property :summary,
794
- comment: %(A short summary of the object).freeze,
1259
+ comment: "A short summary of the object".freeze,
795
1260
  domain: "as:Object".freeze,
796
1261
  label: "summary".freeze,
797
1262
  range: term(
@@ -835,13 +1300,13 @@ module RDF::Vocab
835
1300
  ),
836
1301
  type: "owl:ObjectProperty".freeze
837
1302
  property :totalItems,
838
- comment: %(The total number of items in a logical collection).freeze,
1303
+ comment: "The total number of items in a logical collection".freeze,
839
1304
  domain: "as:Collection".freeze,
840
1305
  label: "totalItems".freeze,
841
1306
  range: "xsd:nonNegativeInteger".freeze,
842
1307
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
843
1308
  property :units,
844
- comment: %(Identifies the unit of measurement used by the radius, altitude and accuracy properties. The value can be expressed either as one of a set of predefined units or as a well-known common URI that identifies units.).freeze,
1309
+ comment: "Identifies the unit of measurement used by the radius, altitude and accuracy properties. The value can be expressed either as one of a set of predefined units or as a well-known common URI that identifies units.".freeze,
845
1310
  domain: "as:Place".freeze,
846
1311
  label: "units".freeze,
847
1312
  range: term(
@@ -853,7 +1318,7 @@ module RDF::Vocab
853
1318
  ),
854
1319
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze]
855
1320
  property :updated,
856
- comment: %(Specifies when the object was last updated).freeze,
1321
+ comment: "Specifies when the object was last updated".freeze,
857
1322
  domain: "as:Object".freeze,
858
1323
  label: "updated".freeze,
859
1324
  range: "xsd:dateTime".freeze,
@@ -864,7 +1329,7 @@ module RDF::Vocab
864
1329
  range: "xsd:anyURI".freeze,
865
1330
  type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze]
866
1331
  property :url,
867
- comment: %(Specifies a link to a specific representation of the Object).freeze,
1332
+ comment: "Specifies a link to a specific representation of the Object".freeze,
868
1333
  domain: "as:Object".freeze,
869
1334
  label: "url".freeze,
870
1335
  range: term(
@@ -878,7 +1343,7 @@ module RDF::Vocab
878
1343
  range: "xsd:anyURI".freeze,
879
1344
  type: ["owl:DatatypeProperty".freeze, "owl:DeprecatedProperty".freeze, "owl:FunctionalProperty".freeze]
880
1345
  property :width,
881
- comment: %(Specifies the preferred display width of the content, expressed in terms of device independent pixels.).freeze,
1346
+ comment: "Specifies the preferred display width of the content, expressed in terms of device independent pixels.".freeze,
882
1347
  domain: "as:Link".freeze,
883
1348
  label: "width".freeze,
884
1349
  range: "xsd:nonNegativeInteger".freeze,