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,9 +5,313 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <http://xmlns.com/foaf/0.1/>
8
+ # #
9
+ # # Friend of a Friend (FOAF) vocabulary
10
+ # #
11
+ # # The Friend of a Friend (FOAF) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language.
8
12
  # class FOAF < RDF::StrictVocabulary
13
+ # # An agent (eg. person, group, software or physical artifact).
14
+ # # @return [RDF::Vocabulary::Term]
15
+ # attr_reader :Agent
16
+ #
17
+ # # A document.
18
+ # # @return [RDF::Vocabulary::Term]
19
+ # attr_reader :Document
20
+ #
21
+ # # A class of Agents.
22
+ # # @return [RDF::Vocabulary::Term]
23
+ # attr_reader :Group
24
+ #
25
+ # # An image.
26
+ # # @return [RDF::Vocabulary::Term]
27
+ # attr_reader :Image
28
+ #
29
+ # # A foaf:LabelProperty is any RDF property with texual values that serve as labels.
30
+ # # @return [RDF::Vocabulary::Term]
31
+ # attr_reader :LabelProperty
32
+ #
33
+ # # An online account.
34
+ # # @return [RDF::Vocabulary::Term]
35
+ # attr_reader :OnlineAccount
36
+ #
37
+ # # An online chat account.
38
+ # # @return [RDF::Vocabulary::Term]
39
+ # attr_reader :OnlineChatAccount
40
+ #
41
+ # # An online e-commerce account.
42
+ # # @return [RDF::Vocabulary::Term]
43
+ # attr_reader :OnlineEcommerceAccount
44
+ #
45
+ # # An online gaming account.
46
+ # # @return [RDF::Vocabulary::Term]
47
+ # attr_reader :OnlineGamingAccount
48
+ #
49
+ # # An organization.
50
+ # # @return [RDF::Vocabulary::Term]
51
+ # attr_reader :Organization
52
+ #
53
+ # # A person.
54
+ # # @return [RDF::Vocabulary::Term]
55
+ # attr_reader :Person
56
+ #
57
+ # # A personal profile RDF document.
58
+ # # @return [RDF::Vocabulary::Term]
59
+ # attr_reader :PersonalProfileDocument
60
+ #
61
+ # # A project (a collective endeavour of some kind).
62
+ # # @return [RDF::Vocabulary::Term]
63
+ # attr_reader :Project
64
+ #
65
+ # # Indicates an account held by this agent.
66
+ # # @return [RDF::Vocabulary::Term]
67
+ # attr_reader :account
68
+ #
69
+ # # Indicates the name (identifier) associated with this online account.
70
+ # # @return [RDF::Vocabulary::Term]
71
+ # attr_reader :accountName
72
+ #
73
+ # # Indicates a homepage of the service provide for this online account.
74
+ # # @return [RDF::Vocabulary::Term]
75
+ # attr_reader :accountServiceHomepage
76
+ #
77
+ # # The age in years of some agent.
78
+ # # @return [RDF::Vocabulary::Term]
79
+ # attr_reader :age
80
+ #
81
+ # # An AIM chat ID
82
+ # # @return [RDF::Vocabulary::Term]
83
+ # attr_reader :aimChatID
84
+ #
85
+ # # A location that something is based near, for some broadly human notion of near.
86
+ # # @return [RDF::Vocabulary::Term]
87
+ # attr_reader :based_near
88
+ #
89
+ # # The birthday of this Agent, represented in mm-dd string form, eg. '12-31'.
90
+ # # @return [RDF::Vocabulary::Term]
91
+ # attr_reader :birthday
92
+ #
93
+ # # A current project this person works on.
94
+ # # @return [RDF::Vocabulary::Term]
95
+ # attr_reader :currentProject
96
+ #
97
+ # # A depiction of some thing.
98
+ # # @return [RDF::Vocabulary::Term]
99
+ # attr_reader :depiction
100
+ #
101
+ # # A thing depicted in this representation.
102
+ # # @return [RDF::Vocabulary::Term]
103
+ # attr_reader :depicts
104
+ #
105
+ # # A checksum for the DNA of some thing. Joke.
106
+ # # @return [RDF::Vocabulary::Term]
107
+ # attr_reader :dnaChecksum
108
+ #
109
+ # # The family name of some person.
110
+ # # @return [RDF::Vocabulary::Term]
111
+ # attr_reader :familyName
112
+ #
113
+ # # The family name of some person.
114
+ # # @return [RDF::Vocabulary::Term]
115
+ # attr_reader :family_name
116
+ #
117
+ # # The first name of a person.
118
+ # # @return [RDF::Vocabulary::Term]
119
+ # attr_reader :firstName
120
+ #
121
+ # # The underlying or 'focal' entity associated with some SKOS-described concept.
122
+ # # @return [RDF::Vocabulary::Term]
123
+ # attr_reader :focus
124
+ #
125
+ # # An organization funding a project or person.
126
+ # # @return [RDF::Vocabulary::Term]
127
+ # attr_reader :fundedBy
128
+ #
129
+ # # A textual geekcode for this person, see http://www.geekcode.com/geek.html
130
+ # # @return [RDF::Vocabulary::Term]
131
+ # attr_reader :geekcode
132
+ #
133
+ # # The gender of this Agent (typically but not necessarily 'male' or 'female').
134
+ # # @return [RDF::Vocabulary::Term]
135
+ # attr_reader :gender
136
+ #
137
+ # # The given name of some person.
138
+ # # @return [RDF::Vocabulary::Term]
139
+ # attr_reader :givenName
140
+ #
141
+ # # The given name of some person.
142
+ # # @return [RDF::Vocabulary::Term]
143
+ # attr_reader :givenname
144
+ #
145
+ # # Indicates an account held by this agent.
146
+ # # @return [RDF::Vocabulary::Term]
147
+ # attr_reader :holdsAccount
148
+ #
149
+ # # A homepage for some thing.
150
+ # # @return [RDF::Vocabulary::Term]
151
+ # attr_reader :homepage
152
+ #
153
+ # # An ICQ chat ID
154
+ # # @return [RDF::Vocabulary::Term]
155
+ # attr_reader :icqChatID
156
+ #
157
+ # # An image that can be used to represent some thing (ie. those depictions which are particularly representative of something, eg. one's photo on a homepage).
158
+ # # @return [RDF::Vocabulary::Term]
159
+ # attr_reader :img
160
+ #
161
+ # # A page about a topic of interest to this person.
162
+ # # @return [RDF::Vocabulary::Term]
163
+ # attr_reader :interest
164
+ #
165
+ # # A document that this thing is the primary topic of.
166
+ # # @return [RDF::Vocabulary::Term]
167
+ # attr_reader :isPrimaryTopicOf
168
+ #
169
+ # # A jabber ID for something.
170
+ # # @return [RDF::Vocabulary::Term]
171
+ # attr_reader :jabberID
172
+ #
173
+ # # A person known by this person (indicating some level of reciprocated interaction between the parties).
174
+ # # @return [RDF::Vocabulary::Term]
175
+ # attr_reader :knows
176
+ #
177
+ # # The last name of a person.
178
+ # # @return [RDF::Vocabulary::Term]
179
+ # attr_reader :lastName
180
+ #
181
+ # # A logo representing some thing.
182
+ # # @return [RDF::Vocabulary::Term]
183
+ # attr_reader :logo
184
+ #
185
+ # # Something that was made by this agent.
186
+ # # @return [RDF::Vocabulary::Term]
187
+ # attr_reader :made
188
+ #
189
+ # # An agent that made this thing.
190
+ # # @return [RDF::Vocabulary::Term]
191
+ # attr_reader :maker
192
+ #
193
+ # # A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox. This is a 'static inverse functional property', in that there is (across time and change) at most one individual that ever has any particular value for foaf:mbox.
194
+ # # @return [RDF::Vocabulary::Term]
195
+ # attr_reader :mbox
196
+ #
197
+ # # The sha1sum of the URI of an Internet mailbox associated with exactly one owner, the first owner of the mailbox.
198
+ # # @return [RDF::Vocabulary::Term]
199
+ # attr_reader :mbox_sha1sum
200
+ #
201
+ # # Indicates a member of a Group
202
+ # # @return [RDF::Vocabulary::Term]
203
+ # attr_reader :member
204
+ #
205
+ # # Indicates the class of individuals that are a member of a Group
206
+ # # @return [RDF::Vocabulary::Term]
207
+ # attr_reader :membershipClass
208
+ #
209
+ # # An MSN chat ID
210
+ # # @return [RDF::Vocabulary::Term]
211
+ # attr_reader :msnChatID
212
+ #
213
+ # # A Myers Briggs (MBTI) personality classification.
214
+ # # @return [RDF::Vocabulary::Term]
215
+ # attr_reader :myersBriggs
216
+ #
217
+ # # A name for some thing.
218
+ # # @return [RDF::Vocabulary::Term]
219
+ # attr_reader :name
220
+ #
221
+ # # A short informal nickname characterising an agent (includes login identifiers, IRC and other chat nicknames).
222
+ # # @return [RDF::Vocabulary::Term]
223
+ # attr_reader :nick
224
+ #
225
+ # # An OpenID for an Agent.
226
+ # # @return [RDF::Vocabulary::Term]
227
+ # attr_reader :openid
228
+ #
229
+ # # A page or document about this thing.
230
+ # # @return [RDF::Vocabulary::Term]
231
+ # attr_reader :page
232
+ #
233
+ # # A project this person has previously worked on.
234
+ # # @return [RDF::Vocabulary::Term]
235
+ # attr_reader :pastProject
236
+ #
237
+ # # A phone, specified using fully qualified tel: URI scheme (refs: http://www.w3.org/Addressing/schemes.html#tel).
238
+ # # @return [RDF::Vocabulary::Term]
239
+ # attr_reader :phone
240
+ #
241
+ # # A .plan comment, in the tradition of finger and '.plan' files.
242
+ # # @return [RDF::Vocabulary::Term]
243
+ # attr_reader :plan
244
+ #
245
+ # # The primary topic of some page or document.
246
+ # # @return [RDF::Vocabulary::Term]
247
+ # attr_reader :primaryTopic
248
+ #
249
+ # # A link to the publications of this person.
250
+ # # @return [RDF::Vocabulary::Term]
251
+ # attr_reader :publications
252
+ #
253
+ # # A homepage of a school attended by the person.
254
+ # # @return [RDF::Vocabulary::Term]
255
+ # attr_reader :schoolHomepage
256
+ #
257
+ # # A sha1sum hash, in hex.
258
+ # # @return [RDF::Vocabulary::Term]
259
+ # attr_reader :sha1
260
+ #
261
+ # # A Skype ID
262
+ # # @return [RDF::Vocabulary::Term]
263
+ # attr_reader :skypeID
264
+ #
265
+ # # A string expressing what the user is happy for the general public (normally) to know about their current activity.
266
+ # # @return [RDF::Vocabulary::Term]
267
+ # attr_reader :status
268
+ #
269
+ # # The surname of some person.
270
+ # # @return [RDF::Vocabulary::Term]
271
+ # attr_reader :surname
272
+ #
273
+ # # A theme.
274
+ # # @return [RDF::Vocabulary::Term]
275
+ # attr_reader :theme
276
+ #
277
+ # # A derived thumbnail image.
278
+ # # @return [RDF::Vocabulary::Term]
279
+ # attr_reader :thumbnail
280
+ #
281
+ # # A tipjar document for this agent, describing means for payment and reward.
282
+ # # @return [RDF::Vocabulary::Term]
283
+ # attr_reader :tipjar
284
+ #
285
+ # # Title (Mr, Mrs, Ms, Dr. etc)
286
+ # # @return [RDF::Vocabulary::Term]
287
+ # attr_reader :title
288
+ #
289
+ # # A topic of some page or document.
290
+ # # @return [RDF::Vocabulary::Term]
291
+ # attr_reader :topic
292
+ #
293
+ # # A thing of interest to this person.
294
+ # # @return [RDF::Vocabulary::Term]
295
+ # attr_reader :topic_interest
296
+ #
297
+ # # A weblog of some thing (whether person, group, company etc.).
298
+ # # @return [RDF::Vocabulary::Term]
299
+ # attr_reader :weblog
300
+ #
301
+ # # A work info homepage of some person; a page about their work for some organization.
302
+ # # @return [RDF::Vocabulary::Term]
303
+ # attr_reader :workInfoHomepage
304
+ #
305
+ # # A workplace homepage of some person; the homepage of an organization they work for.
306
+ # # @return [RDF::Vocabulary::Term]
307
+ # attr_reader :workplaceHomepage
308
+ #
309
+ # # A Yahoo chat ID
310
+ # # @return [RDF::Vocabulary::Term]
311
+ # attr_reader :yahooChatID
312
+ #
9
313
  # end
10
- class FOAF < RDF::StrictVocabulary("http://xmlns.com/foaf/0.1/")
314
+ FOAF = Class.new(RDF::StrictVocabulary("http://xmlns.com/foaf/0.1/")) do
11
315
 
12
316
  # Ontology definition
13
317
  ontology :"http://xmlns.com/foaf/0.1/",
@@ -17,69 +321,69 @@ module RDF::Vocab
17
321
 
18
322
  # Class definitions
19
323
  term :Agent,
20
- comment: %(An agent \(eg. person, group, software or physical artifact\).).freeze,
324
+ comment: "An agent (eg. person, group, software or physical artifact).".freeze,
21
325
  equivalentClass: "dc:Agent".freeze,
22
326
  isDefinedBy: "foaf:".freeze,
23
327
  label: "Agent".freeze,
24
328
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
25
329
  "vs:term_status": "stable".freeze
26
330
  term :Document,
27
- comment: %(A document.).freeze,
331
+ comment: "A document.".freeze,
28
332
  isDefinedBy: "foaf:".freeze,
29
333
  label: "Document".freeze,
30
334
  "owl:disjointWith": ["foaf:Organization".freeze, "foaf:Project".freeze],
31
335
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
32
336
  "vs:term_status": "testing".freeze
33
337
  term :Group,
34
- comment: %(A class of Agents.).freeze,
338
+ comment: "A class of Agents.".freeze,
35
339
  isDefinedBy: "foaf:".freeze,
36
340
  label: "Group".freeze,
37
341
  subClassOf: "foaf:Agent".freeze,
38
342
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
39
343
  "vs:term_status": "stable".freeze
40
344
  term :Image,
41
- comment: %(An image.).freeze,
345
+ comment: "An image.".freeze,
42
346
  isDefinedBy: "foaf:".freeze,
43
347
  label: "Image".freeze,
44
348
  subClassOf: "foaf:Document".freeze,
45
349
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
46
350
  "vs:term_status": "testing".freeze
47
351
  term :LabelProperty,
48
- comment: %(A foaf:LabelProperty is any RDF property with texual values that serve as labels.).freeze,
352
+ comment: "A foaf:LabelProperty is any RDF property with texual values that serve as labels.".freeze,
49
353
  isDefinedBy: "foaf:".freeze,
50
354
  label: "Label Property".freeze,
51
355
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
52
356
  "vs:term_status": "unstable".freeze
53
357
  term :OnlineAccount,
54
- comment: %(An online account.).freeze,
358
+ comment: "An online account.".freeze,
55
359
  isDefinedBy: "foaf:".freeze,
56
360
  label: "Online Account".freeze,
57
361
  subClassOf: "owl:Thing".freeze,
58
362
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
59
363
  "vs:term_status": "testing".freeze
60
364
  term :OnlineChatAccount,
61
- comment: %(An online chat account.).freeze,
365
+ comment: "An online chat account.".freeze,
62
366
  isDefinedBy: "foaf:".freeze,
63
367
  label: "Online Chat Account".freeze,
64
368
  subClassOf: "foaf:OnlineAccount".freeze,
65
369
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
66
370
  "vs:term_status": "unstable".freeze
67
371
  term :OnlineEcommerceAccount,
68
- comment: %(An online e-commerce account.).freeze,
372
+ comment: "An online e-commerce account.".freeze,
69
373
  isDefinedBy: "foaf:".freeze,
70
374
  label: "Online E-commerce Account".freeze,
71
375
  subClassOf: "foaf:OnlineAccount".freeze,
72
376
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
73
377
  "vs:term_status": "unstable".freeze
74
378
  term :OnlineGamingAccount,
75
- comment: %(An online gaming account.).freeze,
379
+ comment: "An online gaming account.".freeze,
76
380
  isDefinedBy: "foaf:".freeze,
77
381
  label: "Online Gaming Account".freeze,
78
382
  subClassOf: "foaf:OnlineAccount".freeze,
79
383
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
80
384
  "vs:term_status": "unstable".freeze
81
385
  term :Organization,
82
- comment: %(An organization.).freeze,
386
+ comment: "An organization.".freeze,
83
387
  isDefinedBy: "foaf:".freeze,
84
388
  label: "Organization".freeze,
85
389
  "owl:disjointWith": ["foaf:Document".freeze, "foaf:Person".freeze],
@@ -87,7 +391,7 @@ module RDF::Vocab
87
391
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
88
392
  "vs:term_status": "stable".freeze
89
393
  term :Person,
90
- comment: %(A person.).freeze,
394
+ comment: "A person.".freeze,
91
395
  isDefinedBy: "foaf:".freeze,
92
396
  label: "Person".freeze,
93
397
  "owl:disjointWith": ["foaf:Organization".freeze, "foaf:Project".freeze],
@@ -95,14 +399,14 @@ module RDF::Vocab
95
399
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
96
400
  "vs:term_status": "stable".freeze
97
401
  term :PersonalProfileDocument,
98
- comment: %(A personal profile RDF document.).freeze,
402
+ comment: "A personal profile RDF document.".freeze,
99
403
  isDefinedBy: "foaf:".freeze,
100
404
  label: "PersonalProfileDocument".freeze,
101
405
  subClassOf: "foaf:Document".freeze,
102
406
  type: ["owl:Class".freeze, "rdfs:Class".freeze],
103
407
  "vs:term_status": "testing".freeze
104
408
  term :Project,
105
- comment: %(A project \(a collective endeavour of some kind\).).freeze,
409
+ comment: "A project (a collective endeavour of some kind).".freeze,
106
410
  isDefinedBy: "foaf:".freeze,
107
411
  label: "Project".freeze,
108
412
  "owl:disjointWith": ["foaf:Document".freeze, "foaf:Person".freeze],
@@ -111,7 +415,7 @@ module RDF::Vocab
111
415
 
112
416
  # Property definitions
113
417
  property :account,
114
- comment: %(Indicates an account held by this agent.).freeze,
418
+ comment: "Indicates an account held by this agent.".freeze,
115
419
  domain: "foaf:Agent".freeze,
116
420
  isDefinedBy: "foaf:".freeze,
117
421
  label: "account".freeze,
@@ -119,7 +423,7 @@ module RDF::Vocab
119
423
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
120
424
  "vs:term_status": "testing".freeze
121
425
  property :accountName,
122
- comment: %(Indicates the name \(identifier\) associated with this online account.).freeze,
426
+ comment: "Indicates the name (identifier) associated with this online account.".freeze,
123
427
  domain: "foaf:OnlineAccount".freeze,
124
428
  isDefinedBy: "foaf:".freeze,
125
429
  label: "account name".freeze,
@@ -127,7 +431,7 @@ module RDF::Vocab
127
431
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
128
432
  "vs:term_status": "testing".freeze
129
433
  property :accountServiceHomepage,
130
- comment: %(Indicates a homepage of the service provide for this online account.).freeze,
434
+ comment: "Indicates a homepage of the service provide for this online account.".freeze,
131
435
  domain: "foaf:OnlineAccount".freeze,
132
436
  isDefinedBy: "foaf:".freeze,
133
437
  label: "account service homepage".freeze,
@@ -135,7 +439,7 @@ module RDF::Vocab
135
439
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
136
440
  "vs:term_status": "testing".freeze
137
441
  property :age,
138
- comment: %(The age in years of some agent.).freeze,
442
+ comment: "The age in years of some agent.".freeze,
139
443
  domain: "foaf:Agent".freeze,
140
444
  isDefinedBy: "foaf:".freeze,
141
445
  label: "age".freeze,
@@ -143,7 +447,7 @@ module RDF::Vocab
143
447
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze],
144
448
  "vs:term_status": "unstable".freeze
145
449
  property :aimChatID,
146
- comment: %(An AIM chat ID).freeze,
450
+ comment: "An AIM chat ID".freeze,
147
451
  domain: "foaf:Agent".freeze,
148
452
  isDefinedBy: "foaf:".freeze,
149
453
  label: "AIM chat ID".freeze,
@@ -152,7 +456,7 @@ module RDF::Vocab
152
456
  type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze],
153
457
  "vs:term_status": "testing".freeze
154
458
  property :based_near,
155
- comment: %(A location that something is based near, for some broadly human notion of near.).freeze,
459
+ comment: "A location that something is based near, for some broadly human notion of near.".freeze,
156
460
  domain: "geo:SpatialThing".freeze,
157
461
  isDefinedBy: "foaf:".freeze,
158
462
  label: "based near".freeze,
@@ -160,7 +464,7 @@ module RDF::Vocab
160
464
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
161
465
  "vs:term_status": "testing".freeze
162
466
  property :birthday,
163
- comment: %(The birthday of this Agent, represented in mm-dd string form, eg. '12-31'.).freeze,
467
+ comment: "The birthday of this Agent, represented in mm-dd string form, eg. '12-31'.".freeze,
164
468
  domain: "foaf:Agent".freeze,
165
469
  isDefinedBy: "foaf:".freeze,
166
470
  label: "birthday".freeze,
@@ -168,7 +472,7 @@ module RDF::Vocab
168
472
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze],
169
473
  "vs:term_status": "unstable".freeze
170
474
  property :currentProject,
171
- comment: %(A current project this person works on.).freeze,
475
+ comment: "A current project this person works on.".freeze,
172
476
  domain: "foaf:Person".freeze,
173
477
  isDefinedBy: "foaf:".freeze,
174
478
  label: "current project".freeze,
@@ -176,7 +480,7 @@ module RDF::Vocab
176
480
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
177
481
  "vs:term_status": "testing".freeze
178
482
  property :depiction,
179
- comment: %(A depiction of some thing.).freeze,
483
+ comment: "A depiction of some thing.".freeze,
180
484
  domain: "owl:Thing".freeze,
181
485
  inverseOf: "foaf:depicts".freeze,
182
486
  isDefinedBy: "foaf:".freeze,
@@ -185,7 +489,7 @@ module RDF::Vocab
185
489
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
186
490
  "vs:term_status": "testing".freeze
187
491
  property :depicts,
188
- comment: %(A thing depicted in this representation.).freeze,
492
+ comment: "A thing depicted in this representation.".freeze,
189
493
  domain: "foaf:Image".freeze,
190
494
  inverseOf: "foaf:depiction".freeze,
191
495
  isDefinedBy: "foaf:".freeze,
@@ -194,14 +498,14 @@ module RDF::Vocab
194
498
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
195
499
  "vs:term_status": "testing".freeze
196
500
  property :dnaChecksum,
197
- comment: %(A checksum for the DNA of some thing. Joke.).freeze,
501
+ comment: "A checksum for the DNA of some thing. Joke.".freeze,
198
502
  isDefinedBy: "foaf:".freeze,
199
503
  label: "DNA checksum".freeze,
200
504
  range: "rdfs:Literal".freeze,
201
505
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
202
506
  "vs:term_status": "archaic".freeze
203
507
  property :familyName,
204
- comment: %(The family name of some person.).freeze,
508
+ comment: "The family name of some person.".freeze,
205
509
  domain: "foaf:Person".freeze,
206
510
  isDefinedBy: "foaf:".freeze,
207
511
  label: "familyName".freeze,
@@ -209,7 +513,7 @@ module RDF::Vocab
209
513
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
210
514
  "vs:term_status": "testing".freeze
211
515
  property :family_name,
212
- comment: %(The family name of some person.).freeze,
516
+ comment: "The family name of some person.".freeze,
213
517
  domain: "foaf:Person".freeze,
214
518
  isDefinedBy: "foaf:".freeze,
215
519
  label: "family_name".freeze,
@@ -217,7 +521,7 @@ module RDF::Vocab
217
521
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
218
522
  "vs:term_status": "archaic".freeze
219
523
  property :firstName,
220
- comment: %(The first name of a person.).freeze,
524
+ comment: "The first name of a person.".freeze,
221
525
  domain: "foaf:Person".freeze,
222
526
  isDefinedBy: "foaf:".freeze,
223
527
  label: "firstName".freeze,
@@ -225,7 +529,7 @@ module RDF::Vocab
225
529
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
226
530
  "vs:term_status": "testing".freeze
227
531
  property :focus,
228
- comment: %(The underlying or 'focal' entity associated with some SKOS-described concept.).freeze,
532
+ comment: "The underlying or 'focal' entity associated with some SKOS-described concept.".freeze,
229
533
  domain: "skos:Concept".freeze,
230
534
  isDefinedBy: "foaf:".freeze,
231
535
  label: "focus".freeze,
@@ -233,7 +537,7 @@ module RDF::Vocab
233
537
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
234
538
  "vs:term_status": "testing".freeze
235
539
  property :fundedBy,
236
- comment: %(An organization funding a project or person.).freeze,
540
+ comment: "An organization funding a project or person.".freeze,
237
541
  domain: "owl:Thing".freeze,
238
542
  isDefinedBy: "foaf:".freeze,
239
543
  label: "funded by".freeze,
@@ -241,7 +545,7 @@ module RDF::Vocab
241
545
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
242
546
  "vs:term_status": "archaic".freeze
243
547
  property :geekcode,
244
- comment: %(A textual geekcode for this person, see http://www.geekcode.com/geek.html).freeze,
548
+ comment: "A textual geekcode for this person, see http://www.geekcode.com/geek.html".freeze,
245
549
  domain: "foaf:Person".freeze,
246
550
  isDefinedBy: "foaf:".freeze,
247
551
  label: "geekcode".freeze,
@@ -249,7 +553,7 @@ module RDF::Vocab
249
553
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
250
554
  "vs:term_status": "archaic".freeze
251
555
  property :gender,
252
- comment: %(The gender of this Agent \(typically but not necessarily 'male' or 'female'\).).freeze,
556
+ comment: "The gender of this Agent (typically but not necessarily 'male' or 'female').".freeze,
253
557
  domain: "foaf:Agent".freeze,
254
558
  isDefinedBy: "foaf:".freeze,
255
559
  label: "gender".freeze,
@@ -257,19 +561,19 @@ module RDF::Vocab
257
561
  type: ["owl:DatatypeProperty".freeze, "owl:FunctionalProperty".freeze, "rdf:Property".freeze],
258
562
  "vs:term_status": "testing".freeze
259
563
  property :givenName,
260
- comment: %(The given name of some person.).freeze,
564
+ comment: "The given name of some person.".freeze,
261
565
  isDefinedBy: "foaf:".freeze,
262
566
  label: "Given name".freeze,
263
567
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
264
568
  "vs:term_status": "testing".freeze
265
569
  property :givenname,
266
- comment: %(The given name of some person.).freeze,
570
+ comment: "The given name of some person.".freeze,
267
571
  isDefinedBy: "foaf:".freeze,
268
572
  label: "Given name".freeze,
269
573
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
270
574
  "vs:term_status": "archaic".freeze
271
575
  property :holdsAccount,
272
- comment: %(Indicates an account held by this agent.).freeze,
576
+ comment: "Indicates an account held by this agent.".freeze,
273
577
  domain: "foaf:Agent".freeze,
274
578
  isDefinedBy: "foaf:".freeze,
275
579
  label: "account".freeze,
@@ -277,7 +581,7 @@ module RDF::Vocab
277
581
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
278
582
  "vs:term_status": "archaic".freeze
279
583
  property :homepage,
280
- comment: %(A homepage for some thing.).freeze,
584
+ comment: "A homepage for some thing.".freeze,
281
585
  domain: "owl:Thing".freeze,
282
586
  isDefinedBy: "foaf:".freeze,
283
587
  label: "homepage".freeze,
@@ -286,7 +590,7 @@ module RDF::Vocab
286
590
  type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze],
287
591
  "vs:term_status": "stable".freeze
288
592
  property :icqChatID,
289
- comment: %(An ICQ chat ID).freeze,
593
+ comment: "An ICQ chat ID".freeze,
290
594
  domain: "foaf:Agent".freeze,
291
595
  isDefinedBy: "foaf:".freeze,
292
596
  label: "ICQ chat ID".freeze,
@@ -295,7 +599,7 @@ module RDF::Vocab
295
599
  type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze],
296
600
  "vs:term_status": "testing".freeze
297
601
  property :img,
298
- comment: %(An image that can be used to represent some thing \(ie. those depictions which are particularly representative of something, eg. one's photo on a homepage\).).freeze,
602
+ comment: "An image that can be used to represent some thing (ie. those depictions which are particularly representative of something, eg. one's photo on a homepage).".freeze,
299
603
  domain: "foaf:Person".freeze,
300
604
  isDefinedBy: "foaf:".freeze,
301
605
  label: "image".freeze,
@@ -304,7 +608,7 @@ module RDF::Vocab
304
608
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
305
609
  "vs:term_status": "testing".freeze
306
610
  property :interest,
307
- comment: %(A page about a topic of interest to this person.).freeze,
611
+ comment: "A page about a topic of interest to this person.".freeze,
308
612
  domain: "foaf:Agent".freeze,
309
613
  isDefinedBy: "foaf:".freeze,
310
614
  label: "interest".freeze,
@@ -312,7 +616,7 @@ module RDF::Vocab
312
616
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
313
617
  "vs:term_status": "testing".freeze
314
618
  property :isPrimaryTopicOf,
315
- comment: %(A document that this thing is the primary topic of.).freeze,
619
+ comment: "A document that this thing is the primary topic of.".freeze,
316
620
  domain: "owl:Thing".freeze,
317
621
  inverseOf: "foaf:primaryTopic".freeze,
318
622
  isDefinedBy: "foaf:".freeze,
@@ -322,7 +626,7 @@ module RDF::Vocab
322
626
  type: ["owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze],
323
627
  "vs:term_status": "stable".freeze
324
628
  property :jabberID,
325
- comment: %(A jabber ID for something.).freeze,
629
+ comment: "A jabber ID for something.".freeze,
326
630
  domain: "foaf:Agent".freeze,
327
631
  isDefinedBy: "foaf:".freeze,
328
632
  label: "jabber ID".freeze,
@@ -330,7 +634,7 @@ module RDF::Vocab
330
634
  type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze],
331
635
  "vs:term_status": "testing".freeze
332
636
  property :knows,
333
- comment: %(A person known by this person \(indicating some level of reciprocated interaction between the parties\).).freeze,
637
+ comment: "A person known by this person (indicating some level of reciprocated interaction between the parties).".freeze,
334
638
  domain: "foaf:Person".freeze,
335
639
  isDefinedBy: "foaf:".freeze,
336
640
  label: "knows".freeze,
@@ -338,7 +642,7 @@ module RDF::Vocab
338
642
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
339
643
  "vs:term_status": "stable".freeze
340
644
  property :lastName,
341
- comment: %(The last name of a person.).freeze,
645
+ comment: "The last name of a person.".freeze,
342
646
  domain: "foaf:Person".freeze,
343
647
  isDefinedBy: "foaf:".freeze,
344
648
  label: "lastName".freeze,
@@ -346,7 +650,7 @@ module RDF::Vocab
346
650
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
347
651
  "vs:term_status": "testing".freeze
348
652
  property :logo,
349
- comment: %(A logo representing some thing.).freeze,
653
+ comment: "A logo representing some thing.".freeze,
350
654
  domain: "owl:Thing".freeze,
351
655
  isDefinedBy: "foaf:".freeze,
352
656
  label: "logo".freeze,
@@ -354,7 +658,7 @@ module RDF::Vocab
354
658
  type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze],
355
659
  "vs:term_status": "testing".freeze
356
660
  property :made,
357
- comment: %(Something that was made by this agent.).freeze,
661
+ comment: "Something that was made by this agent.".freeze,
358
662
  domain: "foaf:Agent".freeze,
359
663
  inverseOf: "foaf:maker".freeze,
360
664
  isDefinedBy: "foaf:".freeze,
@@ -363,7 +667,7 @@ module RDF::Vocab
363
667
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
364
668
  "vs:term_status": "stable".freeze
365
669
  property :maker,
366
- comment: %(An agent that made this thing.).freeze,
670
+ comment: "An agent that made this thing.".freeze,
367
671
  domain: "owl:Thing".freeze,
368
672
  equivalentProperty: "dc:creator".freeze,
369
673
  inverseOf: "foaf:made".freeze,
@@ -373,7 +677,7 @@ module RDF::Vocab
373
677
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
374
678
  "vs:term_status": "stable".freeze
375
679
  property :mbox,
376
- comment: %(A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox. This is a 'static inverse functional property', in that there is \(across time and change\) at most one individual that ever has any particular value for foaf:mbox.).freeze,
680
+ comment: "A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox. This is a 'static inverse functional property', in that there is (across time and change) at most one individual that ever has any particular value for foaf:mbox.".freeze,
377
681
  domain: "foaf:Agent".freeze,
378
682
  isDefinedBy: "foaf:".freeze,
379
683
  label: "personal mailbox".freeze,
@@ -381,7 +685,7 @@ module RDF::Vocab
381
685
  type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze],
382
686
  "vs:term_status": "stable".freeze
383
687
  property :mbox_sha1sum,
384
- comment: %(The sha1sum of the URI of an Internet mailbox associated with exactly one owner, the first owner of the mailbox.).freeze,
688
+ comment: "The sha1sum of the URI of an Internet mailbox associated with exactly one owner, the first owner of the mailbox.".freeze,
385
689
  domain: "foaf:Agent".freeze,
386
690
  isDefinedBy: "foaf:".freeze,
387
691
  label: "sha1sum of a personal mailbox URI name".freeze,
@@ -389,7 +693,7 @@ module RDF::Vocab
389
693
  type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze],
390
694
  "vs:term_status": "testing".freeze
391
695
  property :member,
392
- comment: %(Indicates a member of a Group).freeze,
696
+ comment: "Indicates a member of a Group".freeze,
393
697
  domain: "foaf:Group".freeze,
394
698
  isDefinedBy: "foaf:".freeze,
395
699
  label: "member".freeze,
@@ -397,13 +701,13 @@ module RDF::Vocab
397
701
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
398
702
  "vs:term_status": "stable".freeze
399
703
  property :membershipClass,
400
- comment: %(Indicates the class of individuals that are a member of a Group).freeze,
704
+ comment: "Indicates the class of individuals that are a member of a Group".freeze,
401
705
  isDefinedBy: "foaf:".freeze,
402
706
  label: "membershipClass".freeze,
403
707
  type: ["owl:AnnotationProperty".freeze, "rdf:Property".freeze],
404
708
  "vs:term_status": "unstable".freeze
405
709
  property :msnChatID,
406
- comment: %(An MSN chat ID).freeze,
710
+ comment: "An MSN chat ID".freeze,
407
711
  domain: "foaf:Agent".freeze,
408
712
  isDefinedBy: "foaf:".freeze,
409
713
  label: "MSN chat ID".freeze,
@@ -412,7 +716,7 @@ module RDF::Vocab
412
716
  type: ["owl:DatatypeProperty".freeze, "owl:InverseFunctionalProperty".freeze, "rdf:Property".freeze],
413
717
  "vs:term_status": "testing".freeze
414
718
  property :myersBriggs,
415
- comment: %(A Myers Briggs \(MBTI\) personality classification.).freeze,
719
+ comment: "A Myers Briggs (MBTI) personality classification.".freeze,
416
720
  domain: "foaf:Person".freeze,
417
721
  isDefinedBy: "foaf:".freeze,
418
722
  label: "myersBriggs".freeze,
@@ -420,7 +724,7 @@ module RDF::Vocab
420
724
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
421
725
  "vs:term_status": "testing".freeze
422
726
  property :name,
423
- comment: %(A name for some thing.).freeze,
727
+ comment: "A name for some thing.".freeze,
424
728
  domain: "owl:Thing".freeze,
425
729
  isDefinedBy: "foaf:".freeze,
426
730
  label: "name".freeze,
@@ -429,13 +733,13 @@ module RDF::Vocab
429
733
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
430
734
  "vs:term_status": "testing".freeze
431
735
  property :nick,
432
- comment: %(A short informal nickname characterising an agent \(includes login identifiers, IRC and other chat nicknames\).).freeze,
736
+ comment: "A short informal nickname characterising an agent (includes login identifiers, IRC and other chat nicknames).".freeze,
433
737
  isDefinedBy: "foaf:".freeze,
434
738
  label: "nickname".freeze,
435
739
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
436
740
  "vs:term_status": "testing".freeze
437
741
  property :openid,
438
- comment: %(An OpenID for an Agent.).freeze,
742
+ comment: "An OpenID for an Agent.".freeze,
439
743
  domain: "foaf:Agent".freeze,
440
744
  isDefinedBy: "foaf:".freeze,
441
745
  label: "openid".freeze,
@@ -444,7 +748,7 @@ module RDF::Vocab
444
748
  type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze],
445
749
  "vs:term_status": "testing".freeze
446
750
  property :page,
447
- comment: %(A page or document about this thing.).freeze,
751
+ comment: "A page or document about this thing.".freeze,
448
752
  domain: "owl:Thing".freeze,
449
753
  inverseOf: "foaf:topic".freeze,
450
754
  isDefinedBy: "foaf:".freeze,
@@ -453,7 +757,7 @@ module RDF::Vocab
453
757
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
454
758
  "vs:term_status": "testing".freeze
455
759
  property :pastProject,
456
- comment: %(A project this person has previously worked on.).freeze,
760
+ comment: "A project this person has previously worked on.".freeze,
457
761
  domain: "foaf:Person".freeze,
458
762
  isDefinedBy: "foaf:".freeze,
459
763
  label: "past project".freeze,
@@ -461,13 +765,13 @@ module RDF::Vocab
461
765
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
462
766
  "vs:term_status": "testing".freeze
463
767
  property :phone,
464
- comment: %(A phone, specified using fully qualified tel: URI scheme \(refs: http://www.w3.org/Addressing/schemes.html#tel\).).freeze,
768
+ comment: "A phone, specified using fully qualified tel: URI scheme (refs: http://www.w3.org/Addressing/schemes.html#tel).".freeze,
465
769
  isDefinedBy: "foaf:".freeze,
466
770
  label: "phone".freeze,
467
771
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
468
772
  "vs:term_status": "testing".freeze
469
773
  property :plan,
470
- comment: %(A .plan comment, in the tradition of finger and '.plan' files.).freeze,
774
+ comment: "A .plan comment, in the tradition of finger and '.plan' files.".freeze,
471
775
  domain: "foaf:Person".freeze,
472
776
  isDefinedBy: "foaf:".freeze,
473
777
  label: "plan".freeze,
@@ -475,7 +779,7 @@ module RDF::Vocab
475
779
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
476
780
  "vs:term_status": "testing".freeze
477
781
  property :primaryTopic,
478
- comment: %(The primary topic of some page or document.).freeze,
782
+ comment: "The primary topic of some page or document.".freeze,
479
783
  domain: "foaf:Document".freeze,
480
784
  inverseOf: "foaf:isPrimaryTopicOf".freeze,
481
785
  isDefinedBy: "foaf:".freeze,
@@ -484,7 +788,7 @@ module RDF::Vocab
484
788
  type: ["owl:FunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze],
485
789
  "vs:term_status": "stable".freeze
486
790
  property :publications,
487
- comment: %(A link to the publications of this person.).freeze,
791
+ comment: "A link to the publications of this person.".freeze,
488
792
  domain: "foaf:Person".freeze,
489
793
  isDefinedBy: "foaf:".freeze,
490
794
  label: "publications".freeze,
@@ -492,7 +796,7 @@ module RDF::Vocab
492
796
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
493
797
  "vs:term_status": "testing".freeze
494
798
  property :schoolHomepage,
495
- comment: %(A homepage of a school attended by the person.).freeze,
799
+ comment: "A homepage of a school attended by the person.".freeze,
496
800
  domain: "foaf:Person".freeze,
497
801
  isDefinedBy: "foaf:".freeze,
498
802
  label: "schoolHomepage".freeze,
@@ -500,14 +804,14 @@ module RDF::Vocab
500
804
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
501
805
  "vs:term_status": "testing".freeze
502
806
  property :sha1,
503
- comment: %(A sha1sum hash, in hex.).freeze,
807
+ comment: "A sha1sum hash, in hex.".freeze,
504
808
  domain: "foaf:Document".freeze,
505
809
  isDefinedBy: "foaf:".freeze,
506
810
  label: "sha1sum (hex)".freeze,
507
811
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
508
812
  "vs:term_status": "unstable".freeze
509
813
  property :skypeID,
510
- comment: %(A Skype ID).freeze,
814
+ comment: "A Skype ID".freeze,
511
815
  domain: "foaf:Agent".freeze,
512
816
  isDefinedBy: "foaf:".freeze,
513
817
  label: "Skype ID".freeze,
@@ -516,7 +820,7 @@ module RDF::Vocab
516
820
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
517
821
  "vs:term_status": "testing".freeze
518
822
  property :status,
519
- comment: %(A string expressing what the user is happy for the general public \(normally\) to know about their current activity.).freeze,
823
+ comment: "A string expressing what the user is happy for the general public (normally) to know about their current activity.".freeze,
520
824
  domain: "foaf:Agent".freeze,
521
825
  isDefinedBy: "foaf:".freeze,
522
826
  label: "status".freeze,
@@ -524,7 +828,7 @@ module RDF::Vocab
524
828
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
525
829
  "vs:term_status": "unstable".freeze
526
830
  property :surname,
527
- comment: %(The surname of some person.).freeze,
831
+ comment: "The surname of some person.".freeze,
528
832
  domain: "foaf:Person".freeze,
529
833
  isDefinedBy: "foaf:".freeze,
530
834
  label: "Surname".freeze,
@@ -532,7 +836,7 @@ module RDF::Vocab
532
836
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
533
837
  "vs:term_status": "archaic".freeze
534
838
  property :theme,
535
- comment: %(A theme.).freeze,
839
+ comment: "A theme.".freeze,
536
840
  domain: "owl:Thing".freeze,
537
841
  isDefinedBy: "foaf:".freeze,
538
842
  label: "theme".freeze,
@@ -540,7 +844,7 @@ module RDF::Vocab
540
844
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
541
845
  "vs:term_status": "archaic".freeze
542
846
  property :thumbnail,
543
- comment: %(A derived thumbnail image.).freeze,
847
+ comment: "A derived thumbnail image.".freeze,
544
848
  domain: "foaf:Image".freeze,
545
849
  isDefinedBy: "foaf:".freeze,
546
850
  label: "thumbnail".freeze,
@@ -548,7 +852,7 @@ module RDF::Vocab
548
852
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
549
853
  "vs:term_status": "testing".freeze
550
854
  property :tipjar,
551
- comment: %(A tipjar document for this agent, describing means for payment and reward.).freeze,
855
+ comment: "A tipjar document for this agent, describing means for payment and reward.".freeze,
552
856
  domain: "foaf:Agent".freeze,
553
857
  isDefinedBy: "foaf:".freeze,
554
858
  label: "tipjar".freeze,
@@ -557,13 +861,13 @@ module RDF::Vocab
557
861
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
558
862
  "vs:term_status": "testing".freeze
559
863
  property :title,
560
- comment: %(Title \(Mr, Mrs, Ms, Dr. etc\)).freeze,
864
+ comment: "Title (Mr, Mrs, Ms, Dr. etc)".freeze,
561
865
  isDefinedBy: "foaf:".freeze,
562
866
  label: "title".freeze,
563
867
  type: ["owl:DatatypeProperty".freeze, "rdf:Property".freeze],
564
868
  "vs:term_status": "testing".freeze
565
869
  property :topic,
566
- comment: %(A topic of some page or document.).freeze,
870
+ comment: "A topic of some page or document.".freeze,
567
871
  domain: "foaf:Document".freeze,
568
872
  inverseOf: "foaf:page".freeze,
569
873
  isDefinedBy: "foaf:".freeze,
@@ -572,7 +876,7 @@ module RDF::Vocab
572
876
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
573
877
  "vs:term_status": "testing".freeze
574
878
  property :topic_interest,
575
- comment: %(A thing of interest to this person.).freeze,
879
+ comment: "A thing of interest to this person.".freeze,
576
880
  domain: "foaf:Agent".freeze,
577
881
  isDefinedBy: "foaf:".freeze,
578
882
  label: "topic_interest".freeze,
@@ -580,7 +884,7 @@ module RDF::Vocab
580
884
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
581
885
  "vs:term_status": "testing".freeze
582
886
  property :weblog,
583
- comment: %(A weblog of some thing \(whether person, group, company etc.\).).freeze,
887
+ comment: "A weblog of some thing (whether person, group, company etc.).".freeze,
584
888
  domain: "foaf:Agent".freeze,
585
889
  isDefinedBy: "foaf:".freeze,
586
890
  label: "weblog".freeze,
@@ -589,7 +893,7 @@ module RDF::Vocab
589
893
  type: ["owl:InverseFunctionalProperty".freeze, "owl:ObjectProperty".freeze, "rdf:Property".freeze],
590
894
  "vs:term_status": "testing".freeze
591
895
  property :workInfoHomepage,
592
- comment: %(A work info homepage of some person; a page about their work for some organization.).freeze,
896
+ comment: "A work info homepage of some person; a page about their work for some organization.".freeze,
593
897
  domain: "foaf:Person".freeze,
594
898
  isDefinedBy: "foaf:".freeze,
595
899
  label: "work info homepage".freeze,
@@ -597,7 +901,7 @@ module RDF::Vocab
597
901
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
598
902
  "vs:term_status": "testing".freeze
599
903
  property :workplaceHomepage,
600
- comment: %(A workplace homepage of some person; the homepage of an organization they work for.).freeze,
904
+ comment: "A workplace homepage of some person; the homepage of an organization they work for.".freeze,
601
905
  domain: "foaf:Person".freeze,
602
906
  isDefinedBy: "foaf:".freeze,
603
907
  label: "workplace homepage".freeze,
@@ -605,7 +909,7 @@ module RDF::Vocab
605
909
  type: ["owl:ObjectProperty".freeze, "rdf:Property".freeze],
606
910
  "vs:term_status": "testing".freeze
607
911
  property :yahooChatID,
608
- comment: %(A Yahoo chat ID).freeze,
912
+ comment: "A Yahoo chat ID".freeze,
609
913
  domain: "foaf:Agent".freeze,
610
914
  isDefinedBy: "foaf:".freeze,
611
915
  label: "Yahoo chat ID".freeze,