rdf 1.99.1 → 2.0.0.beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/{README → README.md} +9 -44
- data/VERSION +1 -1
- data/bin/rdf +1 -1
- data/lib/rdf.rb +40 -49
- data/lib/rdf/changeset.rb +161 -0
- data/lib/rdf/cli.rb +195 -33
- data/lib/rdf/cli/vocab-loader.rb +13 -3
- data/lib/rdf/format.rb +44 -26
- data/lib/rdf/mixin/enumerable.rb +133 -97
- data/lib/rdf/mixin/enumerator.rb +8 -0
- data/lib/rdf/mixin/indexable.rb +1 -1
- data/lib/rdf/mixin/mutable.rb +101 -22
- data/lib/rdf/mixin/queryable.rb +21 -32
- data/lib/rdf/mixin/transactable.rb +94 -0
- data/lib/rdf/mixin/writable.rb +12 -3
- data/lib/rdf/model/dataset.rb +48 -0
- data/lib/rdf/model/graph.rb +73 -43
- data/lib/rdf/model/list.rb +61 -33
- data/lib/rdf/model/literal.rb +20 -19
- data/lib/rdf/model/literal/double.rb +20 -4
- data/lib/rdf/model/literal/numeric.rb +15 -13
- data/lib/rdf/model/node.rb +15 -16
- data/lib/rdf/model/statement.rb +1 -43
- data/lib/rdf/model/term.rb +10 -8
- data/lib/rdf/model/uri.rb +35 -34
- data/lib/rdf/model/value.rb +1 -1
- data/lib/rdf/nquads.rb +2 -11
- data/lib/rdf/ntriples.rb +1 -1
- data/lib/rdf/ntriples/reader.rb +33 -46
- data/lib/rdf/ntriples/writer.rb +42 -5
- data/lib/rdf/query.rb +6 -40
- data/lib/rdf/query/pattern.rb +4 -17
- data/lib/rdf/query/solutions.rb +6 -6
- data/lib/rdf/reader.rb +65 -14
- data/lib/rdf/repository.rb +365 -229
- data/lib/rdf/transaction.rb +211 -84
- data/lib/rdf/util.rb +1 -0
- data/lib/rdf/util/cache.rb +5 -5
- data/lib/rdf/util/file.rb +12 -9
- data/lib/rdf/util/logger.rb +272 -0
- data/lib/rdf/version.rb +2 -2
- data/lib/rdf/vocab/owl.rb +82 -77
- data/lib/rdf/vocab/rdfs.rb +22 -17
- data/lib/rdf/vocab/xsd.rb +5 -0
- data/lib/rdf/vocabulary.rb +50 -56
- data/lib/rdf/writer.rb +104 -52
- metadata +45 -90
- data/lib/rdf/mixin/inferable.rb +0 -5
- data/lib/rdf/vocab/cc.rb +0 -128
- data/lib/rdf/vocab/cert.rb +0 -245
- data/lib/rdf/vocab/dc.rb +0 -948
- data/lib/rdf/vocab/dc11.rb +0 -167
- data/lib/rdf/vocab/dcat.rb +0 -214
- data/lib/rdf/vocab/doap.rb +0 -337
- data/lib/rdf/vocab/exif.rb +0 -941
- data/lib/rdf/vocab/foaf.rb +0 -614
- data/lib/rdf/vocab/geo.rb +0 -157
- data/lib/rdf/vocab/gr.rb +0 -1501
- data/lib/rdf/vocab/ht.rb +0 -236
- data/lib/rdf/vocab/ical.rb +0 -528
- data/lib/rdf/vocab/ma.rb +0 -513
- data/lib/rdf/vocab/mo.rb +0 -2412
- data/lib/rdf/vocab/og.rb +0 -222
- data/lib/rdf/vocab/ogc.rb +0 -58
- data/lib/rdf/vocab/prov.rb +0 -1550
- data/lib/rdf/vocab/rsa.rb +0 -72
- data/lib/rdf/vocab/rss.rb +0 -66
- data/lib/rdf/vocab/schema.rb +0 -10569
- data/lib/rdf/vocab/sioc.rb +0 -669
- data/lib/rdf/vocab/skos.rb +0 -238
- data/lib/rdf/vocab/skosxl.rb +0 -57
- data/lib/rdf/vocab/v.rb +0 -383
- data/lib/rdf/vocab/vcard.rb +0 -841
- data/lib/rdf/vocab/vmd.rb +0 -383
- data/lib/rdf/vocab/void.rb +0 -186
- data/lib/rdf/vocab/vs.rb +0 -28
- data/lib/rdf/vocab/wdrs.rb +0 -134
- data/lib/rdf/vocab/wot.rb +0 -167
- data/lib/rdf/vocab/xhtml.rb +0 -8
- data/lib/rdf/vocab/xhv.rb +0 -505
data/lib/rdf/vocab/vcard.rb
DELETED
@@ -1,841 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
# This file generated automatically using vocab-fetch from http://www.w3.org/2006/vcard/ns#
|
3
|
-
require 'rdf'
|
4
|
-
module RDF
|
5
|
-
# @deprecated Please use `RDF::Vocab::VCARD` from the rdf-vocab gem instead
|
6
|
-
class VCARD < RDF::StrictVocabulary("http://www.w3.org/2006/vcard/ns#")
|
7
|
-
|
8
|
-
# Class definitions
|
9
|
-
term :Acquaintance,
|
10
|
-
label: "Acquaintance".freeze,
|
11
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
12
|
-
subClassOf: "vcard:RelatedType".freeze,
|
13
|
-
type: "owl:Class".freeze
|
14
|
-
term :Address,
|
15
|
-
comment: %(To specify the components of the delivery address for the object).freeze,
|
16
|
-
label: "Address".freeze,
|
17
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
18
|
-
type: "owl:Class".freeze
|
19
|
-
term :Agent,
|
20
|
-
label: "Agent".freeze,
|
21
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
22
|
-
subClassOf: "vcard:RelatedType".freeze,
|
23
|
-
type: "owl:Class".freeze
|
24
|
-
term :BBS,
|
25
|
-
comment: %(This class is deprecated).freeze,
|
26
|
-
label: "BBS".freeze,
|
27
|
-
"owl:deprecated" => %(true).freeze,
|
28
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
29
|
-
subClassOf: "vcard:TelephoneType".freeze,
|
30
|
-
type: "owl:Class".freeze
|
31
|
-
term :Car,
|
32
|
-
comment: %(This class is deprecated).freeze,
|
33
|
-
label: "Car".freeze,
|
34
|
-
"owl:deprecated" => %(true).freeze,
|
35
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
36
|
-
subClassOf: "vcard:TelephoneType".freeze,
|
37
|
-
type: "owl:Class".freeze
|
38
|
-
term :Cell,
|
39
|
-
comment: %(Also called mobile telephone).freeze,
|
40
|
-
label: "Cell".freeze,
|
41
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
42
|
-
subClassOf: "vcard:TelephoneType".freeze,
|
43
|
-
type: "owl:Class".freeze
|
44
|
-
term :Child,
|
45
|
-
label: "Child".freeze,
|
46
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
47
|
-
subClassOf: "vcard:RelatedType".freeze,
|
48
|
-
type: "owl:Class".freeze
|
49
|
-
term :Colleague,
|
50
|
-
label: "Colleague".freeze,
|
51
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
52
|
-
subClassOf: "vcard:RelatedType".freeze,
|
53
|
-
type: "owl:Class".freeze
|
54
|
-
term :Contact,
|
55
|
-
label: "Contact".freeze,
|
56
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
57
|
-
subClassOf: "vcard:RelatedType".freeze,
|
58
|
-
type: "owl:Class".freeze
|
59
|
-
term :Coresident,
|
60
|
-
label: "Coresident".freeze,
|
61
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
62
|
-
subClassOf: "vcard:RelatedType".freeze,
|
63
|
-
type: "owl:Class".freeze
|
64
|
-
term :Coworker,
|
65
|
-
label: "Coworker".freeze,
|
66
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
67
|
-
subClassOf: "vcard:RelatedType".freeze,
|
68
|
-
type: "owl:Class".freeze
|
69
|
-
term :Crush,
|
70
|
-
label: "Crush".freeze,
|
71
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
72
|
-
subClassOf: "vcard:RelatedType".freeze,
|
73
|
-
type: "owl:Class".freeze
|
74
|
-
term :Date,
|
75
|
-
label: "Date".freeze,
|
76
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
77
|
-
subClassOf: "vcard:RelatedType".freeze,
|
78
|
-
type: "owl:Class".freeze
|
79
|
-
term :Dom,
|
80
|
-
comment: %(This class is deprecated).freeze,
|
81
|
-
label: "Dom".freeze,
|
82
|
-
"owl:deprecated" => %(true).freeze,
|
83
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
84
|
-
subClassOf: "vcard:Type".freeze,
|
85
|
-
type: "owl:Class".freeze
|
86
|
-
term :Email,
|
87
|
-
comment: %(To specify the electronic mail address for communication with the object the vCard represents. Use the hasEmail object property.).freeze,
|
88
|
-
label: "Email".freeze,
|
89
|
-
"owl:deprecated" => %(true).freeze,
|
90
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
91
|
-
type: "owl:Class".freeze
|
92
|
-
term :Emergency,
|
93
|
-
label: "Emergency".freeze,
|
94
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
95
|
-
subClassOf: "vcard:RelatedType".freeze,
|
96
|
-
type: "owl:Class".freeze
|
97
|
-
term :Fax,
|
98
|
-
label: "Fax".freeze,
|
99
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
100
|
-
subClassOf: "vcard:TelephoneType".freeze,
|
101
|
-
type: "owl:Class".freeze
|
102
|
-
term :Female,
|
103
|
-
label: "Female".freeze,
|
104
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
105
|
-
subClassOf: "vcard:Gender".freeze,
|
106
|
-
type: "owl:Class".freeze
|
107
|
-
term :Friend,
|
108
|
-
label: "Friend".freeze,
|
109
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
110
|
-
subClassOf: "vcard:RelatedType".freeze,
|
111
|
-
type: "owl:Class".freeze
|
112
|
-
term :Gender,
|
113
|
-
comment: %(Used for gender codes. The URI of the gender code must be used as the value for Gender.).freeze,
|
114
|
-
label: "Gender".freeze,
|
115
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
116
|
-
type: "owl:Class".freeze
|
117
|
-
term :Group,
|
118
|
-
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,
|
119
|
-
label: "Group".freeze,
|
120
|
-
"owl:disjointWith" => [%(vcard:Individual).freeze, %(vcard:Location).freeze, %(vcard:Organization).freeze],
|
121
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
122
|
-
subClassOf: "vcard:Kind".freeze,
|
123
|
-
type: "owl:Class".freeze
|
124
|
-
term :Home,
|
125
|
-
comment: %(This implies that the property is related to an individual's personal life).freeze,
|
126
|
-
label: "Home".freeze,
|
127
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
128
|
-
subClassOf: "vcard:Type".freeze,
|
129
|
-
type: "owl:Class".freeze
|
130
|
-
term :ISDN,
|
131
|
-
comment: %(This class is deprecated).freeze,
|
132
|
-
label: "ISDN".freeze,
|
133
|
-
"owl:deprecated" => %(true).freeze,
|
134
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
135
|
-
subClassOf: "vcard:Type".freeze,
|
136
|
-
type: "owl:Class".freeze
|
137
|
-
term :Individual,
|
138
|
-
comment: %(An object representing a single person or entity).freeze,
|
139
|
-
label: "Individual".freeze,
|
140
|
-
"owl:disjointWith" => [%(vcard:Location).freeze, %(vcard:Organization).freeze],
|
141
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
142
|
-
subClassOf: "vcard:Kind".freeze,
|
143
|
-
type: "owl:Class".freeze
|
144
|
-
term :Internet,
|
145
|
-
comment: %(This class is deprecated).freeze,
|
146
|
-
label: "Internet".freeze,
|
147
|
-
"owl:deprecated" => %(true).freeze,
|
148
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
149
|
-
subClassOf: "vcard:Type".freeze,
|
150
|
-
type: "owl:Class".freeze
|
151
|
-
term :Intl,
|
152
|
-
comment: %(This class is deprecated).freeze,
|
153
|
-
label: "Intl".freeze,
|
154
|
-
"owl:deprecated" => %(true).freeze,
|
155
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
156
|
-
subClassOf: "vcard:Type".freeze,
|
157
|
-
type: "owl:Class".freeze
|
158
|
-
term :Kin,
|
159
|
-
label: "Kin".freeze,
|
160
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
161
|
-
subClassOf: "vcard:RelatedType".freeze,
|
162
|
-
type: "owl:Class".freeze
|
163
|
-
term :Kind,
|
164
|
-
comment: %(The parent class for all objects).freeze,
|
165
|
-
label: "Kind".freeze,
|
166
|
-
"owl:equivalentClass" => %(vcard:VCard).freeze,
|
167
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
168
|
-
type: "owl:Class".freeze
|
169
|
-
term :Label,
|
170
|
-
comment: %(This class is deprecated).freeze,
|
171
|
-
label: "Label".freeze,
|
172
|
-
"owl:deprecated" => %(true).freeze,
|
173
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
174
|
-
subClassOf: "vcard:Type".freeze,
|
175
|
-
type: "owl:Class".freeze
|
176
|
-
term :Location,
|
177
|
-
comment: %(An object representing a named geographical place).freeze,
|
178
|
-
label: "Location".freeze,
|
179
|
-
"owl:disjointWith" => %(vcard:Organization).freeze,
|
180
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
181
|
-
subClassOf: "vcard:Kind".freeze,
|
182
|
-
type: "owl:Class".freeze
|
183
|
-
term :Male,
|
184
|
-
label: "Male".freeze,
|
185
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
186
|
-
subClassOf: "vcard:Gender".freeze,
|
187
|
-
type: "owl:Class".freeze
|
188
|
-
term :Me,
|
189
|
-
label: "Me".freeze,
|
190
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
191
|
-
subClassOf: "vcard:RelatedType".freeze,
|
192
|
-
type: "owl:Class".freeze
|
193
|
-
term :Met,
|
194
|
-
label: "Met".freeze,
|
195
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
196
|
-
subClassOf: "vcard:RelatedType".freeze,
|
197
|
-
type: "owl:Class".freeze
|
198
|
-
term :Modem,
|
199
|
-
comment: %(This class is deprecated).freeze,
|
200
|
-
label: "Modem".freeze,
|
201
|
-
"owl:deprecated" => %(true).freeze,
|
202
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
203
|
-
subClassOf: "vcard:TelephoneType".freeze,
|
204
|
-
type: "owl:Class".freeze
|
205
|
-
term :Msg,
|
206
|
-
comment: %(This class is deprecated).freeze,
|
207
|
-
label: "Msg".freeze,
|
208
|
-
"owl:deprecated" => %(true).freeze,
|
209
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
210
|
-
subClassOf: "vcard:TelephoneType".freeze,
|
211
|
-
type: "owl:Class".freeze
|
212
|
-
term :Muse,
|
213
|
-
label: "Muse".freeze,
|
214
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
215
|
-
subClassOf: "vcard:RelatedType".freeze,
|
216
|
-
type: "owl:Class".freeze
|
217
|
-
term :Name,
|
218
|
-
comment: %(To specify the components of the name of the object).freeze,
|
219
|
-
label: "Name".freeze,
|
220
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
221
|
-
type: "owl:Class".freeze
|
222
|
-
term :Neighbor,
|
223
|
-
label: "Neighbor".freeze,
|
224
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
225
|
-
subClassOf: "vcard:RelatedType".freeze,
|
226
|
-
type: "owl:Class".freeze
|
227
|
-
term :None,
|
228
|
-
label: "None".freeze,
|
229
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
230
|
-
subClassOf: "vcard:Gender".freeze,
|
231
|
-
type: "owl:Class".freeze
|
232
|
-
term :Organization,
|
233
|
-
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.
|
234
|
-
).freeze,
|
235
|
-
label: "Organization".freeze,
|
236
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
237
|
-
subClassOf: "vcard:Kind".freeze,
|
238
|
-
type: "owl:Class".freeze
|
239
|
-
term :Other,
|
240
|
-
label: "Other".freeze,
|
241
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
242
|
-
subClassOf: "vcard:Gender".freeze,
|
243
|
-
type: "owl:Class".freeze
|
244
|
-
term :PCS,
|
245
|
-
comment: %(This class is deprecated).freeze,
|
246
|
-
label: "PCS".freeze,
|
247
|
-
"owl:deprecated" => %(true).freeze,
|
248
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
249
|
-
subClassOf: "vcard:TelephoneType".freeze,
|
250
|
-
type: "owl:Class".freeze
|
251
|
-
term :Pager,
|
252
|
-
label: "Pager".freeze,
|
253
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
254
|
-
subClassOf: "vcard:TelephoneType".freeze,
|
255
|
-
type: "owl:Class".freeze
|
256
|
-
term :Parcel,
|
257
|
-
comment: %(This class is deprecated).freeze,
|
258
|
-
label: "Parcel".freeze,
|
259
|
-
"owl:deprecated" => %(true).freeze,
|
260
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
261
|
-
subClassOf: "vcard:Type".freeze,
|
262
|
-
type: "owl:Class".freeze
|
263
|
-
term :Parent,
|
264
|
-
label: "Parent".freeze,
|
265
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
266
|
-
subClassOf: "vcard:RelatedType".freeze,
|
267
|
-
type: "owl:Class".freeze
|
268
|
-
term :Postal,
|
269
|
-
comment: %(This class is deprecated).freeze,
|
270
|
-
label: "Postal".freeze,
|
271
|
-
"owl:deprecated" => %(true).freeze,
|
272
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
273
|
-
subClassOf: "vcard:Type".freeze,
|
274
|
-
type: "owl:Class".freeze
|
275
|
-
term :Pref,
|
276
|
-
comment: %(This class is deprecated).freeze,
|
277
|
-
label: "Pref".freeze,
|
278
|
-
"owl:deprecated" => %(true).freeze,
|
279
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
280
|
-
subClassOf: "vcard:Type".freeze,
|
281
|
-
type: "owl:Class".freeze
|
282
|
-
term :RelatedType,
|
283
|
-
comment: %(Used for relation type codes. The URI of the relation type code must be used as the value for the Relation Type.).freeze,
|
284
|
-
label: "Relation Type".freeze,
|
285
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
286
|
-
type: "owl:Class".freeze
|
287
|
-
term :Sibling,
|
288
|
-
label: "Sibling".freeze,
|
289
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
290
|
-
subClassOf: "vcard:RelatedType".freeze,
|
291
|
-
type: "owl:Class".freeze
|
292
|
-
term :Spouse,
|
293
|
-
label: "Spouse".freeze,
|
294
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
295
|
-
subClassOf: "vcard:RelatedType".freeze,
|
296
|
-
type: "owl:Class".freeze
|
297
|
-
term :Sweetheart,
|
298
|
-
label: "Sweetheart".freeze,
|
299
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
300
|
-
subClassOf: "vcard:RelatedType".freeze,
|
301
|
-
type: "owl:Class".freeze
|
302
|
-
term :Tel,
|
303
|
-
comment: %(This class is deprecated. Use the hasTelephone object property.).freeze,
|
304
|
-
label: "Tel".freeze,
|
305
|
-
"owl:deprecated" => %(true).freeze,
|
306
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
307
|
-
type: "owl:Class".freeze
|
308
|
-
term :TelephoneType,
|
309
|
-
comment: %(Used for telephone type codes. The URI of the telephone type code must be used as the value for the Telephone Type.).freeze,
|
310
|
-
label: "Phone".freeze,
|
311
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
312
|
-
type: "owl:Class".freeze
|
313
|
-
term :Text,
|
314
|
-
comment: %(Also called sms telephone).freeze,
|
315
|
-
label: "Text".freeze,
|
316
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
317
|
-
subClassOf: "vcard:TelephoneType".freeze,
|
318
|
-
type: "owl:Class".freeze
|
319
|
-
term :TextPhone,
|
320
|
-
label: "Text phone".freeze,
|
321
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
322
|
-
subClassOf: "vcard:TelephoneType".freeze,
|
323
|
-
type: "owl:Class".freeze
|
324
|
-
term :Type,
|
325
|
-
comment: %(Used for type codes. The URI of the type code must be used as the value for Type.).freeze,
|
326
|
-
label: "Type".freeze,
|
327
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
328
|
-
type: "owl:Class".freeze
|
329
|
-
term :Unknown,
|
330
|
-
label: "Unknown".freeze,
|
331
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
332
|
-
subClassOf: "vcard:Gender".freeze,
|
333
|
-
type: "owl:Class".freeze
|
334
|
-
term :VCard,
|
335
|
-
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,
|
336
|
-
label: "VCard".freeze,
|
337
|
-
"owl:equivalentClass" => %(vcard:Kind).freeze,
|
338
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
339
|
-
type: "owl:Class".freeze
|
340
|
-
term :Video,
|
341
|
-
label: "Video".freeze,
|
342
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
343
|
-
subClassOf: "vcard:TelephoneType".freeze,
|
344
|
-
type: "owl:Class".freeze
|
345
|
-
term :Voice,
|
346
|
-
label: "Voice".freeze,
|
347
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
348
|
-
subClassOf: "vcard:TelephoneType".freeze,
|
349
|
-
type: "owl:Class".freeze
|
350
|
-
term :Work,
|
351
|
-
comment: %(This implies that the property is related to an individual's work place).freeze,
|
352
|
-
label: "Work".freeze,
|
353
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
354
|
-
subClassOf: "vcard:Type".freeze,
|
355
|
-
type: "owl:Class".freeze
|
356
|
-
term :X400,
|
357
|
-
comment: %(This class is deprecated).freeze,
|
358
|
-
label: "X400".freeze,
|
359
|
-
"owl:deprecated" => %(true).freeze,
|
360
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
361
|
-
subClassOf: "vcard:Type".freeze,
|
362
|
-
type: "owl:Class".freeze
|
363
|
-
|
364
|
-
# Property definitions
|
365
|
-
property :"additional-name",
|
366
|
-
comment: %(The additional name associated with the object).freeze,
|
367
|
-
label: "additional name".freeze,
|
368
|
-
range: "xsd:string".freeze,
|
369
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
370
|
-
type: "owl:DatatypeProperty".freeze
|
371
|
-
property :adr,
|
372
|
-
comment: %(This object property has been mapped).freeze,
|
373
|
-
label: "address".freeze,
|
374
|
-
"owl:equivalentProperty" => %(vcard:hasAddress).freeze,
|
375
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
376
|
-
type: "owl:ObjectProperty".freeze
|
377
|
-
property :agent,
|
378
|
-
comment: %(This object property has been deprecated).freeze,
|
379
|
-
label: "agent".freeze,
|
380
|
-
"owl:deprecated" => %(true).freeze,
|
381
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
382
|
-
type: "owl:ObjectProperty".freeze
|
383
|
-
property :anniversary,
|
384
|
-
comment: %(The date of marriage, or equivalent, of the object).freeze,
|
385
|
-
label: "anniversary".freeze,
|
386
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
387
|
-
type: "owl:DatatypeProperty".freeze
|
388
|
-
property :bday,
|
389
|
-
comment: %(To specify the birth date of the object).freeze,
|
390
|
-
label: "birth date".freeze,
|
391
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
392
|
-
type: "owl:DatatypeProperty".freeze
|
393
|
-
property :category,
|
394
|
-
comment: %(The category information about the object, also known as tags).freeze,
|
395
|
-
label: "category".freeze,
|
396
|
-
range: "xsd:string".freeze,
|
397
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
398
|
-
type: "owl:DatatypeProperty".freeze
|
399
|
-
property :class,
|
400
|
-
comment: %(This data property has been deprecated).freeze,
|
401
|
-
label: "class".freeze,
|
402
|
-
"owl:deprecated" => %(true).freeze,
|
403
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
404
|
-
type: "owl:DatatypeProperty".freeze
|
405
|
-
property :"country-name",
|
406
|
-
comment: %(The country name associated with the address of the object).freeze,
|
407
|
-
label: "country name".freeze,
|
408
|
-
range: "xsd:string".freeze,
|
409
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
410
|
-
type: "owl:DatatypeProperty".freeze
|
411
|
-
property :email,
|
412
|
-
comment: %(This object property has been mapped).freeze,
|
413
|
-
label: "email".freeze,
|
414
|
-
"owl:equivalentProperty" => %(vcard:hasEmail).freeze,
|
415
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
416
|
-
type: "owl:ObjectProperty".freeze
|
417
|
-
property :"extended-address",
|
418
|
-
comment: %(This data property has been deprecated).freeze,
|
419
|
-
label: "extended address".freeze,
|
420
|
-
"owl:deprecated" => %(true).freeze,
|
421
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
422
|
-
type: "owl:DatatypeProperty".freeze
|
423
|
-
property :"family-name",
|
424
|
-
comment: %(The family name associated with the object).freeze,
|
425
|
-
label: "family name".freeze,
|
426
|
-
range: "xsd:string".freeze,
|
427
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
428
|
-
type: "owl:DatatypeProperty".freeze
|
429
|
-
property :fn,
|
430
|
-
comment: %(The formatted text corresponding to the name of the object).freeze,
|
431
|
-
label: "formatted name".freeze,
|
432
|
-
range: "xsd:string".freeze,
|
433
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
434
|
-
type: "owl:DatatypeProperty".freeze
|
435
|
-
property :geo,
|
436
|
-
comment: %(This object property has been mapped).freeze,
|
437
|
-
label: "geo".freeze,
|
438
|
-
"owl:equivalentProperty" => %(vcard:hasGeo).freeze,
|
439
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
440
|
-
type: "owl:ObjectProperty".freeze
|
441
|
-
property :"given-name",
|
442
|
-
comment: %(The given name associated with the object).freeze,
|
443
|
-
label: "given name".freeze,
|
444
|
-
range: "xsd:string".freeze,
|
445
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
446
|
-
type: "owl:DatatypeProperty".freeze
|
447
|
-
property :hasAdditionalName,
|
448
|
-
comment: %(Used to support property parameters for the additional name data property).freeze,
|
449
|
-
label: "has additional name".freeze,
|
450
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
451
|
-
type: "owl:ObjectProperty".freeze
|
452
|
-
property :hasAddress,
|
453
|
-
comment: %(To specify the components of the delivery address for the object).freeze,
|
454
|
-
label: "has address".freeze,
|
455
|
-
range: "vcard:Address".freeze,
|
456
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
457
|
-
type: "owl:ObjectProperty".freeze
|
458
|
-
property :hasCalendarBusy,
|
459
|
-
comment: %(To specify the busy time associated with the object. \(Was called FBURL in RFC6350\)).freeze,
|
460
|
-
label: "has calendar busy".freeze,
|
461
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
462
|
-
type: "owl:ObjectProperty".freeze
|
463
|
-
property :hasCalendarLink,
|
464
|
-
comment: %(To specify the calendar associated with the object. \(Was called CALURI in RFC6350\)).freeze,
|
465
|
-
label: "has calendar link".freeze,
|
466
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
467
|
-
type: "owl:ObjectProperty".freeze
|
468
|
-
property :hasCalendarRequest,
|
469
|
-
comment: %(To specify the calendar user address to which a scheduling request be sent for the object. \(Was called CALADRURI in RFC6350\)).freeze,
|
470
|
-
label: "has calendar request".freeze,
|
471
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
472
|
-
type: "owl:ObjectProperty".freeze
|
473
|
-
property :hasCategory,
|
474
|
-
comment: %(Used to support property parameters for the category data property).freeze,
|
475
|
-
label: "has category".freeze,
|
476
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
477
|
-
type: "owl:ObjectProperty".freeze
|
478
|
-
property :hasCountryName,
|
479
|
-
comment: %(Used to support property parameters for the country name data property).freeze,
|
480
|
-
label: "has country name".freeze,
|
481
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
482
|
-
type: "owl:ObjectProperty".freeze
|
483
|
-
property :hasEmail,
|
484
|
-
comment: %(To specify the electronic mail address for communication with the object).freeze,
|
485
|
-
label: "has email".freeze,
|
486
|
-
range: "vcard:Email".freeze,
|
487
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
488
|
-
type: "owl:ObjectProperty".freeze
|
489
|
-
property :hasFN,
|
490
|
-
comment: %(Used to support property parameters for the formatted name data property).freeze,
|
491
|
-
label: "has formatted name".freeze,
|
492
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
493
|
-
type: "owl:ObjectProperty".freeze
|
494
|
-
property :hasFamilyName,
|
495
|
-
comment: %(Used to support property parameters for the family name data property).freeze,
|
496
|
-
label: "has family name".freeze,
|
497
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
498
|
-
type: "owl:ObjectProperty".freeze
|
499
|
-
property :hasGender,
|
500
|
-
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,
|
501
|
-
label: "has gender".freeze,
|
502
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
503
|
-
type: "owl:ObjectProperty".freeze
|
504
|
-
property :hasGeo,
|
505
|
-
comment: %(To specify information related to the global positioning of the object. May also be used as a property parameter.).freeze,
|
506
|
-
label: "has geo".freeze,
|
507
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
508
|
-
type: "owl:ObjectProperty".freeze
|
509
|
-
property :hasGivenName,
|
510
|
-
comment: %(Used to support property parameters for the given name data property).freeze,
|
511
|
-
label: "has given name".freeze,
|
512
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
513
|
-
type: "owl:ObjectProperty".freeze
|
514
|
-
property :hasHonorificPrefix,
|
515
|
-
comment: %(Used to support property parameters for the honorific prefix data property).freeze,
|
516
|
-
label: "has honorific prefix".freeze,
|
517
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
518
|
-
type: "owl:ObjectProperty".freeze
|
519
|
-
property :hasHonorificSuffix,
|
520
|
-
comment: %(Used to support property parameters for the honorific suffix data property).freeze,
|
521
|
-
label: "has honorific suffix".freeze,
|
522
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
523
|
-
type: "owl:ObjectProperty".freeze
|
524
|
-
property :hasInstantMessage,
|
525
|
-
comment: %(To specify the instant messaging and presence protocol communications with the object. \(Was called IMPP in RFC6350\)).freeze,
|
526
|
-
label: "has messaging".freeze,
|
527
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
528
|
-
type: "owl:ObjectProperty".freeze
|
529
|
-
property :hasKey,
|
530
|
-
comment: %(To specify a public key or authentication certificate associated with the object).freeze,
|
531
|
-
label: "has key".freeze,
|
532
|
-
"owl:equivalentProperty" => %(vcard:key).freeze,
|
533
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
534
|
-
type: "owl:ObjectProperty".freeze
|
535
|
-
property :hasLanguage,
|
536
|
-
comment: %(Used to support property parameters for the language data property).freeze,
|
537
|
-
label: "has language".freeze,
|
538
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
539
|
-
type: "owl:ObjectProperty".freeze
|
540
|
-
property :hasLocality,
|
541
|
-
comment: %(Used to support property parameters for the locality data property).freeze,
|
542
|
-
label: "has locality".freeze,
|
543
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
544
|
-
type: "owl:ObjectProperty".freeze
|
545
|
-
property :hasLogo,
|
546
|
-
comment: %(To specify a graphic image of a logo associated with the object ).freeze,
|
547
|
-
label: "has logo".freeze,
|
548
|
-
"owl:equivalentProperty" => %(vcard:logo).freeze,
|
549
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
550
|
-
type: "owl:ObjectProperty".freeze
|
551
|
-
property :hasMember,
|
552
|
-
comment: %(To include a member in the group this object represents. \(This property can only be used by Group individuals\)).freeze,
|
553
|
-
domain: "vcard:Group".freeze,
|
554
|
-
label: "has member".freeze,
|
555
|
-
range: "vcard:Kind".freeze,
|
556
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
557
|
-
type: "owl:ObjectProperty".freeze
|
558
|
-
property :hasName,
|
559
|
-
comment: %(To specify the components of the name of the object).freeze,
|
560
|
-
label: "has name".freeze,
|
561
|
-
"owl:equivalentProperty" => %(vcard:n).freeze,
|
562
|
-
range: "vcard:Name".freeze,
|
563
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
564
|
-
type: "owl:ObjectProperty".freeze
|
565
|
-
property :hasNickname,
|
566
|
-
comment: %(Used to support property parameters for the nickname data property).freeze,
|
567
|
-
label: "has nickname".freeze,
|
568
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
569
|
-
"rdfs:seeAlso" => %(vcard:nickname).freeze,
|
570
|
-
type: "owl:ObjectProperty".freeze
|
571
|
-
property :hasNote,
|
572
|
-
comment: %(Used to support property parameters for the note data property).freeze,
|
573
|
-
label: "has note".freeze,
|
574
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
575
|
-
type: "owl:ObjectProperty".freeze
|
576
|
-
property :hasOrganizationName,
|
577
|
-
comment: %(Used to support property parameters for the organization name data property).freeze,
|
578
|
-
label: "has organization name".freeze,
|
579
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
580
|
-
type: "owl:ObjectProperty".freeze
|
581
|
-
property :hasOrganizationUnit,
|
582
|
-
comment: %(Used to support property parameters for the organization unit name data property).freeze,
|
583
|
-
label: "has organization unit name".freeze,
|
584
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
585
|
-
type: "owl:ObjectProperty".freeze
|
586
|
-
property :hasPhoto,
|
587
|
-
comment: %(To specify an image or photograph information that annotates some aspect of the object).freeze,
|
588
|
-
label: "has photo".freeze,
|
589
|
-
"owl:equivalentProperty" => %(vcard:photo).freeze,
|
590
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
591
|
-
type: "owl:ObjectProperty".freeze
|
592
|
-
property :hasPostalCode,
|
593
|
-
comment: %(Used to support property parameters for the postal code data property).freeze,
|
594
|
-
label: "has postal code".freeze,
|
595
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
596
|
-
type: "owl:ObjectProperty".freeze
|
597
|
-
property :hasRegion,
|
598
|
-
comment: %(Used to support property parameters for the region data property).freeze,
|
599
|
-
label: "has region".freeze,
|
600
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
601
|
-
type: "owl:ObjectProperty".freeze
|
602
|
-
property :hasRelated,
|
603
|
-
comment: %(To specify a relationship between another entity and the entity represented by this object).freeze,
|
604
|
-
label: "has related".freeze,
|
605
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
606
|
-
type: "owl:ObjectProperty".freeze
|
607
|
-
property :hasRole,
|
608
|
-
comment: %(Used to support property parameters for the role data property).freeze,
|
609
|
-
label: "has role".freeze,
|
610
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
611
|
-
type: "owl:ObjectProperty".freeze
|
612
|
-
property :hasSound,
|
613
|
-
comment: %(To specify a digital sound content information that annotates some aspect of the object).freeze,
|
614
|
-
label: "has sound".freeze,
|
615
|
-
"owl:equivalentProperty" => %(vcard:sound).freeze,
|
616
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
617
|
-
type: "owl:ObjectProperty".freeze
|
618
|
-
property :hasSource,
|
619
|
-
comment: %(To identify the source of directory information of the object).freeze,
|
620
|
-
label: "has source".freeze,
|
621
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
622
|
-
type: "owl:ObjectProperty".freeze
|
623
|
-
property :hasStreetAddress,
|
624
|
-
comment: %(Used to support property parameters for the street address data property).freeze,
|
625
|
-
label: "has street address".freeze,
|
626
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
627
|
-
type: "owl:ObjectProperty".freeze
|
628
|
-
property :hasTelephone,
|
629
|
-
comment: %(To specify the telephone number for telephony communication with the object).freeze,
|
630
|
-
label: "has telephone".freeze,
|
631
|
-
"owl:equivalentProperty" => %(vcard:tel).freeze,
|
632
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
633
|
-
type: "owl:ObjectProperty".freeze
|
634
|
-
property :hasTitle,
|
635
|
-
comment: %(Used to support property parameters for the title data property).freeze,
|
636
|
-
label: "has title".freeze,
|
637
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
638
|
-
type: "owl:ObjectProperty".freeze
|
639
|
-
property :hasUID,
|
640
|
-
comment: %(To specify a value that represents a globally unique identifier corresponding to the object).freeze,
|
641
|
-
label: "has uid".freeze,
|
642
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
643
|
-
type: "owl:ObjectProperty".freeze
|
644
|
-
property :hasURL,
|
645
|
-
comment: %(To specify a uniform resource locator associated with the object).freeze,
|
646
|
-
label: "has url".freeze,
|
647
|
-
"owl:equivalentProperty" => %(vcard:url).freeze,
|
648
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
649
|
-
type: "owl:ObjectProperty".freeze
|
650
|
-
property :hasValue,
|
651
|
-
comment: %(Used to indicate the resource value of an object property that requires property parameters).freeze,
|
652
|
-
label: "has value".freeze,
|
653
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
654
|
-
type: "owl:ObjectProperty".freeze
|
655
|
-
property :"honorific-prefix",
|
656
|
-
comment: %(The honorific prefix of the name associated with the object).freeze,
|
657
|
-
label: "honorific prefix".freeze,
|
658
|
-
range: "xsd:string".freeze,
|
659
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
660
|
-
type: "owl:DatatypeProperty".freeze
|
661
|
-
property :"honorific-suffix",
|
662
|
-
comment: %(The honorific suffix of the name associated with the object).freeze,
|
663
|
-
label: "honorific suffix".freeze,
|
664
|
-
range: "xsd:string".freeze,
|
665
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
666
|
-
type: "owl:DatatypeProperty".freeze
|
667
|
-
property :key,
|
668
|
-
comment: %(This object property has been mapped).freeze,
|
669
|
-
label: "key".freeze,
|
670
|
-
"owl:equivalentProperty" => %(vcard:hasKey).freeze,
|
671
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
672
|
-
type: "owl:ObjectProperty".freeze
|
673
|
-
property :label,
|
674
|
-
comment: %(This data property has been deprecated).freeze,
|
675
|
-
label: "label".freeze,
|
676
|
-
"owl:deprecated" => %(true).freeze,
|
677
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
678
|
-
type: "owl:DatatypeProperty".freeze
|
679
|
-
property :language,
|
680
|
-
comment: %(To specify the language that may be used for contacting the object. May also be used as a property parameter.).freeze,
|
681
|
-
label: "language".freeze,
|
682
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
683
|
-
type: "owl:DatatypeProperty".freeze
|
684
|
-
property :latitude,
|
685
|
-
comment: %(This data property has been deprecated. See hasGeo).freeze,
|
686
|
-
label: "latitude".freeze,
|
687
|
-
"owl:deprecated" => %(true).freeze,
|
688
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
689
|
-
type: "owl:DatatypeProperty".freeze
|
690
|
-
property :locality,
|
691
|
-
comment: %(The locality \(e.g. city or town\) associated with the address of the object).freeze,
|
692
|
-
label: "locality".freeze,
|
693
|
-
range: "xsd:string".freeze,
|
694
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
695
|
-
type: "owl:DatatypeProperty".freeze
|
696
|
-
property :logo,
|
697
|
-
comment: %(This object property has been mapped).freeze,
|
698
|
-
label: "logo".freeze,
|
699
|
-
"owl:equivalentProperty" => %(vcard:hasLogo).freeze,
|
700
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
701
|
-
type: "owl:ObjectProperty".freeze
|
702
|
-
property :longitude,
|
703
|
-
comment: %(This data property has been deprecated. See hasGeo).freeze,
|
704
|
-
label: "longitude".freeze,
|
705
|
-
"owl:deprecated" => %(true).freeze,
|
706
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
707
|
-
type: "owl:DatatypeProperty".freeze
|
708
|
-
property :mailer,
|
709
|
-
comment: %(This data property has been deprecated).freeze,
|
710
|
-
label: "mailer".freeze,
|
711
|
-
"owl:deprecated" => %(true).freeze,
|
712
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
713
|
-
type: "owl:DatatypeProperty".freeze
|
714
|
-
property :n,
|
715
|
-
comment: %(This object property has been mapped).freeze,
|
716
|
-
label: "name".freeze,
|
717
|
-
"owl:equivalentProperty" => %(vcard:hasName).freeze,
|
718
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
719
|
-
type: "owl:ObjectProperty".freeze
|
720
|
-
property :nickname,
|
721
|
-
comment: %(The nick name associated with the object).freeze,
|
722
|
-
label: "nickname".freeze,
|
723
|
-
range: "xsd:string".freeze,
|
724
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
725
|
-
type: "owl:DatatypeProperty".freeze
|
726
|
-
property :note,
|
727
|
-
comment: %(A note associated with the object).freeze,
|
728
|
-
label: "note".freeze,
|
729
|
-
range: "xsd:string".freeze,
|
730
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
731
|
-
type: "owl:DatatypeProperty".freeze
|
732
|
-
property :org,
|
733
|
-
comment: %(This object property has been mapped. Use the organization-name data property.).freeze,
|
734
|
-
label: "organization".freeze,
|
735
|
-
"owl:equivalentProperty" => %(vcard:organization-name).freeze,
|
736
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
737
|
-
type: "owl:ObjectProperty".freeze
|
738
|
-
property :"organization-name",
|
739
|
-
comment: %(To specify the organizational name associated with the object).freeze,
|
740
|
-
label: "organization name".freeze,
|
741
|
-
range: "xsd:string".freeze,
|
742
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
743
|
-
type: "owl:DatatypeProperty".freeze
|
744
|
-
property :"organization-unit",
|
745
|
-
comment: %(To specify the organizational unit name associated with the object).freeze,
|
746
|
-
label: "organizational unit name".freeze,
|
747
|
-
range: "xsd:string".freeze,
|
748
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
749
|
-
subPropertyOf: "vcard:organization-name".freeze,
|
750
|
-
type: "owl:DatatypeProperty".freeze
|
751
|
-
property :photo,
|
752
|
-
comment: %(This object property has been mapped).freeze,
|
753
|
-
label: "photo".freeze,
|
754
|
-
"owl:equivalentProperty" => %(vcard:hasPhoto).freeze,
|
755
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
756
|
-
type: "owl:ObjectProperty".freeze
|
757
|
-
property :"post-office-box",
|
758
|
-
comment: %(This data property has been deprecated).freeze,
|
759
|
-
label: "post office box".freeze,
|
760
|
-
"owl:deprecated" => %(true).freeze,
|
761
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
762
|
-
type: "owl:DatatypeProperty".freeze
|
763
|
-
property :"postal-code",
|
764
|
-
comment: %(The postal code associated with the address of the object).freeze,
|
765
|
-
label: "postal code".freeze,
|
766
|
-
range: "xsd:string".freeze,
|
767
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
768
|
-
type: "owl:DatatypeProperty".freeze
|
769
|
-
property :prodid,
|
770
|
-
comment: %(To specify the identifier for the product that created the object).freeze,
|
771
|
-
label: "product id".freeze,
|
772
|
-
range: "xsd:string".freeze,
|
773
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
774
|
-
type: "owl:DatatypeProperty".freeze
|
775
|
-
property :region,
|
776
|
-
comment: %(The region \(e.g. state or province\) associated with the address of the object).freeze,
|
777
|
-
label: "region".freeze,
|
778
|
-
range: "xsd:string".freeze,
|
779
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
780
|
-
type: "owl:DatatypeProperty".freeze
|
781
|
-
property :rev,
|
782
|
-
comment: %(To specify revision information about the object).freeze,
|
783
|
-
label: "revision".freeze,
|
784
|
-
range: "xsd:dateTime".freeze,
|
785
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
786
|
-
type: "owl:DatatypeProperty".freeze
|
787
|
-
property :role,
|
788
|
-
comment: %(To specify the function or part played in a particular situation by the object).freeze,
|
789
|
-
label: "role".freeze,
|
790
|
-
range: "xsd:string".freeze,
|
791
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
792
|
-
type: "owl:DatatypeProperty".freeze
|
793
|
-
property :"sort-string",
|
794
|
-
comment: %(To specify the string to be used for national-language-specific sorting. Used as a property parameter only.).freeze,
|
795
|
-
label: "sort as".freeze,
|
796
|
-
range: "xsd:string".freeze,
|
797
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
798
|
-
type: "owl:DatatypeProperty".freeze
|
799
|
-
property :sound,
|
800
|
-
comment: %(This object property has been mapped).freeze,
|
801
|
-
label: "sound".freeze,
|
802
|
-
"owl:equivalentProperty" => %(vcard:hasSound).freeze,
|
803
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
804
|
-
type: "owl:ObjectProperty".freeze
|
805
|
-
property :"street-address",
|
806
|
-
comment: %(The street address associated with the address of the object).freeze,
|
807
|
-
label: "street address".freeze,
|
808
|
-
range: "xsd:string".freeze,
|
809
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
810
|
-
type: "owl:DatatypeProperty".freeze
|
811
|
-
property :tel,
|
812
|
-
comment: %(This object property has been mapped).freeze,
|
813
|
-
label: "telephone".freeze,
|
814
|
-
"owl:equivalentProperty" => %(vcard:hasTelephone).freeze,
|
815
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
816
|
-
type: "owl:ObjectProperty".freeze
|
817
|
-
property :title,
|
818
|
-
comment: %(To specify the position or job of the object).freeze,
|
819
|
-
label: "title".freeze,
|
820
|
-
range: "xsd:string".freeze,
|
821
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
822
|
-
type: "owl:DatatypeProperty".freeze
|
823
|
-
property :tz,
|
824
|
-
comment: %(To indicate time zone information that is specific to the object. May also be used as a property parameter.).freeze,
|
825
|
-
label: "time zone".freeze,
|
826
|
-
range: "xsd:string".freeze,
|
827
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
828
|
-
type: "owl:DatatypeProperty".freeze
|
829
|
-
property :url,
|
830
|
-
comment: %(This object property has been mapped).freeze,
|
831
|
-
label: "url".freeze,
|
832
|
-
"owl:equivalentProperty" => %(vcard:hasURL).freeze,
|
833
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
834
|
-
type: "owl:ObjectProperty".freeze
|
835
|
-
property :value,
|
836
|
-
comment: %(Used to indicate the literal value of a data property that requires property parameters).freeze,
|
837
|
-
label: "value".freeze,
|
838
|
-
"rdfs:isDefinedBy" => %(http://www.w3.org/2006/vcard/ns).freeze,
|
839
|
-
type: "owl:DatatypeProperty".freeze
|
840
|
-
end
|
841
|
-
end
|