index.html 101 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 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html
  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
   
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      
      
      <title>XML Schema Datatypes in RDF and OWL</title>
      
      <style type="text/css" xml:space="preserve">
 
*.xpath {
    background-color: #e8b8b8;
}
*.derive {
    background-color: #b8b8e8;
}

*.todo {
  color: red;
  font-style: italic; 
}

*.change {
  color: #229922;
} 
*.delete {
  color: #882200;
  text-decoration: line-through;
}
  </style>
      
      <link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-WG-NOTE.css" />

      </head>
   
   <body>
      
      <div class="head"><a href="http://www.w3.org/"><img src="http://www.w3.org/Icons/w3c_home" alt="W3C" height="48" width="72" /></a>
         
         <h1 id="title">XML Schema Datatypes in RDF and OWL</h1>
         
         <h2 class="notoc">W3C Working Group Note 14 March 2006</h2>
         
         <dl>
            
            <dt>This version:</dt>
            
            <dd><a href="http://www.w3.org/TR/2006/NOTE-swbp-xsch-datatypes-20060314/">http://www.w3.org/TR/2006/NOTE-swbp-xsch-datatypes-20060314/</a></dd>
            
            <dt>Latest version:</dt>
            
            <dd><a href="http://www.w3.org/TR/swbp-xsch-datatypes/">http://www.w3.org/TR/swbp-xsch-datatypes/</a></dd>
            
            <dt>Previous version:</dt>
            
            <dd><a href="http://www.w3.org/TR/2005/WD-swbp-xsch-datatypes-20050427/">http://www.w3.org/TR/2005/WD-swbp-xsch-datatypes-20050427/</a></dd>

            <dt>Editors:</dt>
            
            <dd><a href="http://www.hpl.hp.com/personal/jjc/">Jeremy J. Carroll</a>, HP Lab
            </dd>
            
            <dd><a href="http://www.csd.abdn.ac.uk/~jpan/">Jeff Z. Pan</a>, University of Aberdeen
            </dd>
            
         </dl>
         
         
         <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
            ©2006 <a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">W3C</acronym></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>, <a href="http://www.ercim.org/"><acronym title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>,
            <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved.
            W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>,
            <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>
            and <a href="http://www.w3.org/Consortium/Legal/copyright-documents">document
               use</a> rules apply.
         </p>
         
         <hr />
      </div>
      
      <!-- end of head -->
      
      <h2 class="notoc"><a id="abstract" name="abstract">Abstract</a></h2>
      
      <p>The RDF and OWL Recommendations use the simple types from XML
         Schema. This document addresses 
         three questions left unanswered by
         these Recommendations: Which URIref should be used to refer to a
         user defined datatype? Which values of which XML Schema simple
         types are the same? How to use the problematic
         <code>xsd:duration</code> in RDF and OWL?
         In addition, we further describe how to 
         integrate OWL DL with user defined datatypes (in <a href="#sec-dl-dt"> appendix B</a>).
         
      </p>
      
      <h2 class="notoc" id="Status">Status of this Document</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 and the latest
            revision of this technical report 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>This document is a <a href="http://www.w3.org/2004/02/Process-20040205/tr.html#WGNote">Working 
            Group Note</a>, produced by the  <a href="http://www.w3.org/2001/sw/BestPractices/">Semantic 
            Web Best Practices and Deployment Working Group</a>, part of the
         <a href="http://www.w3.org/2001/sw/">W3C Semantic Web Activity</a>.
      </p>

      <p>
	 As of the publication of this Working Group Note the SWBPD
	 Working Group has completed work on this document.  Changes
	 from the previous Working Draft are summarized in
	 <a href="#sec-changes">Appendix C</a>.
         Comments on this document may be sent to
         <a href="mailto:public-swbp-wg@w3.org">public-swbp-wg@w3.org</a>,
         a mailing list with a 
         <a href="http://lists.w3.org/Archives/Public/public-swbp-wg/"
	  >public archive</a>.  Further discussion on this material
	 may be sent to the <a href="http://www.w3.org/2001/sw/interest/"
	  >Semantic Web Interest Group</a> mailing list,
	 <a href="mailto:semantic-web@w3.org">semantic-web@w3.org</a>,
	 also with a <a href="http://lists.w3.org/Archives/Public/semantic-web/"
	  >public archive</a>.
      </p>
      
<p> This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 February 2004 W3C Patent Policy</a>. This document is informative only. W3C has a <a href="http://www.w3.org/2004/01/pp-impl/35495/status">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent.</p>

      <p>Publication as a Working Group Note does not imply endorsement by the
         W3C Membership. This is a draft document and may be updated,
         replaced or obsoleted by other documents at any time. It is
         inappropriate to cite this document as other than work in
         progress.
      </p>
      
      
      <hr />
      
      
      <div class="toc">
         
         <h2 class="notoc"><a id="contents" name="contents" shape="rect">Table of
               Contents</a></h2>
         
         <ul class="toc">
            
            <li class="tocline"><a href="#sec-overview" shape="rect">1.
                     Introduction</a>
               
               <ul class="toc">
                  
                  <li class="tocline"><a href="#sec-structure" shape="rect">1.1 
                        Reading this Document
                        </a></li>
                  
                  <li class="tocline"><a href="#sec-structure" shape="rect">1.2
                        Namespaces 
                        Used in this Document
                        </a></li>
                  
                  <li class="tocline"><a href="#sec-xmls-dt" shape="rect">1.3 XML Schema Simple
                        Types</a></li>
                  
               </ul>
               
            </li>
            
            <li class="tocline"><a href="#sec-userDefined" shape="rect">2. User
                     Defined Datatypes</a>
               
               <ul class="toc">
                  
                  <li class="tocline"><a href="#sec-user-defined-problem" shape="rect">2.1 Problem
                        Statement</a></li>
                  
                  
                  <li class="tocline"><a href="#sec-xscd" shape="rect">2.2 Component Designators
                        Solution</a></li>
                  
                  <li class="tocline"><a href="#sec-id-attr" shape="rect">2.3 Using the
                        <code>id</code> Attribute</a></li>
                  
                  <li class="tocline"><a href="#sec-user-uri-discussion" shape="rect">2.4
                        Suggested Practice</a></li>
                  
               </ul>
               
            </li>
            
            <li class="tocline"><a href="#sec-values" shape="rect">3. Comparison of
                     Values</a>
               
               <ul class="toc">
                  
                  <li class="tocline"><a href="#sec-values-problem" shape="rect">3.1 Problem
                        Statement</a></li>
                  
                  <li><a href="#sec-values-differ" shape="rect">3.2  All Primitive
                        Types Differ</a></li>
                  
                  
                  
                  <li class="tocline"><a href="#sec-values-formal" shape="rect">3.3 Formal
                        Analysis</a></li>
                  
                  <li class="tocline"><a href="#sec-values-examples" shape="rect">3.4 Examples</a></li>
                  
                  
                  <li><a href="#sec-use-sparql" shape="rect">3.5 Using SPARQL for Equality</a></li>
                  
                  
                   <li><a href="#sec-use-amapping" shape="rect">3.6 Value Approximate Mapping</a></li>
                  
               </ul>
               
            </li>
            
            <li class="tocline"><a href="#section-duration" shape="rect">4.
                     Duration</a></li>
            
            <li class="tocline"><a href="#sec-numerics" shape="rect">5.
                     The Use of Numeric Types</a></li>
            
            <li class="tocline"><a href="#section-acknowledgements" shape="rect">6.
                     Acknowledgements</a></li>
            
            <li class="tocline"><a href="#section-references" shape="rect">7.
                     References</a></li>
            
         </ul>
         <br />
         
         <ul class="toc">
            
            
            <li class="tocline"><a href="#sec-recs-dt" shape="rect">Appendix A:
                     The Semantics of 
                     Datatyping in the Semantic Web Recommendations</a>
               
               <ul class="toc">
                  
                  
                  <li class="tocline"><a href="#sec-rdf-dt" shape="rect">A.1 Datatypes in
                        RDF</a></li>
                  
                  <li class="tocline"><a href="#sec-owl-dt" shape="rect">A.2 Datatypes in
                        OWL DL</a></li>
                  
               </ul>
               
            </li>
            
            <li class="tocline"><a href="#sec-dl-dt" shape="rect">
                  Appendix B: Integrating Description Logics with User-Defined Datatypes</a></li>
            
            <li class="tocline"><a href="#sec-changes" shape="rect">
                  Appendix C: Changes since 
                     Working Draft of 27 April 2005</a></li>
            
            
         </ul>
         
      </div>
      
      <hr />
      
      <h2><a id="sec-overview" name="sec-overview" shape="rect">1.
            Introduction</a></h2>
      
      <p>An overview of the <a href="http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-Datatypes" shape="rect">datatype abstraction</a>
         used by RDF is found in the <a href="#ref-rdf-concepts" shape="rect">[RDF
            Concepts and Abstract Syntax]</a>; this is <a href="http://www.w3.org/TR/2004/REC-owl-semantics-20040210/direct.html#datatype" shape="rect">
            shared</a> by the <a href="#ref-owl-semantics" shape="rect">[OWL Abstract
            Syntax]</a>. 
         The semantics of RDF datatyping and OWL datatyping are
         summarized in <a href="#sec-recs-dt" shape="rect">appendix A.</a></p>
      
      <p>RDF and OWL allow the use of typed literal values in the
         description of resources and ontologies. See the <a href="#ref-rdf-primer" shape="rect">[RDF Primer]</a>, and the <a href="#ref-owl-guide" shape="rect">[OWL Guide]</a> for a more introductory treatments
         for <a href="http://www.w3.org/TR/2004/REC-rdf-primer-20040210/#typedliterals" shape="rect">RDF</a>
         and <a href="http://www.w3.org/TR/2004/REC-owl-guide-20040210/#Datatypes1" shape="rect">OWL</a>.
         Both the <a href="#ref-rdf-semantics" shape="rect">[RDF Semantics]</a> and the
         <a href="#ref-owl-semantics" shape="rect">[OWL Semantics]</a> use the
         lexical-to-value mapping of the datatype to give the interpretation
         (the value) of a typed literal, thus the semantics of typed
         literals is given by the type system. The type systems are defined
         externally to RDF and OWL, most notably by <a href="#ref-xml-schema2" shape="rect">[XML Schema2]</a>.
      </p>
      
      <p>Concrete syntaxes for typed literals are found in <a href="#ref-rdf-syntax" shape="rect">[RDF Syntax]</a>, <a href="#ref-rdf-tests" shape="rect">[N-triples]</a>, and <a href="#ref-n3" shape="rect">[N3]</a>.
         
      </p>
      
      
      <p>Some questions about XML Schema datatypes in the Semantic Web
         are not directly answered by the published W3C Recommendations.
         This document considers four of them:
      </p>
      
      <ul>
         
         <li>Within RDF and OWL, how to refer to an XML Schema user defined
            simple type with a URI.
         </li>
         
         <li>Details of the denotational semantics of the values of the
            primitive XML Schema simple types. XML Schema principally gives an
            operational semantics. RDF and OWL applications need a denotational
            semantics for interoperable behaviour.
         </li>
         
         <li>A possible solution to the problems concerning
            <code>xsd:duration</code>, which are <a href="http://www.w3.org/TR/2004/REC-rdf-mt-20040210/#dtype_interp" shape="rect">reported</a>
            in <a href="#ref-rdf-semantics" shape="rect">[RDF Semantics]</a>.
         </li>
         
         <li> Appropriate use of numeric types for engineering applications.</li>
         
      </ul>
      
      
      <h3><a id="sec-structure" name="sec-structure" shape="rect">1.1 Reading this Document</a></h3>
      
      <p>
         While this document can be read from start to finish, many readers
         will benefit from skipping sections.
      </p>
      
      <p>The intended reader is informed about RDF and/or OWL,
         and may be a creator or
         user of metadata or ontologies, or may be an implementor
         of systems that implement the RDF or OWL Recommendations, or
         may be the author or editor of related specifications.
         
      </p>
      
      <p>
         The reader who is interested in defining their own datatypes
         should read <a href="#sec-userDefined" shape="rect">section 2</a>
         and  maybe
         <a href="#sec-dl-dt" shape="rect"> appendix B</a>, which gives 
         a formal treatment, 
         in terms of OWL DL and user defined datatypes, that has not been covered by the <a href="#ref-owl-semantics" shape="rect">[OWL Semantics]</a>.
         
      </p>
      
      <p>
         The reader who is interested in the correct use of datatypes 
         should read <a href="#sec-values" shape="rect">section 3</a>, concerning
         which values are the same, and 
         <a href="#sec-numerics" shape="rect">section 5</a> concerning numerics, particularly,
         but not exclusively,
         for engineering 
         applications.
         
      </p>
      
      <p>
         Implementors probably should read most of the document:
         <a href="#sec-recs-dt" shape="rect">appendix A</a> summarizes
         the formal treatment of datatyping from the recommendations;
         <a href="#sec-values" shape="rect">section 3</a> gives an extended discussion
         about equality; <a href="#sec-userDefined" shape="rect">section 2</a>
         discusses the mapping from URIs to user defined types.
         
      </p>
      
      <p>
         Readers most interested in formal semantics
         will find most value in 
         <a href="#sec-dl-dt" shape="rect"> appendix B</a>,
         concerning user defined datatypes,
         and
         <a href="#sec-values" shape="rect">section 3</a>
         concerning equality. Such readers should start by 
         reviewing 
         <a href="#sec-recs-dt" shape="rect">appendix A</a>, which should be
         familiar.
         
      </p>
      
      <p>
         <a href="#section-duration" shape="rect">Section 4</a>
         on durations, is of more limited interest, but is significant
         to any reader who wishes to use, implement
         or build on top of
         duration datatypes.
         
      </p>
      
      
      
      
      
      <h3><a id="sec-namespaces" name="sec-namespaces" shape="rect">1.2 Namespaces 
            Used in this Document</a></h3>
      
      
      <p>
         In this document we use N3 such as <code>"10"^^xsd:int</code>
         following the subset used by the <a href="#ref-owl-test" shape="rect">[OWL Test
            Cases]</a>, with the following namespace prefixes:
      </p>
      <pre xml:space="preserve">@prefix dc: &lt;http://purl.org/dc/elements/1.1/&gt; .
@prefix eg: &lt;http://www.example.org/&gt; .
@prefix egdt: &lt;http://example.org/simpleTypes#&gt; .
@prefix xsd: &lt;http://www.example.org/&gt; .
@prefix rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt; .
@prefix rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt; .
@prefix owl: &lt;http://www.w3.org/2002/07/owl#&gt; .
@prefix xsd: &lt;http://www.w3.org/2001/XMLSchema#&gt; .
</pre>
      
      
      <h3><a id="sec-xmls-dt" name="sec-xmls-dt" shape="rect">1.3 XML Schema Simple
            Types</a></h3>
      
      <p><a href="#ref-xml-schema2" shape="rect">
            [XML SCHEMA2]</a> defines facilities for defining simple types to
         be used in XML Schema as well as other XML specifications.
         It is influenced by earlier work on datatypes such as
         <a href="#ref-ISO11404" shape="rect">[ISO 11404]</a>.
         
      </p>
      
      <p><a id="xmls-dt-simple-type" name="xmls-dt-simple-type" shape="rect"><b>[Definition:]</b></a> An XML Schema
         <b>simple type</b> d is characterised by a value space, V(d), which
         is a non-empty set, a lexical space, L(d), which is a non-empty set
         of Unicode strings, and a set of facets, F(d), each of which
         characterizes a value space along independent axes or
         dimensions.
      </p>
      
      <p>XML Schema simple types are divided into disjoint built-in
         simple types and derived simple types. Derived datatypes can be
         defined  
         from primitive or existing derived datatypes
         by the following three means:
      </p>
      
      <ul>
         
         <li> By 
            <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#restriction" shape="rect">restriction</a>, i.e., by using facets on an
            existing type, so as to limit the number of possible values of the
            derived type.
         </li>
         
         <li> By 
            <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#union" shape="rect">union</a>, i.e., to allow values from a list
            of simple types.
         </li>
         
         <li> By  
            <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#list" shape="rect">list</a>, i.e., to define the list type of
            an existing simple type.
         </li>
         
      </ul>
      
      <h6><a id="example_1A" name="example_1A" shape="rect">Example 1A</a></h6>
      
      <p>The following is the definition of a derived simple type (of the
         base datatype xsd:integer) which restricts values to integers
         greater than or equal to 0 and less than 150, using the facets
         minInclusive and maxExclusive.
      </p>
      <pre xml:space="preserve">
   &lt;xsd:schema ...&gt;
     &lt;xsd:simpleType name="humanAge"&gt;
       &lt;xsd:restriction base="integer"&gt;
        &lt;xsd:minInclusive value="0"&gt;
        &lt;xsd:maxExclusive value="150"&gt;
       &lt;/xsd:restriction&gt;
     &lt;/xsd:simpleType&gt;
     ...
   &lt;/xsd:schema&gt;
   
</pre>
      <h2><a id="sec-userDefined" name="sec-userDefined" shape="rect">2. User Defined
            Datatypes</a></h2>
      
      <p><a href="#ref-xml-schema2" shape="rect">[XML Schema2]</a> predefines about
         forty simple types, the ones suitable for RDF and OWL are listed in
         <a href="#ref-rdf-semantics" shape="rect">[RDF Semantics]</a>.
      </p>
      
      <p>In addition, XML Schema permits users to refine these builtin
         types by taking a restriction including only some of the values or
         some of the lexical forms.
         
      </p>
      
      <h6><a id="example_2A" name="example_2A" shape="rect">Example 2A</a></h6>
      
      
      <p>
         As a further example, we may wish to talk about
         ages of adults in years, where an adult is over 18. This can be
         described as a restriction on the <code>xsd:integer</code>
         datatype.
      </p>
      <pre xml:space="preserve">
   &lt;xsd:schema ...&gt;
     &lt;xsd:simpleType name="adultAge"&gt;
       &lt;xsd:restriction base="integer"&gt;
        &lt;xsd:minInclusive value="18"&gt;
       &lt;/xsd:restriction&gt;
     &lt;/xsd:simpleType&gt;
     ...
   &lt;/xsd:schema&gt;
   
</pre>
      <p>In a Semantic Web context this may be used with the objects of
         triples of an <code>eg:age</code> property, used, for instance,
         when describing some members of a club which is restricted to
         adults, e.g. a nightclub or a political party.
      </p>
      
      <p>We will use this example throughout this section, and assume it
         can be retrieved from
         <code>http://example.org/simpleTypes</code>.
         
      </p>
      
      <p>Within RDF, and RDF reasoning, this additional restriction may
         be enough to catch some typos or data entry errors (e.g. putting an
         inappropriate value of <code>0</code> for the <code>eg:age</code>
         property). Within OWL, and OWL reasoning, this may interact with
         axioms in the ontology to significantly restrict the possible
         interpretations, adding to the modelling power of the language.
      </p>
      
      <p>
         This section only deals with the problem of how to refer to such
         datatypes.
         Their semantics is treated in the appendices. 
         <a href="#sec-recs-dt" shape="rect">Appendix A</a>
         reviews the semantics of datatypes from the RDF and OWL
         recommendations.
         <a href="#sec-dl-dt" shape="rect">Appendix B</a>
         describes how to integrate Description Logics (such as the 
         SHOIN DL, which is the underpinning of OWL DL) with user 
         defined datatypes.
         
      </p>
      
      
      <p>
         We will also consider the topic of
         the <a href="http://www.w3.org/TR/2004/REC-xmlschema-1-20041028/#key-targetNS" shape="rect">
            target namespace</a>
         from <a href="#ref-xml-schema1" shape="rect">[XML SCHEMA1]</a>.
         For clarity, we will consider 
         two variants on this example. The first has no target namespace,
         the second defines one.
         
      </p>
      
      <h6><a id="example_2B" name="example_2B" shape="rect">Example 2B</a></h6>
      
      <pre xml:space="preserve">
&lt;xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt;
  &lt;xs:simpleType name="adultAge"&gt;
    &lt;xs:restriction base="integer"&gt;
     &lt;xs:minInclusive value="18"&gt;
    &lt;/xs:restriction&gt;
  &lt;/xs:simpleType&gt;
     ...
&lt;/xs:schema&gt; 
</pre>
      <h6><a id="example_2C" name="example_2C" shape="rect">Example 2C</a></h6>
      
      <pre xml:space="preserve">
&lt;xs:schema 
  targetNamespace="http://example.org/ns"
  elementFormDefault="qualified"
  xmlns:egn="http://example.org/ns"
  xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt;
  &lt;xs:simpleType name="adultAge"&gt;
    &lt;xs:restriction base="integer"&gt;
     &lt;xs:minInclusive value="18"&gt;
    &lt;/xs:restriction&gt;
  &lt;/xs:simpleType&gt;
     ...
&lt;/xs:schema&gt; 
</pre>
      <p>
         The case where the XML Schema has been assembed from multiple schema
         documents lies outside the scope of this document.
         This case is 
         <a href="http://www.w3.org/TR/2004/REC-xmlschema-1-20041028/#composition" shape="rect">discussed</a> in 
         <a href="#ref-xml-schema1" shape="rect">[XML SCHEMA1]</a>
         and explicitly 
         <a href="http://www.w3.org/TR/2005/WD-xmlschema-ref-20050329/#section-scds" shape="rect">
            not discussed</a> in
         <a href="#ref-xscd" shape="rect">[XSCD]</a>.
         
      </p>
      
      
      <h3><a id="sec-user-defined-problem" name="sec-user-defined-problem" shape="rect">2.1 Problem Statement:</a></h3>
      
      <p>When describing a resource with RDF or building an ontology with
         OWL, in which a user defined simple XML Schema datatype, such as
         <code>adultAge</code> above, what URI should be used to identify
         this datatype?
      </p>
      
      
      
      
      <h3><a name="sec-xscd" id="sec-xscd" shape="rect">2.2 Component Designators
            Solution</a></h3>
      
      
      <p>Following XML Schema Component Designators <a href="#ref-xscd" shape="rect">[XSCD]</a> 
         <a href="#example_2B" shape="rect">Example 2B</a>
         
         has URI reference
         <code>http://example.org/simpleTypes#xscd(/type::adultAge)</code>.
         
      </p>
      
      <p>
         A URI reference for
         <a href="#example_2C" shape="rect">Example 2C</a>
         requires a choice of prefix for the namespace
         <code>http://example.org/ns</code>.
         A good choice is to use the prefix
         used by the schema itself, i.e. <code>egn</code>.
         The resulting URI reference for the datatype 
         is then
         <code>http://example.org/simpleTypes#xmlns(egn=http://example.org/ns)xscd(/type::egn:adultAge)</code>
         
      </p>
      
      <p>
         When the schema does not define a prefix for the
         target namespace, perhaps by using the default namespace,
         then an arbitrary prefix needs to be chosen.
         As always with namespace prefixes, it is permitted
         to use any prefix of your choice, even when a conventional
         prefix is used in the schema document.
         
      </p>
      
      <p>
         
         
         XML Schema Component Designators <a href="#ref-xscd" shape="rect">[XSCD]</a>
          defines an XPointer scheme that navigates the XML
         Schema document to identify any of the schema components using a
         fragment. This is very general: fragments are defined that identify
         many different aspects of the document, including unnamed simple
         types within complex schema.
      </p>
      
      
      
      
      <p>Our  
         <a href="#example_2B" shape="rect">example 2B</a> becomes:
      </p>
      <pre xml:space="preserve">eg:membersAge rdfs:range &lt;http://example.org/simpleTypes#xscd(/type::adultAge)&gt; .
_:aMember eg:name "Jane Doe" .
_:aMember eg:membersAge "24"^^&lt;http://example.org/simpleTypes#xscd(/type::adultAge)&gt; .
</pre>
      <p>
         One way of reading the fragment is that it provides full 
         semantic clarity about what is being identified: the <code>xscd(.)</code>
         shows that an XML Schema component is being identified; the <code>/type</code>
         indicates that a type is being identified; the <code>::adultAge</code> shows which   
         type is being identified.
         
      </p>
      
      <p>
         The above URIrefs cannot be abbreviated as:
         
      </p>
      <pre xml:space="preserve">eg:membersAge rdfs:range egdt:xscd(/type::adultAge) .
_:aMember eg:name "Jane Doe" .
_:aMember eg:membersAge "24"^^egdt:xscd(/type::adultAge) .
</pre>
      <p>because <code>xscd(/type::adultAge)</code> does not match
         the NCName production.
      </p>
      
      <p>Overall, referring to XML Schema Datatypes
         in the manner proposed by the XML Schema Working Group is
         a good practice, and will be moreso, when 
         <a href="#ref-xscd" shape="rect">[XSCD]</a> 
         reaches Recommendation status.
         
      </p>
      
      <h3><a name="sec-id-attr" id="sec-id-attr" shape="rect">2.3 Using the
            <code>id</code> Attribute</a></h3>
      
      
      
      <p>
         In cases where the XML Schema is under the control
         of a Semantic Web author, the full generality of
         <a href="#ref-xscd" shape="rect">[XSCD]</a> 
         is not needed. This section shows how when defining
         your own datatype, derived from an XML Schema type,
         it is possible to use a simpler method, by slightly
          modifying the schema defining the datatype. 
         <a href="#example_2A" shape="rect">Example 2A</a> becomes:
      </p>
      <pre xml:space="preserve">
   &lt;xsd:schema ...&gt;
     &lt;xsd:simpleType id="adultAge" name="adultAge"&gt;
       &lt;xsd:restriction base="integer"&gt;
        &lt;xsd:minInclusive value="18"&gt;
       &lt;/xsd:restriction&gt;
     &lt;/xsd:simpleType&gt;
     ...
   &lt;/xsd:schema&gt;
</pre>
      <p>The difference is that the datatype we wish to use
         is not only identified by the <code>@name</code>
         attribute, but also by an <code>@id</code> attribute.
         While it is technically possibly to use different values
         for these two attributes, it would be confusing.
      </p>
      
      <p>The URI reference
         <code>http://example.org/simpleTypes#adultAge</code> can then be used to refer
         to the datatype.
      </p>
      
      <p>
         
         In the terminology of <a href="#ref-rfc3986" shape="rect">[RFC 3986]</a>,
         the URI <code>http://example.org/simpleTypes#adultAge</code>
         identifies a secondary resource. When
         <code>http://example.org/simpleTypes</code> is retrieved
         as an XML Schema document, with mimetype <code>application/xml</code>,
         this may be taken as
         a
         
          <a href="http://www.w3.org/TR/xptr-framework/#shorthand" shape="rect">shorthand
            pointer</a>  
         from the <a href="#ref-xptr" shape="rect">[XPointer
            Framework]</a>.
         This identifies a view on the XML representation of the primary resource
         being the XML element with the matching <code>@id</code> attribute.
         
      </p>
      
      <p>When used in RDF (see
         <a href="#ref-rdf-concepts" shape="rect">[RDF Concepts]</a>, this URI reference
         <a href="http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/#section-fragID" shape="rect"> 
            may be understood</a> with the URI
         <code>http://example.org/simpleTypes</code>
         as identifying the schema, and the URI
         <code>http://example.org/simpleTypes#adultAge</code>
         as identifying the datatype itself, a resource defined
         or described by the representation identified 
         by the <code>application/xml</code> retrieval.
         It is preferred that no <code>targetNamespace</code>
         is given in the schema for this usage.
         
      </p>
      
      <p>
          
         If there is no <code>@id</code> attribute 
         with the given name,
         the
         <a href="#ref-xptr" shape="rect">[XPointer
            Framework]</a>
         is clear that this is an error:
         
      </p>
      
      <blockquote>
         
         <p>If no element information item is identified by a shorthand pointer's 
            NCName, the pointer is in error.
            
         </p>
         
      </blockquote>
      
      
      
      <p>Our example RDF is:</p>
      <pre xml:space="preserve">eg:membersAge rdfs:range &lt;http://example.org/simpleTypes#adultAge&gt; .
_:aMember eg:name "Jane Doe" .
_:aMember eg:membersAge "24"^^&lt;http://example.org/simpleTypes#adultAge&gt; .
</pre>
      <p>Or:</p>
      <pre xml:space="preserve">eg:membersAge rdfs:range egdt:adultAge .
_:aMember eg:name "Jane Doe" .
_:aMember eg:membersAge "24"^^egdt:adultAge .
</pre>
      
      <p>
         As a further example, a club which has members of all ages,
         but wishes to have a class of its adult members, could use an OWL expression
         like the following (in the 
         <a href="#ref-owl-syntax" shape="rect">[OWL Abstract Syntax]</a>:
         
      </p>
      <pre xml:space="preserve">
Class(AdultMembers
   insersectionOf(
     Members
     Restriction(eg:membersAge, allValuesFrom(egdt:adultAge)) ) )
</pre>
      
      <h3><a name="sec-user-uri-discussion" id="sec-user-uri-discussion" shape="rect">2.4 Suggested Practice</a></h3>
      
      <p>
         When referring to arbitrary user defined datatypes
         in arbitrary XML Schema, the 
         <a href="#ref-xscd" shape="rect">[XSCD]</a> solution is appropriate.
         When an
         RDF or OWL author or tool
         is writing an XML Schema for use with an RDF/XML document,
         the <code>@id</code> solution may be preferred.
         
      </p>
      
      
      
      
      <h2><a id="sec-values" name="sec-values" shape="rect">3. Comparison of
            Values</a></h2>
      
      <p>Two different authors publishing the same information on the
         Semantic Web may make different syntactic choices. They then say
         the same thing in different ways. This is seen most clearly when
         the two documents entail one another as determined by the <a href="#ref-rdf-semantics" shape="rect">
            [RDF Semantics]</a> or <a href="#ref-owl-semantics" shape="rect">
            [OWL Semantics]</a>.
      </p>
      
      <p>One aspect of the syntactic choices facing an author is which
         datatypes to use. Even if they use only the built in <a href="#ref-xml-schema2" shape="rect">
            [XML SCHEMA2]</a> simple types, there are non-trivial choices, and
         different authors may legitimately choose different datatypes. This
         section addresses the issue of how implementations of <a href="#ref-rdf-semantics" shape="rect">
            [RDF Semantics]</a> and <a href="#ref-owl-semantics" shape="rect">
            [OWL Semantics]</a> should allow for the different choices of
         datatype made by different authors.
      </p>
      
      <h3><a id="sec-values-problem" name="sec-values-problem" shape="rect">3.1
            Problem Statement</a></h3>
      
      <p>What is the relationship between the value spaces of the various
         XML Schema built-in simple types when used within RDF and OWL?
      </p>
      
      <p>Or in other words, when  do two literals, which are written down
         differently, refer to the same value. For example,
         <code>"10"^^xsd:integer</code> and <code>"010"^^xsd:integer</code>
         both denote the integer ten.
      </p>
      
      
      <h3><a id="sec-values-differ" name="sec-values-differ" shape="rect">3.2 
            All Primitive Types Differ</a></h3>
      
      <p>
         The most appropriate solution is 
          that all
         primitive XML Schema Datatypes 
         are treated as having disjoint value spaces.
         
         This
         approach is both easy to understand,
         and easy to implement.
         
      </p>
      
      
      <p>Formally, in a <a href="#datatype-group" shape="rect">unary datatype group</a>, value spaces of primitive base
         datatypes are required to be defined as <a href="#pbd-disjoint" shape="rect">disjoint with
            each other</a>. For instance, if the value space datatype D<sub>1</sub> is a subset of that of the 
         datatype D<sub>2</sub>, then D<sub>1</sub> and D<sub>2</sub> can not be both primitive base datatypes 
         in a unary datatype group.
      </p>
      
      
      
      
      
      <h3><a id="sec-values-formal" name="sec-values-formal" shape="rect">3.3 Formal
            Analysis</a></h3>
      
      <p>In discussing the examples, we presented pairs of literals which
         denoted the same value. This relationship of denoting the same
         value forms an equivalence relation, which we will write as
         <code>~</code>; it is conventionally written as '=' 
         and called equality. It is reflexive, symmetric and transitive.
      </p>
      
      <p>In terms of the <a href="#ref-rdf-semantics" shape="rect">
            [RDF Semantics]</a> 
         (see <a href="#sec-rdf-dt" shape="rect">appendix A.1</a>)
         the equivalence  relation <code>~</code> can
         be constructed from the interpretation function IL, in the
         following way:
      </p>
      
      <p>
         <code>~</code>   = { &lt;x,y&gt; : IL(x)=IL(y), for any x, y  ∈ LV }
         
      </p>
      
      <p>In terms of 
         <!-- <a href="http://www.w3.org/TR/2004/REC-owl-semantics-20040210/direct.html">OWL
DL Semantics</a> --> <a href="#ref-owl-semantics" shape="rect">
            [OWL Semantics]</a> (see <a href="#sec-owl-dt" shape="rect">appendix A.2</a>), this can be constructed in terms of the
         interpretation function ED as:
      </p>
      
      <p>
         <code>~</code>   = { &lt;x,y&gt; : ED(x)=ED(y), for any x, y  ∈ LV }
         
      </p>
      
      
      <p>A key term we will use in the following examples, is <a id="def-primitive-base-type" name="def-primitive-base-type" shape="rect"><em>primitive base datatype</em></a> in a
         type system. A recursive definition is:
      </p>
      
      <ul>
         
         <li>Each <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#built-in-primitive-datatypes" shape="rect">
               built in primitive datatype</a> is its own primitive base
            datatype.
         </li>
         
         <li>The primitive base datatype of a <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#dt-derived" shape="rect">derived</a>
            simple type is the primitive base datatype of its base
            datatype.
         </li>
         
      </ul>
      
      <p>In other words, the primitive base datatype of a type system is
         found by walking up the 
         restriction tree until reaching a primitive
         type. Note that the concept of primitive base datatypes in a type
         system is slightly different from the concept of primitive base
         datatypes in a <a href="#datatype-group" shape="rect">unary datatype group</a>.
         This is because it is possible that a primitive base datatype of a
         type system is not in a datatype map, but its derived datatypes
         are. For instance, in <a href="#example_B" shape="rect">Example_B</a>,
         xsd:integer is a primitive base datatype in the unary datatype
         group G<sub>1</sub>.
      </p>
      
      
      <h3><a id="sec-values-examples" name="sec-values-examples" shape="rect">3.4
            Examples</a></h3>
      
      
      <p>
         We give two sets of examples.
         The first set of examples, depend on comparisons where
         the <a href="#def-primitive-base-type" shape="rect">primitive base datatype</a>
         is the same. The second set
         where the primitive base datatype is not. However,
         the second set are intended to be slightly counter-intuitive,
         and to illustrate limitations in this approach to comparing
         typed literals.
      </p>
      
      
      <p>Each example is presented in two ways:</p>
      
      <ul>
         
         <li>As a pair of literals which may, or may not, denote the same
            value.
         </li>
         
         <li>As a possible entailment. Technically the intended entailment
            is a <a href="http://www.w3.org/TR/2004/REC-rdf-mt-20040210/#D_entailment" shape="rect">D-entailment</a>,
            in terms of <a href="#ref-rdf-semantics" shape="rect">
               [RDF Semantics]</a>, or an OWL Full entailment in terms of the
            <a href="#ref-owl-semantics" shape="rect">
               [OWL Semantics]</a>. Similar,  slightly longer, OWL DL entailments could be
            constructed, illustrating the same issues.
         </li>
         
      </ul>
      
      <h4><a id="sec-values-easy-examples" name="sec-values-easy-examples" shape="rect">3.4.1 Easy Examples</a></h4>
      
      <p>It is uncontested that in <a href="#ref-xml-schema2" shape="rect">
            [XML SCHEMA2]</a> a datatype <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#dt-derived" shape="rect">derived</a>
         by <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#dt-restriction" shape="rect">
            restriction</a> refers to a subset of the values of its <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#dt-basetype" shape="rect">base
            datatype</a>, and not to different values (see <a href="#ref-xml-schema2" shape="rect">
            [XML SCHEMA2]</a>).
      </p>
      
      <p>Hence, two typed literals whose type have the same primitive
         base datatype, and whose lexical forms are equivalent, are
         equal.
      </p>
      
      <p>In addition, <a href="#ref-rdf-semantics" shape="rect">
            [RDF Semantics]</a> explicitly sanctions identification of RDF
         plain literals without language tags with corresponding typed
         literals with datatype <code>xsd:string</code>.
      </p>
      
      <h5><a id="sec-values-derived-numerics" name="sec-values-derived-numerics" shape="rect">Derived Numerics</a></h5>
      
      <p>As a first example <code>"15"^^xsd:byte</code> and
         <code>"15.0"^^xsd:decimal</code> both denote the same value,
         fifteen. This follows because <code>xsd:byte</code> has primitive
         base datatype <code>xsd:decimal</code>.
      </p>
      
      <p>This licenses the following entailment:</p>
      
      <div class="example">
         
         <h6><a id="example_3A" name="example_3A" shape="rect">Example 3A</a></h6>
         <pre xml:space="preserve">
eg:Jane eg:age "15"^^xsd:byte .
</pre>
         <p>entails</p>
         <pre xml:space="preserve">
eg:Jane eg:age "15.0"^^xsd:decimal .
</pre></div>
      
      <p>The same result holds for two types both of which have primitive
         base datatype decimal. For example <code>"15"^^xsd:byte</code> and
         <code>"15"^^xsd:nonNegativeInteger</code> both denote fifteen, and
         the entailment:
      </p>
      
      <div class="example">
         
         <h6><a id="example_3B" name="example_3B" shape="rect">Example 3B</a></h6>
         <pre xml:space="preserve">
eg:Jane eg:age "15"^^xsd:nonNegativeInteger .
</pre>
         <p>entails</p>
         <pre xml:space="preserve">
eg:Jane eg:age "15"^^xsd:byte .
</pre></div>
      
      <p>Note that <code>xsd:byte</code> is not derived from
         <code>xsd:nonNegativeInteger</code>, or vice versa, even with
         intermediate steps.
      </p>
      
      <h5><a id="sec-values-derived-strings" name="sec-values-derived-strings" shape="rect">Derived Strings</a></h5>
      
      <p><code>xsd:language</code> has primitive base datatype
         <code>xsd:string</code>. Thus <code>"en-US"^^xsd:language</code>
         and <code>"en-US"^^xsd:string</code> denote the same value, and the
         following entailment holds:
      </p>
      
      <div class="example">
         
         <h6><a id="example_3C" name="example_3C" shape="rect">Example 3C</a></h6>
         <pre xml:space="preserve">
eg:doc dc:language "en-US"^^xsd:language .
</pre>
         <p>entails</p>
         <pre xml:space="preserve">
eg:doc dc:language "en-US"^^xsd:string .
</pre></div>
      
      <p>However, despite the language identifier being case insensitive
         according to <a href="#ref-rfc3066" shape="rect">
            [RFC 3066]</a>, this case insensitivity is not represented in the
         datatype, so that <code>"en-US"^^xsd:language</code> and
         <code>"en-us"^^xsd:language</code> denote different values and we
         have the following non-entailment:
      </p>
      
      <div class="example">
         
         <h6><a id="example_3D" name="example_3D" shape="rect">Example 3D</a></h6>
         <pre xml:space="preserve">
eg:doc dc:language "en-US"^^xsd:language .
</pre>
         <p>does not entail</p>
         <pre xml:space="preserve">
eg:doc dc:language "en-us"^^xsd:language .
</pre></div>
      
      <h5><a id="sec-values-plain-strings" name="sec-values-plain-strings" shape="rect">Plain Strings</a></h5>
      
      <p>The <a href="#ref-rdf-semantics" shape="rect">
            [RDF Semantics]</a> <a href="http://www.w3.org/TR/2004/REC-rdf-mt-20040210/#DtypeRules" shape="rect">says</a>
         (in an informative section):
      </p>
      
      <blockquote>
         
         <p>
            <!--StartFragment --><span>the value space and lexical-to-value
               mapping of the XSD datatype <a href="http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/#string" shape="rect"><code>xsd:string</code></a>
               sanctions the identification of typed literals with plain literals
               without language tags for all character strings which are in the
               lexical space of the datatype, since both of them denote the
               Unicode character string which is displayed in the literal;</span> 
            
            <!--EndFragment-->
         </p>
         
      </blockquote>
      
      <p>Thus <code>"en-US"^^xsd:string</code> denotes the same as the
         plain literal <code>"en-US"</code>, and the following two
         entailments hold:
      </p>
      
      <div class="example">
         
         <h6><a id="example_3E" name="example_3E" shape="rect">Example 3E</a></h6>
         <pre xml:space="preserve">
eg:doc dc:language "en-US"^^xsd:string .
</pre>
         <p>entails</p>
         <pre xml:space="preserve">
eg:doc dc:language "en-US" .
</pre></div>
      
      <div class="example">
         
         <h6><a id="example_3F" name="example_3F" shape="rect">Example 3F</a></h6>
         <pre xml:space="preserve">
eg:doc dc:language "en-US"^^xsd:language .
</pre>
         <p>entails</p>
         <pre xml:space="preserve">
eg:doc dc:language "en-US" .
</pre></div>
      
      <h4><a id="sec-values-hard-examples" name="sec-values-hard-examples" shape="rect">3.4.2 Hard Examples</a></h4>
      
      <p>When the two typed literals being compared have different
         primitive base datatypes, 
         all the values are assumed
         to be different, and entailments do not follow, even
         when this is counterintuitive. The
         number one for instance can be a float, a double, or a decimal.
         
         
         Since they all have different primitive base datatypes,
         these are all different.
         
         
      </p>
      
      <h5><a id="sec-values-float-decimal" name="sec-values-float-decimal" shape="rect">Float and Decimal</a></h5>
      
      <p>A human age is conventionally given as an integer (number of
         years, except for babies). but a float is a plausible alternative
         representation. On April 7th 2004, 
         Jeremy was forty, 
          
         
         <code>"40"^^xsd:integer</code> has a different primitive
         basetype to
         <code>"40"^^xsd:float</code>, so that, they are not equal
         and:
          
         
      </p>
      
      <div class="example">
         
         <h6><a id="example_3G" name="example_3G" shape="rect">Example 3G</a></h6>
         <pre xml:space="preserve">
eg:JeremyCarroll eg:ageInYears "40"^^xsd:integer .
</pre>
         <p>does not
            entail
         </p>
         <pre xml:space="preserve">
eg:JeremyCarroll eg:ageInYears "40"^^xsd:float .
</pre></div>
      
      
      <p>Similarly, <code>float</code> and <code>double</code>
         are different primitive base datatypes, and so
         superficially similar values,
         such as
         <code>"1.3"^^xsd:float</code>
         and
         <code>"1.3"^^xsd:decimal</code>
         are different, and:
         
      </p>
      
      
      
      <div class="example">
         
         <h6><a id="example_3H" name="example_3H" shape="rect">Example 3H</a></h6>
         <pre xml:space="preserve">
eg:car eg:engineSizeInLitres "1.3"^^xsd:decimal .
</pre>
         <p>does not
            entail
         </p>
         <pre xml:space="preserve">
eg:car eg:engineSizeInLitres "1.3"^^xsd:float .
</pre></div>
      
      <h5><a id="sec-values-float-double" name="sec-values-float-double" shape="rect">Float and Double</a></h5>
      
      
      <p>
         As with float and decimal, 
         neither float or double is derived from the other.
         Thus,
         <code>"40"^^xsd:double</code> and <code>"40"^^xsd:float</code> 
         are treated as not equal, and:
         
      </p>
      
      <div class="example">
         
         <h6><a id="example_3J" name="example_3J" shape="rect">Example 3J</a></h6>
         <pre xml:space="preserve">
eg:JeremyCarroll eg:ageInYears "40"^^xsd:double .
</pre>
         <p>does not
            entail
         </p>
         <pre xml:space="preserve">
eg:JeremyCarroll eg:ageInYears "40"^^xsd:float .
</pre></div>
      
      <p>
         Similarly:
         
      </p>
      
      
      
      <div class="example">
         
         <h6><a id="example_3K" name="example_3K" shape="rect">Example 3K</a></h6>
         <pre xml:space="preserve">
eg:car eg:engineSizeInLitres "1.3"^^xsd:double .
</pre>
         <p>does not
            entail
         </p>
         <pre xml:space="preserve">
eg:car eg:engineSizeInLitres "1.3"^^xsd:float .
</pre></div>
      
      <h5><a id="sec-values-string-anyURI" name="sec-values-string-anyURI" shape="rect">String and anyURI</a></h5>
      
      <p>
         Similarly, the two types <code>string</code>
         and <code>anyURI</code>, are distinct
         primitive base datatypes. So that,
         despite superficial similarities,
         <code>"http://www.example.org/doc"^^xsd:string</code>
         is different from
         <code>"http://www.example.org/doc"^^xsd:anyURI</code>, and:
      </p>
      
      
      
      
      <div class="example">
         
         <h6><a id="example_3L" name="example_3L" shape="rect">Example 3L</a></h6>
         <pre xml:space="preserve">
eg:doc dc:identifier "http://www.example.org/doc"^^xsd:anyURI .
</pre>
         <p>does not entail</p>
         <pre xml:space="preserve">
eg:doc dc:identifier "http://www.example.org/doc"^^xsd:string .
</pre></div>
      
      <h5><a id="sec-values-binary" name="sec-values-binary" shape="rect">hexBinary
            and base64Binary</a></h5>
      
      <p>The final case where the value spaces of two XML Schema simple
         types appear to the same is for <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#hexBinary" shape="rect"><code>
               xsd:hexBinary</code></a> and <a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#hexBinary" shape="rect"><code>
               xsd:base64Binary</code></a>. For both the value space is described
         as: <q>the set of finite-length sequences of binary octets</q>. For
         instance the binary sequence of two octets (00001111 10110111)
         (i.e. the 16-bit integer 4023) can be written in hexadecmial as
         0FB7. In base64 encoding <a href="#ref-rfc2045" shape="rect">
            [RFC 2045]</a> this same sequence of two octets is represented as
         D7c=. 
         <!--
00001111 10110111 00000000
000011 111011 011100 000000
3      59     28     pad
D      7      c      =
-->
      </p>
      
      <p>
         Despite this, the two types <code>hexBinary</code>
         and <code>base64Binary</code>, are distinct
         primitive base datatypes. So that,
         <code>"0FB7"^^xsd:hexBinary</code>
         is different from
         <code>"D7c="^^xsd:base64Binary</code>, and:
      </p>
      
      
      
      <div class="example">
         
         <h6><a id="example_3M" name="example_3M" shape="rect">Example 3M</a></h6>
         <pre xml:space="preserve">
eg:doc eg:checkSum "0FB7"^^xsd:hexBinary .
</pre>
         <p>does not entail</p>
         <pre xml:space="preserve">
eg:doc eg:checkSum "D7c="^^xsd:base64Binary .
</pre></div>
      
      
      
      <h3><a id="sec-use-sparql" name="sec-use-sparql" shape="rect">3.5 Using SPARQL for Equality</a></h3>
      
      <p>
         While some of the non-entailments shown may be counterintuitive,
         it is possible to use SPARQL to
         query a graph and retrieve literal values that
         are similar even if not derived from the same primitive base
         type.
         
      </p>
      
      <p>
         For example, related to examples <a href="#example_3H" shape="rect">3H</a> and 
         <a href="#example_3K" shape="rect">3K</a>. Given a graph including the 
         following three triples:
         
      </p>
      <pre xml:space="preserve">
eg:car eg:engineSizeInLitres "1.3"^^xsd:double .
eg:car eg:engineSizeInLitres "1.3"^^xsd:decimal .
eg:car eg:engineSizeInLitres "1.3"^^xsd:float .
</pre>
      <p>The following 
         <a href="#ref-sparql" shape="rect">
            [SPARQL]</a> query will match all three.
      </p>
      <pre xml:space="preserve">
SELECT  ?size
WHERE   { eg:car eg:engineSizeInLitres ?size .
          FILTER (?size = 1.3) . }
</pre>
      
       <p>
       In the current <a href="#ref-sparql" shape="rect">
             [SPARQL]</a> working draft, the mapping from the typed
literal, as a syntactic object, to its corresponding value, is done as
part of the operation of the <code>=</code> operator in the above query, rather
than
as part of say a D-interpretation from <a href="#ref-rdf-semantics" 
shape="rect">[RDF Semantics]</a>.
This mapping is specified in 
<a href="#ref-xpath-func">[Functions &amp; Operators]</a>, and, being strongly 
typed, is not identical with that specified in <a href="#ref-rdf-semantics" 
shape="rect">[RDF Semantics]</a>



       </p>

      
  
       <h3><a id="sec-use-amapping" name="sec-use-amapping" shape="rect">3.6 Value Approximate Mapping</a></h3>
      
      <p>
      
A different approach, better embedded in <a href="#ref-rdf-semantics" 
shape="rect">[RDF Semantics]</a>, could enable
meaningful mappings among values from different datatypes.
This could give better foundations for operations such as the type
promotion of the XML Path Language 2.0 <a href="#ref-xpath20" 
shape="rect">[XPath 2.0]</a> and the = operator in
SPARQL mentioned in <a href="#sec-use-sparql" 
shape="rect">Section 3.5</a>. A quick sketch is that we extend the
RDF <a href="#rdf-dt-interpretation" 
shape="rect">D-interpretation</a> to support value approximate maps, as follows: 
</p>

    
<p><a id="defn-mapsto" name=
"defn-mapsto"><b>[Definition:]</b></a> A <b>value approximate map</b> mapsTo
is a partial mapping from typed literals to typed literals.</p>
<h6><a id="example_3N" name="example_3N">Example 3N</a></h6>
<p>An example value approximate mapping is <br/>
	  </p>
<pre>"1.3"^^xsd:decimal owlx:mapsTo "1.3"^^xsd:float .</pre>
<p><a id="rdf-value-map-int" name=
"rdf-value-map-int"><b>[Definition:]</b></a> Given a datatype map D and a value approximate map mapsTo, the <b>approximate equality</b> aeq is defined as follows: </p>	       
      <ul>
         
         <li>aeq(<code>"s<sub>1</sub>"^^u<sub>1</sub>,
            "s<sub>2</sub>"^^u<sub>2</sub></code>)=true if
            L2S(D(<code>u<sub>1</sub></code>))(<code>s<sub>1</sub></code>) =
            L2S(D(<code>u<sub>2</sub></code>))(<code>s<sub>2</sub></code>) or if mapsTo(<code>"s<sub>1</sub>"^^u<sub>1</sub></code>)=<code>"s<sub>3</sub>"^^u<sub>2</sub></code> and L2S(D(<code>u<sub>2</sub></code>))(<code>s<sub>3</sub></code>) =
            L2S(D(<code>u<sub>2</sub></code>))(<code>s<sub>2</sub></code>),
         </li>
         
         <li>aeq(<code>"s<sub>1</sub>"^^u<sub>1</sub>,
            "s<sub>2</sub>"^^u<sub>2</sub></code>)=false  otherwise.<!-- if
            L2S(D(<code>u<sub>1</sub></code>))(<code>s<sub>1</sub></code>) ≠
            L2S(D(<code>u<sub>2</sub></code>))(<code>s<sub>2</sub></code>) and mapsTo(<code>"s<sub>1</sub>"^^u<sub>1</sub></code>) is undefined, or if L2S(D(<code>u<sub>1</sub></code>))(<code>s<sub>1</sub></code>) ≠
            L2S(D(<code>u<sub>2</sub></code>))(<code>s<sub>2</sub></code>),          mapsTo(<code>"s<sub>1</sub>"^^u<sub>1</sub></code>)=<code>"s<sub>3</sub>"^^u<sub>2</sub></code> and L2S(D(<code>u<sub>2</sub></code>))(<code>s<sub>3</sub></code>) ≠
            L2S(D(<code>u<sub>2</sub></code>))(<code>s<sub>2</sub></code>). -->
         </li>
         
        <!--  <li>aeq(<code>"s<sub>1</sub>"^^u<sub>1</sub>,
            "s<sub>2</sub>"^^u<sub>2</sub></code>) is incomparable if
            mapsTo(D(<code>u<sub>1</sub></code>),D(<code>u<sub>2</sub></code>))
            is undefined.
         </li> -->
         
      </ul>
      <p>Note that, according to the above definition, aeq(<code>"s<sub>1</sub>"^^u<sub>1</sub>,
            "s<sub>2</sub>"^^u<sub>2</sub></code>)=true does not imply that <code>"s<sub>1</sub>"^^u<sub>1</sub> and
            "s<sub>2</sub>"^^u<sub>2</sub></code> are interpreted as the same value (L2S(D(<code>u<sub>1</sub></code>))(<code>s<sub>1</sub></code>) =
            L2S(D(<code>u<sub>2</sub></code>))(<code>s<sub>2</sub></code>)). The approximate equality is different from equality and is not necessarily symmetric, depending on the corresponding value approxiate map. The unsymmetry is needed to support e.g. type promotions in the XML Path Language 2.0 <a href="#ref-xpath20" 
shape="rect">[XPath 2.0]</a>. Note that notion of value approxiate mappings is very general - it does not disallow  having symmetric mappings between two typed literals. In Example 3N, one can also specify a value approximate mapping from <code>"1.3"^^xsd:float</code> to  <code>"1.3"^^xsd:decimal</code> to make the mappings between the two typed literals  symmetric.
	  </p>
      <p>To sum up, applications can specify a value approximate map mapsTo and make use of the approximate equality aeq for their purposes. 
	  </p>
      
      <h2><a name="section-duration" id="section-duration" shape="rect">4.
            Duration</a></h2>
      
      <p>The <a href="#ref-rdf-semantics" shape="rect">[RDF Semantics]</a>
         Recommendation discourages the use of the <a href="http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/#duration" shape="rect"><code>
               xsd:duration</code></a> datatype (see <a href="#ref-xml-schema2" shape="rect">[XML SCHEMA2]</a>). It <a href="http://www.w3.org/TR/2004/REC-rdf-mt-20040210/#dtype_interp" shape="rect">says</a>:
      </p>
      
      <blockquote>
         <!--StartFragment -->
         
         <p>[Some] built-in XML Schema datatypes are unsuitable for various
            reasons, and <strong title="SHOULD NOT in RFC 2119 context" class="RFC2119">SHOULD NOT</strong> be used: <a href="http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/#duration" shape="rect"><code>
                  xsd:duration</code></a> does not have a well-defined value space
            (this may be corrected in later revisions of XML Schema datatypes,
            in which case the revised datatype would be suitable for use in RDF
            datatyping);
         </p>
         
         <!--EndFragment-->
      </blockquote>
      
      <p>The underlying difficulty is the impossibility of an unequivocal
         answer to the question "How many days in a month?" This has proved
         problematic in other applications of XML Schema datatypes. The
         XQuery and XSLT Working Groups have a proposed solution. They
         derive two new datatypes, <a href="http://www.w3.org/TR/2004/WD-xpath-functions-20041029/#dt-yearMonthDuration" shape="rect">
            <code>xdt:yearMonthDuration</code></a> and <a href="http://www.w3.org/TR/2004/WD-xpath-functions-20041029/#dt-dayTimeDuration" shape="rect">
            <code>xdt:dayTimeDuration</code></a> from
         <code>xsd:duration</code>, sidestepping the unanswerable question.
         In <a href="http://www.w3.org/TR/2004/WD-xpath-functions-20041029/#duration-subtypes" shape="rect">
            section 10.2</a> of <a href="#ref-xpath-func" shape="rect">[Functions &amp; Operators]</a> we
         read:
      </p>
      
      <blockquote>
         <!--StartFragment -->
         
         <p><b>[Definition:]</b> <code>xdt:yearMonthDuration</code> is derived from
            <code>xs:duration</code> by restricting its lexical representation
            to contain only the year and month components. The value space of
            <code>xdt:yearMonthDuration</code> is the set of
            <code>xs:integer</code> month values. The year and month components
            of <code>xdt:yearMonthDuration</code> correspond to the Gregorian
            year and month components defined in section 5.5.3.2 of <a href="#ref-ISO8601" shape="rect">[ISO 8601]</a>, respectively.
         </p>
         
         <!--EndFragment-->
      </blockquote>
      
      <p>and</p>
      
      <blockquote>
         <!--StartFragment -->
         
         <p><b>[Definition:]</b> <code>xdt:dayTimeDuration</code> is derived from
            <code>xs:duration</code> by restricting its lexical representation
            to contain only the days, hours, minutes and seconds components.
            The value space of <code>xdt:dayTimeDuration</code> is the set of
            fractional second values. The components of
            <code>xdt:dayTimeDuration</code> correspond to the day, hour,
            minute and second components defined in Section 5.5.3.2 of <a href="#ref-ISO8601" shape="rect">[ISO 8601]</a>, respectively.
         </p>
         
         <!--EndFragment-->
      </blockquote>
      
      <p>These two new datatypes are suitable for use with RDF and OWL.
         (Note that they are not yet recommended, since F&amp;O is still in
         Working Draft).
      </p>
      
      <h2><a name="sec-numerics" id="sec-numerics" shape="rect">5.
            The Use of Numeric Types</a></h2>
      
      <p>
         For much data on the Semantic Web
         a motivation for providing type information
         is to permit the use of the data
         by engineering applications, and interoperation
         between engineering applications.
         Most such data will be marked up using the numeric types
         from XML Schema.
         
      </p>
      
      <p>
         Loss in 
         precision or unexpected changes in values due to automatic type
         conversion could be problematic in an engineering environment.
         
      </p>
      
      <p>
         In the engineering domain there are 
         three important 
         types of usage for numerics: count, measurement,
         and constant.
      </p>
      
      <dl>
         
         <dt>count</dt>
         
         <dd>
            
            A count is an integer representing essentially the
            cardinal number for a set of things classified by some set of tests.
            An example would be the count of packages of candy available for
            shipment.  A count is an exact number.  Tests may include
            measurements, but a count is not an approximation of a sum of 
            these measurements nor is it a sum of the approximation of these 
            measurements. A type such as <code>xsd:integer</code>
            or a type derived from <code>xsd:integer</code> is appropriate for
            counts.
            
         </dd>
         
         <dt>measurement</dt>
         
         <dd>
            A measurement is an inexact numeric value (usually represented as a
            real) produced by some measurement method.  This value indicates a
            value range which includes the actual value.  The actual value is
            unknowable, but more precise measurement methods can reduce the
            range of uncertainty. The precision or uncertainty is
            usually included with the measurement value.  Either implicitly
            using significant figures or explicitly using a  separate property
            value such as error range.
            Either the <code>xsd:float</code> or <code>xsd:double</code>
            datatypes are appropriate for measurement, but it should be noted
            that these do not include a precision or uncertainity, which should
            be included as the value of a separate property.
            <a href="#ref-xml-schema2" shape="rect">[XML SCHEMA2]</a>
            explicitly states for  <code>xsd:decimal</code>
            that, "Precision is not
            reflected in this value space, the number 2.0 is not distinct from
            the number 2.00."
            
         </dd>
         
         <dt>constant</dt>
         
         <dd>
            A constant is an exact value used in computation.  It may or may not
            be possible to express exactly as a numeric.  A millimeter is exactly
            0.001 meters, but Pi is not 3.14159.
            Often an <code>xsd:decimal</code> will be more appropriate than
            an <code>xsd:float</code> or <code>xsd:double</code> for expressing
            a constant.
            
         </dd>
         
      </dl>
      
      
      <h6><a id="example_5A" name="example_5A" shape="rect">Example 5A</a></h6>
      
      <p>
         As an example of a measurement with an error range
         to indicate a weight in the interval (73.0Kg, 73.2Kg).
         
      </p>
      <pre xml:space="preserve">
eg:JeremyCarroll eg:weight _:w .
_:w eg:units "kilogram" .
_:w eg:value "73.1"^^xsd:float .
_:w eg:errorRange "0.1"^^xsd:float .

</pre>
      
      
      <p>
         These different usages suggest 
         some potential needs and concerns for a type system
         underlying this.
         
      </p>
      
      <ul>
         
         <li>
            Because the value spaces for these types
            are different, measurements are disjoint from counts and constants.
            
         </li>
         
         <li>
            Some means of capturing precision or error/uncertainty is needed
            for measurement values. 
            
         </li>
         
         <li>Some means is desirable for writing down
            constants that cannot be expressed precisely in numeric form.
            
         </li>
         
      </ul>
      
      <p>The first of these issues will generally be reflected
         in the use of <code>xsd:integer</code> for counts,
         <code>xsd:float</code> and <code>xsd:double</code> for
         measurements, and <code>xsd:decimal</code> for constants.
         
      </p>
      
      <p>The second issue concerning precision of measurements,
         must be addressed at the modelling level by
         using objects  to state precision or error
         properties for measurements. This is not a bad approach,
         in any case, since
         there are often other properties or metadata associated with a
         measurement.  
         
      </p>
      
      <p>
         For the third issue, concerning some constants, no
         solution is offered.
         
      </p>
      
      
      
      <h2><a name="section-acknowledgements" id="section-acknowledgements" shape="rect">6.
            Acknowledgements</a></h2>
      
      <p>
         Evan Wallace is the author of Section 5.
         
      </p>
      
      <p>
         Evan Wallace, 
         Ashok Malhotra, 
         Pat Hayes,
         Dave Peterson,
         Dave Reynolds,
         Michael Sperberg-McQueen and Ralph Swick
         contributed useful reviews.
         
      </p>
      
      
      <h2><a name="section-references" id="section-references" shape="rect">7.
            References</a></h2>
      
      <dl>
         
         <dt><a id="ref-rdf-semantics" name="ref-rdf-semantics" shape="rect"></a>[RDF-SEMANTICS]
         </dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2004/REC-rdf-mt-20040210/" shape="rect">RDF
                  Semantics</a></cite>, Patrick Hayes, Editor, W3C Recommendation, 10
            February 2004, http://www.w3.org/TR/2004/REC-rdf-mt-20040210/ .
            <a href="http://www.w3.org/TR/rdf-mt/" shape="rect">Latest version</a> available
            at http://www.w3.org/TR/rdf-mt/ .
         </dd>
         
         <dt><a id="ref-rdf-primer" name="ref-rdf-primer" shape="rect">[RDF
               Primer]</a></dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2004/REC-rdf-primer-20040210/" shape="rect">RDF
                  Primer</a></cite>, Frank Manola and Eric Miller, Editors, W3C
            Recommendation, 10 February 2004,
            http://www.w3.org/TR/2004/REC-rdf-primer-20040210/ . <a href="http://www.w3.org/TR/rdf-primer/" shape="rect">Latest version</a> available at
            http://www.w3.org/TR/rdf-primer/ .
         </dd>
         
         <dt><a id="ref-rdf-concepts" name="ref-rdf-concepts" shape="rect"></a>[RDF
            Concepts]
         </dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/" shape="rect">Resource
                  Description Framework (RDF): Concepts and Abstract
                  Syntax</a></cite>, Graham Klyne and Jeremy J. Carroll, Editors, W3C
            Recommendation, 10 February 2004,
            http://www.w3.org/TR/2004/REC-rdf-concepts-20040210/ . <a href="http://www.w3.org/TR/rdf-concepts/" shape="rect">Latest version</a> available
            at http://www.w3.org/TR/rdf-concepts/ .
         </dd>
         
         <dt><a id="ref-rdf-syntax" name="ref-rdf-syntax" shape="rect"></a>[RDF
            Syntax]
         </dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/" shape="rect">RDF/XML
                  Syntax Specification (Revised)</a></cite>, Dave Beckett, Editor,
            W3C Recommendation, 10 February 2004,
            http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/ .
            <a href="http://www.w3.org/TR/rdf-syntax-grammar/" shape="rect">Latest
               version</a> available at http://www.w3.org/TR/rdf-syntax-grammar/
            .
         </dd>
         
         
         <dt><a id="ref-rdf-tests" name="ref-rdf-tests" shape="rect"></a>[N-triples]
         </dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2004/REC-rdf-testcases-20040210/" shape="rect">RDF Test
                  Cases</a></cite>, Jan Grant and Dave Beckett, Editors, W3C
            Recommendation, 10 February 2004,
            http://www.w3.org/TR/2004/REC-rdf-testcases-20040210/ . <a href="http://www.w3.org/TR/rdf-testcases/" shape="rect">Latest version</a> available
            at http://www.w3.org/TR/rdf-testcases/ .
         </dd>
         
         
         <dt><a name="ref-owl-syntax" id="ref-owl-syntax" shape="rect">[OWL Abstract Syntax]</a></dt>
         
         <dt><a name="ref-owl-semantics" id="ref-owl-semantics" shape="rect">[OWL
               Semantics]</a></dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2004/REC-owl-semantics-20040210/" shape="rect">OWL Web
                  Ontology Language Semantics and Abstract Syntax</a></cite>, Peter
            F. Patel-Schneider, Patrick Hayes, and Ian Horrocks, Editors, W3C
            Recommendation 10 February 2004,
            http://www.w3.org/TR/2004/REC-owl-semantics-20040210/ . <a href="http://www.w3.org/TR/owl-semantics/" shape="rect">Latest version</a> available
            at http://www.w3.org/TR/owl-semantics/ .
         </dd>
         
         <dt><a name="ref-owl-guide" id="ref-owl-guide" shape="rect">[OWL Guide]</a></dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2004/REC-owl-guide-20040210/" shape="rect">OWL Web
                  Ontology Language Guide</a></cite>, Michael K. Smith, Chris Welty,
            and Deborah L. McGuinness, Editors, W3C Recommendation, 10 February
            2004, http://www.w3.org/TR/2004/REC-owl-guide-20040210/ . <a href="http://www.w3.org/TR/owl-guide/" shape="rect">Latest version</a> available at
            http://www.w3.org/TR/owl-guide/ .
         </dd>
         
         <dt><a id="ref-owl-test" name="ref-owl-test" shape="rect">[OWL Test Cases]</a></dt>
         
         <dd>
            <a href="http://www.w3.org/TR/2004/REC-owl-test-20040210/" shape="rect">
               <cite>OWL Web Ontology Language Test Cases</cite>
               </a>, 
            Jeremy J. Carroll and Jos De Roo, Editors.
            W3C Recommendation, 10 February 2004,<br />
            
            http://www.w3.org/TR/2004/REC-owl-test-20040210/.<br />
            <a href="http://www.w3.org/TR/owl-test/" shape="rect">Latest version</a>
            available at http://www.w3.org/TR/owl-test/.
            
         </dd>
         
         
         
         <dt><a id="ref-xptr" name="ref-xptr" shape="rect"></a>[XPointer Framework]
         </dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2003/REC-xptr-framework-20030325/" shape="rect">XPointer Framework
                  </a></cite>, Paul Grosso, Eve Maler, Jonathan Marsh and Norman
            Walsh, Editors, W3C Recommendation, 25 March 2003,
            http://www.w3.org/TR/2003/REC-xptr-framework-20030325/ . <a href="http://www.w3.org/TR/xptr-framework/" shape="rect">Latest version</a> available
            at http://www.w3.org/TR/xptr-framework/ .
         </dd>
         
         
         
         <dt><a id="ref-xml-schema1" name="ref-xml-schema1" shape="rect"></a>[XML-SCHEMA1]
         </dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2004/REC-xmlschema-1-20041028/" shape="rect">XML Schema
                  Part 1: Structures</a></cite>, Second Edition, W3C Recommendation,
            World Wide Web Consortium, Henry S. Thompson,
            David Beech,
            Murray Maloney
            and Noah Mendelsohn
            (editors), 28 October 2004. This version is
            http://www.w3.org/TR/2004/REC-xmlschema-1-20041028/. The <a href="http://www.w3.org/TR/xmlschema-1/" shape="rect">latest version</a> is
            available at http://www.w3.org/TR/xmlschema-1/.
         </dd>
         
         
         
         <dt><a id="ref-xml-schema2" name="ref-xml-schema2" shape="rect"></a>[XML-SCHEMA2]
         </dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/" shape="rect">XML Schema
                  Part 2: Datatypes</a></cite>, Second Edition, W3C Recommendation,
            World Wide Web Consortium, Paul V. Biron and Ashok Malhotra
            (editors), 28 October 2004. This version is
            http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/. The <a href="http://www.w3.org/TR/xmlschema-2/" shape="rect">latest version</a> is
            available at http://www.w3.org/TR/xmlschema-2/.
         </dd>
         
         
         
         <dt><a name="ref-rfc2045" id="ref-rfc2045" shape="rect">[RFC 2045]</a></dt>
         
         <dd>N. Freed and N. Borenstein. <i>RFC 2045: Multipurpose Internet
               Mail Extensions (MIME) Part One: Format of Internet Message
               Bodies</i>. 1996. Available at: <a href="http://www.ietf.org/rfc/rfc2045.txt" shape="rect">http://www.ietf.org/rfc/rfc2045.txt</a></dd>
         
         
         
         
         
         
         <dt><a name="ref-rfc3986" id="ref-rfc3986" shape="rect"></a>[RFC
            3986]
         </dt>
         
         <dd>T. Berners-Lee, R. Fielding, and L. Masinter. <em>Uniform
               Resource Identifiers (URI): Generic Syntax</em>. IETF RFC 3986. See
            <a href="http://www.ietf.org/rfc/rfc3986.txt" shape="rect">http://www.ietf.org/rfc/rfc3986.txt</a>.
         </dd>
         
         
         
         
         
         <dt><a name="ref-rfc3066" id="ref-rfc3066" shape="rect">[RFC 3066]</a></dt>
         
         <dd>H. Alvestrand, ed. <i>RFC 3066: Tags for the Identification of
               Languages</i> 2001. Available at: <a href="http://www.ietf.org/rfc/rfc3066.txt" shape="rect">http://www.ietf.org/rfc/rfc3066.txt</a></dd>
         
         
         <dt><a name="ref-ISO8601" id="ref-ISO8601" shape="rect"></a>[ISO 8601]
         </dt>
         
         <dd>ISO (International Organization for Standardization).
            <em>Representations of dates and times, 2000-08-03.</em> Available
            from: <a href="http://www.iso.ch/" shape="rect">http://www.iso.ch/</a></dd>
         
         <dt><a id="ref-ISO11404" name="ref-ISO11404" shape="rect"></a>[ISO 11404]
         </dt>
         <dd>
            ISO (International Organization for Standardization).
            <em>Language-independent Datatypes.</em>  Available
            from: <a href="http://www.iso.ch/" shape="rect">http://www.iso.ch/</a>
            
            
         </dd>
         
         <dt><a id="ref-unicode" name="ref-unicode" shape="rect"></a>[UNICODE]
         </dt>
         
         <dd><cite>The Unicode Standard, Version 3</cite>, The Unicode
            Consortium, Addison-Wesley, 2000. ISBN 0-201-61633-5, as updated
            from time to time by the publication of new versions. (See <a href="http://www.unicode.org/unicode/standard/versions/" shape="rect">http://www.unicode.org/unicode/standard/versions/</a>
            for the latest version and additional information on versions of
            the standard and of the Unicode Character Database).
         </dd>
         
         
         
         
         <dt><a id="ref-xpath-func" name="ref-xpath-func" shape="rect"></a>[Functions &amp; Operators]
         </dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2005/WD-xpath-functions-20050915/" shape="rect">XQuery
                  1.0 and XPath 2.0 Functions and Operators</a></cite>, Ashok
            Malhotra, Jim Melton and Norman Walsh (editors), World Wide Web
            Consortium Working Draft, work in progress, 15 September 2005. This
            version of Functions and Operators is
            http://www.w3.org/TR/2005/WD-xpath-functions-20050915/. The
            <a href="http://www.w3.org/TR/xpath-functions/" shape="rect">latest version
               of Functions and Operators</a> is at
            http://www.w3.org/TR/xpath-functions/.
         </dd>
         
          <dt><a name="ref-xpath20" id="ref-xpath20" shape="rect">[XPath 2.0]</a></dt>
         
          <dd><cite><a href="http://www.w3.org/TR/xpath20/" shape="rect">XML Path Language (XPath) 2.0</a></cite>, Anders Berglund, Scott Boag, Don Chamberlin, Mary F. Fern&aacute;ndez, Michael Kay, Jonathan Robie and J&eacute;r&ocirc;me Sim&eacute;on (editors), W3C Candidate Recommendation 3 November 2005. This
            version of XML Path Language (XPath) is 
            http://www.w3.org/TR/2005/CR-xpath20-20051103/. The
            <a href="http://www.w3.org/TR/xpath20/" shape="rect">latest version
               of XML Path Language (XPath)</a> is at
            http://www.w3.org/TR/xpath20/.
         </dd>
         
         
         
         
         <dt><a name="ref-sparql" id="ref-sparql" shape="rect">[SPARQL]</a></dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2005/WD-rdf-sparql-query-20050721/" shape="rect">SPARQL
                  Query Language for RDF</a></cite>, Eric Prud'hommeaux and Andy
            Seaborne, Editors, W3C Working Draft 21 July 2005,
            http://www.w3.org/TR/2005/WD-rdf-sparql-query-20050721/ . <a href="http://www.w3.org/TR/rdf-sparql-query/" shape="rect">Latest version</a>
            available at http://www.w3.org/TR/rdf-sparql-query/ .
         </dd>
         
         
         <dt><a id="ref-xscd" name="ref-xscd" shape="rect">[XSCD]</a></dt>
         
         <dd><cite><a href="http://www.w3.org/TR/2005/WD-xmlschema-ref-20050329/" shape="rect">XML Schema
                  Component Designators</a></cite>, Mary Holstege and Asir S.
            Vedamuthu, Editors, W3C Working Draft, 29 March 2005,
            http://www.w3.org/TR/2005/WD-xmlschema-ref-20050329/. <a href="http://www.w3.org/TR/xmlschema-ref/" shape="rect">Latest version</a> available
            at http://www.w3.org/TR/xmlschema-ref/ .
         </dd>
         
         
         
         
         
         
         <dt><a id="ref-pan-2004" name="ref-pan-2004" shape="rect">[Pan 2004]</a></dt>
         
         <dd><cite><a href="http://DL-Web.man.ac.uk/thesis.shtml" shape="rect">Description Logics:
                  Reasoning Support for the Semantic Web</a></cite>, Jeff Z.Pan, PhD
            Thesis, School of Computer Science, The University of Manchester,
            2004.
         </dd>
         
         
         <dt><a id="ref-ph-2005" name="ref-ph-2005">[PH 2005]</a></dt>
<dd><cite><a href=
"http://dl-web.man.ac.uk/~panz/Zhilin/pubc.php?type=epapers&amp;id=LNCS-PaHo05">OWL-Eu: Adding Customised Datatypes into OWL</a></cite>, Jeff Z.Pan and Ian Horrocks.  In Proc. of the Second European Semantic Web Conference (ESWC 2005), pages 153-166, 2005. An extended version appears in the Journal of Web Semantic, 4(1). An <a href="http://www.websemanticsjournal.org/ps/pub/2005-24">online version</a> is available at http://www.websemanticsjournal.org/ps/pub/2005-24.</dd>
         
         
         
         
         <dt><a name="ref-n3" id="ref-n3" shape="rect">[N3]</a></dt>
         <dd>
            <cite><a href="http://www.w3.org/2000/10/swap/Primer.html" shape="rect">Primer: Getting into RDF &amp; Semantic Web using N3</a></cite>
            
            Tim Berners-Lee, Dan Connolly
            
         </dd>
         
      </dl>
      
      <h2><a id="sec-recs-dt" name="sec-recs-dt" shape="rect">
            Appendix A: The Semantics of 
            Datatyping in the Semantic Web Recommendations</a></h2>
      
      
      <h3><a id="sec-rdf-dt" name="sec-rdf-dt" shape="rect">A.1 Datatypes in
            RDF</a></h3>
      
      <p>According to <a href="#ref-rdf-semantics" shape="rect">
            [RDF Semantics]</a>, 
         (see <a href="http://www.w3.org/TR/2004/REC-rdf-mt-20040210/#DTYPEINTERP" shape="rect">section 5.1</a>),
         RDF allows the use of datatypes defined by any
         external type systems, e.g., the XML Schema type system, which
         conform to the following specification.
      </p>
      
      <p><a id="rdf-datatype" name="rdf-datatype" shape="rect"><b>[Definition:]</b></a> In RDF, a <b>datatype</b> d
         is characterised by a value space, V(d), which is a non-empty set,
         a lexical space, L(d), which is a non-empty set of Unicode
         strings, and a total mapping L2V(d) from the lexical space to the
         value space.
      </p>
      
      <p>This specification allows the use of non-list XML Schema simple
         types as datatypes in RDF.
      </p>
      
      <p><a id="rdf-literal" name="rdf-literal" shape="rect"><b>[Definition:]</b></a>
         All <b>literals</b> have a lexical form being a Unicode [<a href="#ref-unicode" shape="rect">UNICODE</a>] string. <b>Typed literals</b> are of
         the form <code>"v"^^u</code>, where <code>"v"</code> is a Unicode
         string, called the <em>lexical form</em> of the typed literal, and
         u is a URI reference of a datatype. <b>Plain literals</b> have a
         lexical form and optionally a <em>language tag</em> as defined by
         [<a href="#ref-rfc3066" shape="rect">RFC-3066</a>], normalized to
         lowercase.
      </p>
      
      <h6><a id="example_A" name="example_A" shape="rect">Example A</a></h6>
      
      <p><em>Boolean</em> is a datatype with value space
         <code>{true,false}</code>, lexical space <code>{"true",
            "false","1","0"}</code> and lexical-to-value mapping
         <code>{"true"→true, "false"→false, "1"→true, "0"→false}</code>.
         <code>"true"^^xsd:boolean</code> is a typed literal, while
         <code>"true"</code> is a plain literal.
      </p>
      
      <p>The associations between datatype URI references (e.g.,
         xsd:boolean) and datatypes (e.g., boolean) can be provided by
         datatype maps defined as follows.
      </p>
      
      <p><a id="rdf-datatype-map" name="rdf-datatype-map" shape="rect"><b>[Definition:]</b></a> A <b>datatype map</b> D
         is a partial mapping from datatype URI references to datatypes.
      </p>
      
      <p>An RDFS-interpretation w.r.t. a datatype map D can be defined as
         follows.
      </p>
      
      <p><a id="rdf-dt-interpretation" name="rdf-dt-interpretation" shape="rect"><b>[Definition:]</b></a> Given a datatype
         map D, an <b>RDFS D-interpretation</b> I of a vocabulary V is any
         RDFS-interpretation of V∪{u |∃d.D(u)=d} which introduces (i) a
         distinguished subset LV of IR, called the <em>set of literal
            values</em>, which contains all the plain literals in V, and (ii) a
         mapping IL from literals in V into IR, and satisfies the following
         extra conditions:
      </p>
      
      <ol>
         
         <li>LV = ICEXT(rdfs:Literal).</li>
         
         <li>For any plain literal pl∈V, IL(pl) = pl.</li>
         
         <li>For each pair &lt;u,d&gt; where d = D(u),
            
            <ul>
               
               <li>I(u) ∈ ICEXT(rdfs:Datatype),</li>
               
               <li>there exists d∈IR s.t. I(u) = d,</li>
               
               <li>ICEXT(d) = V(d) ⊆ LV,</li>
               
               <li>for <code>"s"^^u'</code>∈V, I(u') = d, if s∈L(d), then
                  IL(<code>"s"^^u'</code>) = L2S(d)(s); otherwise,
                  IL(<code>"s"^^u'</code>) ∈ IR \ LV.
               </li>
               
            </ul>
            
         </li>
         
         <li>If d ∈ ICEXT(rdfs:Datatype), then &lt;d, I(rdfs:Literal)&gt;
            IEXT(rdfs:subClassOf).
         </li>
         
      </ol>
      
      <h3><a id="sec-owl-dt" name="sec-owl-dt" shape="rect">A.2 Datatypes in
            OWL DL </a></h3>
      
      <p> OWL Full datatyping follows the RDF Semantics as above;
         OWL DL datatyping is specified 
         in
         <a href="http://www.w3.org/TR/2004/REC-owl-semantics-20040210/direct.html#3.1" shape="rect">
            section 3.1</a> of the 
         <a href="#ref-owl-semantics" shape="rect">
            [OWL Semantics]</a>, as follows.
         
      </p>
      
      <p>The fundamental difference between RDF datatyping and OWL DL
         datatyping is the relationship between datatypes and classes. In
         OWL DL, datatypes are <em>not</em> classes, and object and datatype
         domains are <em>disjoint</em> with each other. 
         
         <!--Accordingly, the set of datatype properties is disjoint with the set of object properties.
-->
      </p>
      
      <p>OWL allows different OWL reasoners to provide different
         supported datatypes.
      </p>
      
      <p><a id="owl-dt-support" name="owl-dt-support" shape="rect"><b>[Definition:]</b></a> Given a datatype map D, a
         datatype URI reference u is called a <b>supported datatype URI
            reference</b> w.r.t. D if there exists a datatype d such that
         &lt;u,d&gt;∈D (in this case, d is called a <b>supported
            datatype</b> w.r.t. D); otherwise, u is called an <b>unsupported
            datatype URI reference</b> w.r.t. D.
      </p>
      
      <p>OWL provides the use of so called enumerated datatypes, which
         are built using literals.
      </p>
      
      <p><a id="owl-enumerated" name="owl-enumerated" shape="rect"><b>[Definition:]</b></a> Let y<sub>1</sub>, ...,
         y<sub>n</sub> be literals. An <b>enumerated datatype</b> is of the
         form oneOf(y<sub>1</sub>, ..., y<sub>n</sub>).
      </p>
      
      <p>An OWL DL D-interpretation w.r.t. a datatype map D can be
         defined as follows.
      </p>
      
      <p><a id="owl-dl-dt-interpretation" name="owl-dl-dt-interpretation" shape="rect"><b>[Definition:]</b></a> An <b>OWL DL datatype
            interpretation</b> w.r.t. to a datatype map D is a pair (LV,ED),
         where the datatype domain LV 
         (only) contains the value spaces for each datatype in D
         and PL
         (the value
         space for plain literals, i.e., the union of the set of Unicode
         strings and the set of pairs of Unicode strings and language tags)
         
         <!--
= PL<code>∪</code>∪<sub>for each
supported datatype URIref u w.r.t. D</sub>D(u) (PL is 
-->
and ED is a datatype interpretation function, which has to satisfy
the following conditions:</p>
<ol>
<li>LV = ED(rdfs:Literal).</li>
<li>For any plain literal pl, ED(pl) = pl ∈ PL.</li>
<li>For each supported datatype URIref u (let d = D(u)):
<ul>
<li>ED(u) = V(d) ⊆ LV,</li>
<li>if s ∈ L(d), then ED(<code>"s"^^u</code>) = L2V(d)(s);
otherwise, ED(<code>"s"^^u</code>) is not defined.</li>
</ul>
</li>
<li>For each unsupported datatype URIref u, ED(u) ⊆ LV and
ED(<code>"s"^^u</code>) ∈ ED(u).</li>
<li>Each enumerated datatype oneOf(y<sub>1</sub>, ...,
y<sub>n</sub>) is interpreted as {ED(y<sub>1</sub>)}<code>∪ ...
</code> {ED(y<sub>n</sub>)}.</li>
</ol>
<p>Note that here we simplify the presentation by using ED as the
interpretation function for both datatype URI references and
literals, while [<a href="#ref-owl-semantics">OWL Semantics</a>]
uses EC for datatypes URI references and L for literals.</p>
<p>
 In OWL Full, the disjointness restriction between 
object and datatype domains is not required.</p>

<h2><a id="sec-dl-dt" name="sec-dl-dt">Appendix B: Integrating Description Logics with User-Defined Datatypes</a></h2>
<p>[<a href="#ref-pan-2004">Pan 2004</a>] and [<a href="#ref-ph-2005">PH 2005</a>] present a scheme of
integrating a large family of decidable Description Logics
(including <em>SHOIN</em>, the underpinning of OWL DL) with unary
datatype groups, so as to support user defined datatypes. A
combined DL is decidable if the unary datatype group is conforming.
A conforming unary datatype group is equipped with a decision
procedure for the satisfiability problem of finite conjunctions
over supported datatypes.</p>
<p><a id="datatype-group" name=
"datatype-group"><b>[Definition:]</b></a> A <b>unary datatype
group</b> G is a triple &lt;D,B,dom&gt;, where D is a datatype map,
B is the set of primitive base datatype URI references in G and dom
is the declared domain function. We call S the set of supported
datatype URI references, i.e., for each u∈S, D(u) is defined; we
require B ⊆ S. The declared domain function dom has the following
properties: for each u ∈ S, if u ∈ B, dom(u) = u; otherwise, dom(u)
= v, where v ∈ B. We assume that there exists a datatype URI
reference rdfsx:DatatypeBottom such that D(rdfsx:DatatypeBottom) is
undefined.</p>
<p>Note that in [<a href="#ref-pan-2004">Pan 2004</a>] datatype
groups allow arbitrary datatype predicates, while here we consider
only datatypes, which can be regarded as <em>unary</em> datatype
predicates.</p>
<h6><a id="example_B" name="example_B">Example B</a></h6>
<p>G<sub>1</sub>=(D<sub>1</sub>,B<sub>1</sub>,dom<sub>1</sub>) is a
unary datatype group, where</p>
<ul>
<li>D<sub>1</sub> = {xsd:integer <code></code> integer, xsd:string
<code></code> string, xsd:nonNegativeInteger <code>
<sub>0</sub></code>, xsdx:integerLessThanN <code>
&lt;<sub>N</sub></code>},</li>
<li>B<sub>1</sub> = {xsd:integer, xsd:string},</li>
<li>dom<sub>1</sub> = {xsd:integer <code></code> xsd:integer,
xsd:string <code></code> xsd:string, xsd:nonNegativeInteger
<code></code> xsd:integer, xsdx:integerLessThanN <code></code>
xsd:integer}.</li>
</ul>
<p>
According to D<sub>1</sub>, we have S<sub>1</sub> = {xsd:integer,
xsd:string, xsd:nonNegativeInteger, xsdx:integerGreaterThanN},
hence we have B<sub>1</sub> ⊆ S<sub>1</sub>. Note that the value
space of <code>&lt;<sub>N</sub></code> is
V(<code>&lt;<sub>N</sub></code>) = {i ∈ V(integer) | i
<code>&lt;</code> L2S(integer)(N)} and by
<code>&lt;<sub>N</sub></code> we mean there exists a built-in
datatype <code>&lt;<sub>N</sub></code> for each integer
L2S(integer)(N).
</p>
<p>In a unary datatype group, datatype expressions can be used to
represent user defined datatypes.</p>
<p><a id="datatype-expression" name=
"datatype-expression"><b>[Definition:]</b></a> Let G be a unary
datatype group, the set  <b>unary datatype expressions</b> for G,
abbreviated Dexp(G), is inductively defined as follows:</p>
<ul>
<li>let u be a datatype URI reference, u ∈ DPexp(G);</li>
<li>let u be a datatype URI reference, its (relativised) negation
not(u) ∈ DPexp(G);</li>
<li>let y<sub>1</sub>, ..., y<sub>n</sub> be literals, the
enumerated datatype oneOf(y<sub>1</sub>, ..., y<sub>n</sub>) ∈
DPexp(G);</li>
<li>for any p,q ∈ DPexp(G), their conjunction and(p,q) ∈
DPexp(G);</li>
<li>for any p,q ∈ DPexp(G), their disjunction or(p,q) ∈
DPexp(G).</li>
</ul>
<h6><a id="example_C" name="example_C">Example C</a></h6>
<p>The XML Schema user defined datatype humanAge defined in
[<a href="#example_1A">Example 1A</a>] can be represented by the
following unary datatype expression:</p>
<p style="text-align: center">and(xsd:nonNegativeInteger,
xsdx:integerLessThan150).</p>
<p><a id="dt-interpretation-datatype-group" name=
"dt-interpretation-datatype-group"><b>[Definition:]</b></a> A <b>datatype
interpretation of a unary datatype group</b> G = (D,B,dom) is a
pair (LV,ED), where the datatype domain LV is a non-empty set and
ED is a datatype interpretation function that has to satisfies the
following conditions:</p>
<ol>
<li>ED(rdfs:Literal)=LV and ED(rdfsx:DatatypeBottom)} = ∅.</li>
<li>For each plain literal pl, ED(pl) = pl ∈ PL and PL ⊆ LV.</li>
<li>For any <a id="pbd-disjoint" name="pbd-disjoint">two primitive
base datatype URI references u</a><sub>1</sub> and u<sub>2</sub>,
ED(u<sub>1</sub>) ∩ ED(u<sub>2</sub>) = ∅.</li>
<li>For each supported datatype URI reference u ∈ S (let d = D(u)):
<ul>
<li>ED(u) = V(d) ⊆ V(D(dom(u))) ⊆ LV, L(D(u)) ⊆ L(D(dom(u)) and
L2S(D(u)) ⊆ L2S(D(dom(u)),</li>
<li>if s ∈ L(d), then ED(<code>"s"^^u</code>) = L2V(d)(s);
otherwise, ED(<code>"s"^^u</code>) is not defined.</li>
</ul>
</li>
<li>For each unsupported datatype URI reference u ∉ S, ED(u) ⊆ LV
and <code>"s"^^u</code> ∈ ED(u).</li>
</ol>
<p>
The datatype interpretation function ED can be extended to provide
semantics to unary datatype expressions as follows:
</p>
<ul>
<li>Relativised negations: if u ∈ S \ D, ED(not(u)) = ED(dom(U)) \
ED(u); otherwise, ED(not(u)) = LV \ ED(u).</li>
<li>Enumerated datatypes: ED(oneOf(y<sub>1</sub>, ...,
y<sub>n</sub>)) = {ED(y<sub>1</sub>)}<code>∪ ... ∪</code>
{ED(y<sub>n</sub>)}.</li>
<li>Conjunctions: ED(and(p,q)) = ED(p) ∩ ED(q).</li>
<li>Disjunctions: ED(or(p,q)) = ED(p) ∪ ED(q).</li>
</ul>
<p>
 <span class="change">[<a href="#ref-ph-2005">PH 2005</a>]</span> shows that we can combine 
any decidable DL (including SHOIN, the underpinning of OWL DL) 
that provides the conjunction and bottom constructors with a 
conforming unary datatype group and the combined DL is still 
decidable. 
</p>



<h2><a id="sec-changes" name="sec-changes" shape="rect"></a>Appendix C: Changes since 
         
         <a href="http://www.w3.org/TR/2005/WD-swbp-xsch-datatypes-20050427/" shape="rect">
            Working Draft of 27 April 2005</a></h2>

      
      
      <h3 id="sec-changes-typos">C.1 Typos etc.</h3>
      
      <p>'Semanitcs' in <a href="#sec-overview" shape="rect">introduction</a>.
      </p>
      
      <p>Updated syntax for <a href="#sec-xscd" shape="rect">XML Schema Component Designators</a>.
      </p>
      
      
      <p>Deleted broken link from description of
         <a href="#ref-ISO11404" shape="rect">[ISO 11404]</a>. Added reference to ISO homepage instead.
      </p>

      
      
      <h3 id="sec-changes-discussion">C.2 Discussion removal</h3>
      
      <p>The earlier draft was a discussion document.
         This note is not intended as such, so some issues,
         particularly to do with the interactions between various
         standards, recommendations, RFCs etc. has been removed.
         
      </p>
      
      <p>Removed 
         <a href="http://www.w3.org/TR/2005/WD-swbp-xsch-datatypes-20050427/#sec-daml-soln" shape="rect">
            DAML+OIL solution</a>.
      </p>
      
      <p>Removed
         <a href="http://www.w3.org/TR/2005/WD-swbp-xsch-datatypes-20050427/#sec-values-true" shape="rect"> 
            true values solution</a>.
      </p>

      
      <p>Removed 
         <a href="http://www.w3.org/TR/2005/WD-swbp-xsch-datatypes-20050427/#sec-values-eq" shape="rect">
            XPath eq solution</a>.
      </p>
      
      
      <p>Moved OWL syntax example from DAML+OIL section to the end of
         <a href="#sec-id-attr" shape="rect">
            id section</a>.
      </p>
      
      <p>In the 
         <a href="#sec-xscd" shape="rect">

            XML Schema Component Designator section</a>:
      </p>
      
      <ul>
         
         <li>Discussion of relationship between XSCD, XPointer
            and RFC 3023 has been removed.
         </li>
         
         <li>Discussion about the exact semantics of an
            XSCD fragment has been removed.
         </li>
         
      </ul>
      
      <p>Deleted words "(less contentious)" and "Moreover, "
         from <a href="#sec-id-attr" shape="rect">id solution</a>.
      </p>

      
      <p>Changed <a href="#sec-xscd" shape="rect">
            XML Schema Component Designator section</a>, to indicate that 
         XSCD is a good practice. In particular, see last paragraph.
      </p>
      
      <p>Changed 
         <a href="#sec-user-uri-discussion" shape="rect">
            discussion subsection</a> on user defined datatypes
         to suggest that both the (remaining) solutions are appropriate,
         and have no discussion. Changed title to Suggested Practice.
         
      </p>
      
      <p>

         Discussion of 
         <a href="#sec-values-hard-examples" shape="rect">
            harder examples</a> cut down
         substantially, since these are all trivially
         non-entailments with the agreed semantics.
         
      </p>
      
      
      
      <p>Removed EDITORS' OPINION notes.</p>
      
      
      
      
      <h3 id="sec-changes-ashok"><a name="ashok" id="ashok" shape="rect">C.3 Changes in response to comment from Ashok Malhotra</a></h3>
      
      
      <p>Deleted all uses of the word "derivation" in <a href="#sec-xmls-dt" shape="rect">section 1.3</a> since it has
         caused confusion. Added links to the XML Schema document for union, list and restriction,
         to make it clear that the intended concept is "derivation"
         as defined by that document.
      </p>

      
      
      <p>Added brief discussion 
         of target namespace after <a href="#example_2A" shape="rect">example 2A</a>
         providing further examples <a href="#example_2B" shape="rect">example 2B</a> and
         <a href="#example_2C" shape="rect">example 2C</a>.
         Scoped this document to not 
         address "XML Schema [...] assembled from multiple schema
         documents".
         Added reference <a href="#ref-xml-schema1" shape="rect">[XML SCHEMA1]</a>.
         
      </p>
      
      
      <p>In the <a href="#sec-xscd" shape="rect">

            XML Schema Component Designator section</a>: added more extended discussion of target namespace issue;
         and
         added example XSCD for schema with target namespace.
      </p>
      
      <p>Added text showing how the 
         <a href="#sec-id-attr" shape="rect">@id solution</a> does
         comply with the secondary resource concept from RFC 3986,
         when read in conjunction with RDF Concepts, XPointer and XML Schema.
         
      </p>
      
      
      
      
      
      
      
      
      
      
      <h3 id="sec-changes-restructuring"> C.4 Restructuring of section 3</h3>
      
      
      <p>Reordered subsections in section 3,
         deleting 
         old 
         3.5,
         3.6 and 3.7, and ordering the
         remaining subsections as follows:
         3.1, 
         3.4,
         3.2, 3.3. Followed by renumbering.
      </p>

      
      <p>Text discussing examples has changed, and the change tracking
         is not detailed.
      </p>
      
      <p>Moved definition of
         <a href="#def-primitive-base-type" shape="rect">primitive base datatype</a> 
         from the examples
         subsection to the 
         <a href="#sec-values-formal" shape="rect">formal analysis</a> subsection.
      </p>
      
      <p>Deleted references to the examples
         from the new section 3.2 (was
         
         3.4)
         
      </p>
      
      
      <p>Added example 
         <a href="#sec-use-sparql" shape="rect">

            SPARQL query</a>, to show how
         to use = in SPARQL to compare across the type hierarchy.
      </p>
      
      <p>Added an updated discussion of mapsTo.</p>
      
      <h3 id="sec-changes-other">C.5 Other changes</h3>
      
      <p>Added 
         <a href="#section-acknowledgements" shape="rect">
            further acknowledgements</a>.
      </p>
      
      <p>Updated reference to RFC 2396 to be to <a href="#ref-rfc3986" shape="rect">RFC 3986</a></p>

      
      
      <p>Updated 
         <a href="#contents" shape="rect">
            Table of Contents</a></p>
      
      
      
      <p>Removed unused
         <a href="#section-references" shape="rect"> 
            references</a>.
      </p>
      
      <p>Updated versions of 
         <a href="#ref-xpath-func" shape="rect">
            W3C WD's</a> in references.
      </p>

      
      
      <hr />
      
      <p><a href="http://validator.w3.org/check?uri=referer" shape="rect"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
      
      
   </body>
   
</html>