rdf-vocab 3.1.2 → 3.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +69 -45
  4. data/VERSION +1 -1
  5. data/lib/rdf/vocab.rb +60 -40
  6. data/lib/rdf/vocab/acl.rb +104 -61
  7. data/lib/rdf/vocab/as.rb +556 -91
  8. data/lib/rdf/vocab/bf2.rb +1791 -475
  9. data/lib/rdf/vocab/bibframe.rb +1 -2
  10. data/lib/rdf/vocab/bibo.rb +616 -124
  11. data/lib/rdf/vocab/cc.rb +125 -48
  12. data/lib/rdf/vocab/cert.rb +68 -1
  13. data/lib/rdf/vocab/cnt.rb +79 -1
  14. data/lib/rdf/vocab/crm.rb +1543 -776
  15. data/lib/rdf/vocab/datacite.rb +1 -1
  16. data/lib/rdf/vocab/dbo.rb +10463 -1
  17. data/lib/rdf/vocab/dc.rb +485 -99
  18. data/lib/rdf/vocab/dc11.rb +93 -31
  19. data/lib/rdf/vocab/dcat.rb +236 -88
  20. data/lib/rdf/vocab/dcmitype.rb +63 -13
  21. data/lib/rdf/vocab/disco.rb +286 -59
  22. data/lib/rdf/vocab/doap.rb +175 -1
  23. data/lib/rdf/vocab/dwc.rb +941 -189
  24. data/lib/rdf/vocab/earl.rb +324 -0
  25. data/lib/rdf/vocab/ebucore.rb +7255 -2184
  26. data/lib/rdf/vocab/edm.rb +202 -76
  27. data/lib/rdf/vocab/exif.rb +650 -1
  28. data/lib/rdf/vocab/extensions.rb +257 -203
  29. data/lib/rdf/vocab/fcrepo4.rb +398 -22
  30. data/lib/rdf/vocab/foaf.rb +380 -76
  31. data/lib/rdf/vocab/geo.rb +47 -110
  32. data/lib/rdf/vocab/geojson.rb +82 -17
  33. data/lib/rdf/vocab/geonames.rb +1508 -1351
  34. data/lib/rdf/vocab/gr.rb +861 -565
  35. data/lib/rdf/vocab/gs1.rb +1597 -1
  36. data/lib/rdf/vocab/ht.rb +204 -41
  37. data/lib/rdf/vocab/hydra.rb +335 -60
  38. data/lib/rdf/vocab/iana.rb +301 -114
  39. data/lib/rdf/vocab/ical.rb +534 -121
  40. data/lib/rdf/vocab/identifiers.rb +459 -499
  41. data/lib/rdf/vocab/iiif.rb +161 -26
  42. data/lib/rdf/vocab/jsonld.rb +179 -53
  43. data/lib/rdf/vocab/ldp.rb +130 -1
  44. data/lib/rdf/vocab/lrmi.rb +85 -17
  45. data/lib/rdf/vocab/ma.rb +460 -80
  46. data/lib/rdf/vocab/mads.rb +610 -22
  47. data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
  48. data/lib/rdf/vocab/mo.rb +1115 -540
  49. data/lib/rdf/vocab/mods.rb +635 -124
  50. data/lib/rdf/vocab/nfo.rb +1 -1
  51. data/lib/rdf/vocab/oa.rb +343 -73
  52. data/lib/rdf/vocab/og.rb +100 -1
  53. data/lib/rdf/vocab/ogc.rb +42 -9
  54. data/lib/rdf/vocab/ore.rb +69 -14
  55. data/lib/rdf/vocab/org.rb +235 -47
  56. data/lib/rdf/vocab/pcdm.rb +58 -34
  57. data/lib/rdf/vocab/pplan.rb +21 -136
  58. data/lib/rdf/vocab/premis.rb +1171 -779
  59. data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
  60. data/lib/rdf/vocab/prov.rb +700 -107
  61. data/lib/rdf/vocab/ptr.rb +172 -37
  62. data/lib/rdf/vocab/rightsstatements.rb +17 -13
  63. data/lib/rdf/vocab/rsa.rb +30 -1
  64. data/lib/rdf/vocab/rss.rb +52 -11
  65. data/lib/rdf/vocab/schema.rb +14970 -3993
  66. data/lib/rdf/vocab/schemas.rb +27066 -0
  67. data/lib/rdf/vocab/sd.rb +372 -0
  68. data/lib/rdf/vocab/sh.rb +919 -184
  69. data/lib/rdf/vocab/sioc.rb +498 -98
  70. data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
  71. data/lib/rdf/vocab/sioctypes.rb +434 -0
  72. data/lib/rdf/vocab/skos.rb +160 -44
  73. data/lib/rdf/vocab/skosxl.rb +40 -11
  74. data/lib/rdf/vocab/v.rb +323 -37
  75. data/lib/rdf/vocab/vcard.rb +625 -119
  76. data/lib/rdf/vocab/vmd.rb +323 -37
  77. data/lib/rdf/vocab/void.rb +147 -27
  78. data/lib/rdf/vocab/vs.rb +23 -5
  79. data/lib/rdf/vocab/wdrs.rb +112 -23
  80. data/lib/rdf/vocab/wot.rb +96 -19
  81. data/lib/rdf/vocab/xhtml.rb +2 -1
  82. data/lib/rdf/vocab/xhv.rb +422 -201
  83. data/lib/rdf/vocab/xkos.rb +156 -7
  84. data/spec/extensions_spec.rb +68 -0
  85. data/spec/vocab_spec.rb +10 -0
  86. metadata +20 -11
  87. data/lib/rdf/vocab/sioct.rb +0 -277
@@ -5,13 +5,520 @@ require 'rdf'
5
5
  module RDF::Vocab
6
6
  # @!parse
7
7
  # # Vocabulary for <http://www.w3.org/2006/vcard/ns#>
8
+ # #
9
+ # # Ontology for vCard
10
+ # #
11
+ # # Ontology for vCard based on RFC6350
12
+ # # @version Final
8
13
  # class VCARD < RDF::StrictVocabulary
14
+ # # @return [RDF::Vocabulary::Term]
15
+ # attr_reader :Acquaintance
16
+ #
17
+ # # To specify the components of the delivery address for the object
18
+ # # @return [RDF::Vocabulary::Term]
19
+ # attr_reader :Address
20
+ #
21
+ # # @return [RDF::Vocabulary::Term]
22
+ # attr_reader :Agent
23
+ #
24
+ # # This class is deprecated
25
+ # # @return [RDF::Vocabulary::Term]
26
+ # attr_reader :BBS
27
+ #
28
+ # # This class is deprecated
29
+ # # @return [RDF::Vocabulary::Term]
30
+ # attr_reader :Car
31
+ #
32
+ # # Also called mobile telephone
33
+ # # @return [RDF::Vocabulary::Term]
34
+ # attr_reader :Cell
35
+ #
36
+ # # @return [RDF::Vocabulary::Term]
37
+ # attr_reader :Child
38
+ #
39
+ # # @return [RDF::Vocabulary::Term]
40
+ # attr_reader :Colleague
41
+ #
42
+ # # @return [RDF::Vocabulary::Term]
43
+ # attr_reader :Contact
44
+ #
45
+ # # @return [RDF::Vocabulary::Term]
46
+ # attr_reader :Coresident
47
+ #
48
+ # # @return [RDF::Vocabulary::Term]
49
+ # attr_reader :Coworker
50
+ #
51
+ # # @return [RDF::Vocabulary::Term]
52
+ # attr_reader :Crush
53
+ #
54
+ # # @return [RDF::Vocabulary::Term]
55
+ # attr_reader :Date
56
+ #
57
+ # # This class is deprecated
58
+ # # @return [RDF::Vocabulary::Term]
59
+ # attr_reader :Dom
60
+ #
61
+ # # To specify the electronic mail address for communication with the object the vCard represents. Use the hasEmail object property.
62
+ # # @return [RDF::Vocabulary::Term]
63
+ # attr_reader :Email
64
+ #
65
+ # # @return [RDF::Vocabulary::Term]
66
+ # attr_reader :Emergency
67
+ #
68
+ # # @return [RDF::Vocabulary::Term]
69
+ # attr_reader :Fax
70
+ #
71
+ # # @return [RDF::Vocabulary::Term]
72
+ # attr_reader :Female
73
+ #
74
+ # # @return [RDF::Vocabulary::Term]
75
+ # attr_reader :Friend
76
+ #
77
+ # # Used for gender codes. The URI of the gender code must be used as the value for Gender.
78
+ # # @return [RDF::Vocabulary::Term]
79
+ # attr_reader :Gender
80
+ #
81
+ # # Object representing a group of persons or entities. A group object will usually contain hasMember properties to specify the members of the group.
82
+ # # @return [RDF::Vocabulary::Term]
83
+ # attr_reader :Group
84
+ #
85
+ # # This implies that the property is related to an individual's personal life
86
+ # # @return [RDF::Vocabulary::Term]
87
+ # attr_reader :Home
88
+ #
89
+ # # This class is deprecated
90
+ # # @return [RDF::Vocabulary::Term]
91
+ # attr_reader :ISDN
92
+ #
93
+ # # An object representing a single person or entity
94
+ # # @return [RDF::Vocabulary::Term]
95
+ # attr_reader :Individual
96
+ #
97
+ # # This class is deprecated
98
+ # # @return [RDF::Vocabulary::Term]
99
+ # attr_reader :Internet
100
+ #
101
+ # # This class is deprecated
102
+ # # @return [RDF::Vocabulary::Term]
103
+ # attr_reader :Intl
104
+ #
105
+ # # @return [RDF::Vocabulary::Term]
106
+ # attr_reader :Kin
107
+ #
108
+ # # The parent class for all objects
109
+ # # @return [RDF::Vocabulary::Term]
110
+ # attr_reader :Kind
111
+ #
112
+ # # This class is deprecated
113
+ # # @return [RDF::Vocabulary::Term]
114
+ # attr_reader :Label
115
+ #
116
+ # # An object representing a named geographical place
117
+ # # @return [RDF::Vocabulary::Term]
118
+ # attr_reader :Location
119
+ #
120
+ # # @return [RDF::Vocabulary::Term]
121
+ # attr_reader :Male
122
+ #
123
+ # # @return [RDF::Vocabulary::Term]
124
+ # attr_reader :Me
125
+ #
126
+ # # @return [RDF::Vocabulary::Term]
127
+ # attr_reader :Met
128
+ #
129
+ # # This class is deprecated
130
+ # # @return [RDF::Vocabulary::Term]
131
+ # attr_reader :Modem
132
+ #
133
+ # # This class is deprecated
134
+ # # @return [RDF::Vocabulary::Term]
135
+ # attr_reader :Msg
136
+ #
137
+ # # @return [RDF::Vocabulary::Term]
138
+ # attr_reader :Muse
139
+ #
140
+ # # To specify the components of the name of the object
141
+ # # @return [RDF::Vocabulary::Term]
142
+ # attr_reader :Name
143
+ #
144
+ # # @return [RDF::Vocabulary::Term]
145
+ # attr_reader :Neighbor
146
+ #
147
+ # # @return [RDF::Vocabulary::Term]
148
+ # attr_reader :None
149
+ #
150
+ # # An object representing an organization. An organization is a single entity, and might represent a business or government, a department or division within a business or government, a club, an association, or the like.
151
+ # # @return [RDF::Vocabulary::Term]
152
+ # attr_reader :Organization
153
+ #
154
+ # # @return [RDF::Vocabulary::Term]
155
+ # attr_reader :Other
156
+ #
157
+ # # This class is deprecated
158
+ # # @return [RDF::Vocabulary::Term]
159
+ # attr_reader :PCS
160
+ #
161
+ # # @return [RDF::Vocabulary::Term]
162
+ # attr_reader :Pager
163
+ #
164
+ # # This class is deprecated
165
+ # # @return [RDF::Vocabulary::Term]
166
+ # attr_reader :Parcel
167
+ #
168
+ # # @return [RDF::Vocabulary::Term]
169
+ # attr_reader :Parent
170
+ #
171
+ # # This class is deprecated
172
+ # # @return [RDF::Vocabulary::Term]
173
+ # attr_reader :Postal
174
+ #
175
+ # # This class is deprecated
176
+ # # @return [RDF::Vocabulary::Term]
177
+ # attr_reader :Pref
178
+ #
179
+ # # Used for relation type codes. The URI of the relation type code must be used as the value for the Relation Type.
180
+ # # @return [RDF::Vocabulary::Term]
181
+ # attr_reader :RelatedType
182
+ #
183
+ # # @return [RDF::Vocabulary::Term]
184
+ # attr_reader :Sibling
185
+ #
186
+ # # @return [RDF::Vocabulary::Term]
187
+ # attr_reader :Spouse
188
+ #
189
+ # # @return [RDF::Vocabulary::Term]
190
+ # attr_reader :Sweetheart
191
+ #
192
+ # # This class is deprecated. Use the hasTelephone object property.
193
+ # # @return [RDF::Vocabulary::Term]
194
+ # attr_reader :Tel
195
+ #
196
+ # # Used for telephone type codes. The URI of the telephone type code must be used as the value for the Telephone Type.
197
+ # # @return [RDF::Vocabulary::Term]
198
+ # attr_reader :TelephoneType
199
+ #
200
+ # # Also called sms telephone
201
+ # # @return [RDF::Vocabulary::Term]
202
+ # attr_reader :Text
203
+ #
204
+ # # @return [RDF::Vocabulary::Term]
205
+ # attr_reader :TextPhone
206
+ #
207
+ # # Used for type codes. The URI of the type code must be used as the value for Type.
208
+ # # @return [RDF::Vocabulary::Term]
209
+ # attr_reader :Type
210
+ #
211
+ # # @return [RDF::Vocabulary::Term]
212
+ # attr_reader :Unknown
213
+ #
214
+ # # The vCard class is equivalent to the new Kind class, which is the parent for the four explicit types of vCards (Individual, Organization, Location, Group)
215
+ # # @return [RDF::Vocabulary::Term]
216
+ # attr_reader :VCard
217
+ #
218
+ # # @return [RDF::Vocabulary::Term]
219
+ # attr_reader :Video
220
+ #
221
+ # # @return [RDF::Vocabulary::Term]
222
+ # attr_reader :Voice
223
+ #
224
+ # # This implies that the property is related to an individual's work place
225
+ # # @return [RDF::Vocabulary::Term]
226
+ # attr_reader :Work
227
+ #
228
+ # # This class is deprecated
229
+ # # @return [RDF::Vocabulary::Term]
230
+ # attr_reader :X400
231
+ #
232
+ # # This object property has been mapped
233
+ # # @return [RDF::Vocabulary::Term]
234
+ # attr_reader :adr
235
+ #
236
+ # # This object property has been deprecated
237
+ # # @return [RDF::Vocabulary::Term]
238
+ # attr_reader :agent
239
+ #
240
+ # # The date of marriage, or equivalent, of the object
241
+ # # @return [RDF::Vocabulary::Term]
242
+ # attr_reader :anniversary
243
+ #
244
+ # # To specify the birth date of the object
245
+ # # @return [RDF::Vocabulary::Term]
246
+ # attr_reader :bday
247
+ #
248
+ # # The category information about the object, also known as tags
249
+ # # @return [RDF::Vocabulary::Term]
250
+ # attr_reader :category
251
+ #
252
+ # # This data property has been deprecated
253
+ # # @return [RDF::Vocabulary::Term]
254
+ # attr_reader :class
255
+ #
256
+ # # This object property has been mapped
257
+ # # @return [RDF::Vocabulary::Term]
258
+ # attr_reader :email
259
+ #
260
+ # # The formatted text corresponding to the name of the object
261
+ # # @return [RDF::Vocabulary::Term]
262
+ # attr_reader :fn
263
+ #
264
+ # # This object property has been mapped
265
+ # # @return [RDF::Vocabulary::Term]
266
+ # attr_reader :geo
267
+ #
268
+ # # Used to support property parameters for the additional name data property
269
+ # # @return [RDF::Vocabulary::Term]
270
+ # attr_reader :hasAdditionalName
271
+ #
272
+ # # To specify the components of the delivery address for the object
273
+ # # @return [RDF::Vocabulary::Term]
274
+ # attr_reader :hasAddress
275
+ #
276
+ # # To specify the busy time associated with the object. (Was called FBURL in RFC6350)
277
+ # # @return [RDF::Vocabulary::Term]
278
+ # attr_reader :hasCalendarBusy
279
+ #
280
+ # # To specify the calendar associated with the object. (Was called CALURI in RFC6350)
281
+ # # @return [RDF::Vocabulary::Term]
282
+ # attr_reader :hasCalendarLink
283
+ #
284
+ # # To specify the calendar user address to which a scheduling request be sent for the object. (Was called CALADRURI in RFC6350)
285
+ # # @return [RDF::Vocabulary::Term]
286
+ # attr_reader :hasCalendarRequest
287
+ #
288
+ # # Used to support property parameters for the category data property
289
+ # # @return [RDF::Vocabulary::Term]
290
+ # attr_reader :hasCategory
291
+ #
292
+ # # Used to support property parameters for the country name data property
293
+ # # @return [RDF::Vocabulary::Term]
294
+ # attr_reader :hasCountryName
295
+ #
296
+ # # To specify the electronic mail address for communication with the object
297
+ # # @return [RDF::Vocabulary::Term]
298
+ # attr_reader :hasEmail
299
+ #
300
+ # # Used to support property parameters for the formatted name data property
301
+ # # @return [RDF::Vocabulary::Term]
302
+ # attr_reader :hasFN
303
+ #
304
+ # # Used to support property parameters for the family name data property
305
+ # # @return [RDF::Vocabulary::Term]
306
+ # attr_reader :hasFamilyName
307
+ #
308
+ # # To specify the sex or gender identity of the object. URIs are recommended to enable interoperable sex and gender codes to be used.
309
+ # # @return [RDF::Vocabulary::Term]
310
+ # attr_reader :hasGender
311
+ #
312
+ # # To specify information related to the global positioning of the object. May also be used as a property parameter.
313
+ # # @return [RDF::Vocabulary::Term]
314
+ # attr_reader :hasGeo
315
+ #
316
+ # # Used to support property parameters for the given name data property
317
+ # # @return [RDF::Vocabulary::Term]
318
+ # attr_reader :hasGivenName
319
+ #
320
+ # # Used to support property parameters for the honorific prefix data property
321
+ # # @return [RDF::Vocabulary::Term]
322
+ # attr_reader :hasHonorificPrefix
323
+ #
324
+ # # Used to support property parameters for the honorific suffix data property
325
+ # # @return [RDF::Vocabulary::Term]
326
+ # attr_reader :hasHonorificSuffix
327
+ #
328
+ # # To specify the instant messaging and presence protocol communications with the object. (Was called IMPP in RFC6350)
329
+ # # @return [RDF::Vocabulary::Term]
330
+ # attr_reader :hasInstantMessage
331
+ #
332
+ # # To specify a public key or authentication certificate associated with the object
333
+ # # @return [RDF::Vocabulary::Term]
334
+ # attr_reader :hasKey
335
+ #
336
+ # # Used to support property parameters for the language data property
337
+ # # @return [RDF::Vocabulary::Term]
338
+ # attr_reader :hasLanguage
339
+ #
340
+ # # Used to support property parameters for the locality data property
341
+ # # @return [RDF::Vocabulary::Term]
342
+ # attr_reader :hasLocality
343
+ #
344
+ # # To specify a graphic image of a logo associated with the object
345
+ # # @return [RDF::Vocabulary::Term]
346
+ # attr_reader :hasLogo
347
+ #
348
+ # # To include a member in the group this object represents. (This property can only be used by Group individuals)
349
+ # # @return [RDF::Vocabulary::Term]
350
+ # attr_reader :hasMember
351
+ #
352
+ # # To specify the components of the name of the object
353
+ # # @return [RDF::Vocabulary::Term]
354
+ # attr_reader :hasName
355
+ #
356
+ # # Used to support property parameters for the nickname data property
357
+ # # @return [RDF::Vocabulary::Term]
358
+ # attr_reader :hasNickname
359
+ #
360
+ # # Used to support property parameters for the note data property
361
+ # # @return [RDF::Vocabulary::Term]
362
+ # attr_reader :hasNote
363
+ #
364
+ # # Used to support property parameters for the organization name data property
365
+ # # @return [RDF::Vocabulary::Term]
366
+ # attr_reader :hasOrganizationName
367
+ #
368
+ # # Used to support property parameters for the organization unit name data property
369
+ # # @return [RDF::Vocabulary::Term]
370
+ # attr_reader :hasOrganizationUnit
371
+ #
372
+ # # To specify an image or photograph information that annotates some aspect of the object
373
+ # # @return [RDF::Vocabulary::Term]
374
+ # attr_reader :hasPhoto
375
+ #
376
+ # # Used to support property parameters for the postal code data property
377
+ # # @return [RDF::Vocabulary::Term]
378
+ # attr_reader :hasPostalCode
379
+ #
380
+ # # Used to support property parameters for the region data property
381
+ # # @return [RDF::Vocabulary::Term]
382
+ # attr_reader :hasRegion
383
+ #
384
+ # # To specify a relationship between another entity and the entity represented by this object
385
+ # # @return [RDF::Vocabulary::Term]
386
+ # attr_reader :hasRelated
387
+ #
388
+ # # Used to support property parameters for the role data property
389
+ # # @return [RDF::Vocabulary::Term]
390
+ # attr_reader :hasRole
391
+ #
392
+ # # To specify a digital sound content information that annotates some aspect of the object
393
+ # # @return [RDF::Vocabulary::Term]
394
+ # attr_reader :hasSound
395
+ #
396
+ # # To identify the source of directory information of the object
397
+ # # @return [RDF::Vocabulary::Term]
398
+ # attr_reader :hasSource
399
+ #
400
+ # # Used to support property parameters for the street address data property
401
+ # # @return [RDF::Vocabulary::Term]
402
+ # attr_reader :hasStreetAddress
403
+ #
404
+ # # To specify the telephone number for telephony communication with the object
405
+ # # @return [RDF::Vocabulary::Term]
406
+ # attr_reader :hasTelephone
407
+ #
408
+ # # Used to support property parameters for the title data property
409
+ # # @return [RDF::Vocabulary::Term]
410
+ # attr_reader :hasTitle
411
+ #
412
+ # # To specify a value that represents a globally unique identifier corresponding to the object
413
+ # # @return [RDF::Vocabulary::Term]
414
+ # attr_reader :hasUID
415
+ #
416
+ # # To specify a uniform resource locator associated with the object
417
+ # # @return [RDF::Vocabulary::Term]
418
+ # attr_reader :hasURL
419
+ #
420
+ # # Used to indicate the resource value of an object property that requires property parameters
421
+ # # @return [RDF::Vocabulary::Term]
422
+ # attr_reader :hasValue
423
+ #
424
+ # # This object property has been mapped
425
+ # # @return [RDF::Vocabulary::Term]
426
+ # attr_reader :key
427
+ #
428
+ # # This data property has been deprecated
429
+ # # @return [RDF::Vocabulary::Term]
430
+ # attr_reader :label
431
+ #
432
+ # # To specify the language that may be used for contacting the object. May also be used as a property parameter.
433
+ # # @return [RDF::Vocabulary::Term]
434
+ # attr_reader :language
435
+ #
436
+ # # This data property has been deprecated. See hasGeo
437
+ # # @return [RDF::Vocabulary::Term]
438
+ # attr_reader :latitude
439
+ #
440
+ # # The locality (e.g. city or town) associated with the address of the object
441
+ # # @return [RDF::Vocabulary::Term]
442
+ # attr_reader :locality
443
+ #
444
+ # # This object property has been mapped
445
+ # # @return [RDF::Vocabulary::Term]
446
+ # attr_reader :logo
447
+ #
448
+ # # This data property has been deprecated. See hasGeo
449
+ # # @return [RDF::Vocabulary::Term]
450
+ # attr_reader :longitude
451
+ #
452
+ # # This data property has been deprecated
453
+ # # @return [RDF::Vocabulary::Term]
454
+ # attr_reader :mailer
455
+ #
456
+ # # This object property has been mapped
457
+ # # @return [RDF::Vocabulary::Term]
458
+ # attr_reader :n
459
+ #
460
+ # # The nick name associated with the object
461
+ # # @return [RDF::Vocabulary::Term]
462
+ # attr_reader :nickname
463
+ #
464
+ # # A note associated with the object
465
+ # # @return [RDF::Vocabulary::Term]
466
+ # attr_reader :note
467
+ #
468
+ # # This object property has been mapped. Use the organization-name data property.
469
+ # # @return [RDF::Vocabulary::Term]
470
+ # attr_reader :org
471
+ #
472
+ # # This object property has been mapped
473
+ # # @return [RDF::Vocabulary::Term]
474
+ # attr_reader :photo
475
+ #
476
+ # # To specify the identifier for the product that created the object
477
+ # # @return [RDF::Vocabulary::Term]
478
+ # attr_reader :prodid
479
+ #
480
+ # # The region (e.g. state or province) associated with the address of the object
481
+ # # @return [RDF::Vocabulary::Term]
482
+ # attr_reader :region
483
+ #
484
+ # # To specify revision information about the object
485
+ # # @return [RDF::Vocabulary::Term]
486
+ # attr_reader :rev
487
+ #
488
+ # # To specify the function or part played in a particular situation by the object
489
+ # # @return [RDF::Vocabulary::Term]
490
+ # attr_reader :role
491
+ #
492
+ # # This object property has been mapped
493
+ # # @return [RDF::Vocabulary::Term]
494
+ # attr_reader :sound
495
+ #
496
+ # # This object property has been mapped
497
+ # # @return [RDF::Vocabulary::Term]
498
+ # attr_reader :tel
499
+ #
500
+ # # To specify the position or job of the object
501
+ # # @return [RDF::Vocabulary::Term]
502
+ # attr_reader :title
503
+ #
504
+ # # To indicate time zone information that is specific to the object. May also be used as a property parameter.
505
+ # # @return [RDF::Vocabulary::Term]
506
+ # attr_reader :tz
507
+ #
508
+ # # This object property has been mapped
509
+ # # @return [RDF::Vocabulary::Term]
510
+ # attr_reader :url
511
+ #
512
+ # # Used to indicate the literal value of a data property that requires property parameters
513
+ # # @return [RDF::Vocabulary::Term]
514
+ # attr_reader :value
515
+ #
9
516
  # end
10
- class VCARD < RDF::StrictVocabulary("http://www.w3.org/2006/vcard/ns#")
517
+ VCARD = Class.new(RDF::StrictVocabulary("http://www.w3.org/2006/vcard/ns#")) do
11
518
 
12
519
  # Ontology definition
13
520
  ontology :"http://www.w3.org/2006/vcard/ns#",
14
- comment: %(Ontology for vCard based on RFC6350).freeze,
521
+ comment: "Ontology for vCard based on RFC6350".freeze,
15
522
  label: "Ontology for vCard".freeze,
16
523
  "owl:versionInfo": "Final".freeze,
17
524
  type: "owl:Ontology".freeze
@@ -23,7 +530,7 @@ module RDF::Vocab
23
530
  subClassOf: "vcard:RelatedType".freeze,
24
531
  type: "owl:Class".freeze
25
532
  term :Address,
26
- comment: %(To specify the components of the delivery address for the object).freeze,
533
+ comment: "To specify the components of the delivery address for the object".freeze,
27
534
  equivalentClass: term(
28
535
  type: "owl:Class".freeze,
29
536
  unionOf: list(term(
@@ -92,21 +599,21 @@ module RDF::Vocab
92
599
  subClassOf: "vcard:RelatedType".freeze,
93
600
  type: "owl:Class".freeze
94
601
  term :BBS,
95
- comment: %(This class is deprecated).freeze,
602
+ comment: "This class is deprecated".freeze,
96
603
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
97
604
  label: "BBS".freeze,
98
605
  "owl:deprecated": "true".freeze,
99
606
  subClassOf: "vcard:TelephoneType".freeze,
100
607
  type: "owl:Class".freeze
101
608
  term :Car,
102
- comment: %(This class is deprecated).freeze,
609
+ comment: "This class is deprecated".freeze,
103
610
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
104
611
  label: "Car".freeze,
105
612
  "owl:deprecated": "true".freeze,
106
613
  subClassOf: "vcard:TelephoneType".freeze,
107
614
  type: "owl:Class".freeze
108
615
  term :Cell,
109
- comment: %(Also called mobile telephone).freeze,
616
+ comment: "Also called mobile telephone".freeze,
110
617
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
111
618
  label: "Cell".freeze,
112
619
  subClassOf: "vcard:TelephoneType".freeze,
@@ -147,14 +654,14 @@ module RDF::Vocab
147
654
  subClassOf: "vcard:RelatedType".freeze,
148
655
  type: "owl:Class".freeze
149
656
  term :Dom,
150
- comment: %(This class is deprecated).freeze,
657
+ comment: "This class is deprecated".freeze,
151
658
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
152
659
  label: "Dom".freeze,
153
660
  "owl:deprecated": "true".freeze,
154
661
  subClassOf: "vcard:Type".freeze,
155
662
  type: "owl:Class".freeze
156
663
  term :Email,
157
- comment: %(To specify the electronic mail address for communication with the object the vCard represents. Use the hasEmail object property.).freeze,
664
+ comment: "To specify the electronic mail address for communication with the object the vCard represents. Use the hasEmail object property.".freeze,
158
665
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
159
666
  label: "Email".freeze,
160
667
  "owl:deprecated": "true".freeze,
@@ -180,12 +687,12 @@ module RDF::Vocab
180
687
  subClassOf: "vcard:RelatedType".freeze,
181
688
  type: "owl:Class".freeze
182
689
  term :Gender,
183
- comment: %(Used for gender codes. The URI of the gender code must be used as the value for Gender.).freeze,
690
+ comment: "Used for gender codes. The URI of the gender code must be used as the value for Gender.".freeze,
184
691
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
185
692
  label: "Gender".freeze,
186
693
  type: "owl:Class".freeze
187
694
  term :Group,
188
- comment: %(Object representing a group of persons or entities. A group object will usually contain hasMember properties to specify the members of the group.).freeze,
695
+ comment: "Object representing a group of persons or entities. A group object will usually contain hasMember properties to specify the members of the group.".freeze,
189
696
  equivalentClass: term(
190
697
  intersectionOf: list(term(
191
698
  onProperty: "vcard:hasMember".freeze,
@@ -205,34 +712,34 @@ module RDF::Vocab
205
712
  subClassOf: "vcard:Kind".freeze,
206
713
  type: "owl:Class".freeze
207
714
  term :Home,
208
- comment: %(This implies that the property is related to an individual's personal life).freeze,
715
+ comment: "This implies that the property is related to an individual's personal life".freeze,
209
716
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
210
717
  label: "Home".freeze,
211
718
  subClassOf: "vcard:Type".freeze,
212
719
  type: "owl:Class".freeze
213
720
  term :ISDN,
214
- comment: %(This class is deprecated).freeze,
721
+ comment: "This class is deprecated".freeze,
215
722
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
216
723
  label: "ISDN".freeze,
217
724
  "owl:deprecated": "true".freeze,
218
725
  subClassOf: "vcard:Type".freeze,
219
726
  type: "owl:Class".freeze
220
727
  term :Individual,
221
- comment: %(An object representing a single person or entity).freeze,
728
+ comment: "An object representing a single person or entity".freeze,
222
729
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
223
730
  label: "Individual".freeze,
224
731
  "owl:disjointWith": ["vcard:Location".freeze, "vcard:Organization".freeze],
225
732
  subClassOf: "vcard:Kind".freeze,
226
733
  type: "owl:Class".freeze
227
734
  term :Internet,
228
- comment: %(This class is deprecated).freeze,
735
+ comment: "This class is deprecated".freeze,
229
736
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
230
737
  label: "Internet".freeze,
231
738
  "owl:deprecated": "true".freeze,
232
739
  subClassOf: "vcard:Type".freeze,
233
740
  type: "owl:Class".freeze
234
741
  term :Intl,
235
- comment: %(This class is deprecated).freeze,
742
+ comment: "This class is deprecated".freeze,
236
743
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
237
744
  label: "Intl".freeze,
238
745
  "owl:deprecated": "true".freeze,
@@ -244,7 +751,7 @@ module RDF::Vocab
244
751
  subClassOf: "vcard:RelatedType".freeze,
245
752
  type: "owl:Class".freeze
246
753
  term :Kind,
247
- comment: %(The parent class for all objects).freeze,
754
+ comment: "The parent class for all objects".freeze,
248
755
  equivalentClass: ["vcard:VCard".freeze, term(
249
756
  onProperty: "vcard:fn".freeze,
250
757
  "owl:minQualifiedCardinality": "1".freeze,
@@ -255,14 +762,14 @@ module RDF::Vocab
255
762
  label: "Kind".freeze,
256
763
  type: "owl:Class".freeze
257
764
  term :Label,
258
- comment: %(This class is deprecated).freeze,
765
+ comment: "This class is deprecated".freeze,
259
766
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
260
767
  label: "Label".freeze,
261
768
  "owl:deprecated": "true".freeze,
262
769
  subClassOf: "vcard:Type".freeze,
263
770
  type: "owl:Class".freeze
264
771
  term :Location,
265
- comment: %(An object representing a named geographical place).freeze,
772
+ comment: "An object representing a named geographical place".freeze,
266
773
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
267
774
  label: "Location".freeze,
268
775
  "owl:disjointWith": "vcard:Organization".freeze,
@@ -284,14 +791,14 @@ module RDF::Vocab
284
791
  subClassOf: "vcard:RelatedType".freeze,
285
792
  type: "owl:Class".freeze
286
793
  term :Modem,
287
- comment: %(This class is deprecated).freeze,
794
+ comment: "This class is deprecated".freeze,
288
795
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
289
796
  label: "Modem".freeze,
290
797
  "owl:deprecated": "true".freeze,
291
798
  subClassOf: "vcard:TelephoneType".freeze,
292
799
  type: "owl:Class".freeze
293
800
  term :Msg,
294
- comment: %(This class is deprecated).freeze,
801
+ comment: "This class is deprecated".freeze,
295
802
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
296
803
  label: "Msg".freeze,
297
804
  "owl:deprecated": "true".freeze,
@@ -303,7 +810,7 @@ module RDF::Vocab
303
810
  subClassOf: "vcard:RelatedType".freeze,
304
811
  type: "owl:Class".freeze
305
812
  term :Name,
306
- comment: %(To specify the components of the name of the object).freeze,
813
+ comment: "To specify the components of the name of the object".freeze,
307
814
  equivalentClass: term(
308
815
  type: "owl:Class".freeze,
309
816
  unionOf: list(term(
@@ -377,8 +884,7 @@ module RDF::Vocab
377
884
  subClassOf: "vcard:Gender".freeze,
378
885
  type: "owl:Class".freeze
379
886
  term :Organization,
380
- comment: %(An object representing an organization. An organization is a single entity, and might represent a business or government, a department or division within a business or government, a club, an association, or the like.
381
- ).freeze,
887
+ comment: "An object representing an organization. An organization is a single entity, and might represent a business or government, a department or division within a business or government, a club, an association, or the like.\n".freeze,
382
888
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
383
889
  label: "Organization".freeze,
384
890
  subClassOf: "vcard:Kind".freeze,
@@ -389,7 +895,7 @@ module RDF::Vocab
389
895
  subClassOf: "vcard:Gender".freeze,
390
896
  type: "owl:Class".freeze
391
897
  term :PCS,
392
- comment: %(This class is deprecated).freeze,
898
+ comment: "This class is deprecated".freeze,
393
899
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
394
900
  label: "PCS".freeze,
395
901
  "owl:deprecated": "true".freeze,
@@ -401,7 +907,7 @@ module RDF::Vocab
401
907
  subClassOf: "vcard:TelephoneType".freeze,
402
908
  type: "owl:Class".freeze
403
909
  term :Parcel,
404
- comment: %(This class is deprecated).freeze,
910
+ comment: "This class is deprecated".freeze,
405
911
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
406
912
  label: "Parcel".freeze,
407
913
  "owl:deprecated": "true".freeze,
@@ -413,21 +919,21 @@ module RDF::Vocab
413
919
  subClassOf: "vcard:RelatedType".freeze,
414
920
  type: "owl:Class".freeze
415
921
  term :Postal,
416
- comment: %(This class is deprecated).freeze,
922
+ comment: "This class is deprecated".freeze,
417
923
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
418
924
  label: "Postal".freeze,
419
925
  "owl:deprecated": "true".freeze,
420
926
  subClassOf: "vcard:Type".freeze,
421
927
  type: "owl:Class".freeze
422
928
  term :Pref,
423
- comment: %(This class is deprecated).freeze,
929
+ comment: "This class is deprecated".freeze,
424
930
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
425
931
  label: "Pref".freeze,
426
932
  "owl:deprecated": "true".freeze,
427
933
  subClassOf: "vcard:Type".freeze,
428
934
  type: "owl:Class".freeze
429
935
  term :RelatedType,
430
- comment: %(Used for relation type codes. The URI of the relation type code must be used as the value for the Relation Type.).freeze,
936
+ comment: "Used for relation type codes. The URI of the relation type code must be used as the value for the Relation Type.".freeze,
431
937
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
432
938
  label: "Relation Type".freeze,
433
939
  type: "owl:Class".freeze
@@ -447,18 +953,18 @@ module RDF::Vocab
447
953
  subClassOf: "vcard:RelatedType".freeze,
448
954
  type: "owl:Class".freeze
449
955
  term :Tel,
450
- comment: %(This class is deprecated. Use the hasTelephone object property.).freeze,
956
+ comment: "This class is deprecated. Use the hasTelephone object property.".freeze,
451
957
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
452
958
  label: "Tel".freeze,
453
959
  "owl:deprecated": "true".freeze,
454
960
  type: "owl:Class".freeze
455
961
  term :TelephoneType,
456
- comment: %(Used for telephone type codes. The URI of the telephone type code must be used as the value for the Telephone Type.).freeze,
962
+ comment: "Used for telephone type codes. The URI of the telephone type code must be used as the value for the Telephone Type.".freeze,
457
963
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
458
964
  label: "Phone".freeze,
459
965
  type: "owl:Class".freeze
460
966
  term :Text,
461
- comment: %(Also called sms telephone).freeze,
967
+ comment: "Also called sms telephone".freeze,
462
968
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
463
969
  label: "Text".freeze,
464
970
  subClassOf: "vcard:TelephoneType".freeze,
@@ -469,7 +975,7 @@ module RDF::Vocab
469
975
  subClassOf: "vcard:TelephoneType".freeze,
470
976
  type: "owl:Class".freeze
471
977
  term :Type,
472
- comment: %(Used for type codes. The URI of the type code must be used as the value for Type.).freeze,
978
+ comment: "Used for type codes. The URI of the type code must be used as the value for Type.".freeze,
473
979
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
474
980
  label: "Type".freeze,
475
981
  type: "owl:Class".freeze
@@ -479,7 +985,7 @@ module RDF::Vocab
479
985
  subClassOf: "vcard:Gender".freeze,
480
986
  type: "owl:Class".freeze
481
987
  term :VCard,
482
- comment: %(The vCard class is equivalent to the new Kind class, which is the parent for the four explicit types of vCards \(Individual, Organization, Location, Group\)).freeze,
988
+ comment: "The vCard class is equivalent to the new Kind class, which is the parent for the four explicit types of vCards (Individual, Organization, Location, Group)".freeze,
483
989
  equivalentClass: "vcard:Kind".freeze,
484
990
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
485
991
  label: "VCard".freeze,
@@ -495,13 +1001,13 @@ module RDF::Vocab
495
1001
  subClassOf: "vcard:TelephoneType".freeze,
496
1002
  type: "owl:Class".freeze
497
1003
  term :Work,
498
- comment: %(This implies that the property is related to an individual's work place).freeze,
1004
+ comment: "This implies that the property is related to an individual's work place".freeze,
499
1005
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
500
1006
  label: "Work".freeze,
501
1007
  subClassOf: "vcard:Type".freeze,
502
1008
  type: "owl:Class".freeze
503
1009
  term :X400,
504
- comment: %(This class is deprecated).freeze,
1010
+ comment: "This class is deprecated".freeze,
505
1011
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
506
1012
  label: "X400".freeze,
507
1013
  "owl:deprecated": "true".freeze,
@@ -510,25 +1016,25 @@ module RDF::Vocab
510
1016
 
511
1017
  # Property definitions
512
1018
  property :"additional-name",
513
- comment: %(The additional name associated with the object).freeze,
1019
+ comment: "The additional name associated with the object".freeze,
514
1020
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
515
1021
  label: "additional name".freeze,
516
1022
  range: "xsd:string".freeze,
517
1023
  type: "owl:DatatypeProperty".freeze
518
1024
  property :adr,
519
- comment: %(This object property has been mapped).freeze,
1025
+ comment: "This object property has been mapped".freeze,
520
1026
  equivalentProperty: "vcard:hasAddress".freeze,
521
1027
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
522
1028
  label: "address".freeze,
523
1029
  type: "owl:ObjectProperty".freeze
524
1030
  property :agent,
525
- comment: %(This object property has been deprecated).freeze,
1031
+ comment: "This object property has been deprecated".freeze,
526
1032
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
527
1033
  label: "agent".freeze,
528
1034
  "owl:deprecated": "true".freeze,
529
1035
  type: "owl:ObjectProperty".freeze
530
1036
  property :anniversary,
531
- comment: %(The date of marriage, or equivalent, of the object).freeze,
1037
+ comment: "The date of marriage, or equivalent, of the object".freeze,
532
1038
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
533
1039
  label: "anniversary".freeze,
534
1040
  range: term(
@@ -537,7 +1043,7 @@ module RDF::Vocab
537
1043
  ),
538
1044
  type: "owl:DatatypeProperty".freeze
539
1045
  property :bday,
540
- comment: %(To specify the birth date of the object).freeze,
1046
+ comment: "To specify the birth date of the object".freeze,
541
1047
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
542
1048
  label: "birth date".freeze,
543
1049
  range: term(
@@ -546,449 +1052,449 @@ module RDF::Vocab
546
1052
  ),
547
1053
  type: "owl:DatatypeProperty".freeze
548
1054
  property :category,
549
- comment: %(The category information about the object, also known as tags).freeze,
1055
+ comment: "The category information about the object, also known as tags".freeze,
550
1056
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
551
1057
  label: "category".freeze,
552
1058
  range: "xsd:string".freeze,
553
1059
  type: "owl:DatatypeProperty".freeze
554
1060
  property :class,
555
- comment: %(This data property has been deprecated).freeze,
1061
+ comment: "This data property has been deprecated".freeze,
556
1062
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
557
1063
  label: "class".freeze,
558
1064
  "owl:deprecated": "true".freeze,
559
1065
  type: "owl:DatatypeProperty".freeze
560
1066
  property :"country-name",
561
- comment: %(The country name associated with the address of the object).freeze,
1067
+ comment: "The country name associated with the address of the object".freeze,
562
1068
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
563
1069
  label: "country name".freeze,
564
1070
  range: "xsd:string".freeze,
565
1071
  type: "owl:DatatypeProperty".freeze
566
1072
  property :email,
567
- comment: %(This object property has been mapped).freeze,
1073
+ comment: "This object property has been mapped".freeze,
568
1074
  equivalentProperty: "vcard:hasEmail".freeze,
569
1075
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
570
1076
  label: "email".freeze,
571
1077
  type: "owl:ObjectProperty".freeze
572
1078
  property :"extended-address",
573
- comment: %(This data property has been deprecated).freeze,
1079
+ comment: "This data property has been deprecated".freeze,
574
1080
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
575
1081
  label: "extended address".freeze,
576
1082
  "owl:deprecated": "true".freeze,
577
1083
  type: "owl:DatatypeProperty".freeze
578
1084
  property :"family-name",
579
- comment: %(The family name associated with the object).freeze,
1085
+ comment: "The family name associated with the object".freeze,
580
1086
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
581
1087
  label: "family name".freeze,
582
1088
  range: "xsd:string".freeze,
583
1089
  type: "owl:DatatypeProperty".freeze
584
1090
  property :fn,
585
- comment: %(The formatted text corresponding to the name of the object).freeze,
1091
+ comment: "The formatted text corresponding to the name of the object".freeze,
586
1092
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
587
1093
  label: "formatted name".freeze,
588
1094
  range: "xsd:string".freeze,
589
1095
  type: "owl:DatatypeProperty".freeze
590
1096
  property :geo,
591
- comment: %(This object property has been mapped).freeze,
1097
+ comment: "This object property has been mapped".freeze,
592
1098
  equivalentProperty: "vcard:hasGeo".freeze,
593
1099
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
594
1100
  label: "geo".freeze,
595
1101
  type: "owl:ObjectProperty".freeze
596
1102
  property :"given-name",
597
- comment: %(The given name associated with the object).freeze,
1103
+ comment: "The given name associated with the object".freeze,
598
1104
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
599
1105
  label: "given name".freeze,
600
1106
  range: "xsd:string".freeze,
601
1107
  type: "owl:DatatypeProperty".freeze
602
1108
  property :hasAdditionalName,
603
- comment: %(Used to support property parameters for the additional name data property).freeze,
1109
+ comment: "Used to support property parameters for the additional name data property".freeze,
604
1110
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
605
1111
  label: "has additional name".freeze,
606
1112
  type: "owl:ObjectProperty".freeze
607
1113
  property :hasAddress,
608
- comment: %(To specify the components of the delivery address for the object).freeze,
1114
+ comment: "To specify the components of the delivery address for the object".freeze,
609
1115
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
610
1116
  label: "has address".freeze,
611
1117
  range: "vcard:Address".freeze,
612
1118
  type: "owl:ObjectProperty".freeze
613
1119
  property :hasCalendarBusy,
614
- comment: %(To specify the busy time associated with the object. \(Was called FBURL in RFC6350\)).freeze,
1120
+ comment: "To specify the busy time associated with the object. (Was called FBURL in RFC6350)".freeze,
615
1121
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
616
1122
  label: "has calendar busy".freeze,
617
1123
  type: "owl:ObjectProperty".freeze
618
1124
  property :hasCalendarLink,
619
- comment: %(To specify the calendar associated with the object. \(Was called CALURI in RFC6350\)).freeze,
1125
+ comment: "To specify the calendar associated with the object. (Was called CALURI in RFC6350)".freeze,
620
1126
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
621
1127
  label: "has calendar link".freeze,
622
1128
  type: "owl:ObjectProperty".freeze
623
1129
  property :hasCalendarRequest,
624
- comment: %(To specify the calendar user address to which a scheduling request be sent for the object. \(Was called CALADRURI in RFC6350\)).freeze,
1130
+ comment: "To specify the calendar user address to which a scheduling request be sent for the object. (Was called CALADRURI in RFC6350)".freeze,
625
1131
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
626
1132
  label: "has calendar request".freeze,
627
1133
  type: "owl:ObjectProperty".freeze
628
1134
  property :hasCategory,
629
- comment: %(Used to support property parameters for the category data property).freeze,
1135
+ comment: "Used to support property parameters for the category data property".freeze,
630
1136
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
631
1137
  label: "has category".freeze,
632
1138
  type: "owl:ObjectProperty".freeze
633
1139
  property :hasCountryName,
634
- comment: %(Used to support property parameters for the country name data property).freeze,
1140
+ comment: "Used to support property parameters for the country name data property".freeze,
635
1141
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
636
1142
  label: "has country name".freeze,
637
1143
  type: "owl:ObjectProperty".freeze
638
1144
  property :hasEmail,
639
- comment: %(To specify the electronic mail address for communication with the object).freeze,
1145
+ comment: "To specify the electronic mail address for communication with the object".freeze,
640
1146
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
641
1147
  label: "has email".freeze,
642
1148
  range: "vcard:Email".freeze,
643
1149
  type: "owl:ObjectProperty".freeze
644
1150
  property :hasFN,
645
- comment: %(Used to support property parameters for the formatted name data property).freeze,
1151
+ comment: "Used to support property parameters for the formatted name data property".freeze,
646
1152
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
647
1153
  label: "has formatted name".freeze,
648
1154
  type: "owl:ObjectProperty".freeze
649
1155
  property :hasFamilyName,
650
- comment: %(Used to support property parameters for the family name data property).freeze,
1156
+ comment: "Used to support property parameters for the family name data property".freeze,
651
1157
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
652
1158
  label: "has family name".freeze,
653
1159
  type: "owl:ObjectProperty".freeze
654
1160
  property :hasGender,
655
- comment: %(To specify the sex or gender identity of the object. URIs are recommended to enable interoperable sex and gender codes to be used.).freeze,
1161
+ comment: "To specify the sex or gender identity of the object. URIs are recommended to enable interoperable sex and gender codes to be used.".freeze,
656
1162
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
657
1163
  label: "has gender".freeze,
658
1164
  type: "owl:ObjectProperty".freeze
659
1165
  property :hasGeo,
660
- comment: %(To specify information related to the global positioning of the object. May also be used as a property parameter.).freeze,
1166
+ comment: "To specify information related to the global positioning of the object. May also be used as a property parameter.".freeze,
661
1167
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
662
1168
  label: "has geo".freeze,
663
1169
  type: "owl:ObjectProperty".freeze
664
1170
  property :hasGivenName,
665
- comment: %(Used to support property parameters for the given name data property).freeze,
1171
+ comment: "Used to support property parameters for the given name data property".freeze,
666
1172
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
667
1173
  label: "has given name".freeze,
668
1174
  type: "owl:ObjectProperty".freeze
669
1175
  property :hasHonorificPrefix,
670
- comment: %(Used to support property parameters for the honorific prefix data property).freeze,
1176
+ comment: "Used to support property parameters for the honorific prefix data property".freeze,
671
1177
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
672
1178
  label: "has honorific prefix".freeze,
673
1179
  type: "owl:ObjectProperty".freeze
674
1180
  property :hasHonorificSuffix,
675
- comment: %(Used to support property parameters for the honorific suffix data property).freeze,
1181
+ comment: "Used to support property parameters for the honorific suffix data property".freeze,
676
1182
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
677
1183
  label: "has honorific suffix".freeze,
678
1184
  type: "owl:ObjectProperty".freeze
679
1185
  property :hasInstantMessage,
680
- comment: %(To specify the instant messaging and presence protocol communications with the object. \(Was called IMPP in RFC6350\)).freeze,
1186
+ comment: "To specify the instant messaging and presence protocol communications with the object. (Was called IMPP in RFC6350)".freeze,
681
1187
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
682
1188
  label: "has messaging".freeze,
683
1189
  type: "owl:ObjectProperty".freeze
684
1190
  property :hasKey,
685
- comment: %(To specify a public key or authentication certificate associated with the object).freeze,
1191
+ comment: "To specify a public key or authentication certificate associated with the object".freeze,
686
1192
  equivalentProperty: "vcard:key".freeze,
687
1193
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
688
1194
  label: "has key".freeze,
689
1195
  type: "owl:ObjectProperty".freeze
690
1196
  property :hasLanguage,
691
- comment: %(Used to support property parameters for the language data property).freeze,
1197
+ comment: "Used to support property parameters for the language data property".freeze,
692
1198
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
693
1199
  label: "has language".freeze,
694
1200
  type: "owl:ObjectProperty".freeze
695
1201
  property :hasLocality,
696
- comment: %(Used to support property parameters for the locality data property).freeze,
1202
+ comment: "Used to support property parameters for the locality data property".freeze,
697
1203
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
698
1204
  label: "has locality".freeze,
699
1205
  type: "owl:ObjectProperty".freeze
700
1206
  property :hasLogo,
701
- comment: %(To specify a graphic image of a logo associated with the object ).freeze,
1207
+ comment: "To specify a graphic image of a logo associated with the object ".freeze,
702
1208
  equivalentProperty: "vcard:logo".freeze,
703
1209
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
704
1210
  label: "has logo".freeze,
705
1211
  type: "owl:ObjectProperty".freeze
706
1212
  property :hasMember,
707
- comment: %(To include a member in the group this object represents. \(This property can only be used by Group individuals\)).freeze,
1213
+ comment: "To include a member in the group this object represents. (This property can only be used by Group individuals)".freeze,
708
1214
  domain: "vcard:Group".freeze,
709
1215
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
710
1216
  label: "has member".freeze,
711
1217
  range: "vcard:Kind".freeze,
712
1218
  type: "owl:ObjectProperty".freeze
713
1219
  property :hasName,
714
- comment: %(To specify the components of the name of the object).freeze,
1220
+ comment: "To specify the components of the name of the object".freeze,
715
1221
  equivalentProperty: "vcard:n".freeze,
716
1222
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
717
1223
  label: "has name".freeze,
718
1224
  range: "vcard:Name".freeze,
719
1225
  type: "owl:ObjectProperty".freeze
720
1226
  property :hasNickname,
721
- comment: %(Used to support property parameters for the nickname data property).freeze,
1227
+ comment: "Used to support property parameters for the nickname data property".freeze,
722
1228
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
723
1229
  label: "has nickname".freeze,
724
1230
  "rdfs:seeAlso": "vcard:nickname".freeze,
725
1231
  type: "owl:ObjectProperty".freeze
726
1232
  property :hasNote,
727
- comment: %(Used to support property parameters for the note data property).freeze,
1233
+ comment: "Used to support property parameters for the note data property".freeze,
728
1234
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
729
1235
  label: "has note".freeze,
730
1236
  type: "owl:ObjectProperty".freeze
731
1237
  property :hasOrganizationName,
732
- comment: %(Used to support property parameters for the organization name data property).freeze,
1238
+ comment: "Used to support property parameters for the organization name data property".freeze,
733
1239
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
734
1240
  label: "has organization name".freeze,
735
1241
  type: "owl:ObjectProperty".freeze
736
1242
  property :hasOrganizationUnit,
737
- comment: %(Used to support property parameters for the organization unit name data property).freeze,
1243
+ comment: "Used to support property parameters for the organization unit name data property".freeze,
738
1244
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
739
1245
  label: "has organization unit name".freeze,
740
1246
  type: "owl:ObjectProperty".freeze
741
1247
  property :hasPhoto,
742
- comment: %(To specify an image or photograph information that annotates some aspect of the object).freeze,
1248
+ comment: "To specify an image or photograph information that annotates some aspect of the object".freeze,
743
1249
  equivalentProperty: "vcard:photo".freeze,
744
1250
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
745
1251
  label: "has photo".freeze,
746
1252
  type: "owl:ObjectProperty".freeze
747
1253
  property :hasPostalCode,
748
- comment: %(Used to support property parameters for the postal code data property).freeze,
1254
+ comment: "Used to support property parameters for the postal code data property".freeze,
749
1255
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
750
1256
  label: "has postal code".freeze,
751
1257
  type: "owl:ObjectProperty".freeze
752
1258
  property :hasRegion,
753
- comment: %(Used to support property parameters for the region data property).freeze,
1259
+ comment: "Used to support property parameters for the region data property".freeze,
754
1260
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
755
1261
  label: "has region".freeze,
756
1262
  type: "owl:ObjectProperty".freeze
757
1263
  property :hasRelated,
758
- comment: %(To specify a relationship between another entity and the entity represented by this object).freeze,
1264
+ comment: "To specify a relationship between another entity and the entity represented by this object".freeze,
759
1265
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
760
1266
  label: "has related".freeze,
761
1267
  type: "owl:ObjectProperty".freeze
762
1268
  property :hasRole,
763
- comment: %(Used to support property parameters for the role data property).freeze,
1269
+ comment: "Used to support property parameters for the role data property".freeze,
764
1270
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
765
1271
  label: "has role".freeze,
766
1272
  type: "owl:ObjectProperty".freeze
767
1273
  property :hasSound,
768
- comment: %(To specify a digital sound content information that annotates some aspect of the object).freeze,
1274
+ comment: "To specify a digital sound content information that annotates some aspect of the object".freeze,
769
1275
  equivalentProperty: "vcard:sound".freeze,
770
1276
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
771
1277
  label: "has sound".freeze,
772
1278
  type: "owl:ObjectProperty".freeze
773
1279
  property :hasSource,
774
- comment: %(To identify the source of directory information of the object).freeze,
1280
+ comment: "To identify the source of directory information of the object".freeze,
775
1281
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
776
1282
  label: "has source".freeze,
777
1283
  type: "owl:ObjectProperty".freeze
778
1284
  property :hasStreetAddress,
779
- comment: %(Used to support property parameters for the street address data property).freeze,
1285
+ comment: "Used to support property parameters for the street address data property".freeze,
780
1286
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
781
1287
  label: "has street address".freeze,
782
1288
  type: "owl:ObjectProperty".freeze
783
1289
  property :hasTelephone,
784
- comment: %(To specify the telephone number for telephony communication with the object).freeze,
1290
+ comment: "To specify the telephone number for telephony communication with the object".freeze,
785
1291
  equivalentProperty: "vcard:tel".freeze,
786
1292
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
787
1293
  label: "has telephone".freeze,
788
1294
  type: "owl:ObjectProperty".freeze
789
1295
  property :hasTitle,
790
- comment: %(Used to support property parameters for the title data property).freeze,
1296
+ comment: "Used to support property parameters for the title data property".freeze,
791
1297
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
792
1298
  label: "has title".freeze,
793
1299
  type: "owl:ObjectProperty".freeze
794
1300
  property :hasUID,
795
- comment: %(To specify a value that represents a globally unique identifier corresponding to the object).freeze,
1301
+ comment: "To specify a value that represents a globally unique identifier corresponding to the object".freeze,
796
1302
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
797
1303
  label: "has uid".freeze,
798
1304
  type: "owl:ObjectProperty".freeze
799
1305
  property :hasURL,
800
- comment: %(To specify a uniform resource locator associated with the object).freeze,
1306
+ comment: "To specify a uniform resource locator associated with the object".freeze,
801
1307
  equivalentProperty: "vcard:url".freeze,
802
1308
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
803
1309
  label: "has url".freeze,
804
1310
  type: "owl:ObjectProperty".freeze
805
1311
  property :hasValue,
806
- comment: %(Used to indicate the resource value of an object property that requires property parameters).freeze,
1312
+ comment: "Used to indicate the resource value of an object property that requires property parameters".freeze,
807
1313
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
808
1314
  label: "has value".freeze,
809
1315
  type: "owl:ObjectProperty".freeze
810
1316
  property :"honorific-prefix",
811
- comment: %(The honorific prefix of the name associated with the object).freeze,
1317
+ comment: "The honorific prefix of the name associated with the object".freeze,
812
1318
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
813
1319
  label: "honorific prefix".freeze,
814
1320
  range: "xsd:string".freeze,
815
1321
  type: "owl:DatatypeProperty".freeze
816
1322
  property :"honorific-suffix",
817
- comment: %(The honorific suffix of the name associated with the object).freeze,
1323
+ comment: "The honorific suffix of the name associated with the object".freeze,
818
1324
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
819
1325
  label: "honorific suffix".freeze,
820
1326
  range: "xsd:string".freeze,
821
1327
  type: "owl:DatatypeProperty".freeze
822
1328
  property :key,
823
- comment: %(This object property has been mapped).freeze,
1329
+ comment: "This object property has been mapped".freeze,
824
1330
  equivalentProperty: "vcard:hasKey".freeze,
825
1331
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
826
1332
  label: "key".freeze,
827
1333
  type: "owl:ObjectProperty".freeze
828
1334
  property :label,
829
- comment: %(This data property has been deprecated).freeze,
1335
+ comment: "This data property has been deprecated".freeze,
830
1336
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
831
1337
  label: "label".freeze,
832
1338
  "owl:deprecated": "true".freeze,
833
1339
  type: "owl:DatatypeProperty".freeze
834
1340
  property :language,
835
- comment: %(To specify the language that may be used for contacting the object. May also be used as a property parameter.).freeze,
1341
+ comment: "To specify the language that may be used for contacting the object. May also be used as a property parameter.".freeze,
836
1342
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
837
1343
  label: "language".freeze,
838
1344
  type: "owl:DatatypeProperty".freeze
839
1345
  property :latitude,
840
- comment: %(This data property has been deprecated. See hasGeo).freeze,
1346
+ comment: "This data property has been deprecated. See hasGeo".freeze,
841
1347
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
842
1348
  label: "latitude".freeze,
843
1349
  "owl:deprecated": "true".freeze,
844
1350
  type: "owl:DatatypeProperty".freeze
845
1351
  property :locality,
846
- comment: %(The locality \(e.g. city or town\) associated with the address of the object).freeze,
1352
+ comment: "The locality (e.g. city or town) associated with the address of the object".freeze,
847
1353
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
848
1354
  label: "locality".freeze,
849
1355
  range: "xsd:string".freeze,
850
1356
  type: "owl:DatatypeProperty".freeze
851
1357
  property :logo,
852
- comment: %(This object property has been mapped).freeze,
1358
+ comment: "This object property has been mapped".freeze,
853
1359
  equivalentProperty: "vcard:hasLogo".freeze,
854
1360
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
855
1361
  label: "logo".freeze,
856
1362
  type: "owl:ObjectProperty".freeze
857
1363
  property :longitude,
858
- comment: %(This data property has been deprecated. See hasGeo).freeze,
1364
+ comment: "This data property has been deprecated. See hasGeo".freeze,
859
1365
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
860
1366
  label: "longitude".freeze,
861
1367
  "owl:deprecated": "true".freeze,
862
1368
  type: "owl:DatatypeProperty".freeze
863
1369
  property :mailer,
864
- comment: %(This data property has been deprecated).freeze,
1370
+ comment: "This data property has been deprecated".freeze,
865
1371
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
866
1372
  label: "mailer".freeze,
867
1373
  "owl:deprecated": "true".freeze,
868
1374
  type: "owl:DatatypeProperty".freeze
869
1375
  property :n,
870
- comment: %(This object property has been mapped).freeze,
1376
+ comment: "This object property has been mapped".freeze,
871
1377
  equivalentProperty: "vcard:hasName".freeze,
872
1378
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
873
1379
  label: "name".freeze,
874
1380
  type: "owl:ObjectProperty".freeze
875
1381
  property :nickname,
876
- comment: %(The nick name associated with the object).freeze,
1382
+ comment: "The nick name associated with the object".freeze,
877
1383
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
878
1384
  label: "nickname".freeze,
879
1385
  range: "xsd:string".freeze,
880
1386
  type: "owl:DatatypeProperty".freeze
881
1387
  property :note,
882
- comment: %(A note associated with the object).freeze,
1388
+ comment: "A note associated with the object".freeze,
883
1389
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
884
1390
  label: "note".freeze,
885
1391
  range: "xsd:string".freeze,
886
1392
  type: "owl:DatatypeProperty".freeze
887
1393
  property :org,
888
- comment: %(This object property has been mapped. Use the organization-name data property.).freeze,
1394
+ comment: "This object property has been mapped. Use the organization-name data property.".freeze,
889
1395
  equivalentProperty: "vcard:organization-name".freeze,
890
1396
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
891
1397
  label: "organization".freeze,
892
1398
  type: "owl:ObjectProperty".freeze
893
1399
  property :"organization-name",
894
- comment: %(To specify the organizational name associated with the object).freeze,
1400
+ comment: "To specify the organizational name associated with the object".freeze,
895
1401
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
896
1402
  label: "organization name".freeze,
897
1403
  range: "xsd:string".freeze,
898
1404
  type: "owl:DatatypeProperty".freeze
899
1405
  property :"organization-unit",
900
- comment: %(To specify the organizational unit name associated with the object).freeze,
1406
+ comment: "To specify the organizational unit name associated with the object".freeze,
901
1407
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
902
1408
  label: "organizational unit name".freeze,
903
1409
  range: "xsd:string".freeze,
904
1410
  subPropertyOf: "vcard:organization-name".freeze,
905
1411
  type: "owl:DatatypeProperty".freeze
906
1412
  property :photo,
907
- comment: %(This object property has been mapped).freeze,
1413
+ comment: "This object property has been mapped".freeze,
908
1414
  equivalentProperty: "vcard:hasPhoto".freeze,
909
1415
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
910
1416
  label: "photo".freeze,
911
1417
  type: "owl:ObjectProperty".freeze
912
1418
  property :"post-office-box",
913
- comment: %(This data property has been deprecated).freeze,
1419
+ comment: "This data property has been deprecated".freeze,
914
1420
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
915
1421
  label: "post office box".freeze,
916
1422
  "owl:deprecated": "true".freeze,
917
1423
  type: "owl:DatatypeProperty".freeze
918
1424
  property :"postal-code",
919
- comment: %(The postal code associated with the address of the object).freeze,
1425
+ comment: "The postal code associated with the address of the object".freeze,
920
1426
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
921
1427
  label: "postal code".freeze,
922
1428
  range: "xsd:string".freeze,
923
1429
  type: "owl:DatatypeProperty".freeze
924
1430
  property :prodid,
925
- comment: %(To specify the identifier for the product that created the object).freeze,
1431
+ comment: "To specify the identifier for the product that created the object".freeze,
926
1432
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
927
1433
  label: "product id".freeze,
928
1434
  range: "xsd:string".freeze,
929
1435
  type: "owl:DatatypeProperty".freeze
930
1436
  property :region,
931
- comment: %(The region \(e.g. state or province\) associated with the address of the object).freeze,
1437
+ comment: "The region (e.g. state or province) associated with the address of the object".freeze,
932
1438
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
933
1439
  label: "region".freeze,
934
1440
  range: "xsd:string".freeze,
935
1441
  type: "owl:DatatypeProperty".freeze
936
1442
  property :rev,
937
- comment: %(To specify revision information about the object).freeze,
1443
+ comment: "To specify revision information about the object".freeze,
938
1444
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
939
1445
  label: "revision".freeze,
940
1446
  range: "xsd:dateTime".freeze,
941
1447
  type: "owl:DatatypeProperty".freeze
942
1448
  property :role,
943
- comment: %(To specify the function or part played in a particular situation by the object).freeze,
1449
+ comment: "To specify the function or part played in a particular situation by the object".freeze,
944
1450
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
945
1451
  label: "role".freeze,
946
1452
  range: "xsd:string".freeze,
947
1453
  type: "owl:DatatypeProperty".freeze
948
1454
  property :"sort-string",
949
- comment: %(To specify the string to be used for national-language-specific sorting. Used as a property parameter only.).freeze,
1455
+ comment: "To specify the string to be used for national-language-specific sorting. Used as a property parameter only.".freeze,
950
1456
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
951
1457
  label: "sort as".freeze,
952
1458
  range: "xsd:string".freeze,
953
1459
  type: "owl:DatatypeProperty".freeze
954
1460
  property :sound,
955
- comment: %(This object property has been mapped).freeze,
1461
+ comment: "This object property has been mapped".freeze,
956
1462
  equivalentProperty: "vcard:hasSound".freeze,
957
1463
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
958
1464
  label: "sound".freeze,
959
1465
  type: "owl:ObjectProperty".freeze
960
1466
  property :"street-address",
961
- comment: %(The street address associated with the address of the object).freeze,
1467
+ comment: "The street address associated with the address of the object".freeze,
962
1468
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
963
1469
  label: "street address".freeze,
964
1470
  range: "xsd:string".freeze,
965
1471
  type: "owl:DatatypeProperty".freeze
966
1472
  property :tel,
967
- comment: %(This object property has been mapped).freeze,
1473
+ comment: "This object property has been mapped".freeze,
968
1474
  equivalentProperty: "vcard:hasTelephone".freeze,
969
1475
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
970
1476
  label: "telephone".freeze,
971
1477
  type: "owl:ObjectProperty".freeze
972
1478
  property :title,
973
- comment: %(To specify the position or job of the object).freeze,
1479
+ comment: "To specify the position or job of the object".freeze,
974
1480
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
975
1481
  label: "title".freeze,
976
1482
  range: "xsd:string".freeze,
977
1483
  type: "owl:DatatypeProperty".freeze
978
1484
  property :tz,
979
- comment: %(To indicate time zone information that is specific to the object. May also be used as a property parameter.).freeze,
1485
+ comment: "To indicate time zone information that is specific to the object. May also be used as a property parameter.".freeze,
980
1486
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
981
1487
  label: "time zone".freeze,
982
1488
  range: "xsd:string".freeze,
983
1489
  type: "owl:DatatypeProperty".freeze
984
1490
  property :url,
985
- comment: %(This object property has been mapped).freeze,
1491
+ comment: "This object property has been mapped".freeze,
986
1492
  equivalentProperty: "vcard:hasURL".freeze,
987
1493
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
988
1494
  label: "url".freeze,
989
1495
  type: "owl:ObjectProperty".freeze
990
1496
  property :value,
991
- comment: %(Used to indicate the literal value of a data property that requires property parameters).freeze,
1497
+ comment: "Used to indicate the literal value of a data property that requires property parameters".freeze,
992
1498
  isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
993
1499
  label: "value".freeze,
994
1500
  type: "owl:DatatypeProperty".freeze