rdf-vocab 2.2.9 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -1
  3. data/lib/rdf/vocab.rb +21 -2
  4. data/lib/rdf/vocab/acl.rb +21 -5
  5. data/lib/rdf/vocab/bf2.rb +812 -812
  6. data/lib/rdf/vocab/bibframe.rb +78 -78
  7. data/lib/rdf/vocab/bibo.rb +239 -247
  8. data/lib/rdf/vocab/cc.rb +4 -9
  9. data/lib/rdf/vocab/cert.rb +44 -45
  10. data/lib/rdf/vocab/cnt.rb +5 -5
  11. data/lib/rdf/vocab/crm.rb +344 -344
  12. data/lib/rdf/vocab/datacite.rb +152 -58
  13. data/lib/rdf/vocab/dc.rb +439 -439
  14. data/lib/rdf/vocab/dc11.rb +93 -93
  15. data/lib/rdf/vocab/dcat.rb +152 -101
  16. data/lib/rdf/vocab/dcmitype.rb +75 -75
  17. data/lib/rdf/vocab/disco.rb +169 -101
  18. data/lib/rdf/vocab/doap.rb +179 -159
  19. data/lib/rdf/vocab/dwc.rb +1648 -1648
  20. data/lib/rdf/vocab/ebucore.rb +373 -124
  21. data/lib/rdf/vocab/edm.rb +216 -139
  22. data/lib/rdf/vocab/exif.rb +208 -208
  23. data/lib/rdf/vocab/fcrepo4.rb +57 -134
  24. data/lib/rdf/vocab/foaf.rb +166 -166
  25. data/lib/rdf/vocab/geo.rb +3 -5
  26. data/lib/rdf/vocab/geojson.rb +16 -16
  27. data/lib/rdf/vocab/geonames.rb +2827 -3455
  28. data/lib/rdf/vocab/gr.rb +699 -254
  29. data/lib/rdf/vocab/gs1.rb +1765 -1761
  30. data/lib/rdf/vocab/ht.rb +23 -23
  31. data/lib/rdf/vocab/hydra.rb +104 -104
  32. data/lib/rdf/vocab/ical.rb +674 -127
  33. data/lib/rdf/vocab/identifiers.rb +120 -212
  34. data/lib/rdf/vocab/iiif.rb +25 -37
  35. data/lib/rdf/vocab/jsonld.rb +11 -11
  36. data/lib/rdf/vocab/ldp.rb +79 -69
  37. data/lib/rdf/vocab/lrmi.rb +63 -63
  38. data/lib/rdf/vocab/ma.rb +47 -132
  39. data/lib/rdf/vocab/mads.rb +83 -28
  40. data/lib/rdf/vocab/marc_relators.rb +12 -2201
  41. data/lib/rdf/vocab/mo.rb +920 -836
  42. data/lib/rdf/vocab/mods.rb +6 -13
  43. data/lib/rdf/vocab/oa.rb +82 -72
  44. data/lib/rdf/vocab/og.rb +50 -50
  45. data/lib/rdf/vocab/ogc.rb +9 -8
  46. data/lib/rdf/vocab/ore.rb +22 -19
  47. data/lib/rdf/vocab/org.rb +217 -167
  48. data/lib/rdf/vocab/pplan.rb +45 -45
  49. data/lib/rdf/vocab/premis.rb +855 -582
  50. data/lib/rdf/vocab/premis_event_type.rb +148 -70
  51. data/lib/rdf/vocab/prov.rb +842 -806
  52. data/lib/rdf/vocab/rightsstatements.rb +140 -157
  53. data/lib/rdf/vocab/rsa.rb +16 -13
  54. data/lib/rdf/vocab/rss.rb +10 -10
  55. data/lib/rdf/vocab/schema.rb +1448 -1448
  56. data/lib/rdf/vocab/sioc.rb +158 -159
  57. data/lib/rdf/vocab/sioc_services.rb +14 -14
  58. data/lib/rdf/vocab/sioct.rb +70 -70
  59. data/lib/rdf/vocab/skos.rb +97 -93
  60. data/lib/rdf/vocab/skosxl.rb +29 -24
  61. data/lib/rdf/vocab/v.rb +88 -90
  62. data/lib/rdf/vocab/vcard.rb +340 -196
  63. data/lib/rdf/vocab/vmd.rb +88 -90
  64. data/lib/rdf/vocab/vs.rb +15 -15
  65. data/lib/rdf/vocab/wdrs.rb +30 -30
  66. data/lib/rdf/vocab/wot.rb +47 -47
  67. data/lib/rdf/vocab/xhtml.rb +3 -3
  68. data/lib/rdf/vocab/xhv.rb +37 -123
  69. data/lib/rdf/vocab/xkos.rb +110 -107
  70. data/spec/vocab_spec.rb +6 -6
  71. metadata +19 -31
@@ -10,843 +10,987 @@ module RDF::Vocab
10
10
  class VCARD < RDF::StrictVocabulary("http://www.w3.org/2006/vcard/ns#")
11
11
 
12
12
  # Ontology definition
13
- ontology :"http://www.w3.org/2006/vcard/ns",
13
+ ontology :"http://www.w3.org/2006/vcard/ns#",
14
14
  comment: %(Ontology for vCard based on RFC6350).freeze,
15
15
  label: "Ontology for vCard".freeze,
16
- :"owl:versionInfo" => %(Final).freeze,
16
+ "owl:versionInfo": "Final".freeze,
17
17
  type: "owl:Ontology".freeze
18
18
 
19
19
  # Class definitions
20
20
  term :Acquaintance,
21
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
21
22
  label: "Acquaintance".freeze,
22
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
23
23
  subClassOf: "vcard:RelatedType".freeze,
24
24
  type: "owl:Class".freeze
25
25
  term :Address,
26
26
  comment: %(To specify the components of the delivery address for the object).freeze,
27
+ equivalentClass: term(
28
+ type: "owl:Class".freeze,
29
+ unionOf: list(term(
30
+ type: "owl:Class".freeze,
31
+ intersectionOf: list(term(
32
+ onProperty: "vcard:country-name".freeze,
33
+ type: "owl:Restriction".freeze,
34
+ someValuesFrom: "xsd:string".freeze
35
+ ), term(
36
+ maxCardinality: "1".freeze,
37
+ onProperty: "vcard:country-name".freeze,
38
+ type: "owl:Restriction".freeze
39
+ ))
40
+ ), term(
41
+ type: "owl:Class".freeze,
42
+ intersectionOf: list(term(
43
+ onProperty: "vcard:locality".freeze,
44
+ type: "owl:Restriction".freeze,
45
+ someValuesFrom: "xsd:string".freeze
46
+ ), term(
47
+ maxCardinality: "1".freeze,
48
+ onProperty: "vcard:locality".freeze,
49
+ type: "owl:Restriction".freeze
50
+ ))
51
+ ), term(
52
+ type: "owl:Class".freeze,
53
+ intersectionOf: list(term(
54
+ onProperty: "vcard:postal-code".freeze,
55
+ type: "owl:Restriction".freeze,
56
+ someValuesFrom: "xsd:string".freeze
57
+ ), term(
58
+ maxCardinality: "1".freeze,
59
+ onProperty: "vcard:postal-code".freeze,
60
+ type: "owl:Restriction".freeze
61
+ ))
62
+ ), term(
63
+ type: "owl:Class".freeze,
64
+ intersectionOf: list(term(
65
+ onProperty: "vcard:region".freeze,
66
+ type: "owl:Restriction".freeze,
67
+ someValuesFrom: "xsd:string".freeze
68
+ ), term(
69
+ maxCardinality: "1".freeze,
70
+ onProperty: "vcard:region".freeze,
71
+ type: "owl:Restriction".freeze
72
+ ))
73
+ ), term(
74
+ type: "owl:Class".freeze,
75
+ intersectionOf: list(term(
76
+ onProperty: "vcard:street-address".freeze,
77
+ type: "owl:Restriction".freeze,
78
+ someValuesFrom: "xsd:string".freeze
79
+ ), term(
80
+ maxCardinality: "1".freeze,
81
+ onProperty: "vcard:street-address".freeze,
82
+ type: "owl:Restriction".freeze
83
+ ))
84
+ ))
85
+ ),
86
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
27
87
  label: "Address".freeze,
28
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
29
88
  type: "owl:Class".freeze
30
89
  term :Agent,
90
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
31
91
  label: "Agent".freeze,
32
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
33
92
  subClassOf: "vcard:RelatedType".freeze,
34
93
  type: "owl:Class".freeze
35
94
  term :BBS,
36
95
  comment: %(This class is deprecated).freeze,
96
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
37
97
  label: "BBS".freeze,
38
- :"owl:deprecated" => %(true).freeze,
39
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
98
+ "owl:deprecated": "true".freeze,
40
99
  subClassOf: "vcard:TelephoneType".freeze,
41
100
  type: "owl:Class".freeze
42
101
  term :Car,
43
102
  comment: %(This class is deprecated).freeze,
103
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
44
104
  label: "Car".freeze,
45
- :"owl:deprecated" => %(true).freeze,
46
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
105
+ "owl:deprecated": "true".freeze,
47
106
  subClassOf: "vcard:TelephoneType".freeze,
48
107
  type: "owl:Class".freeze
49
108
  term :Cell,
50
109
  comment: %(Also called mobile telephone).freeze,
110
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
51
111
  label: "Cell".freeze,
52
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
53
112
  subClassOf: "vcard:TelephoneType".freeze,
54
113
  type: "owl:Class".freeze
55
114
  term :Child,
115
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
56
116
  label: "Child".freeze,
57
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
58
117
  subClassOf: "vcard:RelatedType".freeze,
59
118
  type: "owl:Class".freeze
60
119
  term :Colleague,
120
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
61
121
  label: "Colleague".freeze,
62
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
63
122
  subClassOf: "vcard:RelatedType".freeze,
64
123
  type: "owl:Class".freeze
65
124
  term :Contact,
125
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
66
126
  label: "Contact".freeze,
67
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
68
127
  subClassOf: "vcard:RelatedType".freeze,
69
128
  type: "owl:Class".freeze
70
129
  term :Coresident,
130
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
71
131
  label: "Coresident".freeze,
72
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
73
132
  subClassOf: "vcard:RelatedType".freeze,
74
133
  type: "owl:Class".freeze
75
134
  term :Coworker,
135
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
76
136
  label: "Coworker".freeze,
77
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
78
137
  subClassOf: "vcard:RelatedType".freeze,
79
138
  type: "owl:Class".freeze
80
139
  term :Crush,
140
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
81
141
  label: "Crush".freeze,
82
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
83
142
  subClassOf: "vcard:RelatedType".freeze,
84
143
  type: "owl:Class".freeze
85
144
  term :Date,
145
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
86
146
  label: "Date".freeze,
87
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
88
147
  subClassOf: "vcard:RelatedType".freeze,
89
148
  type: "owl:Class".freeze
90
149
  term :Dom,
91
150
  comment: %(This class is deprecated).freeze,
151
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
92
152
  label: "Dom".freeze,
93
- :"owl:deprecated" => %(true).freeze,
94
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
153
+ "owl:deprecated": "true".freeze,
95
154
  subClassOf: "vcard:Type".freeze,
96
155
  type: "owl:Class".freeze
97
156
  term :Email,
98
157
  comment: %(To specify the electronic mail address for communication with the object the vCard represents. Use the hasEmail object property.).freeze,
158
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
99
159
  label: "Email".freeze,
100
- :"owl:deprecated" => %(true).freeze,
101
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
160
+ "owl:deprecated": "true".freeze,
102
161
  type: "owl:Class".freeze
103
162
  term :Emergency,
163
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
104
164
  label: "Emergency".freeze,
105
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
106
165
  subClassOf: "vcard:RelatedType".freeze,
107
166
  type: "owl:Class".freeze
108
167
  term :Fax,
168
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
109
169
  label: "Fax".freeze,
110
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
111
170
  subClassOf: "vcard:TelephoneType".freeze,
112
171
  type: "owl:Class".freeze
113
172
  term :Female,
173
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
114
174
  label: "Female".freeze,
115
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
116
175
  subClassOf: "vcard:Gender".freeze,
117
176
  type: "owl:Class".freeze
118
177
  term :Friend,
178
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
119
179
  label: "Friend".freeze,
120
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
121
180
  subClassOf: "vcard:RelatedType".freeze,
122
181
  type: "owl:Class".freeze
123
182
  term :Gender,
124
183
  comment: %(Used for gender codes. The URI of the gender code must be used as the value for Gender.).freeze,
184
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
125
185
  label: "Gender".freeze,
126
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
127
186
  type: "owl:Class".freeze
128
187
  term :Group,
129
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,
189
+ equivalentClass: term(
190
+ type: "owl:Class".freeze,
191
+ intersectionOf: list(term(
192
+ onProperty: "vcard:hasMember".freeze,
193
+ type: "owl:Restriction".freeze,
194
+ someValuesFrom: "vcard:Kind".freeze
195
+ ), term(
196
+ onProperty: "vcard:hasMember".freeze,
197
+ type: "owl:Restriction".freeze,
198
+ "owl:minQualifiedCardinality": "1".freeze,
199
+ "owl:onClass": "vcard:Kind".freeze
200
+ ))
201
+ ),
202
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
130
203
  label: "Group".freeze,
131
- :"owl:disjointWith" => [%(vcard:Individual).freeze, %(vcard:Location).freeze, %(vcard:Organization).freeze],
132
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
204
+ "owl:disjointWith": ["vcard:Individual".freeze, "vcard:Location".freeze, "vcard:Organization".freeze],
133
205
  subClassOf: "vcard:Kind".freeze,
134
206
  type: "owl:Class".freeze
135
207
  term :Home,
136
208
  comment: %(This implies that the property is related to an individual's personal life).freeze,
209
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
137
210
  label: "Home".freeze,
138
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
139
211
  subClassOf: "vcard:Type".freeze,
140
212
  type: "owl:Class".freeze
141
213
  term :ISDN,
142
214
  comment: %(This class is deprecated).freeze,
215
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
143
216
  label: "ISDN".freeze,
144
- :"owl:deprecated" => %(true).freeze,
145
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
217
+ "owl:deprecated": "true".freeze,
146
218
  subClassOf: "vcard:Type".freeze,
147
219
  type: "owl:Class".freeze
148
220
  term :Individual,
149
221
  comment: %(An object representing a single person or entity).freeze,
222
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
150
223
  label: "Individual".freeze,
151
- :"owl:disjointWith" => [%(vcard:Location).freeze, %(vcard:Organization).freeze],
152
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
224
+ "owl:disjointWith": ["vcard:Location".freeze, "vcard:Organization".freeze],
153
225
  subClassOf: "vcard:Kind".freeze,
154
226
  type: "owl:Class".freeze
155
227
  term :Internet,
156
228
  comment: %(This class is deprecated).freeze,
229
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
157
230
  label: "Internet".freeze,
158
- :"owl:deprecated" => %(true).freeze,
159
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
231
+ "owl:deprecated": "true".freeze,
160
232
  subClassOf: "vcard:Type".freeze,
161
233
  type: "owl:Class".freeze
162
234
  term :Intl,
163
235
  comment: %(This class is deprecated).freeze,
236
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
164
237
  label: "Intl".freeze,
165
- :"owl:deprecated" => %(true).freeze,
166
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
238
+ "owl:deprecated": "true".freeze,
167
239
  subClassOf: "vcard:Type".freeze,
168
240
  type: "owl:Class".freeze
169
241
  term :Kin,
242
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
170
243
  label: "Kin".freeze,
171
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
172
244
  subClassOf: "vcard:RelatedType".freeze,
173
245
  type: "owl:Class".freeze
174
246
  term :Kind,
175
247
  comment: %(The parent class for all objects).freeze,
248
+ equivalentClass: ["vcard:VCard".freeze, term(
249
+ onProperty: "vcard:fn".freeze,
250
+ type: "owl:Restriction".freeze,
251
+ "owl:minQualifiedCardinality": "1".freeze,
252
+ "owl:onDataRange": "xsd:string".freeze
253
+ )],
254
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
176
255
  label: "Kind".freeze,
177
- :"owl:equivalentClass" => %(vcard:VCard).freeze,
178
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
179
256
  type: "owl:Class".freeze
180
257
  term :Label,
181
258
  comment: %(This class is deprecated).freeze,
259
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
182
260
  label: "Label".freeze,
183
- :"owl:deprecated" => %(true).freeze,
184
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
261
+ "owl:deprecated": "true".freeze,
185
262
  subClassOf: "vcard:Type".freeze,
186
263
  type: "owl:Class".freeze
187
264
  term :Location,
188
265
  comment: %(An object representing a named geographical place).freeze,
266
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
189
267
  label: "Location".freeze,
190
- :"owl:disjointWith" => %(vcard:Organization).freeze,
191
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
268
+ "owl:disjointWith": "vcard:Organization".freeze,
192
269
  subClassOf: "vcard:Kind".freeze,
193
270
  type: "owl:Class".freeze
194
271
  term :Male,
272
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
195
273
  label: "Male".freeze,
196
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
197
274
  subClassOf: "vcard:Gender".freeze,
198
275
  type: "owl:Class".freeze
199
276
  term :Me,
277
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
200
278
  label: "Me".freeze,
201
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
202
279
  subClassOf: "vcard:RelatedType".freeze,
203
280
  type: "owl:Class".freeze
204
281
  term :Met,
282
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
205
283
  label: "Met".freeze,
206
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
207
284
  subClassOf: "vcard:RelatedType".freeze,
208
285
  type: "owl:Class".freeze
209
286
  term :Modem,
210
287
  comment: %(This class is deprecated).freeze,
288
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
211
289
  label: "Modem".freeze,
212
- :"owl:deprecated" => %(true).freeze,
213
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
290
+ "owl:deprecated": "true".freeze,
214
291
  subClassOf: "vcard:TelephoneType".freeze,
215
292
  type: "owl:Class".freeze
216
293
  term :Msg,
217
294
  comment: %(This class is deprecated).freeze,
295
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
218
296
  label: "Msg".freeze,
219
- :"owl:deprecated" => %(true).freeze,
220
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
297
+ "owl:deprecated": "true".freeze,
221
298
  subClassOf: "vcard:TelephoneType".freeze,
222
299
  type: "owl:Class".freeze
223
300
  term :Muse,
301
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
224
302
  label: "Muse".freeze,
225
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
226
303
  subClassOf: "vcard:RelatedType".freeze,
227
304
  type: "owl:Class".freeze
228
305
  term :Name,
229
306
  comment: %(To specify the components of the name of the object).freeze,
307
+ equivalentClass: term(
308
+ type: "owl:Class".freeze,
309
+ unionOf: list(term(
310
+ type: "owl:Class".freeze,
311
+ intersectionOf: list(term(
312
+ onProperty: "vcard:additional-name".freeze,
313
+ type: "owl:Restriction".freeze,
314
+ someValuesFrom: "xsd:string".freeze
315
+ ), term(
316
+ minCardinality: "0".freeze,
317
+ onProperty: "vcard:additional-name".freeze,
318
+ type: "owl:Restriction".freeze
319
+ ))
320
+ ), term(
321
+ type: "owl:Class".freeze,
322
+ intersectionOf: list(term(
323
+ onProperty: "vcard:family-name".freeze,
324
+ type: "owl:Restriction".freeze,
325
+ someValuesFrom: "xsd:string".freeze
326
+ ), term(
327
+ maxCardinality: "1".freeze,
328
+ onProperty: "vcard:family-name".freeze,
329
+ type: "owl:Restriction".freeze
330
+ ))
331
+ ), term(
332
+ type: "owl:Class".freeze,
333
+ intersectionOf: list(term(
334
+ onProperty: "vcard:given-name".freeze,
335
+ type: "owl:Restriction".freeze,
336
+ someValuesFrom: "xsd:string".freeze
337
+ ), term(
338
+ maxCardinality: "1".freeze,
339
+ onProperty: "vcard:given-name".freeze,
340
+ type: "owl:Restriction".freeze
341
+ ))
342
+ ), term(
343
+ type: "owl:Class".freeze,
344
+ intersectionOf: list(term(
345
+ onProperty: "vcard:honorific-prefix".freeze,
346
+ type: "owl:Restriction".freeze,
347
+ someValuesFrom: "xsd:string".freeze
348
+ ), term(
349
+ minCardinality: "0".freeze,
350
+ onProperty: "vcard:honorific-prefix".freeze,
351
+ type: "owl:Restriction".freeze
352
+ ))
353
+ ), term(
354
+ type: "owl:Class".freeze,
355
+ intersectionOf: list(term(
356
+ onProperty: "vcard:honorific-suffix".freeze,
357
+ type: "owl:Restriction".freeze,
358
+ someValuesFrom: "xsd:string".freeze
359
+ ), term(
360
+ minCardinality: "0".freeze,
361
+ onProperty: "vcard:honorific-suffix".freeze,
362
+ type: "owl:Restriction".freeze
363
+ ))
364
+ ))
365
+ ),
366
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
230
367
  label: "Name".freeze,
231
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
232
368
  type: "owl:Class".freeze
233
369
  term :Neighbor,
370
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
234
371
  label: "Neighbor".freeze,
235
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
236
372
  subClassOf: "vcard:RelatedType".freeze,
237
373
  type: "owl:Class".freeze
238
374
  term :None,
375
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
239
376
  label: "None".freeze,
240
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
241
377
  subClassOf: "vcard:Gender".freeze,
242
378
  type: "owl:Class".freeze
243
379
  term :Organization,
244
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.
245
381
  ).freeze,
382
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
246
383
  label: "Organization".freeze,
247
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
248
384
  subClassOf: "vcard:Kind".freeze,
249
385
  type: "owl:Class".freeze
250
386
  term :Other,
387
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
251
388
  label: "Other".freeze,
252
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
253
389
  subClassOf: "vcard:Gender".freeze,
254
390
  type: "owl:Class".freeze
255
391
  term :PCS,
256
392
  comment: %(This class is deprecated).freeze,
393
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
257
394
  label: "PCS".freeze,
258
- :"owl:deprecated" => %(true).freeze,
259
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
395
+ "owl:deprecated": "true".freeze,
260
396
  subClassOf: "vcard:TelephoneType".freeze,
261
397
  type: "owl:Class".freeze
262
398
  term :Pager,
399
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
263
400
  label: "Pager".freeze,
264
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
265
401
  subClassOf: "vcard:TelephoneType".freeze,
266
402
  type: "owl:Class".freeze
267
403
  term :Parcel,
268
404
  comment: %(This class is deprecated).freeze,
405
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
269
406
  label: "Parcel".freeze,
270
- :"owl:deprecated" => %(true).freeze,
271
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
407
+ "owl:deprecated": "true".freeze,
272
408
  subClassOf: "vcard:Type".freeze,
273
409
  type: "owl:Class".freeze
274
410
  term :Parent,
411
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
275
412
  label: "Parent".freeze,
276
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
277
413
  subClassOf: "vcard:RelatedType".freeze,
278
414
  type: "owl:Class".freeze
279
415
  term :Postal,
280
416
  comment: %(This class is deprecated).freeze,
417
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
281
418
  label: "Postal".freeze,
282
- :"owl:deprecated" => %(true).freeze,
283
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
419
+ "owl:deprecated": "true".freeze,
284
420
  subClassOf: "vcard:Type".freeze,
285
421
  type: "owl:Class".freeze
286
422
  term :Pref,
287
423
  comment: %(This class is deprecated).freeze,
424
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
288
425
  label: "Pref".freeze,
289
- :"owl:deprecated" => %(true).freeze,
290
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
426
+ "owl:deprecated": "true".freeze,
291
427
  subClassOf: "vcard:Type".freeze,
292
428
  type: "owl:Class".freeze
293
429
  term :RelatedType,
294
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,
431
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
295
432
  label: "Relation Type".freeze,
296
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
297
433
  type: "owl:Class".freeze
298
434
  term :Sibling,
435
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
299
436
  label: "Sibling".freeze,
300
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
301
437
  subClassOf: "vcard:RelatedType".freeze,
302
438
  type: "owl:Class".freeze
303
439
  term :Spouse,
440
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
304
441
  label: "Spouse".freeze,
305
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
306
442
  subClassOf: "vcard:RelatedType".freeze,
307
443
  type: "owl:Class".freeze
308
444
  term :Sweetheart,
445
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
309
446
  label: "Sweetheart".freeze,
310
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
311
447
  subClassOf: "vcard:RelatedType".freeze,
312
448
  type: "owl:Class".freeze
313
449
  term :Tel,
314
450
  comment: %(This class is deprecated. Use the hasTelephone object property.).freeze,
451
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
315
452
  label: "Tel".freeze,
316
- :"owl:deprecated" => %(true).freeze,
317
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
453
+ "owl:deprecated": "true".freeze,
318
454
  type: "owl:Class".freeze
319
455
  term :TelephoneType,
320
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,
457
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
321
458
  label: "Phone".freeze,
322
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
323
459
  type: "owl:Class".freeze
324
460
  term :Text,
325
461
  comment: %(Also called sms telephone).freeze,
462
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
326
463
  label: "Text".freeze,
327
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
328
464
  subClassOf: "vcard:TelephoneType".freeze,
329
465
  type: "owl:Class".freeze
330
466
  term :TextPhone,
467
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
331
468
  label: "Text phone".freeze,
332
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
333
469
  subClassOf: "vcard:TelephoneType".freeze,
334
470
  type: "owl:Class".freeze
335
471
  term :Type,
336
472
  comment: %(Used for type codes. The URI of the type code must be used as the value for Type.).freeze,
473
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
337
474
  label: "Type".freeze,
338
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
339
475
  type: "owl:Class".freeze
340
476
  term :Unknown,
477
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
341
478
  label: "Unknown".freeze,
342
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
343
479
  subClassOf: "vcard:Gender".freeze,
344
480
  type: "owl:Class".freeze
345
481
  term :VCard,
346
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,
483
+ equivalentClass: "vcard:Kind".freeze,
484
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
347
485
  label: "VCard".freeze,
348
- :"owl:equivalentClass" => %(vcard:Kind).freeze,
349
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
350
486
  type: "owl:Class".freeze
351
487
  term :Video,
488
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
352
489
  label: "Video".freeze,
353
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
354
490
  subClassOf: "vcard:TelephoneType".freeze,
355
491
  type: "owl:Class".freeze
356
492
  term :Voice,
493
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
357
494
  label: "Voice".freeze,
358
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
359
495
  subClassOf: "vcard:TelephoneType".freeze,
360
496
  type: "owl:Class".freeze
361
497
  term :Work,
362
498
  comment: %(This implies that the property is related to an individual's work place).freeze,
499
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
363
500
  label: "Work".freeze,
364
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
365
501
  subClassOf: "vcard:Type".freeze,
366
502
  type: "owl:Class".freeze
367
503
  term :X400,
368
504
  comment: %(This class is deprecated).freeze,
505
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
369
506
  label: "X400".freeze,
370
- :"owl:deprecated" => %(true).freeze,
371
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
507
+ "owl:deprecated": "true".freeze,
372
508
  subClassOf: "vcard:Type".freeze,
373
509
  type: "owl:Class".freeze
374
510
 
375
511
  # Property definitions
376
512
  property :"additional-name",
377
513
  comment: %(The additional name associated with the object).freeze,
514
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
378
515
  label: "additional name".freeze,
379
516
  range: "xsd:string".freeze,
380
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
381
517
  type: "owl:DatatypeProperty".freeze
382
518
  property :adr,
383
519
  comment: %(This object property has been mapped).freeze,
520
+ equivalentProperty: "vcard:hasAddress".freeze,
521
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
384
522
  label: "address".freeze,
385
- :"owl:equivalentProperty" => %(vcard:hasAddress).freeze,
386
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
387
523
  type: "owl:ObjectProperty".freeze
388
524
  property :agent,
389
525
  comment: %(This object property has been deprecated).freeze,
526
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
390
527
  label: "agent".freeze,
391
- :"owl:deprecated" => %(true).freeze,
392
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
528
+ "owl:deprecated": "true".freeze,
393
529
  type: "owl:ObjectProperty".freeze
394
530
  property :anniversary,
395
531
  comment: %(The date of marriage, or equivalent, of the object).freeze,
532
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
396
533
  label: "anniversary".freeze,
397
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
534
+ range: term(
535
+ type: "rdfs:Datatype".freeze,
536
+ unionOf: list("xsd:dateTime".freeze, "xsd:gYear".freeze)
537
+ ),
398
538
  type: "owl:DatatypeProperty".freeze
399
539
  property :bday,
400
540
  comment: %(To specify the birth date of the object).freeze,
541
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
401
542
  label: "birth date".freeze,
402
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
543
+ range: term(
544
+ type: "rdfs:Datatype".freeze,
545
+ unionOf: list("xsd:dateTime".freeze, "xsd:dateTimeStamp".freeze, "xsd:gYear".freeze)
546
+ ),
403
547
  type: "owl:DatatypeProperty".freeze
404
548
  property :category,
405
549
  comment: %(The category information about the object, also known as tags).freeze,
550
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
406
551
  label: "category".freeze,
407
552
  range: "xsd:string".freeze,
408
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
409
553
  type: "owl:DatatypeProperty".freeze
410
554
  property :class,
411
555
  comment: %(This data property has been deprecated).freeze,
556
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
412
557
  label: "class".freeze,
413
- :"owl:deprecated" => %(true).freeze,
414
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
558
+ "owl:deprecated": "true".freeze,
415
559
  type: "owl:DatatypeProperty".freeze
416
560
  property :"country-name",
417
561
  comment: %(The country name associated with the address of the object).freeze,
562
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
418
563
  label: "country name".freeze,
419
564
  range: "xsd:string".freeze,
420
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
421
565
  type: "owl:DatatypeProperty".freeze
422
566
  property :email,
423
567
  comment: %(This object property has been mapped).freeze,
568
+ equivalentProperty: "vcard:hasEmail".freeze,
569
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
424
570
  label: "email".freeze,
425
- :"owl:equivalentProperty" => %(vcard:hasEmail).freeze,
426
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
427
571
  type: "owl:ObjectProperty".freeze
428
572
  property :"extended-address",
429
573
  comment: %(This data property has been deprecated).freeze,
574
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
430
575
  label: "extended address".freeze,
431
- :"owl:deprecated" => %(true).freeze,
432
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
576
+ "owl:deprecated": "true".freeze,
433
577
  type: "owl:DatatypeProperty".freeze
434
578
  property :"family-name",
435
579
  comment: %(The family name associated with the object).freeze,
580
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
436
581
  label: "family name".freeze,
437
582
  range: "xsd:string".freeze,
438
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
439
583
  type: "owl:DatatypeProperty".freeze
440
584
  property :fn,
441
585
  comment: %(The formatted text corresponding to the name of the object).freeze,
586
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
442
587
  label: "formatted name".freeze,
443
588
  range: "xsd:string".freeze,
444
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
445
589
  type: "owl:DatatypeProperty".freeze
446
590
  property :geo,
447
591
  comment: %(This object property has been mapped).freeze,
592
+ equivalentProperty: "vcard:hasGeo".freeze,
593
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
448
594
  label: "geo".freeze,
449
- :"owl:equivalentProperty" => %(vcard:hasGeo).freeze,
450
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
451
595
  type: "owl:ObjectProperty".freeze
452
596
  property :"given-name",
453
597
  comment: %(The given name associated with the object).freeze,
598
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
454
599
  label: "given name".freeze,
455
600
  range: "xsd:string".freeze,
456
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
457
601
  type: "owl:DatatypeProperty".freeze
458
602
  property :hasAdditionalName,
459
603
  comment: %(Used to support property parameters for the additional name data property).freeze,
604
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
460
605
  label: "has additional name".freeze,
461
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
462
606
  type: "owl:ObjectProperty".freeze
463
607
  property :hasAddress,
464
608
  comment: %(To specify the components of the delivery address for the object).freeze,
609
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
465
610
  label: "has address".freeze,
466
611
  range: "vcard:Address".freeze,
467
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
468
612
  type: "owl:ObjectProperty".freeze
469
613
  property :hasCalendarBusy,
470
614
  comment: %(To specify the busy time associated with the object. \(Was called FBURL in RFC6350\)).freeze,
615
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
471
616
  label: "has calendar busy".freeze,
472
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
473
617
  type: "owl:ObjectProperty".freeze
474
618
  property :hasCalendarLink,
475
619
  comment: %(To specify the calendar associated with the object. \(Was called CALURI in RFC6350\)).freeze,
620
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
476
621
  label: "has calendar link".freeze,
477
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
478
622
  type: "owl:ObjectProperty".freeze
479
623
  property :hasCalendarRequest,
480
624
  comment: %(To specify the calendar user address to which a scheduling request be sent for the object. \(Was called CALADRURI in RFC6350\)).freeze,
625
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
481
626
  label: "has calendar request".freeze,
482
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
483
627
  type: "owl:ObjectProperty".freeze
484
628
  property :hasCategory,
485
629
  comment: %(Used to support property parameters for the category data property).freeze,
630
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
486
631
  label: "has category".freeze,
487
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
488
632
  type: "owl:ObjectProperty".freeze
489
633
  property :hasCountryName,
490
634
  comment: %(Used to support property parameters for the country name data property).freeze,
635
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
491
636
  label: "has country name".freeze,
492
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
493
637
  type: "owl:ObjectProperty".freeze
494
638
  property :hasEmail,
495
639
  comment: %(To specify the electronic mail address for communication with the object).freeze,
640
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
496
641
  label: "has email".freeze,
497
642
  range: "vcard:Email".freeze,
498
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
499
643
  type: "owl:ObjectProperty".freeze
500
644
  property :hasFN,
501
645
  comment: %(Used to support property parameters for the formatted name data property).freeze,
646
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
502
647
  label: "has formatted name".freeze,
503
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
504
648
  type: "owl:ObjectProperty".freeze
505
649
  property :hasFamilyName,
506
650
  comment: %(Used to support property parameters for the family name data property).freeze,
651
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
507
652
  label: "has family name".freeze,
508
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
509
653
  type: "owl:ObjectProperty".freeze
510
654
  property :hasGender,
511
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,
656
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
512
657
  label: "has gender".freeze,
513
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
514
658
  type: "owl:ObjectProperty".freeze
515
659
  property :hasGeo,
516
660
  comment: %(To specify information related to the global positioning of the object. May also be used as a property parameter.).freeze,
661
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
517
662
  label: "has geo".freeze,
518
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
519
663
  type: "owl:ObjectProperty".freeze
520
664
  property :hasGivenName,
521
665
  comment: %(Used to support property parameters for the given name data property).freeze,
666
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
522
667
  label: "has given name".freeze,
523
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
524
668
  type: "owl:ObjectProperty".freeze
525
669
  property :hasHonorificPrefix,
526
670
  comment: %(Used to support property parameters for the honorific prefix data property).freeze,
671
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
527
672
  label: "has honorific prefix".freeze,
528
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
529
673
  type: "owl:ObjectProperty".freeze
530
674
  property :hasHonorificSuffix,
531
675
  comment: %(Used to support property parameters for the honorific suffix data property).freeze,
676
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
532
677
  label: "has honorific suffix".freeze,
533
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
534
678
  type: "owl:ObjectProperty".freeze
535
679
  property :hasInstantMessage,
536
680
  comment: %(To specify the instant messaging and presence protocol communications with the object. \(Was called IMPP in RFC6350\)).freeze,
681
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
537
682
  label: "has messaging".freeze,
538
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
539
683
  type: "owl:ObjectProperty".freeze
540
684
  property :hasKey,
541
685
  comment: %(To specify a public key or authentication certificate associated with the object).freeze,
686
+ equivalentProperty: "vcard:key".freeze,
687
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
542
688
  label: "has key".freeze,
543
- :"owl:equivalentProperty" => %(vcard:key).freeze,
544
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
545
689
  type: "owl:ObjectProperty".freeze
546
690
  property :hasLanguage,
547
691
  comment: %(Used to support property parameters for the language data property).freeze,
692
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
548
693
  label: "has language".freeze,
549
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
550
694
  type: "owl:ObjectProperty".freeze
551
695
  property :hasLocality,
552
696
  comment: %(Used to support property parameters for the locality data property).freeze,
697
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
553
698
  label: "has locality".freeze,
554
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
555
699
  type: "owl:ObjectProperty".freeze
556
700
  property :hasLogo,
557
701
  comment: %(To specify a graphic image of a logo associated with the object ).freeze,
702
+ equivalentProperty: "vcard:logo".freeze,
703
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
558
704
  label: "has logo".freeze,
559
- :"owl:equivalentProperty" => %(vcard:logo).freeze,
560
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
561
705
  type: "owl:ObjectProperty".freeze
562
706
  property :hasMember,
563
707
  comment: %(To include a member in the group this object represents. \(This property can only be used by Group individuals\)).freeze,
564
708
  domain: "vcard:Group".freeze,
709
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
565
710
  label: "has member".freeze,
566
711
  range: "vcard:Kind".freeze,
567
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
568
712
  type: "owl:ObjectProperty".freeze
569
713
  property :hasName,
570
714
  comment: %(To specify the components of the name of the object).freeze,
715
+ equivalentProperty: "vcard:n".freeze,
716
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
571
717
  label: "has name".freeze,
572
- :"owl:equivalentProperty" => %(vcard:n).freeze,
573
718
  range: "vcard:Name".freeze,
574
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
575
719
  type: "owl:ObjectProperty".freeze
576
720
  property :hasNickname,
577
721
  comment: %(Used to support property parameters for the nickname data property).freeze,
722
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
578
723
  label: "has nickname".freeze,
579
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
580
- :"rdfs:seeAlso" => %(vcard:nickname).freeze,
724
+ "rdfs:seeAlso": "vcard:nickname".freeze,
581
725
  type: "owl:ObjectProperty".freeze
582
726
  property :hasNote,
583
727
  comment: %(Used to support property parameters for the note data property).freeze,
728
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
584
729
  label: "has note".freeze,
585
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
586
730
  type: "owl:ObjectProperty".freeze
587
731
  property :hasOrganizationName,
588
732
  comment: %(Used to support property parameters for the organization name data property).freeze,
733
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
589
734
  label: "has organization name".freeze,
590
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
591
735
  type: "owl:ObjectProperty".freeze
592
736
  property :hasOrganizationUnit,
593
737
  comment: %(Used to support property parameters for the organization unit name data property).freeze,
738
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
594
739
  label: "has organization unit name".freeze,
595
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
596
740
  type: "owl:ObjectProperty".freeze
597
741
  property :hasPhoto,
598
742
  comment: %(To specify an image or photograph information that annotates some aspect of the object).freeze,
743
+ equivalentProperty: "vcard:photo".freeze,
744
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
599
745
  label: "has photo".freeze,
600
- :"owl:equivalentProperty" => %(vcard:photo).freeze,
601
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
602
746
  type: "owl:ObjectProperty".freeze
603
747
  property :hasPostalCode,
604
748
  comment: %(Used to support property parameters for the postal code data property).freeze,
749
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
605
750
  label: "has postal code".freeze,
606
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
607
751
  type: "owl:ObjectProperty".freeze
608
752
  property :hasRegion,
609
753
  comment: %(Used to support property parameters for the region data property).freeze,
754
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
610
755
  label: "has region".freeze,
611
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
612
756
  type: "owl:ObjectProperty".freeze
613
757
  property :hasRelated,
614
758
  comment: %(To specify a relationship between another entity and the entity represented by this object).freeze,
759
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
615
760
  label: "has related".freeze,
616
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
617
761
  type: "owl:ObjectProperty".freeze
618
762
  property :hasRole,
619
763
  comment: %(Used to support property parameters for the role data property).freeze,
764
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
620
765
  label: "has role".freeze,
621
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
622
766
  type: "owl:ObjectProperty".freeze
623
767
  property :hasSound,
624
768
  comment: %(To specify a digital sound content information that annotates some aspect of the object).freeze,
769
+ equivalentProperty: "vcard:sound".freeze,
770
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
625
771
  label: "has sound".freeze,
626
- :"owl:equivalentProperty" => %(vcard:sound).freeze,
627
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
628
772
  type: "owl:ObjectProperty".freeze
629
773
  property :hasSource,
630
774
  comment: %(To identify the source of directory information of the object).freeze,
775
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
631
776
  label: "has source".freeze,
632
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
633
777
  type: "owl:ObjectProperty".freeze
634
778
  property :hasStreetAddress,
635
779
  comment: %(Used to support property parameters for the street address data property).freeze,
780
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
636
781
  label: "has street address".freeze,
637
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
638
782
  type: "owl:ObjectProperty".freeze
639
783
  property :hasTelephone,
640
784
  comment: %(To specify the telephone number for telephony communication with the object).freeze,
785
+ equivalentProperty: "vcard:tel".freeze,
786
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
641
787
  label: "has telephone".freeze,
642
- :"owl:equivalentProperty" => %(vcard:tel).freeze,
643
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
644
788
  type: "owl:ObjectProperty".freeze
645
789
  property :hasTitle,
646
790
  comment: %(Used to support property parameters for the title data property).freeze,
791
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
647
792
  label: "has title".freeze,
648
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
649
793
  type: "owl:ObjectProperty".freeze
650
794
  property :hasUID,
651
795
  comment: %(To specify a value that represents a globally unique identifier corresponding to the object).freeze,
796
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
652
797
  label: "has uid".freeze,
653
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
654
798
  type: "owl:ObjectProperty".freeze
655
799
  property :hasURL,
656
800
  comment: %(To specify a uniform resource locator associated with the object).freeze,
801
+ equivalentProperty: "vcard:url".freeze,
802
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
657
803
  label: "has url".freeze,
658
- :"owl:equivalentProperty" => %(vcard:url).freeze,
659
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
660
804
  type: "owl:ObjectProperty".freeze
661
805
  property :hasValue,
662
806
  comment: %(Used to indicate the resource value of an object property that requires property parameters).freeze,
807
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
663
808
  label: "has value".freeze,
664
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
665
809
  type: "owl:ObjectProperty".freeze
666
810
  property :"honorific-prefix",
667
811
  comment: %(The honorific prefix of the name associated with the object).freeze,
812
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
668
813
  label: "honorific prefix".freeze,
669
814
  range: "xsd:string".freeze,
670
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
671
815
  type: "owl:DatatypeProperty".freeze
672
816
  property :"honorific-suffix",
673
817
  comment: %(The honorific suffix of the name associated with the object).freeze,
818
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
674
819
  label: "honorific suffix".freeze,
675
820
  range: "xsd:string".freeze,
676
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
677
821
  type: "owl:DatatypeProperty".freeze
678
822
  property :key,
679
823
  comment: %(This object property has been mapped).freeze,
824
+ equivalentProperty: "vcard:hasKey".freeze,
825
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
680
826
  label: "key".freeze,
681
- :"owl:equivalentProperty" => %(vcard:hasKey).freeze,
682
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
683
827
  type: "owl:ObjectProperty".freeze
684
828
  property :label,
685
829
  comment: %(This data property has been deprecated).freeze,
830
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
686
831
  label: "label".freeze,
687
- :"owl:deprecated" => %(true).freeze,
688
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
832
+ "owl:deprecated": "true".freeze,
689
833
  type: "owl:DatatypeProperty".freeze
690
834
  property :language,
691
835
  comment: %(To specify the language that may be used for contacting the object. May also be used as a property parameter.).freeze,
836
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
692
837
  label: "language".freeze,
693
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
694
838
  type: "owl:DatatypeProperty".freeze
695
839
  property :latitude,
696
840
  comment: %(This data property has been deprecated. See hasGeo).freeze,
841
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
697
842
  label: "latitude".freeze,
698
- :"owl:deprecated" => %(true).freeze,
699
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
843
+ "owl:deprecated": "true".freeze,
700
844
  type: "owl:DatatypeProperty".freeze
701
845
  property :locality,
702
846
  comment: %(The locality \(e.g. city or town\) associated with the address of the object).freeze,
847
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
703
848
  label: "locality".freeze,
704
849
  range: "xsd:string".freeze,
705
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
706
850
  type: "owl:DatatypeProperty".freeze
707
851
  property :logo,
708
852
  comment: %(This object property has been mapped).freeze,
853
+ equivalentProperty: "vcard:hasLogo".freeze,
854
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
709
855
  label: "logo".freeze,
710
- :"owl:equivalentProperty" => %(vcard:hasLogo).freeze,
711
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
712
856
  type: "owl:ObjectProperty".freeze
713
857
  property :longitude,
714
858
  comment: %(This data property has been deprecated. See hasGeo).freeze,
859
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
715
860
  label: "longitude".freeze,
716
- :"owl:deprecated" => %(true).freeze,
717
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
861
+ "owl:deprecated": "true".freeze,
718
862
  type: "owl:DatatypeProperty".freeze
719
863
  property :mailer,
720
864
  comment: %(This data property has been deprecated).freeze,
865
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
721
866
  label: "mailer".freeze,
722
- :"owl:deprecated" => %(true).freeze,
723
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
867
+ "owl:deprecated": "true".freeze,
724
868
  type: "owl:DatatypeProperty".freeze
725
869
  property :n,
726
870
  comment: %(This object property has been mapped).freeze,
871
+ equivalentProperty: "vcard:hasName".freeze,
872
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
727
873
  label: "name".freeze,
728
- :"owl:equivalentProperty" => %(vcard:hasName).freeze,
729
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
730
874
  type: "owl:ObjectProperty".freeze
731
875
  property :nickname,
732
876
  comment: %(The nick name associated with the object).freeze,
877
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
733
878
  label: "nickname".freeze,
734
879
  range: "xsd:string".freeze,
735
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
736
880
  type: "owl:DatatypeProperty".freeze
737
881
  property :note,
738
882
  comment: %(A note associated with the object).freeze,
883
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
739
884
  label: "note".freeze,
740
885
  range: "xsd:string".freeze,
741
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
742
886
  type: "owl:DatatypeProperty".freeze
743
887
  property :org,
744
888
  comment: %(This object property has been mapped. Use the organization-name data property.).freeze,
889
+ equivalentProperty: "vcard:organization-name".freeze,
890
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
745
891
  label: "organization".freeze,
746
- :"owl:equivalentProperty" => %(vcard:organization-name).freeze,
747
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
748
892
  type: "owl:ObjectProperty".freeze
749
893
  property :"organization-name",
750
894
  comment: %(To specify the organizational name associated with the object).freeze,
895
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
751
896
  label: "organization name".freeze,
752
897
  range: "xsd:string".freeze,
753
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
754
898
  type: "owl:DatatypeProperty".freeze
755
899
  property :"organization-unit",
756
900
  comment: %(To specify the organizational unit name associated with the object).freeze,
901
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
757
902
  label: "organizational unit name".freeze,
758
903
  range: "xsd:string".freeze,
759
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
760
904
  subPropertyOf: "vcard:organization-name".freeze,
761
905
  type: "owl:DatatypeProperty".freeze
762
906
  property :photo,
763
907
  comment: %(This object property has been mapped).freeze,
908
+ equivalentProperty: "vcard:hasPhoto".freeze,
909
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
764
910
  label: "photo".freeze,
765
- :"owl:equivalentProperty" => %(vcard:hasPhoto).freeze,
766
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
767
911
  type: "owl:ObjectProperty".freeze
768
912
  property :"post-office-box",
769
913
  comment: %(This data property has been deprecated).freeze,
914
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
770
915
  label: "post office box".freeze,
771
- :"owl:deprecated" => %(true).freeze,
772
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
916
+ "owl:deprecated": "true".freeze,
773
917
  type: "owl:DatatypeProperty".freeze
774
918
  property :"postal-code",
775
919
  comment: %(The postal code associated with the address of the object).freeze,
920
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
776
921
  label: "postal code".freeze,
777
922
  range: "xsd:string".freeze,
778
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
779
923
  type: "owl:DatatypeProperty".freeze
780
924
  property :prodid,
781
925
  comment: %(To specify the identifier for the product that created the object).freeze,
926
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
782
927
  label: "product id".freeze,
783
928
  range: "xsd:string".freeze,
784
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
785
929
  type: "owl:DatatypeProperty".freeze
786
930
  property :region,
787
931
  comment: %(The region \(e.g. state or province\) associated with the address of the object).freeze,
932
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
788
933
  label: "region".freeze,
789
934
  range: "xsd:string".freeze,
790
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
791
935
  type: "owl:DatatypeProperty".freeze
792
936
  property :rev,
793
937
  comment: %(To specify revision information about the object).freeze,
938
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
794
939
  label: "revision".freeze,
795
940
  range: "xsd:dateTime".freeze,
796
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
797
941
  type: "owl:DatatypeProperty".freeze
798
942
  property :role,
799
943
  comment: %(To specify the function or part played in a particular situation by the object).freeze,
944
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
800
945
  label: "role".freeze,
801
946
  range: "xsd:string".freeze,
802
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
803
947
  type: "owl:DatatypeProperty".freeze
804
948
  property :"sort-string",
805
949
  comment: %(To specify the string to be used for national-language-specific sorting. Used as a property parameter only.).freeze,
950
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
806
951
  label: "sort as".freeze,
807
952
  range: "xsd:string".freeze,
808
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
809
953
  type: "owl:DatatypeProperty".freeze
810
954
  property :sound,
811
955
  comment: %(This object property has been mapped).freeze,
956
+ equivalentProperty: "vcard:hasSound".freeze,
957
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
812
958
  label: "sound".freeze,
813
- :"owl:equivalentProperty" => %(vcard:hasSound).freeze,
814
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
815
959
  type: "owl:ObjectProperty".freeze
816
960
  property :"street-address",
817
961
  comment: %(The street address associated with the address of the object).freeze,
962
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
818
963
  label: "street address".freeze,
819
964
  range: "xsd:string".freeze,
820
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
821
965
  type: "owl:DatatypeProperty".freeze
822
966
  property :tel,
823
967
  comment: %(This object property has been mapped).freeze,
968
+ equivalentProperty: "vcard:hasTelephone".freeze,
969
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
824
970
  label: "telephone".freeze,
825
- :"owl:equivalentProperty" => %(vcard:hasTelephone).freeze,
826
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
827
971
  type: "owl:ObjectProperty".freeze
828
972
  property :title,
829
973
  comment: %(To specify the position or job of the object).freeze,
974
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
830
975
  label: "title".freeze,
831
976
  range: "xsd:string".freeze,
832
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
833
977
  type: "owl:DatatypeProperty".freeze
834
978
  property :tz,
835
979
  comment: %(To indicate time zone information that is specific to the object. May also be used as a property parameter.).freeze,
980
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
836
981
  label: "time zone".freeze,
837
982
  range: "xsd:string".freeze,
838
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
839
983
  type: "owl:DatatypeProperty".freeze
840
984
  property :url,
841
985
  comment: %(This object property has been mapped).freeze,
986
+ equivalentProperty: "vcard:hasURL".freeze,
987
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
842
988
  label: "url".freeze,
843
- :"owl:equivalentProperty" => %(vcard:hasURL).freeze,
844
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
845
989
  type: "owl:ObjectProperty".freeze
846
990
  property :value,
847
991
  comment: %(Used to indicate the literal value of a data property that requires property parameters).freeze,
992
+ isDefinedBy: "http://www.w3.org/2006/vcard/ns".freeze,
848
993
  label: "value".freeze,
849
- :"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
850
994
  type: "owl:DatatypeProperty".freeze
851
995
  end
852
996
  end