index.html
95.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<title>Representing vCard Objects in RDF</title>
<style type="text/css">
.Class {padding:0.4em; width:99%; border-width: 1px; border-style: dashed; position:relative; margin-top: 1.5em; border-style:solid; background:#66CCFF}
.cp-type {font-weight: normal; font-size:90%; color: maroon; position:absolute; right:20px}
pre {
margin: 1em 4em 1em 4em;
color: black;
background-color: #CCCCFF;
padding: 0.5em;
border-color: #006;
border-width: 1px;
border-style: dotted;
}
pre.turtle {
background-color: #66CC66;
}
</style>
<link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-Member-SUBM"/>
</head>
<body>
<DIV class=head>
<a href="http://www.w3.org/"><img height="48" width="72" alt="W3C" src="http://www.w3.org/Icons/w3c_home"/></a>
<a href="http://www.w3.org/Submission/"> <img height="48" width="211" alt="W3C Member Submission" src="http://www.w3.org/Icons/member_subm"/></a>
<H1>Representing vCard Objects in RDF</H1>
<H2>W3C Member Submission 20 January 2010</H2>
<DL>
<DT>This version:
<DD><A href="http://www.w3.org/Submission/2010/SUBM-vcard-rdf-20100120">http://www.w3.org/Submission/2010/SUBM-vcard-rdf-20100120</A>
<DT>Latest version:
<DD><A href="http://www.w3.org/Submission/vcard-rdf">http://www.w3.org/Submission/vcard-rdf</A>
<DT>Previous version:
<DD><A href="http://www.w3.org/TR/2001/NOTE-vcard-rdf-20010222">http://www.w3.org/TR/2001/NOTE-vcard-rdf-20010222</A>
<DT>Editor:
<DD><A href="mailto:renato@nicta.com.au">Renato Iannella</A>, NICTA </DD>
<DT>Authors:
<DD>Harry Halpin, Renato Iannella, Brian Suda, Norman Walsh</DD>
</DL>
<P class=copyright>Copyright <A href="http://www.nicta.com.au/">NICTA</A> 2010.</P>
<p>This document is available under the <a href="http://www.w3.org/Consortium/Legal/copyright-documents">W3C Document License</a>. See the <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">W3C Intellectual Rights Notice and Legal Disclaimers</a> for additional information.</p>
<HR title="Separator from Header">
</DIV>
<H2><A name=abstract>Abstract</A></H2>
<P>
This submission specifies a Resource Description Framework (RDF) encoding of the vCard profile defined by RFC 2426 and to provide equivalent functionality to its standard format.
The motivation is to enable the common and consistent description of people and organisations (using the existing semantics of vCard) and to encode these in RDF formats.
</P>
<H2><A name=status>Status of this document</A></H2>
<p><em>This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications can be found in the <a href="http://www.w3.org/TR/">W3C technical reports index</a> at http://www.w3.org/TR/.</em></p>
<p><b>This updated Member Submission primarily brings together some divergence in the vCard RDF Namespace and usage patterns for some properties. The IETF vCard Working Group <a href="#VCARDWG">[VCARDWG]</a> is currently working on Version 4.0 of vCard, and we expect a future revision to reflect these changes.
</b>
</p>
<p>By publishing this document, W3C acknowledges that the <a href="http://www.w3.org/Submission/2010/01/#submitting-parties">Submitting Members</a> have made a formal Submission request to W3C for discussion. Publication of this document by W3C indicates no endorsement of its content by W3C, nor that W3C has, is, or will be allocating any resources to the issues addressed by it. This document is not the product of a chartered W3C group, but is published as potential input to the <a href="http://www.w3.org/Consortium/Process">W3C Process</a>. A <a href="http://www.w3.org/Submission/2010/01/Comment">W3C Team Comment</a> has been published in conjunction with this Member Submission. Publication of acknowledged Member Submissions at the W3C site is one of the benefits of <a href="http://www.w3.org/Consortium/Prospectus/Joining">W3C Membership</a>. Please consult the requirements associated with Member Submissions of <a href="http://www.w3.org/Consortium/Patent-Policy-20030520.html#sec-submissions">section 3.3 of the W3C Patent Policy</a>. Please consult the complete <a href="http://www.w3.org/Submission">list of acknowledged W3C Member Submissions</a>.</p>
<P>Comments on this document may be sent to the authors or to the publicly
archived <a href="http://www.w3.org/2001/sw/interest/">Semantic Web Interest Group</a>
distribution list,
<a href="mailto:semantic-web@w3.org">semantic-web@w3.org</a>
[<a href="http://lists.w3.org/Archives/Public/semantic-web/">archive</a>].
</P>
<H2><A name=contents>Table of contents</A></H2>
<dl>
<dd><A href="#Intro">1. Introduction</A></dd>
<dd><A href="#Name">2. RDF vCard Namespace</A></dd>
<dd><A href="#Guide">3. RDF vCard Guidelines</A></dd>
</dl>
<dl>
<dd><A href="#Class">3.1 Classes and Properties</A></dd>
<dd><A href="#Param">3.2 vCard Type Parameters</A></dd>
<dd><A href="#Struct">3.3 Structured Properties</A></dd>
<dd><A href="#Bin">3.4 Binary Values</A></dd>
<dd><A href="#Agent">3.5 Agent Property</A></dd>
<dd><A href="#Geo">3.6 Geo Property</A></dd>
</dl>
<dl>
<dd><A href="#Ex">4. RDF vCard Examples</A></dd>
<dd><A href="#Exa">5. RDFa vCard Examples (Informative) </A></dd>
<dd><A href="#AppendixA">Appendix A - RDF vCard Ontology Reference</A></dd>
<dd><A href="#AppendixB">Appendix B - RDF vCard "Short-Cut" Properties</A></dd>
<dd><A href="#ACK">Acknowledgments</A></dd>
<dd><A href="#REF">References</A></dd>
</dl>
<h2><A name="Intro"></A>1. Introduction </h2>
<p>
This Member Submission specifies a Resource Description Framework (RDF) <a href="#RDF">[RDF]</a> vocabulary
that corresponds to the vCard electronic business card profile defined by
RFC 2426 <a href="#VCARD">[VCARD]</a>. This specification provides equivalent functionality to
the standard format defined by vCard Version 3.0. Documents structured in accordance with
this RDF mapping may also be known as 'RDF vCard' documents.
</p>
<p>
This Member Submission is not intended to create a separate definition
for the vCard schema. The sole purpose for this Member Submission is to define an
alternative RDF mapping for the format defined by vCard. The RDF vCard does not introduce any capability not expressible in
the format defined by vCard</a>. However, an attempt has been made to
leverage the capabilities of the RDF model to appropriately articulate
the vCard semantics. </p>
<h2><A name="Name"></A>2. RDF vCard Namespace </h2>
<p>
RDF uses the XML Namespace to uniquely identify the
metadata schema and version. For vCard, the following URI is
defined to be the RDF vCard Namespace:
</p>
<dl>
<dd> <tt class="uri">http://www.w3.org/2006/vcard/ns#</tt> </dd>
</dl>
<p>
The explicit use of this XML Namespace in RDF means that there is no
need to support the VCARD Profile and Version types.
</p>
<p>
This namespace name (URI) will only be used to refer to this version
of this Member Submission; different URIs will be used for any and all new
versions of the Member Submission.</p>
<p><b>NOTE:</b> The previous Namespace (<i>http://www.w3.org/2001/vcard-rdf/3.0#</i>) is deprecated.
</p>
<p>
Examples used in this Member Submission will use "v" as the prefix for the vCard Namespace
and "rdf" for the RDF Namespace. However, any prefix can be utilised as long as it is associated with the correct Namespace.
The examples shown will use both <a href="#RDFXML">[RDF/XML]</a> and <a href="#RDFTurtle">[RDF/Turtle]</a> syntaxes. </p>
<h2><A name="Guide"></A>3. RDF vCard Guidelines</h2>
<h3><A name="Class"></A>3.1 Classes and Properties</h3>
<p>
There are eight main vCard types that are RDF Classes: VCard, Name, Address, Organisation, Location, Label, Tel, and Email.
</p>
<p>
All other vCard types are defined as RDF properties. Note, some of the vCard types, for example BEGIN, END, PROFILE,
and VERSION, are not required to be expressed as these are implicitly
provided by RDF.
</p>
<p>
With RDF, statements are made about a resource. The resource in
question is identified with a URI. This has similar semantics to the vCard UID type. Hence, RDF descriptions may additionally use the vCard UID (that has been transformed into a valid URI) as the identifier for the RDF resource.
</p>
<p>
The majority of the vCard property types have string literals as their values
(objects of statements) and are simply represented by their property type name and value as specified in the vCard specification
<a href="#VCARD">[VCARD]</a>.
</p>
<p> As an example, the following shows an RDF vCard object encoded in XML and Turtle syntax:
</p>
<pre>
<v:VCard>
<v:fn>Corky Crystal</v:fn>
<v:nickname>Corks</v:nickname>
<v:title>Computer Officer Class 3</v:title>
<v:email>corky@example.com</v:email>
</v:VCard>
</pre>
<pre class="turtle">
v:VCard
v:fn "Corky Crystal" ;
v:nickname "Corks" ;
v:title "Computer Officer Class 3" ;
v:email "corky@example.com" .
</pre>
<p>Also note that some properties can be expressed as text literals or resource values. In the above examples, the email property is expressed as a text literal. If the value can also be expressed as a resource - with a valid URI scheme - then the property can be expressed to indicate this:<p>
<pre>
<v:email rdf:resource="mailto:corky@example.com"/>
</pre>
<pre class="turtle">
v:email <mailto:corky@example.com>
</pre>
<p> See Appendix A for the complete list of Classes and Properties.
<h3><A name="Param"></A>3.2 vCard Type Parameters</h3>
<p>
A number of vCard properties (ie Address, Label, Email, Tel) include the ability to indicate one or more
<i>type parameters</i> for the value. For example, to indicate that a Telephone
number is a Fax number, or that a particular email address is the preferred
value.
</p>
<p>
To support the vCard mechanisms for <i>type parameters</i>, a number of subclasses have been defined for this purpose:</p>
<ul>
<li>Address: Dom, Home, Intl, Parcel, Postal, Pref, Work</li>
<li>Label: Dom, Home, Intl, Parcel, Postal, Pref, Work</li>
<li>Email: Internet, X400, Pref</li>
<li>Tel: BBS, Car, Cell, Fax, Home, ISDN, Modem, Msg, PCS, Pager, Video, Voice, Work, Pref</li>
</ul>
<p>
These also maybe extended by using a URI that denotes a new kind of <i>type parameter</i>.
</p>
<p>
To represent these <i>type parameters</i> in RDF, we utilise the <rdf:type> property which
allows us to specify the type of a resource by indicating a subclass that
represents this type parameter. For example:
<p>
<pre>
<v:tel>
<rdf:Description>
<rdf:value>+61 7 555 5555</rdf:value>
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Work"/>
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Cell"/>
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Pref"/>
</rdf:Description>
</v:tel>
</pre>
<pre class="turtle">
v:tel
[ a v:Work, v:Cell, v:Pref ;
rdf:value "+61 7 5555 5555"
]
</pre>
<p><b>NOTE on backwards compatibility</b>: Some previous vCard/RDF documents have used a different method for specifying vCard's <i>type parameters</i>. These used additional properties, such as fax, mobileTel, workAdr, as a solution. This Member Submission recognises that this approach has been deployed previously and considers these as "short-cut" properties to the more formal approach adopted here. Please see Appendix B for the list of "short-cut" properties. However, this Member Submission recommends the approach described in this section for vCard <i>typed parameters</i>.</p>
<H3><A name="Struct"></A>3.3 Structured Properties</h3>
<p>
A number of vCard properties define sub-structure. For example,
the "n" property has Family Name and Given Names. It
is important to preserve and express this structure and it is
fully-supported in the RDF model. For example:
</p>
<pre>
<v:n>
<rdf:Description>
<v:family-name>Crystal</v:family-name>
<v:given-name>Corky</v:given-name>
<v:additional-name>Jacky</v:additional-name>
<v:honorific-prefix>Dr</v:honorific-prefix>
<v:honorific-suffix>III</v:honorific-suffix>
</rdf:Description>
</v:n>
</pre>
<pre class="turtle">
v:n
[ v:family-name "Crystal" ;
v:given-name "Corky" ;
v:additional-name "Jacky" ;
v:honorific-prefix "Dr" ;
v:honorific-suffix "III"
]
</pre>
<p>
<h3><A name="Bin"></A>3.4 Binary Values</h3>
<p>
A number of vCard properties allow for inline binary values (encoded
in BASE64) or external references via a URI. These include:
</p>
<ul>
<li> photo </li>
<li> logo </li>
<li> sound </li>
<li> key </li>
</ul>
<p>
In the case of inline binary values, we recommend the use of the Data URI <a href="#DATAURI">[DATAURI]</a> to represent the property value. For example:
</p>
<pre>
<v:photo rdf:resource="data:image/gif;base64,MSJD9s9DS@93299..." />
</pre>
<pre class="turtle">
v:photo <data:image/gif;base64,MSJD9s9DS@93299..." />
</pre>
<p>
And in the case of an external URI reference:
</p>
<pre>
<v:photo rdf:resource="http://example.com/me.gif"/>
</pre>
<pre class="turtle">
v:photo <http://example.com/me.gif>
</pre>
<h3><A name="Agent"></A>3.5 Agent Property</h3>
<p>
The Agent property allows the specification or identification of
another vCard resource. RDF allows for the Agent vCard resource
to be inline with an existing vCard resource. For example:
</p>
<pre>
<v:fn>Corky Crystal</v:fn>
<v:title>Research Director</v:title>
<v:agent>
<rdf:Description>
<v:fn>Billie Kaur</v:fn>
<v:title>Personal Assistant</v:title>
<v:email rdf:resource="mailto:billie@example.com"/>
</rdf:Description>
</v:agent>
</pre>
<pre class="turtle">
v:fn "Corky Crystal" ;
v:title "Research Director" ;
v:agent
[ v:fn "Billie Kaur" ;
v:title "Personal Assistant" ;
v:email <mailto:billie@example.com>
]
</pre>
<p>
To refer to an external identifier (via a URI) of the Agent resource:
</p>
<pre>
<v:fn>Corky Crystal</v:fn>
<v:agent rdf:resource="http://example.com/staff/billie/"/>
</pre>
<pre class="turtle">
v:fn "Corky Crystal" ;
v:agent <http://example.com/staff/billie/> ;
</pre>
<h3><A name="Geo"></A>3.6 Geo Property</h3>
<p>The RFC2426 vCard Geo Property typically takes a "lat,long" as a literal value. We recommend the use of new <i>latitude</i> and <i>longitude</i> data properties to capture these values explicitly. See Section 4 for an example.
</p>
<h2><A name="Ex"></A>4. RDF vCard Examples</H2>
<p>
The following is a complete example of an RDF personal vCard.
</p>
<pre>
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:v="http://www.w3.org/2006/vcard/ns#">
<v:VCard rdf:about = "http://example.com/me/corky" >
<v:fn>Corky Crystal</v:fn>
<v:nickname>Corks</v:nickname>
<v:tel>
<rdf:Description>
<rdf:value>+61 7 5555 5555</rdf:value>
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Home"/>
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Voice"/>
</rdf:Description>
</v:tel>
<v:email rdf:resource="mailto:corky@example.com"/>
<v:adr>
<rdf:Description>
<v:street-address>111 Lake Drive</v:street-address>
<v:locality>WonderCity</v:locality>
<v:postal-code>5555</v:postal-code>
<v:country-name>Australia</v:country-name>
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Home"/>
</rdf:Description>
</v:adr>
</v:VCard>
</rdf:RDF>
</pre>
<pre class="turtle">
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix v: <http://www.w3.org/2006/vcard/ns#> .
<http://example.com/me/corky> a v:VCard ;
v:fn "Corky Crystal" ;
v:nickname "Corks" ;
v:tel
[ a v:Home, v:Voice ;
rdf:value "+61 7 5555 5555"
] ;
v:email <mailto:corky@example.com> ;
v:adr
[ a v:Home ;
v:country-name "Australia" ;
v:locality "WonderCity" ;
v:postal-code "5555" ;
v:street-address "111 Lake Drive"
] .
</pre>
<p>
The following is a complete example of an RDF organisational vCard including a Geo location.
</p>
<pre>
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:v="http://www.w3.org/2006/vcard/ns#">
<v:VCard rdf:about = "http://example.com/" >
<v:fn>Example.Com LLC</v:fn>
<v:org>
<rdf:Description>
<v:organisation-name>Example.Com LLC</v:organisation-name>
<v:organisation-unit>Corporate Division</v:organisation-unit>
</rdf:Description>
</v:org>
<v:adr>
<rdf:Description>
<v:street-address>33 Enterprise Drive</v:street-address>
<v:locality>WonderCity</v:locality>
<v:postal-code>5555</v:postal-code>
<v:country-name>Australia</v:country-name>
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Work"/>
</rdf:Description>
</v:adr>
<v:geo>
<rdf:Description>
<v:latitude>43.33</v:latitude>
<v:longitude>55.45</v:longitude>
</rdf:Description>
</v:geo>
<v:tel>
<rdf:Description>
<rdf:value>+61 7 5555 0000</rdf:value>
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Fax"/>
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Work"/>
</rdf:Description>
</v:tel>
<v:email rdf:resource="mailto:info@example.com"/>
<v:logo rdf:resource="http://example.com/logo.png"/>
</v:VCard>
</rdf:RDF>
</pre>
<pre class="turtle">
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix v: <http://www.w3.org/2006/vcard/ns#> .
<http://example.com/> a v:VCard ;
v:fn "Example.Com LLC" ;
v:org
[ v:organisation-name "Example.Com LLC" ;
v:organisation-unit "Corporate Division"
] ;
v:adr
[ a v:Work ;
v:country-name "Australia" ;
v:locality "WonderCity" ;
v:postal-code "5555" ;
v:street-address "33 Enterprise Drive"
] ;
v:geo
[ v:latitude "43.33" ;
v:longitude "55.45"
] ;
v:tel
[ a v:Fax, v:Work ;
rdf:value "+61 7 5555 0000"
] ;
v:email <mailto:info@example.com> ;
v:logo <http://example.com/logo.png> .
</pre>
<h2><A name="Exa"></A>5. RDFa vCard Examples (Informative)</H2>
<p>
The following is a sample encoding the first example in Section 4 in <a href="#RDFa">[RDFa]</a> for inclusion in HTML pages, such as the <a href="http://purl.org/goodrelations/">GoodRelations Ontology</a> for e-commerce product information.
</p>
<pre>
<div xmlns="http://www.w3.org/1999/xhtml"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:v="http://www.w3.org/2006/vcard/ns#">
<div about="http://example.com/me/corky" typeof="v:VCard">
<span property="v:fn">Corky Crystal</span>, also known as
<span property="v:nickname">Corks</span>, lives at
<div rel="v:adr">
<div typeof="v:Address v:Home">
<span property="v:street-address">111 Lake Drive</span>,
<span property="v:locality">WonderCity</span>,
<span property="v:postal-code">5555</span>,
<span property="v:country-name">Australia</span>.
</div>
</div>
You can contact her home voice telephone:
<div rel="v:tel">
<div typeof="v:Tel v:Home">
<span property="rdf:value">+61 7 555 5555</span>
</div>
</div>
or send her an email:
<a rel="v:email" href="mailto:corky@example.com">corky@example.com</a>.
</div>
</div>
</pre>
<h2><A name="AppendixA"></A>Appendix A - RDF vCard Ontology Reference</h2>
<div id="container">
<h1 id="Classes">Classes</h1>
<ol>
<li>
<div class="Class" id="vcard:Address"><a>http://www.w3.org/2006/vcard/ns#Address</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- vCard Address Class
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Resources that are vCard addresses</li>
<li><i><a href="http://www.w3.org/2002/07/owl#disjointWith"> owl:disjointWith</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Email">http://www.w3.org/2006/vcard/ns#Email</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#disjointWith"> owl:disjointWith</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Label">http://www.w3.org/2006/vcard/ns#Label</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#disjointWith"> owl:disjointWith</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#Restriction"> owl:Restriction</a></i>
<ul>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#extended-address">http://www.w3.org/2006/vcard/ns#extended-address</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#locality">http://www.w3.org/2006/vcard/ns#locality</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#country-name">http://www.w3.org/2006/vcard/ns#country-name</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#post-office-box">http://www.w3.org/2006/vcard/ns#post-office-box</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#region">http://www.w3.org/2006/vcard/ns#region</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#postal-code">http://www.w3.org/2006/vcard/ns#postal-code</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#street-address">http://www.w3.org/2006/vcard/ns#street-address</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
</ul></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:BBS"><a>http://www.w3.org/2006/vcard/ns#BBS</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Bulletin Board System
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Bulletin Board System Communications
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Car"><a>http://www.w3.org/2006/vcard/ns#Car</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Car Phone
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Car Telephone
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Cell"><a>http://www.w3.org/2006/vcard/ns#Cell</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Cellular Telephone
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Cellular or Mobile Telephone
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Dom"><a>http://www.w3.org/2006/vcard/ns#Dom</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Domestic </li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i>
<ul>
<li><i><a href="http://www.w3.org/2002/07/owl#unionOf"> owl:unionOf</a></i>
<ul>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Label">http://www.w3.org/2006/vcard/ns#Label</a></li>
</ul></li>
</ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Information related to a Domestic Address or Label
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Email"><a>http://www.w3.org/2006/vcard/ns#Email</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Email </li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Resources that are Email Addresses </li>
<li><i><a href="http://www.w3.org/2002/07/owl#disjointWith"> owl:disjointWith</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Label">http://www.w3.org/2006/vcard/ns#Label</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#disjointWith"> owl:disjointWith</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Fax"><a>http://www.w3.org/2006/vcard/ns#Fax</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Fax
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Fax Communications
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Home"><a>http://www.w3.org/2006/vcard/ns#Home</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Home
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i>
<ul>
<li><i><a href="http://www.w3.org/2002/07/owl#unionOf"> owl:unionOf</a></i>
<ul>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Label">http://www.w3.org/2006/vcard/ns#Label</a></li>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
</ul></li>
</ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Information related to a Home Address, Label, or Telephone
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Internet"><a>http://www.w3.org/2006/vcard/ns#Internet</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Internet
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Email">http://www.w3.org/2006/vcard/ns#Email</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Internet Email
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Intl"><a>http://www.w3.org/2006/vcard/ns#Intl</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- International
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i>
<ul>
<li><i><a href="http://www.w3.org/2002/07/owl#unionOf"> owl:unionOf</a></i>
<ul>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Label">http://www.w3.org/2006/vcard/ns#Label</a></li>
</ul></li>
</ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Information related to a International Address or Label
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:ISDN"><a>http://www.w3.org/2006/vcard/ns#ISDN</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- ISDN
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- ISDN Communications
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Label"><a>http://www.w3.org/2006/vcard/ns#Label</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Label </li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Resources that are Label Addresses </li>
<li><i><a href="http://www.w3.org/2002/07/owl#disjointWith"> owl:disjointWith</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Location"><a>http://www.w3.org/2006/vcard/ns#Location</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- vCard Geographic Location Class
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Resources that are vCard geographic locations </li>
<li><i><a href="http://www.w3.org/2002/07/owl#Restriction"> owl:Restriction</a></i>
<ul>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#latitude">http://www.w3.org/2006/vcard/ns#latitude</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#longitude">http://www.w3.org/2006/vcard/ns#longitude</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
</ul></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Modem"><a>http://www.w3.org/2006/vcard/ns#Modem</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Modem
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Modem Communications
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Msg"><a>http://www.w3.org/2006/vcard/ns#Msg</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Voice Messenger
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Voice Message Communications
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Name"><a>http://www.w3.org/2006/vcard/ns#Name</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- vCard Name Class</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Resources that are vCard personal names</li>
<li><i><a href="http://www.w3.org/2002/07/owl#Restriction"> owl:Restriction</a></i>
<ul>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#family-name">http://www.w3.org/2006/vcard/ns#family-name</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#given-name">http://www.w3.org/2006/vcard/ns#given-name</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#additional-name">http://www.w3.org/2006/vcard/ns#additional-name</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#honorific-suffix">http://www.w3.org/2006/vcard/ns#honorific-suffix</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#honorific-prefix">http://www.w3.org/2006/vcard/ns#honorific-prefix</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
</ul></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Organization"><a>http://www.w3.org/2006/vcard/ns#Organization</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- vCard Organization Class
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Resources that are vCard organizations</li>
<li><i><a href="http://www.w3.org/2002/07/owl#Restriction"> owl:Restriction</a></i>
<ul>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#organization-unit">http://www.w3.org/2006/vcard/ns#organization-unit</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
<li><i><a href="http://www.w3.org/2002/07/owl#onProperty"> owl:onProperty</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#organization-name">http://www.w3.org/2006/vcard/ns#organization-name</a> : <a href="http://www.w3.org/2002/07/owl#someValuesFrom">owl:someValuesFrom</a> -- <a href="http://www.w3.org/2000/01/rdf-schema#Literal"/>rdfs:Literal</a></li>
</ul></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Pager"><a>http://www.w3.org/2006/vcard/ns#Pager</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Pager Device
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Pager Communications
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Parcel"><a>http://www.w3.org/2006/vcard/ns#Parcel</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Parcel
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Information related to a Parcel Address or Label
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i>
<ul>
<li><i><a href="http://www.w3.org/2002/07/owl#unionOf"> owl:unionOf</a></i>
<ul>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Label">http://www.w3.org/2006/vcard/ns#Label</a></li>
</ul></li>
</ul>
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:PCS"><a>http://www.w3.org/2006/vcard/ns#PCS</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Personal Communications Service
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Personal Communications Service
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Postal"><a>http://www.w3.org/2006/vcard/ns#Postal</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Postal
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Information related to a Postal Address or Label
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i>
<ul>
<li><i><a href="http://www.w3.org/2002/07/owl#unionOf"> owl:unionOf</a></i>
<ul>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Label">http://www.w3.org/2006/vcard/ns#Label</a></li>
</ul></li>
</ul>
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Pref"><a>http://www.w3.org/2006/vcard/ns#Pref</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Preferred
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Information related to a Preferred Address, Email, Label, or Telephone </li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i>
<ul>
<li><i><a href="http://www.w3.org/2002/07/owl#unionOf"> owl:unionOf</a></i>
<ul>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Email">http://www.w3.org/2006/vcard/ns#Email</a></li>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Label">http://www.w3.org/2006/vcard/ns#Label</a></li>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
</ul></li>
</ul>
</ul>
</li>
<li>
<div class="Class" id="vcard:Tel"><a>http://www.w3.org/2006/vcard/ns#Tel</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Telephone </li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Resources that are Telephone numbers </li>
</ul>
</li>
<li>
<div class="Class" id="vcard:VCard"><a>http://www.w3.org/2006/vcard/ns#VCard</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- vCard Class
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Resources that are vCards and the URIs that denote these vCards can also be the same URIs that denote people/orgs
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Video"><a>http://www.w3.org/2006/vcard/ns#Video</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Video
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Video Communications
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Voice"><a>http://www.w3.org/2006/vcard/ns#Voice</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Voice
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Voice Communications
</li>
</ul>
</li>
<li>
<div class="Class" id="vcard:Work"><a>http://www.w3.org/2006/vcard/ns#Work</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- Work
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Information related to a Work Address, Label, or Telephone </li>
<li><i><a href="http://www.w3.org/2002/07/owl#unionOf"> owl:unionOf</a></i>
<ul>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Email">http://www.w3.org/2006/vcard/ns#Email</a></li>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Label">http://www.w3.org/2006/vcard/ns#Label</a></li>
<li> -- <a href="http://www.w3.org/2006/vcard/ns#Tel">http://www.w3.org/2006/vcard/ns#Tel</a></li>
</ul></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:X400"><a>http://www.w3.org/2006/vcard/ns#X400</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#Class"> owl:Class</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- X.400
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#subClassOf"> rdfs:subClassOf</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Email">http://www.w3.org/2006/vcard/ns#Email</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- X.400 Email
</li>
</ul>
</li>
</ol>
<h1 id="Properties">Properties</h1>
<h2 id="ObjectProperties">Object Properties</h2>
<ol>
<li>
<div class="Class" id="vcard:adr"><a>http://www.w3.org/2006/vcard/ns#adr</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty"> owl:ObjectProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- address
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A postal or street address of a person
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#range"> rdfs:range</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:agent"><a>http://www.w3.org/2006/vcard/ns#agent</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty"> owl:ObjectProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- agent
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A person that acts as one's agent
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#range"> rdfs:range</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:email2"><a>http://www.w3.org/2006/vcard/ns#email</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty"> owl:ObjectProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- email
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- An email address
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:geo"><a>http://www.w3.org/2006/vcard/ns#geo</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty"> owl:ObjectProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- geographic location
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A geographic location associated with a person
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#range"> rdfs:range</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Location">http://www.w3.org/2006/vcard/ns#Location</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:key"><a>http://www.w3.org/2006/vcard/ns#key</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty"> owl:ObjectProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- key
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A key (e.g, PKI key) of a person
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:logo"><a>http://www.w3.org/2006/vcard/ns#logo</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty"> owl:ObjectProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- logo
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A logo associated with a person or their organization
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:n"><a>http://www.w3.org/2006/vcard/ns#n</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty"> owl:ObjectProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- name
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The components of the name of a person
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#range"> rdfs:range</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Name">http://www.w3.org/2006/vcard/ns#Name</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:org"><a>http://www.w3.org/2006/vcard/ns#org</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty"> owl:ObjectProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- organization
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- An organization associated with a person
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#range"> rdfs:range</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Organization">http://www.w3.org/2006/vcard/ns#Organization</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:photo"><a>http://www.w3.org/2006/vcard/ns#photo</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty"> owl:ObjectProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- photo
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A photograph of a person
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:sound"><a>http://www.w3.org/2006/vcard/ns#sound</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty"> owl:ObjectProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- sound
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A sound (e.g., a greeting or pronounciation) of a person
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:tel2"><a>http://www.w3.org/2006/vcard/ns#tel</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty"> owl:ObjectProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- phone
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A telephone number of a person
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:url"><a>http://www.w3.org/2006/vcard/ns#url</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#ObjectProperty"> owl:ObjectProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- url
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A URL associated with a person
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
</ol>
<h2 id="DatatypeProperties">Datatype Properties</h2>
<ol>
<li>
<div class="Class" id="vcard:additional-name"><a>http://www.w3.org/2006/vcard/ns#additional-name</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- additional name
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- An additional part of a person's name
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Name">http://www.w3.org/2006/vcard/ns#Name</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:bday"><a>http://www.w3.org/2006/vcard/ns#bday</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- birthday
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The birthday of a person</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#range"> rdfs:range</a></i>
<ul>
<li><i><a href="http://www.w3.org/2002/07/owl#unionOf"> owl:unionOf</a></i>
<ul>
<li> -- <a href="http://www.w3.org/2001/XMLSchema#date">http://www.w3.org/2001/XMLSchema#date</a></li>
<li> -- <a href="http://www.w3.org/2001/XMLSchema#dateTime">http://www.w3.org/2001/XMLSchema#dateTime</a></li>
</ul></li>
</ul>
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:category"><a>http://www.w3.org/2006/vcard/ns#category</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- category
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A category of a vCard
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:class"><a>http://www.w3.org/2006/vcard/ns#class</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- class
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A class (e.g., public, private, etc.) of a vCard
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:country-name"><a>http://www.w3.org/2006/vcard/ns#country-name</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- country
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The country of a postal address
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:extended-address"><a>http://www.w3.org/2006/vcard/ns#extended-address</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- extended
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The extended address of a postal address
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:family-name"><a>http://www.w3.org/2006/vcard/ns#family-name</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- family name
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A family name part of a person's name
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Name">http://www.w3.org/2006/vcard/ns#Name</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:fn"><a>http://www.w3.org/2006/vcard/ns#fn</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- formatted name
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A formatted name of a person
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:given-name"><a>http://www.w3.org/2006/vcard/ns#given-name</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- given name
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A given name part of a person's name
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Name">http://www.w3.org/2006/vcard/ns#Name</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:honorific-prefix"><a>http://www.w3.org/2006/vcard/ns#honorific-prefix</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- honorific prefix
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- An honorific prefix part of a person's name
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Name">http://www.w3.org/2006/vcard/ns#Name</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:honorific-suffix"><a>http://www.w3.org/2006/vcard/ns#honorific-suffix</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- honorific suffix
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- An honorific suffix part of a person's name
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Name">http://www.w3.org/2006/vcard/ns#Name</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:label2"><a>http://www.w3.org/2006/vcard/ns#label</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- address label
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The formatted version of a postal address (a string with embedded line breaks, punctuation, etc.)
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:latitude"><a>http://www.w3.org/2006/vcard/ns#latitude</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- geographic latitude
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The latitude of the location of the vCard object
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Location">http://www.w3.org/2006/vcard/ns#Location</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#range"> rdfs:range</a></i> -- <a href="http://www.w3.org/2001/XMLSchema#float">http://www.w3.org/2001/XMLSchema#float</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:locality"><a>http://www.w3.org/2006/vcard/ns#locality</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- locality
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The locality (e.g., city) of a postal address
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:longitude"><a>http://www.w3.org/2006/vcard/ns#longitude</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- geographic longitude
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The longitude of the location of the vCard object
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Location">http://www.w3.org/2006/vcard/ns#Location</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#range"> rdfs:range</a></i> -- <a href="http://www.w3.org/2001/XMLSchema#float">http://www.w3.org/2001/XMLSchema#float</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:mailer"><a>http://www.w3.org/2006/vcard/ns#mailer</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- mailer
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A mailer associated with a vCard
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:nickname"><a>http://www.w3.org/2006/vcard/ns#nickname</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- nickname
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The nickname of a person
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:note"><a>http://www.w3.org/2006/vcard/ns#note</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- notes
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- Notes about a person on a vCard
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:organization-name"><a>http://www.w3.org/2006/vcard/ns#organization-name</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- name
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The name of an organization
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Organization">http://www.w3.org/2006/vcard/ns#Organization</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:organization-unit"><a>http://www.w3.org/2006/vcard/ns#organization-unit</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- unit
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The name of a unit within an organization
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Organization">http://www.w3.org/2006/vcard/ns#Organization</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:post-office-box"><a>http://www.w3.org/2006/vcard/ns#post-office-box</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- P.O. Box
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The post office box of a postal address
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:postal-code"><a>http://www.w3.org/2006/vcard/ns#postal-code</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- postal code
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The postal code (e.g., U.S. ZIP code) of a postal address
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:prodid"><a>http://www.w3.org/2006/vcard/ns#prodid</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- prodid
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The Identifier for the product that created the vCard object
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:region"><a>http://www.w3.org/2006/vcard/ns#region</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- region
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The region (e.g., state or province) of a postal address
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:rev"><a>http://www.w3.org/2006/vcard/ns#rev</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- revision
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The timestamp of a revision of a vCard
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#range"> rdfs:range</a></i>
<ul>
<li><i><a href="http://www.w3.org/2002/07/owl#unionOf"> owl:unionOf</a></i>
<ul>
<li> -- <a href="http://www.w3.org/2001/XMLSchema#date">http://www.w3.org/2001/XMLSchema#date</a></li>
<li> -- <a href="http://www.w3.org/2001/XMLSchema#dateTime">http://www.w3.org/2001/XMLSchema#dateTime</a></li>
</ul></li>
</ul>
</ul>
</li>
<li>
<div class="Class" id="vcard:role"><a>http://www.w3.org/2006/vcard/ns#role</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- role
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A role a person plays within an organization
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:sort-string"><a>http://www.w3.org/2006/vcard/ns#sort-string</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- sort
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A version of a person's name suitable for collation
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:street-address"><a>http://www.w3.org/2006/vcard/ns#street-address</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- street
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- The street address of a postal address
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#Address">http://www.w3.org/2006/vcard/ns#Address</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:title"><a>http://www.w3.org/2006/vcard/ns#title</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- title
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A person's title
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:tz"><a>http://www.w3.org/2006/vcard/ns#tz</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- timezone
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A timezone associated with a person
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
<li>
<div class="Class" id="vcard:uid"><a>http://www.w3.org/2006/vcard/ns#uid</a><span class="cp-type">
( rdf:type
<a href="http://www.w3.org/2002/07/owl#DatatypeProperty"> owl:DatatypeProperty</a>
)
</span></div>
<ul>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#label"> rdfs:label</a></i> -- uid
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#comment"> rdfs:comment</a></i> -- A UID of a person's vCard
</li>
<li><i><a href="http://www.w3.org/2000/01/rdf-schema#domain"> rdfs:domain</a></i> -- <a href="http://www.w3.org/2006/vcard/ns#VCard">http://www.w3.org/2006/vcard/ns#VCard</a></li>
</ul>
</li>
</ol>
</div>
<h2><A name="AppendixB"></A>Appendix B - RDF vCard "Short-Cut" Properties</h2>
<p>The following properties - used in some current implementations - are considered as "short-cut" properties. Although supported, the approach described in Section 3.2 is recommended.
</p>
<ul>
<li>v:fax</li>
<li>v:homeAdr</li>
<li>v:homeTel</li>
<li>v:mobileEmail</li>
<li>v:mobileTel</li>
<li>v:personalEmail</li>
<li>v:unlabeledAdr</li>
<li>v:unlabeledEmail</li>
<li>v:unlabeledTel</li>
<li>v:workAdr</li>
<li>v:workEmail</li>
<li>v:workTel</li>
</ul>
<h2><A name="ACK"></A>Acknowledgments</h2>
<p>
The authors would like to thank Martin Hepp, Peter Mika, Toby Inkster, Dan Brickley, Aidan Hogan, Andrew Gibson, Andreas Radinger, Doug Schepers, Kanzaki Masahide, Ivan Herman, and Michael Hausenblas for their valuable comments and suggestions on this document. Also acknowledged is IPR Systems (former Member Submission version) and NICTA (current Member Submission) for their support.
</p>
<p>This document utilized the <a href="http://www.ebusiness-unibw.org/projects/owl2xhtml/">OWL2XHTML</a> and the <a href="http://www.ebusiness-unibw.org/tools/rdf2rdfa/">RDF2RDFa</a> converters.
</p>
<h2><A name="REF"></A>References</h2>
<dl>
<dt><A name="VCARD"> </A>[VCARD] </dt>
<dd>vCard MIME Directory Profile, F. Dawson and T. Howes, Internet
RFC 2426, September 1998.
<a href="http://www.ietf.org/rfc/rfc2426.txt"> <http://www.ietf.org/rfc/rfc2426.txt></a> </dd>
</dl>
<dl>
<dt><A name="RDF"> </A>[RDF] </dt>
<dd>Resource Description Framework (RDF): Concepts and Abstract Syntax, Graham Klyne and Jeremy J. Carroll (Eds),
W3C Recommendation 10 February 2004.
<a href="http://www.w3.org/TR/rdf-concepts/"> <http://www.w3.org/TR/rdf-concepts/></a> </dd>
</dl>
<dl>
<dt><A name="RDFXML"> </A>[RDF/XML] </dt>
<dd>RDF/XML Syntax Specification (Revised), Dave Beckett (Ed),
W3C Recommendation 10 February 2004.
<a href="http://www.w3.org/TR/rdf-syntax-grammar/"> <http://www.w3.org/TR/rdf-syntax-grammar/></a> </dd>
</dl>
<dl>
<dt><A name="RDFTurtle"> </A>[RDF/Turtle] </dt>
<dd>Turtle - Terse RDF Triple Language, Dave Beckett and Tim Berners-Lee,
W3C Team Submission 14 January 2008.
<a href="http://www.w3.org/TeamSubmission/turtle/"> <http://www.w3.org/TeamSubmission/turtle/></a> </dd>
</dl>
<dl>
<dt><A name="RDFa"> </A>[RDFa] </dt>
<dd>RDFa in XHTML: Syntax and Processing, Ben Adida and Mark Birbeck and Shane McCarron and Steven Pemberton (eds),
W3C Recommendation 14 October 2008
<a href="http://www.w3.org/TR/rdfa-syntax/"> <http://www.w3.org/TR/rdfa-syntax/</a> </dd>
</dl>
<dl>
<dt><A name="DATAURI"> </A>[DATAURI] </dt>
<dd>The "data" URL scheme, L. Masinter,
RFC 2397, August 1998.
<a href="http://www.ietf.org/rfc/rfc2397.txt"> <http://www.ietf.org/rfc/rfc2397.txt></a> </dd>
</dl>
<dl>
<dt><A name="VCARDWG"> </A>[VCARDWG] </dt>
<dd>IETF vCard and CardDAV Working Group
<a href="http://www.ietf.org/dyn/wg/charter/vcarddav-charter.html"> <http://www.ietf.org/dyn/wg/charter/vcarddav-charter.html</a> </dd>
</dl>
</body>
</html>