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