specs.html
123 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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html version="XHTML+RDFa 1.0" xmlns="http://www.w3.org/1999/xhtml"
xmlns:contact="http://www.w3.org/2000/10/swap/pim/contact#"
xmlns:doc="http://www.w3.org/2000/10/swap/pim/doc#" xmlns:dc="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:org="http://www.w3.org/2001/04/roadmap/org#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:talk="http://www.w3.org/2004/08/Presentations.owl#" xmlns:vcard="http://www.w3.org/2001/vcard-rdf/3.0#"
xmlns:ical="http://www.w3.org/2002/12/cal/ical#" xmlns:tr="http://www.w3.org/2001/02pd/rec54#"
xmlns:sioc="http://rdfs.org/sioc/ns#" xmlns:bibo="http://purl.org/ontology/bibo/"
xmlns:rss="http://purl.org/rss/1.0/" xmlns:act="http://www.w3.org/2001/sw/">
<head about="http://www.w3.org/2001/sw/Spec.html">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="meta" type="application/rdf+xml" title="Org data in RDF"
href="http://www.w3.org/2001/sw/Overview.rdf" />
<link rel="alternate" type="application/rss+xml" title="W3C Semantic Web News"
href="http://www.w3.org/blog/SW?tempskin=_rdf" />
<title property="dc:title">Publications of the W3C Semantic Web Activity</title>
<style type="text/css">img.rdfimg { margin: 0pt; border-width: 0pt; }</style>
<style type="text/css">article, aside, details, figcaption, figure, footer, header, hgroup, menu,
nav, section { display: block; } .infobar { right: 4em; margin: 1em; width: 30%; float: right;
background-color: blue; background: #DBE7F0; border: 1px solid #C6D4E0; border-radius: 8px;
-moz-border-radius: 8px; padding: 0.5em 0.5em 1em 0.5em; } .banner { margin-top: 1em} .infobar ul {
list-style-type:circle; } div.headline { border-top: 1px solid #888; margin-top: 5px; } h3
{font-size: 120%} h4 {font-style:italic!important; font-size:110% !important}</style>
<link rel="Help" href="http://www.w3.org/Help/" />
<link rel="stylesheet" href="http://www.w3.org/2008/site/css/minimum" type="text/css"
media="handheld, all" />
<style type="text/css" media="print, screen and (min-width: 481px)">@import
url("http://www.w3.org/2008/site/css/advanced");</style>
<link href="http://www.w3.org/2008/site/css/minimum" rel="stylesheet" type="text/css"
media="handheld, only screen and (max-device-width: 480px)" />
<meta name="viewport" content="width=320" />
<link rel="stylesheet" href="http://www.w3.org/2008/site/css/print" type="text/css" media="print" />
<link rel="shortcut icon" href="http://www.w3.org/2001/sw/favicon-sw.png" type="image/x-icon" />
</head>
<body id="www-w3-org" class="w3c_public" about="[act:#activity]" typeof="org:activity">
<div id="w3c_container">
<div id="w3c_mast">
<!-- #w3c_mast / Page top header -->
<h1 class="logo">
<a tabindex="2" accesskey="1" href="http://www.w3.org/">
<img src="http://www.w3.org/2008/site/images/logo-w3c-mobile-lg" width="90"
height="53" alt="W3C" />
</a>
<span class="alt-logo">W3C</span>
</h1>
<div id="w3c_nav">
<form action="http://www.w3.org/Help/search" method="get"
enctype="application/x-www-form-urlencoded">
<!-- w3c_sec_nav is populated through js -->
<div class="w3c_sec_nav">
<!-- -->
</div>
<ul class="main_nav">
<!-- Main navigation menu -->
<li class="first-item">
<a href="http://www.w3.org/standards/">Standards</a>
</li>
<li>
<a href="http://www.w3.org/participate/">Participate</a>
</li>
<li>
<a href="http://www.w3.org/Consortium/membership">Membership</a>
</li>
<li class="last-item">
<a href="http://www.w3.org/Consortium/">About W3C</a>
</li>
<li class="search-item">
<div id="search-form">
<input tabindex="3" class="text" name="q" value="" title="Search" />
<button id="search-submit" name="search-submit" type="submit">
<img class="submit"
src="http://www.w3.org/2008/site/images/search-button" alt="Search"
width="21" height="17" />
</button>
</div>
</li>
</ul>
</form>
</div>
</div>
<!-- /end #w3c_mast -->
<div id="w3c_main">
<div id="w3c_logo_shadow" class="w3c_leftCol">
<img height="32" alt="" src="http://www.w3.org/2008/site/images/logo-shadow" />
</div>
<div id="w3c_sidenavigation" class="w3c_leftCol">
<h2 class="offscreen">Site Navigation</h2>
<h3 class="category">
<span class="ribbon">
<b>Nearby</b>
</span>
</h3>
<ul class="theme">
<li>
<a rel="rdfs:seeAlso" href="http://www.w3.org/2001/sw/anews/">Activity news</a>
</li>
<li>
<a rel="rdfs:seeAlso" href="http://www.w3.org/2001/sw/">Activity home</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/SW-FAQ" rel="rdfs:seeAlso"
resource="http://www.w3.org/2001/sw/SW-FAQ.rdf">FAQ</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/sweo/public/UseCases/">Use Cases and Case
Studies</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/wiki/Tools">List of Tools</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/wiki/Category:Validator">On-line
validators</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/wiki/Books">List of Books</a>
</li>
<li>
<a href="http://www.w3.org/2007/10/sw-logos.html">Semantic Web Logos and
Buttons</a>
</li>
<li>
<a rel="rdfs:seeAlso" href="http://www.w3.org/2001/sw/wiki/">SW Wiki</a>
</li>
<!--
<li><strong>Latest “layercake” diagram</strong>: in <a href="/2001/sw/layerCake.svg">SVG</a>,
<a href="/2001/sw/layerCake.png">PNG</a>, and <a href="/2007/03/layerCake-small.png">small sized (300×315) PNG</a></li>-->
</ul>
<h3 class="category">
<span class="ribbon">
<b>Activity RSS feeds</b>
</span>
</h3>
<ul class="theme">
<li>
<a rel="rdfs:seeAlso" href="http://www.w3.org/blog/SW/feed/rdf">
<span rel="rdf:type" resource="[rss:channel]">Activity news</span> (RSS 1.0)</a>
</li>
<li>
<a rel="rdfs:seeAlso" href="http://www.w3.org/blog/SW/feed/">
<span rel="rdf:type" resource="[rss:channel]">Activity news</span> (RSS 2.0)</a>
</li>
<li>
<a rel="rdfs:seeAlso" href="http://www.w3.org/blog/SW/feed/atom">
<span rel="rdf:type" resource="[rss:channel]">Activity news</span> (Atom)</a>
</li>
<li>
<a href="http://www.ivan-herman.net/cgi-bin/toRss1.py?uri=http://www.w3.org/QA/atom.xml&categories=[Semantic+Web]&title=W3C+QA+Blog,+Semantic+Web&link=http://www.w3.org/QA/atom.xml">
W3C QA blog (Atom)</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/SW-FAQ-feed.rdf">FAQ (RSS 1.0)</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/sweo/public/UseCases/Overview.rdf">SW Use
Cases and Case Studies (RSS 1.0)</a>
</li>
</ul>
<h3 class="category">
<span class="ribbon">
<b>Active Groups</b>
</span>
</h3>
<ul class="theme" rel="org:includes">
<li>
<a href="http://www.w3.org/2001/sw/CG/" resource="[act:#cg]"
typeof="org:CoordinationGroup">Semantic Web Coordination Group</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/rdb2rdf/" resource="[act:#rdb2rdf]"
typeof="org:WorkingGroup">RDB2RDF Working Group</a>
</li>
<li>
<a href="http://www.w3.org/2010/02/rdfa/" resource="[act:#rdfa]"
typeof="org:WorkingGroup">RDFWA Working Group</a>
</li>
<li>
<a href="http://www.w3.org/2011/rdf-wg/" resource="[act:#rdf-wg]"
typeof="org:WorkingGroup">RDF Working Group</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/DataAccess/" resource="[act:#sparql]"
typeof="org:WorkingGroup">SPARQL Working Group</a>
</li>
<li>
<a href="http://www.w3.org/2011/prov/" resource="[act:#prov]"
typeof="org:WorkingGroup">Provenance Working Group</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/hcls/" resource="[act:#hcls]"
typeof="org:InterestGroup">Health Care and Life Sciences Interest Group</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/interest/" resource="[act:#swig]"
typeof="org:InterestGroup">Semantic Web Interest Group</a>
</li>
</ul>
<h3 class="category">
<span class="ribbon">
<b>Completed Groups</b>
</span>
</h3>
<ul class="theme" rel="org:includes">
<li>
<a href="http://www.w3.org/2007/OWL/" resource="[act:#owl]"
typeof="org:WorkingGroup">OWL Working Group</a>
</li>
<li>
<a href="http://www.w3.org/2005/rules/wg/" resource="[act:#rif]"
typeof="org:WorkingGroup">Rules Interchange Format Working Group</a>
</li>
</ul>
<h3 class="category" rel="org:includes">
<span class="ribbon">
<b>Past Groups</b>
</span>
</h3>
<ul class="theme" rel="org:includes">
<li>
<a href="http://www.w3.org/2001/sw/BestPractices/" resource="[act:#swbpd]"
typeof="org:WorkingGroup">Best Practices and Deployment Working Group</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/RDFCore/" resource="[act:#rdf]"
typeof="org:WorkingGroup">RDF Core Working Group</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/WebOnt/" resource="[act:#webont]"
typeof="org:WorkingGroup">Web Ontology Working Group</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/sweo/" resource="[act:#sweo]"
typeof="org:InterestGroup">Education and Outreach Interest Group</a>
</li>
<li>
<a href="http://www.w3.org/2007/powder/" resource="[act:#powder]"
typeof="org:WorkingGroup">POWDER Working Group</a>
</li>
<li>
<a href="http://www.w3.org/2006/07/SWD/" resource="[act:#swd]"
typeof="org:WorkingGroup">Semantic Web Deployment Working Group</a>
</li>
<li>
<a href="http://www.w3.org/2001/sw/grddl-wg/" resource="[act:#grddl]"
typeof="org:WorkingGroup">GRDDL Working Group</a>
</li>
</ul>
<h3 class="category">
<span class="ribbon">
<b>Related Groups at W3C</b>
</span>
</h3>
<ul class="theme">
<li>
<a href="http://www.w3.org/2011/gld/">Government Linked Data Working Group</a>
</li>
<li>
<a href="http://www.w3.org/2007/eGov/IG/">eGovernment Interest Group</a>
</li>
<li>
<a href="http://www.w3.org/2008/WebVideo/Fragments/">Media Fragments Working
Group</a>
</li>
<li>
<a href="http://www.w3.org/2008/WebVideo/Annotations/">Media Annotations Working
Group</a>
</li>
<li>
<a href="http://www.w3.org/2005/Incubator/lld/">Library Linked Data Incubator
Group</a>
</li>
<li>
<a href="http://esw.w3.org/topic/SweoIG/TaskForces/CommunityProjects/LinkingOpenData/">
Linking Open Data Community Project</a>
</li>
</ul>
<br />
</div>
<div class="w3c_mainCol">
<h1 id="title" class="title" property="org:name">Publications of the W3C Semantic Web Activity</h1>
<ul class="w3c_toc">
<li class="toc_prefix">On this page →</li>
<li>
<a href="#RDFSpecs">RDF</a>
<span class="bullet">•</span>
</li>
<li>
<a href="#GRDDLSpecs">GRDDL</a>
<span class="bullet">•</span>
</li>
<li>
<a href="#RDFaSpecs">RDFa</a>
<span class="bullet">•</span>
</li>
<li>
<a href="#RIFSpecs">RIF</a>
<span class="bullet">•</span>
</li>
<li>
<a href="#SKOSSpecs">SKOS</a>
<span class="bullet">•</span>
</li>
<li>
<a href="#SPARQLSpecs">SPARQL</a>
<span class="bullet">•</span>
</li>
<li>
<a href="#OWLSpecs">OWL</a>
<span class="bullet">•</span>
</li>
<li>
<a href="#SWDNotes">SWD Notes</a>
<span class="bullet">•</span>
</li>
<li>
<a href="#HCLSNotes">HCLS Notes</a>
<span class="bullet">•</span>
</li>
<li>
<a href="#MiscNotes">Misc Notes</a>
<span class="bullet">•</span>
</li>
<li>
<a href="#XGReports">XG Reports</a>
</li>
</ul>
<div id="w3c_content_body">
<p class="banner">
<img src="/Icons/SW/sw-horz-w3c.png" width="241" height="48" alt="W3C SW Logo" />
</p>
<div class="line">
<p>This page lists the
<em>latest versions</em> of all W3C Recommendatations and Notes that have been
published by the various Semantic Web Activity Groups or relevant Incubator
Groups. For a more complete lists of specifications, including older, obsolete
versions and drafts, see the
<a href="/TR/">general page on W3C documents</a>.</p>
<p>See also the list of translations for
<a href="http://www.w3.org/2005/11/Translations/Query?rec=rdf&sorting=byTechnology&output=FullHTML&submit=Submit">
RDF</a>,
<a href="http://www.w3.org/2005/11/Translations/Query?rec=grddl&sorting=byTechnology&output=FullHTML&submit=Submit">
GRDDL</a>,
<a href="http://www.w3.org/2005/11/Translations/Query?rec=rdfa-syntax&sorting=byTechnology&output=FullHTML&submit=Submit">
RDFa</a>,
<a href="http://www.w3.org/2005/11/Translations/Query?rec=sparql;&sorting=byTechnology&output=FullHTML&submit=Submit">
SPARQL</a>,
<a href="http://www.w3.org/2005/11/Translations/Query?rec=owl;&sorting=byTechnology&output=FullHTML&submit=Submit">
OWL</a>, and
<a href="http://www.w3.org/2005/11/Translations/Query?rec=rif;&sorting=byTechnology&output=FullHTML&submit=Submit">
RIF</a></p>
<p>You may want to look at the collection of
<a href="http://www.w3.org/2001/sw/sweo/public/UseCases/">SW Case Studies and Use
Cases</a> to see how organizations are using these technologies today.</p>
</div>
<div class="line" id="RDFSpecs">
<h2>
<img src="/Icons/SW/Buttons/sw-rdf-blue" alt="RDF Button" height="15"
width="80" /> Resource Description Framework (RDF)</h2>
<ul class="recs">
<li rev="tr:cites"
resource="http://www.w3.org/TR/2004/REC-rdf-primer-20040210/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdf-primer/"
property="dc:title">RDF Primer</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2004-02-10">February 10, 2004,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Frank
Manola</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Eric
Miller</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdf-syntax-grammar"
property="dc:title">RDF/XML Syntax Specification (Revised)</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2004-02-10">February 10, 2004,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Dave
Beckett</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2004/REC-rdf-schema-20040210/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdf-schema"
property="dc:title">RDF Vocabulary Description Language 1.0: RDF Schema</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2004-02-10">February 10, 2004,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Ramanathan V.
Guha</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Dan
Brickley</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdf-concepts/"
property="dc:title">Resource Description Framework (RDF): Concepts and
Abstract Syntax</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2004-02-10">February 10, 2004,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Graham
Klyne</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jeremy J.
Carroll</span>
</span>, eds.</li>
<li rev="tr:cites" resource="http://www.w3.org/TR/2004/REC-rdf-mt-20040210/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdf-mt/"
property="dc:title">RDF Semantics</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2004-02-10">February 10, 2004,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Patrick
Hayes</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2004/REC-rdf-testcases-20040210/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdf-testcases"
property="dc:title">RDF Test Cases</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2004-02-10">February 10, 2004,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jan
Grant</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Dave
Beckett</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-rdf-plain-literal-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdf-plain-literal/"
property="dc:title">rdf:PlainLiteral: A Datatype for RDF Plain Literals</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2009-10-27">October 27, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jie Bao</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Sandro
Hawke</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Boris
Motik</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Peter F.
Patel-Schneider</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Axel
Polleres</span>
</span>, eds.</li>
</ul>
</div>
<div class="line" id="GRDDLSpecs">
<h2>
<img src="/Icons/SW/Buttons/sw-grddl-green" alt="GRDDL Button" height="15"
width="80" /> Gleaning Resource Descriptions from Dialects of Languages
(GRDDL)</h2>
<ul class="recs">
<li rev="tr:cites" resource="http://www.w3.org/TR/2007/REC-grddl-20070911/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/grddl/"
property="dc:title">Gleaning Resource Descriptions from Dialects of Languages
(GRDDL)</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2007-09-11">September 11, 2007,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Dan
Connolly</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2007/REC-grddl-tests-20070911/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/grddl-tests/"
property="dc:title">GRDDL Test Cases</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2007-09-11">September 11, 2007,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Chimezie
Ogbuji</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2007/NOTE-grddl-primer-20070628/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/grddl-primer/"
property="dc:title">GRDDL Primer</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2007-06-28">June 28, 2007,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Harry
Halpin</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Ian
Davis</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2007/NOTE-grddl-scenarios-20070406/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/grddl-scenarios/"
property="dc:title">GRDDL Use Cases: Scenarios of extracting RDF data from
XML documents</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2007-04-06">April 6, 2007,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Fabien
Gandon</span>
</span>, ed.</li>
</ul>
</div>
<div class="line" id="RDFaSpecs">
<h2>
<img src="/Icons/SW/Buttons/sw-rdfa-gray" alt="RDFa Button" height="15"
width="80" /> RDFa in XHTML: Syntax and Processing</h2>
<ul class="recs">
<li rev="tr:cites"
resource="http://www.w3.org/TR/2008/REC-rdfa-syntax-20081014">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdfa-syntax"
property="dc:title">RDFa in XHTML: Syntax and Processing</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2007-10-08">October 18, 2008,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Ben
Adida</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Mark
Birbeck</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Shane
McCarron</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Steven
Pemberton</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2008/NOTE-xhtml-rdfa-primer-20081014/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/xhtml-rdfa-primer/"
property="dc:title">RDFa Primer</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2008-10-14">October 14, 2008,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Ben
Adida</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Mark
Birbeck</span>
</span>, eds.</li>
</ul>
</div>
<div class="line" id="RIFSpecs">
<h2>
<img src="/Icons/SW/Buttons/sw-rif-orange" alt="RIF Button" height="15"
width="80" /> Rule Interchange Format (RIF)</h2>
<ul class="recs">
<li rev="tr:cites"
resource="http://www.w3.org/TR/2010/REC-rif-core-20100622/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rif-core/"
property="dc:title">RIF Core Dialect</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2010-06-22">June 22, 2010,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Harold
Boley</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Gary
Hallmark</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Michael
Kifer</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Adrian
Paschke</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Axel
Polleres</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Dave
Reynolds</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2010/REC-rif-bld-20100622/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rif-bld/"
property="dc:title">RIF Basic Logic Dialect</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2010-06-22">June 22, 2010,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Harold
Boley</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Michael
Kifer</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2010/REC-rif-prd-20100622/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rif-prd/"
property="dc:title">RIF Production Rule Dialect</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2010-06-22">June 22, 2010,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Christian de
Sainte Marie</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Gary
Hallmark</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Adrian
Paschke</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2010/REC-rif-fld-20100622/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rif-fld/"
property="dc:title">RIF Framework for Logic Dialects</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2010-06-22">June 22, 2010,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Harold
Boley</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Michael
Kifer</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2010/REC-rif-dtb-20100622/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rif-dtb/"
property="dc:title">RIF Datatypes and Built-Ins 1.0</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2010-06-22">June 22, 2010,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Axel
Polleres</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Harold
Boley</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Michael
Kifer</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2010/REC-rif-rdf-owl-20100622/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rif-rdf-owl/"
property="dc:title">RIF RDF and OWL Compatibility</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2010-06-22">June 22, 2010,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jos de
Bruijn</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2010/NOTE-rif-overview-20100622/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rif-overview/"
property="dc:title">RIF Overview</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2010-06-22">June 22, 2010,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Michael
Kifer</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Harold
Boley</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2010/NOTE-rif-owl-rl-20100622/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rif-owl-rl/"
property="dc:title">OWL 2 RL in RIF</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2010-06-22">June 22, 2010,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Dave
Reynolds</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2011/NOTE-rif-in-rdf-20110512/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rif-in-rdf/"
property="dc:title">RIF in RDF</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2011-05-12">May 12, 2011,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Sandro
Hawke</span>and
<span typeof="contact:Person" property="contact:fullName">Axel
Polleres</span></span>, eds.</li>
</ul>
</div>
<div class="line" id="SKOSSpecs">
<h2>
<img src="/Icons/SW/Buttons/sw-skos-blue" alt="SKOS Button" height="15"
width="80" /> SKOS Simple Knowledge Organization System</h2>
<ul class="recs">
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-skos-reference-20090818/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/skos-reference"
property="dc:title">SKOS Simple Knowledge Organization System Reference</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2009-08-18">August 18, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Alistair
Miles</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Sean
Bechhofer</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/NOTE-skos-primer-20090818/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/skos-primer"
property="dc:title">SKOS Simple Knowledge Organization System Primer</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2009-08-18">August 18, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Antoine
Isaac</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Ed
Summers</span>
</span>, eds</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/NOTE-skos-ucr-20090818/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/skos-ucr"
property="dc:title">SKOS Use Cases and Requirements</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2009-08-18">August 18, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Antoine
Isaac</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jon
Phipp</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Daniel
Rubin</span>
</span>, eds</li>
</ul>
</div>
<div class="line" id="SPARQLSpecs">
<h2>
<img src="/Icons/SW/Buttons/sw-sparql-orange" alt="SPARQL
Button" height="15" width="80" /> SPARQL Query Language for RDF</h2>
<ul class="recs">
<li rev="tr:cites"
resource="http://www.w3.org/TR/2008/REC-rdf-sparql-query-20080115/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdf-sparql-query/"
property="dc:title">SPARQL Query Language for RDF</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2008-01-15">January 15, 2008,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Andy
Seaborne</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Eric
Prud'hommeaux</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2008/REC-rdf-sparql-protocol-20080115/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdf-sparql-protocol/"
property="dc:title">SPARQL Protocol for RDF</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2008-01-15">January 15, 2008,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Elias
Torres</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Lee
Feigenbaum</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Kendall Grant
Clark</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2008/REC-rdf-sparql-XMLres-20080115/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdf-sparql-XMLres/"
property="dc:title">SPARQL Query Results XML Format</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2008-01-15">January 15, 2008,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Dave
Beckett</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jeen
Broekstra</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2007/NOTE-rdf-sparql-json-res-20070618/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdf-sparql-json-res/"
property="dc:title">Serializing SPARQL Query Results in JSON</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2007-06-18">June 18, 2007,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Kendall Grant
Clark</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Lee
Feigenbaum</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Elias
Torres</span>
</span>, eds.</li>
</ul>
</div>
<div class="line" id="OWLSpecs">
<h2>
<img src="/Icons/SW/Buttons/sw-owl-magenta" alt="OWL Button" height="15"
width="80" /> Web Ontology Language (OWL 2)</h2>
<ul class="recs">
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-owl2-overview-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/owl2-overview/"
property="dc:title">OWL 2 Web Ontology Language Document Overview</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2009-10-27">October 27, 2009,</span>OWL
Working Room, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-owl2-syntax-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/owl2-syntax/"
property="dc:title">OWL 2 Web Ontology Language Structural Specification and
Functional-Style Syntax</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2009-10-27">October 27, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Boris
Motik</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Peter F.
Patel-Schneider</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Bijan
Parsia</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-owl2-mapping-to-rdf-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/owl2-mapping-to-rdf/"
property="dc:title">OWL 2 Web Ontology Language Mapping to RDF Graphs</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2009-10-27">October 27, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Peter F.
Patel-Schneider</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Boris
Motik</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-owl2-direct-semantics-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/owl2-direct-semantics/"
property="dc:title">OWL 2 Web Ontology Language Direct Semantics</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2009-10-27">October 27, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Boris
Motik</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Peter F.
Patel-Schneider</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Bernardo Cuenca
Grau</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-owl2-rdf-based-semantics-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/owl2-rdf-based-semantics/"
property="dc:title">OWL 2 Web Ontology Language RDF-Based Semantics</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2009-10-27">October 27, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Michael
Schneider</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-owl2-conformance-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/owl2-conformance/"
property="dc:title">OWL 2 Web Ontology Language Conformance</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2009-10-27">October 27, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Michael
Smith</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Ian
Horrock</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Markus
Krötzsch</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Birte
Glimm</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-owl2-profiles-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/owl2-profiles/"
property="dc:title">OWL 2 Web Ontology Language Profiles</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2009-10-27">October 27, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Boris
Motik</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Bernardo Cuenca
Grau</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Ian
Horrock</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Zhe Wu</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Achille
Fokoue</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Carsten
Lutz</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-owl2-primer-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/owl2-primer/"
property="dc:title">OWL 2 Web Ontology Language Primer</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2009-10-27">October 27, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Pascal
Hitzler</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Markus
Krötzsch</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Bijan
Parsia</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Peter F.
Patel-Schneider</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Sebastian
Rudolph</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-owl2-quick-reference-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/owl2-quick-reference/"
property="dc:title">OWL 2 Web Ontology Language Quick Reference Guide</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2009-10-27">October 27, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jie Bao</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Elisa F.
Kendall</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:full">NameDeborah L.
McGuinness</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Peter F.
Patel-Schneider</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-owl2-xml-serialization-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/owl2-xml-serialization/"
property="dc:title">OWL 2 Web Ontology Language XML Serialization</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2009-10-27">October 27, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Boris
Motik</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Bijan
Parsia</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Peter F.
Patel-Schneider</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/NOTE-owl2-manchester-syntax-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/owl2-manchester-syntax/"
property="dc:title">OWL 2 Web Ontology Language Manchester Syntax</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Matthew
Horridge</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Peter F.
Patel-Schneider</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/NOTE-owl2-dr-linear-20091027/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/owl2-dr-linear/"
property="dc:title">OWL 2 Web Ontology Language Data Range Extension: Linear
Equations</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Bijan
Parsia</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Uli
Sattler</span>
</span>, eds.</li>
</ul>
</div>
<div class="line" id="POWDERSpecs">
<h2>
<img src="/Icons/SW/Buttons/sw-powder-blue" alt="POWDER
Button" height="15" width="80" /> Protocol for Web Description Resources (POWDER)</h2>
<ul class="recs">
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-powder-dr-20090901/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/powder-dr/"
property="dc:title">Protocol for Web Description Resources (POWDER):
Description Resources</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2003-06-11">September 1, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Phil
Archer</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Kevin
Smith</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Andrea
Perego</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-powder-grouping-20090901/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/powder-grouping/"
property="dc:title">Protocol for Web Description Resources (POWDER): Grouping
of Resources</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2003-06-11">September 1, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Phil
Archer</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Andrea
Perego</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Kevin
Smith</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/REC-powder-formal-20090901/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/powder-formal/"
property="dc:title">Protocol for Web Description Resources (POWDER): Formal
Semantics</a>,
<span rel="rdf:type" resource="[tr:REC]">W3C Recommendation,</span>
<span property="dc:date" content="2003-06-11">September 1, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Stasinos
Konstantopoulos</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Phil
Archer</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/NOTE-powder-primer-20090901/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/powder-primer/"
property="dc:title">Protocol for Web Description Resources (POWDER):
Primer</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2009-06-04">September 1, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Kai
Scheppe</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/NOTE-powder-test-20090910/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/powder-test/"
property="dc:title">Protocol for Web Description Resources (POWDER): Test
Suite</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2009-06-04">September 9, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Antonis
Kukurikos</span>
</span>and
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Phil
Archer</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/NOTE-powder-test-20090604/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/powder-test/"
property="dc:title">POWDER: Use Cases and Requirements</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2007-10-31">October 31, 2007,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Phil
Archer</span>
</span>, ed.</li>
</ul>
</div>
<div class="line" id="SWDNotes">
<h2>Semantic Web Deployment</h2>
<ul class="recs">
<li rev="tr:cites"
resource="http://www.w3.org/TR/2008/NOTE-swbp-vocab-pub-20080828/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/swbp-vocab-pub/"
property="dc:title">Best Practice Recipes for Publishing RDF
Vocabularies</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2008-08-28">August 28, 2008,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Diego
Berrueta</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jon
Phipps</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2008/NOTE-cooluris-20080331/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/cooluris/"
property="dc:title">Cool URIs for the Semantic Web</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Interest Group Note,</span>
<span property="dc:date" content="2008-03-31">March 3, 2008,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Leo
Sauermann</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Richard
Cyganiak</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2006/NOTE-swbp-n-aryRelations-20060412/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/swbp-n-aryRelations"
property="dc:title">Defining N-ary Relations on the Semantic Web</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2006-04-12">April 12, 2006,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Natasha
Noy</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Alan
Rector</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2006/NOTE-swbp-xsch-datatypes-20060314/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/swbp-xsch-datatypes/"
property="dc:title">XML Schema Datatypes in RDF and OWL</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2006-03-14">March 14, 2006,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jeremy J.
Carroll</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jeff Z.
Pan</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2006/NOTE-rdftm-survey-20060210">
<a rel="doc:versionOf" href="http://www.w3.org/TR/rdftm-survey"
property="dc:title">A Survey of RDF/Topic Maps Interoperability
Proposals</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2006-03-09">March 9, 2006,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Steve
Pepper</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Fabio
Vitali</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Lars Marius
Garshol</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Nicola
Gessa</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Valentina
Presutti</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2006/NOTE-sw-oosd-primer-20060309/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/sw-oosd-primer/"
property="dc:title">A Semantic Web Primer for Object-Oriented Software
Developers</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2006-03-09">March 9, 2006,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Holger
Knublauch</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Daniel
Oberle</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Phil
Tetlow</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Evan
Wallace</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2005/NOTE-swbp-specified-values-20050517">
<a rel="doc:versionOf" href="http://www.w3.org/TR/swbp-specified-values"
property="dc:title">Representing Specified Values in OWL: "value partitions"
and "value sets"</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2005-05-17">May 17, 2005,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Alan
Rector</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2005/NOTE-swbp-classes-as-values-20050405">
<a rel="doc:versionOf" href="http://www.w3.org/TR/swbp-classes-as-values"
property="dc:title">Representing Classes As Property Values on the Semantic
Web</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2005-04-05">April 5, 2005,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Natasha
Noy</span>
</span>, ed.</li>
</ul>
</div>
<div class="line" id="HCLSNotes">
<h2>Health Care and Life Science Related Notes</h2>
<ul class="recs">
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/NOTE-hcls-swan-20091020/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/hcls-swan/"
property="dc:title">Semantic Web Applications in Neuromedicine (SWAN)
Ontology</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Interest Group Note,</span>
<span property="dc:date" content="2008-06-04">October 20, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Paolo
Ciccarese</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/NOTE-hcls-sioc-20091020/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/hcls-sioc/"
property="dc:title">SIOC, SIOC Types and Health Care and Life Sciences</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Interest Group Note,</span>
<span property="dc:date" content="2008-06-04">October 20, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Alexandre
Passant</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2009/NOTE-hcls-swansioc-20091020/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/hcls-swansioc/"
property="dc:title">SWAN/SIOC: Alignment Between the SWAN and SIOC
Ontologies</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Interest Group Note,</span>
<span property="dc:date" content="2008-06-04">October 20, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Alexandre
Passant</span>
</span>and
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Paolo
Ciccarese</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2008/NOTE-hcls-kb-20080604/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/hcls-kb/"
property="dc:title">A Prototype Knowledge Base for the Life Sciences</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Interest Group Note,</span>
<span property="dc:date" content="2008-06-04">June 4, 2008,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Alan
Ruttenberg</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jonathan
Rees</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Susie
Stephens</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Matthias
Samwald</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Kei-Hoi
Cheung</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2008/NOTE-hcls-senselab-20080604/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/hcls-senselab/"
property="dc:title">Experiences with the conversion of SenseLab databases to
RDF/OWL</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Interest Group Note,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Matthias
Samwald</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Kei-Hoi
Cheung</span>
</span>, eds.</li>
</ul>
</div>
<div class="line" id="MiscNotes">
<h2>Miscellaneous Notes</h2>
<ul class="recs">
<li rev="tr:cites" resource="http://www.w3.org/TR/2011/NOTE-void-20110303/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/void/" property="dc:title">
Describing Linked Datasets with the VoID Vocabulary</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Interest Group Note,</span>
<span property="dc:date" content="2011-03-03">March 3, 2011,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Keith
Alexander</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Richard
Cyganiak</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Michael
Hausenblas</span>
</span>, and
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jun Zhao</span>
</span>, eds.</li>
<li rev="tr:cites" resource="http://www.w3.org/TR/2003/NOTE-lbase-20031010/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/lbase" property="dc:title">
LBase: Semantics for Languages of the Semantic Web</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Working Group Note,</span>
<span property="dc:date" content="2003-10-10">October 3, 2003,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">R.V.Guha</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Patrick
Hayes</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2002/NOTE-p3p-rdfschema-20020125">
<a rel="doc:versionOf" href="http://www.w3.org/TR/p3p-rdfschema"
property="dc:title">An RDF Schema for P3P</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Note,</span>
<span property="dc:date" content="2002-01-25">January 25, 2002,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Brian
McBride</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Rigo
Wenning</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Lorrie
Cranor</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2001/NOTE-xml-infoset-rdfs-20010406">
<a rel="doc:versionOf" href="http://www.w3.org/TR/xml-infoset-rdfs"
property="dc:title">An RDF Schema for the XML Information Set</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Note,</span>
<span property="dc:date" content="2001-04-06">April 6, 2001,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Richard
Tobin</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/2000/NOTE-xlink2rdf-20000929/">
<a rel="doc:versionOf" href="http://www.w3.org/TR/xlink2rdf"
property="dc:title">Harvesting RDF Statements from XLinks</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Note,</span>
<span property="dc:date" content="2000-09-29">September 29, 2000,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Ron Daniel
Jr.</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/1999/NOTE-schema-arch-19991007">
<a rel="doc:versionOf" href="http://www.w3.org/TR/schema-arch"
property="dc:title">The Cambridge Communiqué</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Note,</span>
<span property="dc:date" content="1999-10-07">October 6, 1999,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Ralph R.
Swick</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Henry S.
Thompson</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/TR/1998/NOTE-rdf-uml-19980804/">
<a rel="doc:versionOf"
href="http://www.w3.org/TR/1998/NOTE-rdf-uml-19980804/" property="dc:title">A
Discussion of the Relationship Between RDF-Schema and UML</a>,
<span rel="rdf:type" resource="[tr:Note]">W3C Note,</span>
<span property="dc:date" content="1998-08-04">August 4, 1998,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Walter W.
Chang,</span>
</span>, eds.</li>
</ul>
</div>
<div class="line" id="XGReports">
<h2>Incubator Group Reports</h2>
<ul class="recs">
<li rev="tr:cites"
resource="http://www.w3.org/2005/Incubator/mmsem/XGR-image-annotation-20070814/">
<a rel="doc:versionOf"
href="http://www.w3.org/2005/Incubator/mmsem/XGR-image-annotation-20070814/"
property="dc:title">Image Annotation on the Semantic Web</a>,
<span rel="rdf:type" resource="[tr:TRPub]">W3C Incubator Group Report,</span>
<span property="dc:date" content="2007-08-14">August 14, 2007,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Raphaël
Troncy</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jacco van
Ossenbruggen</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jeff Z.
Pan</span>
</span>, and
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Giorgos
Stamou</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/2005/Incubator/geo/XGR-geo-20071023/">
<a rel="doc:versionOf"
href="http://www.w3.org/2005/Incubator/geo/XGR-geo-20071023/"
property="dc:title">W3C Geospatial Vocabulary</a>,
<span rel="rdf:type" resource="[tr:TRPub]">W3C Incubator Group Report,</span>
<span property="dc:date" content="2007-10-23">October 23, 2007,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Joshua
Lieberman</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Raj
Singh</span>
</span>, and
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Chris
Goad</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/2005/Incubator/urw3/XGR-urw3-20080331/">
<a rel="doc:versionOf"
href="http://www.w3.org/2005/Incubator/urw3/XGR-urw3-20080331/"
property="dc:title">Uncertainty Reasoning for the World Wide Web</a>,
<span rel="rdf:type" resource="[tr:TRPub]">W3C Incubator Group Report,</span>
<span property="dc:date" content="2008-03-31">March 31, 2008,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Kenneth J.
Laskey</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Kathryn B.
Laskey</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Paulo C. G.
Costa</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Mieczyslaw M.
Kokar</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Trevor
Martin</span>
</span>, and
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Thomas
Lukasiewicz</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/2005/Incubator/w3pm/XGR-w3pm-20091008/">
<a rel="doc:versionOf"
href="http://www.w3.org/2005/Incubator/w3pm/XGR-w3pm-20091008/"
property="dc:title">Product Modelling using Semantic Web Technologies</a>,
<span rel="rdf:type" resource="[tr:TRPub]">W3C Incubator Group Report,</span>
<span property="dc:date" content="2008-03-31">March 31, 2008,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Michel
Böhms</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">David
Leal</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Henson
Graves</span>
</span>, and
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Kendall
Clark</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/2005/Incubator/rdb2rdf/XGR-rdb2rdf-20090126/">
<a rel="doc:versionOf"
href="http://www.w3.org/2005/Incubator/rdb2rdf/XGR-rdb2rdf-20090126/"
property="dc:title">RDB2RDF</a>,
<span rel="rdf:type" resource="[tr:TRPub]">W3C Incubator Group Report,</span>
<span property="dc:date" content="2009-01-26">January 26, 2009,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Ashok
Malhotra</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/2005/Incubator/socialweb/XGR-socialweb-20101206/">
<a rel="doc:versionOf"
href="http://www.w3.org/2005/Incubator/socialweb/XGR-socialweb-20101206/"
property="dc:title">A Standards-based, Open and Privacy-aware Social Web</a>,
<span rel="rdf:type" resource="[tr:TRPub]">W3C Incubator Group Report,</span>
<span property="dc:date" content="2010-12-06">December 6, 2010,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Harry
Halpin</span>
</span>, and
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Mischa
Tuffield</span>
</span>, eds.
<span rel="dc:creator">
<span typeof="contact:Person" property="contact:fullName">Daniel
Appelquist</span>
</span>,
<span rel="dc:creator">
<span typeof="contact:Person" property="contact:fullName">Dan
Brickley</span>
</span>,
<span rel="dc:creator">
<span typeof="contact:Person" property="contact:fullName">Melvin
Carvahlo</span>
</span>,
<span rel="dc:creator">
<span typeof="contact:Person" property="contact:fullName">Renato
Iannella</span>
</span>,
<span rel="dc:creator">
<span typeof="contact:Person" property="contact:fullName">Alexandre
Passant</span>
</span>,
<span rel="dc:creator">
<span typeof="contact:Person" property="contact:fullName">Christine
Perey</span>
</span>, and
<span rel="dc:creator">
<span typeof="contact:Person" property="contact:fullName">Henry
Story</span>
</span>, authors.</li>
<li rev="tr:cites"
resource="http://www.w3.org/2005/Incubator/prov/XGR-prov-20101214/">
<a rel="doc:versionOf"
href="http://www.w3.org/2005/Incubator/prov/XGR-prov-20101214/"
property="dc:title">A Provenance XG Final Report</a>,
<span rel="rdf:type" resource="[tr:TRPub]">W3C Incubator Group Report,</span>
<span property="dc:date" content="2010-12-06">December 14, 2010,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Yolanda
Gil</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">James
Cheney</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Paul
Groth</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Olaf
Hartig</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Simon
Miles</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Luc
Moreau</span>
</span>, and
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Paulo Pinheiro
da Silva</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/2005/Incubator/prov/XGR-prov-20101214/">
<a rel="doc:versionOf"
href="http://www.w3.org/2005/Incubator/ssn/XGR-ssn-20110628/"
property="dc:title">Semantic Sensor Network XG Final Report</a>,
<span rel="rdf:type" resource="[tr:TRPub]">W3C Incubator Group Report,</span>
<span property="dc:date" content="2011-06-28">June 28, 2011,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Laurent Lefort</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Cory Henson</span>
</span>, and
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Kerry Taylor</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/2005/Incubator/lld/XGR-lld-20111025/">
<a rel="doc:versionOf"
href="http://www.w3.org/2005/Incubator/lld/XGR-lld-20111025/"
property="dc:title">Library Linked Data Incubator Group Final Report</a>,
<span rel="rdf:type" resource="[tr:TRPub]">W3C Incubator Group Report,</span>
<span property="dc:date" content="2011-10-25">October 25, 2011,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Thomas Baker</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Emmanuelle Bermès</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Karen Coyle</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Gordon Dunsire</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Antoine Isaac</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Peter Murray</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Michael Panzer</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jodi Schneider</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Ross Singer</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Ed Summers</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">William Waites</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jeff Young</span>
</span>, and
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Marcia Zeng</span>
</span>, eds.</li>
<li rev="tr:cites"
resource="http://www.w3.org/2005/Incubator/lld/XGR-lld-usecase-20111025/">
<a rel="doc:versionOf"
href="http://www.w3.org/2005/Incubator/lld/XGR-lld-usecase-20111025/"
property="dc:title">Library Linked Data Incubator Group: Use Cases</a>,
<span rel="rdf:type" resource="[tr:TRPub]">W3C Incubator Group Report,</span>
<span property="dc:date" content="2011-10-25">October 25, 2011,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Daniel Vila Suero</span>
</span>, ed.</li>
<li rev="tr:cites"
resource="http://www.w3.org/2005/Incubator/lld/XGR-lld-20111025/">
<a rel="doc:versionOf"
href="http://www.w3.org/2005/Incubator/lld/XGR-lld-20111025/"
property="dc:title">Library Linked Data Incubator Group: Datasets, Value Vocabularies, and Metadata Element Sets</a>,
<span rel="rdf:type" resource="[tr:TRPub]">W3C Incubator Group Report,</span>
<span property="dc:date" content="2011-10-25">October 25, 2011,</span>
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Antoine Isaac</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">William Waites</span>
</span>,
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Jeff Young</span>
</span>, and
<span rel="tr:editor">
<span typeof="contact:Person" property="contact:fullName">Marcia Zeng</span>
</span>, eds.</li>
</ul>
</div>
<!-- end #w3c_main -->
</div>
</div>
<!-- /end #w3c_container -->
<div id="w3c_footer">
<div id="w3c_footer-inner">
<address class="contact">
<a href="/People/Ivan">Ivan Herman</a>, Semantic Web Activity Lead,
<ivan@w3.org> </address>
<br />
<h2 class="offscreen">Footer Navigation</h2>
<div class="w3c_footer-nav">
<h3>Navigation</h3>
<ul class="footer_top_nav">
<li>
<a href="http://www.w3.org/">Home</a>
</li>
<li>
<a href="http://www.w3.org/standards/">Standards</a>
</li>
<li>
<a href="http://www.w3.org/participate/">Participate</a>
</li>
<li>
<a href="http://www.w3.org/Consortium/membership">Membership</a>
</li>
<li class="last-item">
<a href="http://www.w3.org/Consortium/">About W3C</a>
</li>
</ul>
</div>
<div class="w3c_footer-nav">
<h3>Contact W3C</h3>
<ul class="footer_bottom_nav">
<li>
<a href="http://www.w3.org/Consortium/contact">Contact</a>
</li>
<li>
<a accesskey="0" href="http://www.w3.org/Help/">Help and FAQ</a>
</li>
<li>
<a href="http://www.w3.org/Consortium/sup">Donate</a>
</li>
<li>
<a href="http://www.w3.org/Consortium/siteindex">Site Map</a>
</li>
<li>
<address id="w3c_signature">
<a href="mailto:site-comments@w3.org">Feedback</a>(
<a href="http://lists.w3.org/Archives/Public/site-comments/">
archive</a>)</address>
</li>
</ul>
</div>
<div class="w3c_footer-nav">
<h3>W3C Updates</h3>
<ul class="footer_follow_nav">
<li>
<a href="http://twitter.com/W3C" title="Follow W3C on Twitter">
<img src="http://www.w3.org/2008/site/images/twitter-bird"
alt="Twitter" class="social-icon" width="39" height="42" />
</a>
<a href="http://identi.ca/w3c" title="See W3C on Identica">
<img src="http://www.w3.org/2008/site/images/identica-logo"
alt="Identica" class="social-icon" width="46" height="42" />
</a>
</li>
</ul>
</div>
<!-- #footer address / page signature -->
<p class="copyright">Copyright © 2011 W3C
<sup>®</sup>(
<a href="http://www.csail.mit.edu/">
<abbr title="Massachusetts Institute of Technology">MIT</abbr>
</a>,
<a href="http://www.ercim.eu/">
<abbr title="European Research Consortium for Informatics and Mathematics">
ERCIM</abbr>
</a>,
<a href="http://www.keio.ac.jp/">Keio</a>)
<a href="http://www.w3.org/Consortium/Legal/2002/ipr-notice-20021231">Usage policies
apply</a>.</p>
</div>
</div>
<!-- /end #footer -->
<div id="w3c_scripts">
<script type="text/javascript" src="http://www.w3.org/2008/site/js/main"></script>
</div>
</div>
</div>
</body>
</html>