rdf-vocab 3.1.4 → 3.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) 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 +14 -28
  6. data/lib/rdf/vocab/acl.rb +84 -1
  7. data/lib/rdf/vocab/as.rb +466 -1
  8. data/lib/rdf/vocab/bf2.rb +1317 -1
  9. data/lib/rdf/vocab/bibframe.rb +1 -2
  10. data/lib/rdf/vocab/bibo.rb +496 -1
  11. data/lib/rdf/vocab/cc.rb +107 -1
  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 +1303 -1
  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 +1 -1
  18. data/lib/rdf/vocab/dc11.rb +63 -1
  19. data/lib/rdf/vocab/dcat.rb +152 -4
  20. data/lib/rdf/vocab/dcmitype.rb +1 -1
  21. data/lib/rdf/vocab/disco.rb +228 -1
  22. data/lib/rdf/vocab/doap.rb +175 -1
  23. data/lib/rdf/vocab/dwc.rb +753 -1
  24. data/lib/rdf/vocab/earl.rb +135 -1
  25. data/lib/rdf/vocab/ebucore.rb +7335 -1974
  26. data/lib/rdf/vocab/edm.rb +150 -1
  27. data/lib/rdf/vocab/exif.rb +650 -1
  28. data/lib/rdf/vocab/extensions.rb +253 -203
  29. data/lib/rdf/vocab/fcrepo4.rb +377 -1
  30. data/lib/rdf/vocab/foaf.rb +305 -1
  31. data/lib/rdf/vocab/geo.rb +39 -1
  32. data/lib/rdf/vocab/geojson.rb +66 -1
  33. data/lib/rdf/vocab/geonames.rb +166 -1
  34. data/lib/rdf/vocab/gr.rb +684 -1
  35. data/lib/rdf/vocab/gs1.rb +1597 -1
  36. data/lib/rdf/vocab/ht.rb +164 -1
  37. data/lib/rdf/vocab/hydra.rb +236 -2
  38. data/lib/rdf/vocab/iana.rb +230 -1
  39. data/lib/rdf/vocab/ical.rb +462 -1
  40. data/lib/rdf/vocab/identifiers.rb +462 -1
  41. data/lib/rdf/vocab/iiif.rb +136 -1
  42. data/lib/rdf/vocab/jsonld.rb +135 -1
  43. data/lib/rdf/vocab/ldp.rb +130 -1
  44. data/lib/rdf/vocab/lrmi.rb +1 -1
  45. data/lib/rdf/vocab/ma.rb +381 -1
  46. data/lib/rdf/vocab/mads.rb +600 -22
  47. data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +809 -1
  48. data/lib/rdf/vocab/mo.rb +919 -1
  49. data/lib/rdf/vocab/mods.rb +516 -1
  50. data/lib/rdf/vocab/nfo.rb +1 -1
  51. data/lib/rdf/vocab/oa.rb +275 -1
  52. data/lib/rdf/vocab/og.rb +78 -1
  53. data/lib/rdf/vocab/ogc.rb +34 -1
  54. data/lib/rdf/vocab/ore.rb +56 -1
  55. data/lib/rdf/vocab/org.rb +189 -1
  56. data/lib/rdf/vocab/pcdm.rb +47 -1
  57. data/lib/rdf/vocab/pplan.rb +64 -1
  58. data/lib/rdf/vocab/premis.rb +1266 -779
  59. data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +155 -1
  60. data/lib/rdf/vocab/prov.rb +619 -1
  61. data/lib/rdf/vocab/ptr.rb +138 -1
  62. data/lib/rdf/vocab/rightsstatements.rb +5 -1
  63. data/lib/rdf/vocab/rsa.rb +30 -1
  64. data/lib/rdf/vocab/rss.rb +1 -1
  65. data/lib/rdf/vocab/schema.rb +10032 -12
  66. data/lib/rdf/vocab/sd.rb +372 -0
  67. data/lib/rdf/vocab/sh.rb +736 -1
  68. data/lib/rdf/vocab/sioc.rb +401 -1
  69. data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +38 -1
  70. data/lib/rdf/vocab/{sioct.rb → sioctypes.rb} +158 -1
  71. data/lib/rdf/vocab/skos.rb +119 -1
  72. data/lib/rdf/vocab/skosxl.rb +30 -1
  73. data/lib/rdf/vocab/v.rb +291 -1
  74. data/lib/rdf/vocab/vcard.rb +508 -1
  75. data/lib/rdf/vocab/vmd.rb +291 -1
  76. data/lib/rdf/vocab/void.rb +121 -1
  77. data/lib/rdf/vocab/vs.rb +19 -1
  78. data/lib/rdf/vocab/wdrs.rb +90 -1
  79. data/lib/rdf/vocab/wot.rb +78 -1
  80. data/lib/rdf/vocab/xhtml.rb +2 -1
  81. data/lib/rdf/vocab/xhv.rb +338 -1
  82. data/lib/rdf/vocab/xkos.rb +150 -1
  83. data/spec/extensions_spec.rb +68 -0
  84. data/spec/vocab_spec.rb +10 -0
  85. metadata +15 -8
@@ -5,9 +5,516 @@ 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#",