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