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
|
<pre>Network Working Group H. Schulzrinne
Request for Comments: 4480 Columbia U.
Category: Standards Track V. Gurbani
Lucent
P. Kyzivat
J. Rosenberg
Cisco
July 2006
<span class="h1">RPID: Rich Presence Extensions to the</span>
<span class="h1">Presence Information Data Format (PIDF)</span>
Status of This Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2006).
Abstract
The Presence Information Data Format (PIDF) defines a basic format
for representing presence information for a presentity. This format
defines a textual note, an indication of availability (open or
closed) and a Uniform Resource Identifier (URI) for communication.
The Rich Presence Information Data format (RPID) described here is an
extension that adds optional elements to the Presence Information
Data Format (PIDF). These extensions provide additional information
about the presentity and its contacts. The information is designed
so that much of it can be derived automatically, e.g., from calendar
files or user activity.
This extension includes information about what the person is doing, a
grouping identifier for a tuple, when a service or device was last
used, the type of place a person is in, what media communications
might remain private, the relationship of a service tuple to another
presentity, the person's mood, the time zone it is located in, the
type of service it offers, an icon reflecting the presentity's
status, and the overall role of the presentity.
These extensions include presence information for persons, services
(tuples), and devices.
<span class="grey">Schulzrinne, et al. Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-2">2</a>
<a href="#section-2">2</a>. Terminology and Conventions .....................................<a href="#page-4">4</a>
<a href="#section-3">3</a>. RPID Elements ...................................................<a href="#page-4">4</a>
<a href="#section-3.1">3.1</a>. Overview ...................................................<a href="#page-4">4</a>
<a href="#section-3.2">3.2</a>. Activities Element .........................................<a href="#page-7">7</a>
<a href="#section-3.3">3.3</a>. Class Element .............................................<a href="#page-10">10</a>
<a href="#section-3.4">3.4</a>. Device Identifier .........................................<a href="#page-10">10</a>
<a href="#section-3.5">3.5</a>. Mood Element ..............................................<a href="#page-10">10</a>
<a href="#section-3.6">3.6</a>. Place-is Element ..........................................<a href="#page-12">12</a>
<a href="#section-3.7">3.7</a>. Place-type Element ........................................<a href="#page-13">13</a>
<a href="#section-3.8">3.8</a>. Privacy Element ...........................................<a href="#page-14">14</a>
<a href="#section-3.9">3.9</a>. Relationship Element ......................................<a href="#page-15">15</a>
<a href="#section-3.10">3.10</a>. Service Class ............................................<a href="#page-15">15</a>
<a href="#section-3.11">3.11</a>. Sphere Element ...........................................<a href="#page-16">16</a>
<a href="#section-3.12">3.12</a>. Status-Icon Element ......................................<a href="#page-16">16</a>
<a href="#section-3.13">3.13</a>. Time Offset ..............................................<a href="#page-17">17</a>
<a href="#section-3.14">3.14</a>. User-Input Element .......................................<a href="#page-17">17</a>
<a href="#section-4">4</a>. Example ........................................................<a href="#page-18">18</a>
<a href="#section-5">5</a>. XML Schema Definitions .........................................<a href="#page-20">20</a>
<a href="#section-5.1">5.1</a>. urn:ietf:params:xml:ns:pidf:rpid ..........................<a href="#page-20">20</a>
<a href="#section-6">6</a>. Extending RPID .................................................<a href="#page-30">30</a>
<a href="#section-7">7</a>. IANA Considerations ............................................<a href="#page-31">31</a>
<a href="#section-7.1">7.1</a>. URN Sub-Namespace Registration for ........................<a href="#page-31">31</a>
'urn:ietf:params:xml:ns:pidf:rpid'
<a href="#section-7.2">7.2</a>. Schema Registration for Schema ............................<a href="#page-32">32</a>
'urn:ietf:params:xml:ns:pidf:status:rpid'
<a href="#section-8">8</a>. Internationalization Considerations ............................<a href="#page-32">32</a>
<a href="#section-9">9</a>. Security Considerations ........................................<a href="#page-32">32</a>
<a href="#section-10">10</a>. References ....................................................<a href="#page-33">33</a>
<a href="#section-10.1">10.1</a>. Normative References .....................................<a href="#page-33">33</a>
<a href="#section-10.2">10.2</a>. Informative References ...................................<a href="#page-34">34</a>
<a href="#appendix-A">Appendix A</a>. Acknowledgements .....................................<a href="#page-35">35</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The Presence Information Data Format (PIDF) definition [<a href="#ref-8" title=""Presence Information Data Format (PIDF)"">8</a>] describes
a basic presence information data format, encoded as an Extensible
Markup Language (XML) [<a href="#ref-9" title=""Extensible Markup Language (XML) 1.0 (Third Edition),"">9</a>] (SCHEMA-1 [<a href="#ref-10" title=""XML Schema Part 1: Structures Second Edition"">10</a>]) (SCHEMA-2 [<a href="#ref-11" title=""XML Schema Part 2: Datatypes Second Edition"">11</a>]), for
exchanging presence information in systems compliant with the common
model for presence and instant messaging [<a href="#ref-5" title=""A Model for Presence and Instant Messaging"">5</a>]. It consists of a
<presence> root element, zero or more <tuple> elements carrying
presence information including a Uniform Resource Identifier (URI)
for communication, zero or more <note> elements, and zero or more
extension elements from other name spaces. Each tuple defines a
basic status of either "open" or "closed".
<span class="grey">Schulzrinne, et al. Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
However, it is frequently useful to convey additional information
about a user that needs to be interpreted by an automata, and is
therefore not appropriate to be placed in the <note> element of the
PIDF document, which is typically intended for the human observer.
Therefore, this specification defines extensions to the PIDF document
format for conveying richer presence information. Generally, the
extensions have been chosen to provide features common in existing
presence systems at the time of writing, in addition to elements that
could readily be derived automatically from existing sources of
presence, such as calendaring systems or communication devices, or
sources describing the user's current physical environment.
The presence data model [<a href="#ref-16" title=""A Data Model for Presence"">16</a>] defines the concepts of service, device,
and person as the data elements that are used to model the state of a
presentity. (The term "presentity" is defined in <a href="./rfc2778">RFC 2778</a> [<a href="#ref-5" title=""A Model for Presence and Instant Messaging"">5</a>] and
abbreviates presence entity. A presentity provides presence
information to a presence service.) Services are encoded using the
<tuple> element, defined in PIDF; devices and persons are represented
by the <device> and <person> XML elements, respectively, defined in
the data model [<a href="#ref-16" title=""A Data Model for Presence"">16</a>]. However, neither PIDF nor the data model
defines presence attributes beyond the <basic> status element.
This specification defines additional presence attributes to describe
person, service, and device data elements, summarized as "Rich
Presence Information Data format for presence" (RPID). These
attributes are specified by XML elements that extend the PIDF <tuple>
element and the <device> and <person> elements defined in the data
model.
This extension has two main goals:
1. Provide rich presence information that is at least as powerful as
common commercial presence systems. Such feature-parity
simplifies transition to systems complying with the Common
Profile for Instant Messaging (CPIM) [<a href="#ref-14" title=""Common Profile for Instant Messaging (CPIM)"">14</a>], both in terms of user
acceptance and protocol conversion.
2. Maintain backward-compatibility with PIDF, so that PIDF-only
watchers and gateways can continue to function properly,
naturally without access to the functionality described here.
We make no assumptions as to how the information in the RPID elements
is generated. Experience has shown that users are not always
diligent about updating their presence status. Thus, we want to make
it as easy as possible to derive RPID information from other
information sources, such as personal calendars, the status of
communication devices such as telephones, typing activity, and
<span class="grey">Schulzrinne, et al. Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
physical presence detectors as commonly found in energy-management
systems.
Many of the elements correspond to data commonly found in personal
calendars. Thus, we attempted to align some of the extensions with
the usage found in calendar formats such as iCal [<a href="#ref-13" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">13</a>].
The information in a presence document can be generated by a single
entity or can be composed from information published by multiple
entities.
Note that PIDF documents and this extension can be used in two
different contexts, namely, by the presentity to publish its presence
status and by the presence server to notify some set of watchers.
The presence server MAY compose, translate, or filter the published
presence state before delivering customized presence information to
the watcher. For example, it may merge presence information from
multiple presence user agents, remove whole elements, translate
values in elements, or remove information from elements. Mechanisms
that filter calls and other communications to the presentity can
subscribe to this presence information just like a regular watcher
and in turn generate automated rules, such as scripts [<a href="#ref-15" title=""Call Processing Language (CPL): A Language for User Control of Internet Telephony Services"">15</a>], that
govern the actual communications behavior of the presentity. Details
are described in the data model document.
Since RPID is a PIDF XML document, it also uses the content type
application/pidf+xml.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology and Conventions</span>
This memo makes use of the vocabulary defined in the IMPP model
document [<a href="#ref-5" title=""A Model for Presence and Instant Messaging"">5</a>]. Terms such as CLOSED, INSTANT MESSAGE, OPEN, PRESENCE
SERVICE, PRESENTITY, WATCHER, and WATCHER USER AGENT in the memo are
used in the same meaning as defined therein.
The key words MUST, MUST NOT, REQUIRED, SHOULD, SHOULD NOT,
RECOMMENDED, MAY, and OPTIONAL in this document are to be interpreted
as described in <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a> [<a href="#ref-1" title=""Key words for use in RFCs to Indicate Requirement Levels"">1</a>].
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. RPID Elements</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Overview</span>
Some of the RPID elements describe services, some devices, and some
the person. As such, they either extend <tuple>, <device>, or
<person>, respectively. Below, we summarize the RPID elements. The
next sections will then provide more detailed descriptions.
<span class="grey">Schulzrinne, et al. Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
activities: The <activities> status element enumerates what the
person is doing.
class: An identifier that groups similar person elements, devices,
or services.
deviceID: A device identifier in a tuple references a <device>
element, indicating that this device contributes to the service
described by the tuple.
mood: The <mood> status element indicates the mood of the person.
place-is: The <place-is> status element reports on the properties of
the place the presentity is currently at, such as the levels of
light and noise.
place-type: The <place-type> status elements reports the type of
place the person is located in, such as 'classroom' or 'home'.
privacy: The <privacy> element distinguishes whether the
communication service is likely to be observable by other parties.
relationship: When a service is likely to reach a user besides the
person associated with the presentity, the relationship indicates
how that user relates to the person.
service-class: The <service-class> element describes whether the
service is delivered electronically, is a postal or delivery
service, or describes in-person communications.
sphere: The <sphere> element characterizes the overall current role
of the presentity.
status-icon: The <status-icon> element depicts the current status of
the person or service.
time-offset: The <time-offset> status element quantifies the time
zone the person is in, expressed as the number of minutes away
from UTC.
user-input: The <user-input> element records the user-input or usage
state of the service or device, based on human user input.
The 'From/until?' column in Table 1 indicates by an 'x' that the
element can take 'from' and 'until' attributes. An 'x' in the
'Note?' column marks elements that can include a <note> element. The
usage of these elements within the <person>, <tuple>, and <device>
elements is shown in columns 4 through 6. An 'x' in the respective
<span class="grey">Schulzrinne, et al. Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
column indicates that the RPID element MAY appear as a child of that
element.
+-----------------+------------+------+----------+---------+----------+
| Element | From/until | Note | <person> | <tuple> | <device> |
| | ? | ? | | | |
+-----------------+------------+------+----------+---------+----------+
| <activities> | x | x | x | | |
| <class> | | | x | x | x |
| <deviceID> | | | | x | |
| <mood> | x | x | x | | |
| <place-is> | x | x | x | | |
| <place-type> | x | x | x | | |
| <privacy> | x | x | x | x | |
| <relationship> | | x | | x | |
| <service-class> | | x | | x | |
| <sphere> | x | | x | | |
| <status-icon> | x | | x | x | |
| <time-offset> | x | | x | | |
| <user-input> | | | x | x | x |
+-----------------+------------+------+----------+---------+----------+
Table 1
In general, it is unlikely that a presentity will publish or announce
all of these elements at the same time. Rather, these elements were
chosen to give the presentity maximum flexibility in deriving this
information from existing sources, such as calendaring tools, device
activity sensors, or location trackers, as well as to manually
configure this information. In either case, there is no guarantee
that the information is accurate, as users forget to update calendars
or may not always adjust the presence information manually.
The namespace URIs for these elements defined by this specification
are URNs [<a href="#ref-2" title=""URN Syntax"">2</a>], using the namespace identifier 'ietf' defined by [<a href="#ref-4" title=""A URN Namespace for IETF Documents"">4</a>]
and extended by [<a href="#ref-6" title=""The IETF XML Registry"">6</a>]:
urn:ietf:params:xml:ns:pidf:rpid
The elements marked with the value 'x' in column 2 of Table 1 MAY be
qualified with the 'from' and 'until' attributes to describe the
absolute time when the element assumed this value and the absolute
time until which this element is expected to be valid. Note that
there can be multiple elements of the same type, whose time ranges
SHOULD NOT overlap.
Elements MAY contain an 'id' attribute that allows to uniquely
reference the element.
<span class="grey">Schulzrinne, et al. Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
Enumerations can be extended by elements from other namespaces, as
described in <a href="#section-6">Section 6</a>. The <activities>, <mood>, and <place-type>
elements can also take <other> elements containing text, for custom
free-text values specific to an application.
All elements described in this document are optional within PIDF
documents.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Activities Element</span>
The <activities> element describes what the person is currently
doing, expressed as an enumeration of activity-describing elements.
A person can be engaged in multiple activities at the same time,
e.g., traveling and having a meal. The <activities> element can be
quite helpful to the watcher in judging how appropriate a
communication attempt is and which means of communications is most
likely to succeed and not annoy the person. The activity indications
correspond roughly to the category field in calendar entries, such as
<a href="./rfc2445#section-4.8.1.2">Section 4.8.1.2 of RFC 2445</a> [<a href="#ref-13" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">13</a>].
An activities enumeration consists of one or more elements using
elements drawn from the list below, a string enclosed in the <other>
element, or IANA-registered values from other namespaces (<a href="#section-7">Section 7</a>).
If a person publishes an activity of "permanent-absence", it is
likely that all services will report a status of CLOSED. In general,
services MAY advertise either service status for any activity value.
Activities such as <appointment>, <breakfast>, <dinner>, <holiday>,
<lunch>, <meal>, <meeting>, <performance>, <travel>, or <vacation>
can often be derived from calendar information.
appointment: The person has a calendar appointment, without
specifying exactly of what type. This activity is indicated if
more detailed information is not available or the person chooses
not to reveal more information.
away: The person is physically away from all interactive
communication devices. This activity element was included since
it can often be derived automatically from security systems,
energy management systems, or entry badge systems. Although this
activity would typically be associated with a status of CLOSED
across all services, a person may declare himself or herself away
<span class="grey">Schulzrinne, et al. Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
to discourage communication, but indicate that he or she still can
be reached if needed. However, communication attempts might reach
an answering service, for example.
breakfast: The person is eating the first meal of the day, usually
eaten in the morning.
busy: The person is busy, without further details. Although this
activity would typically be associated with a status of CLOSED
across all services, a person may declare himself or herself busy
to discourage communication, but indicate that he or she still can
be reached if needed.
dinner: The person is having his or her main meal of the day, eaten
in the evening or at midday.
holiday: This is a scheduled national or local holiday.
in-transit: The person is riding in a vehicle, such as a car, but
not steering. The <place-type> element provides more specific
information about the type of conveyance the person is using.
looking-for-work: The presentity is looking for (paid) work.
lunch: The person is eating his or her midday meal.
meal: The person is scheduled for a meal, without specifying whether
it is breakfast, lunch, or dinner, or some other meal.
meeting: The person is in an assembly or gathering of people, as for
a business, social, or religious purpose. A meeting is a sub-
class of an appointment.
on-the-phone: The person is talking on the telephone. This activity
is included since it can often be derived automatically.
other: The person is engaged in an activity with no defined
representation as an <activities> element. The enclosed string
describes the activity in plain text.
performance: A performance is a sub-class of an appointment and
includes musical, theatrical, and cinematic performances as well
as lectures. It is distinguished from a meeting by the fact that
the person may either be lecturing or be in the audience, with a
potentially large number of other people, making interruptions
particularly noticeable.
<span class="grey">Schulzrinne, et al. Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
permanent-absence: The person will not return for the foreseeable
future, e.g., because it is no longer working for the company.
This activity is associated with a status of CLOSED across all
services.
playing: The person is occupying himself or herself in amusement,
sport, or other recreation.
presentation: The person is giving a presentation, lecture, or
participating in a formal round-table discussion.
shopping: The person is visiting stores in search of goods or
services.
sleeping: This activity category can often be generated
automatically from a calendar, local time information, or
biometric data.
spectator: The person is observing an event, such as a sports event.
steering: The person is controlling a vehicle, watercraft, or plane.
travel: The person is on a business or personal trip, but not
necessarily in-transit.
tv: The person is watching television.
unknown: The activity of the person is unknown. This element is
generally not used together with other activities.
vacation: A period of time devoted to pleasure, rest, or relaxation.
working: The presentity is engaged in, typically paid, labor, as
part of a profession or job.
worship: The presentity is participating in religious rites.
The <activities> element MAY be qualified with the 'from' and 'until'
attributes as described in <a href="#section-3.1">Section 3.1</a>.
Example:
<activities>
<note>Enjoying the morning paper</note>
<vacation/>
<breakfast/>
<other>reading</other>
</activities>
<span class="grey">Schulzrinne, et al. Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Class Element</span>
The <class> element describes the class of the service, device, or
person. Multiple elements can have the same class name within a
presence document, but each person, service, or device can only have
one class label. The naming of classes is left to the presentity.
The presentity can use this information to group similar services,
devices, or person elements or to convey information that the
presence agent can use for filtering or authorization. This
information is not generally presented to the watcher user interface.
The <class> element MUST NOT be qualified with the 'from' and 'until'
attributes as described in <a href="#section-3.1">Section 3.1</a>.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. Device Identifier</span>
The <deviceID> element in the <tuple> element references the device
that provides a particular service. The element is defined
syntactically in the data model [<a href="#ref-16" title=""A Data Model for Presence"">16</a>] schema. One service can be
provided by multiple devices, so that each service tuple may contain
zero or more <deviceID> elements. There is no significance in the
order of these elements.
The <deviceID> element MUST NOT be qualified with the 'from' and
'until' attributes as described in <a href="#section-3.1">Section 3.1</a>.
<span class="h3"><a class="selflink" id="section-3.5" href="#section-3.5">3.5</a>. Mood Element</span>
The <mood> element describes the mood of the presentity. The mood
values are enumerated chosen by the presentity. The mood itself is
provided as the element name of a defined child element of the <mood>
element (e.g., <happy/>); one such child element is REQUIRED. The
user MAY also specify a natural-language description of, or reason
for, the mood in the <note> child of the <mood> element, which is
OPTIONAL. (This definition follows the Jabber Extension JEP-107.)
It is RECOMMENDED that an implementation support the mood values
proposed in Jabber Extension JEP-0107, which in turn are a superset
of the Wireless Village [<a href="#ref-18" title=""The Wireless Village Initiative: Presence Attributes 1.1"">18</a>] mood values and the values enumerated in
the Affective Knowledge Representation that has been defined by
Lisetti [<a href="#ref-17" title=""Personality, Affect, and Emotion Taxonomy for Socially Intelligent Agents"">17</a>]:
A mood enumeration consists of one or more elements using elements
drawn from the list below, a string enclosed in the <other> element,
or IANA-registered values from other namespaces (<a href="#section-7">Section 7</a>).
The <mood> element MAY be qualified with the 'from' and 'until'
attributes as described in <a href="#section-3.1">Section 3.1</a>.
<span class="grey">Schulzrinne, et al. Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
o afraid
o amazed
o angry
o annoyed
o anxious
o ashamed
o bored
o brave
o calm
o cold
o confused
o contented
o cranky
o curious
o depressed
o disappointed
o disgusted
o distracted
o embarrassed
o excited
o flirtatious
o frustrated
o grumpy
o guilty
o happy
o hot
o humbled
o humiliated
o hungry
o hurt
o impressed
o in_awe
o in_love
o indignant
o interested
o invincible
o jealous
o lonely
o mean
o moody
o nervous
o neutral
o offended
o other
o playful
o proud
o relieved
o remorseful
<span class="grey">Schulzrinne, et al. Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
o restless
o sad
o sarcastic
o serious
o shocked
o shy
o sick
o sleepy
o stressed
o surprised
o thirsty
o unknown
o worried
Example:
<mood>
<note>I'm ready for the bar BOF!</note>
<sleepy/>
<thirsty/>
</mood>
<span class="h3"><a class="selflink" id="section-3.6" href="#section-3.6">3.6</a>. Place-is Element</span>
The <place-is> element describes properties of the place the person
is currently at. This offers the watcher an indication of what kind
of communication is likely to be successful. Each major media type
has its own set of attributes. Omitting the element indicates that
the property is unknown.
For audio, we define the following attributes:
noisy: The person is in a place with a level of background noise
that makes audio communications difficult.
ok: The environmental conditions are suitable for audio
communications.
quiet: The person is in a place such as a library, restaurant, place
of worship, or theater that discourages noise, conversation, and
other distractions.
unknown: The place attributes for audio are unknown.
For video, we define the following attributes:
toobright: The person is in a bright place, sufficient for good
rendering on video.
<span class="grey">Schulzrinne, et al. Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
ok: The environmental conditions are suitable for video.
dark: The person is in a dark place, and thus the camera may not be
able to capture a good image.
unknown: The place attributes for video are unknown.
For text (real-time text and instant messaging), we define
uncomfortable: Typing or other text entry is uncomfortable.
inappropriate: Typing or other text entry is inappropriate, e.g.,
since the user is in a vehicle or house of worship.
ok: The environmental conditions are suitable for text-based
communications.
unknown: The place attributes for text are unknown.
This list can be augmented by free-text values in a note or
additional IANA-registered values (<a href="#section-7">Section 7</a>).
The <place-is> element contains other elements, e.g.,
<place-is>
<audio>
<noisy />
</audio>
<video>
<dark />
</video>
</place-is>
The <place-is> element MAY be qualified with the 'from' and 'until'
attributes as described in <a href="#section-3.1">Section 3.1</a>.
<span class="h3"><a class="selflink" id="section-3.7" href="#section-3.7">3.7</a>. Place-type Element</span>
The <place-type> element describes the type of place the person is
currently at. This offers the watcher an indication of what kind of
communication is likely to be appropriate. The initial set of values
is contained in <a href="./rfc4589">RFC 4589</a> [<a href="#ref-12" title=""Location Types Registry"">12</a>].
This list can be augmented by free-text values or additional IANA-
registered values as described in <a href="./rfc4589">RFC 4589</a>.
<span class="grey">Schulzrinne, et al. Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
The <place-type> element is a choice of elements, as in
<place-type>
<pt:street/>
</place-type>
The <place-type> element MAY be qualified with the 'from' and 'until'
attributes as described in <a href="#section-3.1">Section 3.1</a>.
<span class="h3"><a class="selflink" id="section-3.8" href="#section-3.8">3.8</a>. Privacy Element</span>
The <privacy> element indicates which types of communication third
parties in the vicinity of the presentity are unlikely to be able to
intercept accidentally or intentionally. This does not in any way
describe the privacy properties of the electronic communication
channel, e.g., properties of the encryption algorithm or the network
protocol used.
audio: Inappropriate individuals are not likely to overhear audio
communications.
text: Inappropriate individuals are not likely to see text
communications.
unknown: This information is unknown.
video: Inappropriate individuals are not likely to see video
communications.
The <privacy> element can be used by logic executing on the
watcher or by a composer to filter, sort and label tuples. For
example, a composer may have rules that limit the publication of
tuples labeled "private" to a select subset of the watchers.
The <privacy> element MAY be qualified with the 'from' and 'until'
attributes as described in <a href="#section-3.1">Section 3.1</a>.
Example:
<privacy>
<text/>
<audio/>
</privacy>
<span class="grey">Schulzrinne, et al. Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<span class="h3"><a class="selflink" id="section-3.9" href="#section-3.9">3.9</a>. Relationship Element</span>
The <relationship> element extends <tuple> and designates the type of
relationship an alternate contact has with the presentity. This
element is provided only if the tuple refers to somebody other than
the presentity. Relationship values include "family", "friend",
"associate" (e.g., for a colleague), "assistant", "supervisor",
"self", and "unknown". The default is "self".
If a relationship is indicated, the URI in the <contact> element
refers to the entity, such as the assistant, that has a relationship
to the presentity, not the presentity itself.
Like tuples without a <relationship> qualifier, the <contact> element
for tuples labeled with a relationship can contain either a
communication URI such as "im", "sip", "sips", "h323", "tel", or
"mailto", or a presence URI, such as "pres" or "sip".
Example:
<relationship>
<friend/>
</relationship>
<span class="h3"><a class="selflink" id="section-3.10" href="#section-3.10">3.10</a>. Service Class</span>
The <service-class> element extends <tuple> and designates the type
of service offered.
electronic: Delivery of information by electronic means, i.e.,
without delivering physical objects. Examples include telephone,
fax, email, instant messaging, and SMS.
postal: Delivery by the postal service, e.g., as a letter, parcel,
or postcard. Delivery could be to a post office box or central
mailroom rather than the presentity's office location, for
example.
courier: Delivery by messenger, overnight delivery, or courier.
Courier-delivered messages are usually delivered to a receptionist
rather than, say, a mailroom or receiving department.
freight: Delivery by freight carrier, typically of larger objects
that are not sent by postal mail or courier. The recipient is
often the shipping department or a loading dock.
in-person: Describes the coordinates for visits in person, as by a
visitor, i.e., usually somebody's office or residence.
<span class="grey">Schulzrinne, et al. Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
unknown: The type of service is unknown.
Electronic service is implied if omitted. The service types
'postal', 'courier', 'freight', and 'in-person' MUST NOT be used
unless the contact URI is empty. Additional data elements defined
elsewhere describe the physical service delivery address for the in-
person, postal, or delivery services. Such addresses might be
specified in geospatial coordinates, civic addresses, or some
specialized address format, e.g., for interstellar addresses or a
company-specific delivery system.
Example:
<service-class><postal/></service-class>
<span class="h3"><a class="selflink" id="section-3.11" href="#section-3.11">3.11</a>. Sphere Element</span>
The <sphere> element designates the current state and role that the
person plays. For example, it might describe whether the person is
in a work mode, at home, or participating in activities related to
some other organization such as the IETF or a church. This document
does not define names for these spheres except for two common ones,
"work" and "home", as well as "unknown".
Spheres allow the person to easily turn on or off certain rules that
depend on what groups of people should be made aware of the person's
status. For example, if the person is a Boy Scout leader, he might
set the sphere to "scouting" and then have a rule set that allows
other scout masters in his troop to see his presence status. As soon
as he switches his status to "work", "home", or some other sphere,
the fellow scouts would lose access.
The <sphere> element MAY be qualified with the 'from' and 'until'
attributes as described in <a href="#section-3.1">Section 3.1</a>.
Example:
<sphere>
<home/>
</sphere>
<span class="h3"><a class="selflink" id="section-3.12" href="#section-3.12">3.12</a>. Status-Icon Element</span>
The <status-icon> element includes a URI pointing to an image (icon)
representing the current status of the person or service. The
watcher MAY use this information to represent the status in a
graphical user interface. Presentities SHOULD provide images of
<span class="grey">Schulzrinne, et al. Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
sizes and aspect ratios that are appropriate for rendering as an
icon. Support for JPEG, PNG, and GIF formats is RECOMMENDED.
Watchers resolving the URI MUST validate whether the local copy of
the icon is current when receiving a notification, using the standard
cache control mechanism in the URI-identified retrieval protocol.
Example:
<status-icon>http://www.example.com/playing.gif</status-icon>
<span class="h3"><a class="selflink" id="section-3.13" href="#section-3.13">3.13</a>. Time Offset</span>
The <time-offset> element describes the number of minutes of offset
from UTC at the person's current location. A positive number
indicates that the local time-of-day is ahead (i.e., east of)
Universal Time, while a negative number indicates that the local
time-of-day is behind (i.e., west of) Universal Time. Transitions
into and out of daylight savings time may temporarily cause a
difference between the true offset from UTC and the time offset
element.
An optional attribute, description, can be used to describe the
offset, e.g., by labeling the time zone. This description is meant
for human consumption.
Publishers on mobile devices SHOULD NOT publish this information
unless they know the time offset information to reflect the current
location. (For example, many laptop users do not update their time
zone when traveling.) Publishers SHOULD update the information
whenever they discover that their UTC offset has changed.
Example:
<time-offset description="America/New_York">-300
</time-offset>
<span class="h3"><a class="selflink" id="section-3.14" href="#section-3.14">3.14</a>. User-Input Element</span>
The <user-input> element records the user-input or usage state of the
service or device, based on human user input, e.g., keyboard,
pointing device, or voice. If contained in a <person> element, it
summarizes any user input activity across all services and devices
operated by the presentity. The mechanism for such aggregation is
beyond the scope of this document, but generally reflects the most
recent user input across all devices and services. The element can
assume one of two values, namely, 'active' or 'idle', with an
optional 'last-input' attribute that records when the last user input
<span class="grey">Schulzrinne, et al. Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
was received. An optional 'idle-threshold' element records how long
the presentity will wait before reporting the service or device to be
idle, measured in seconds.
(A two-state model was chosen since it would otherwise be necessary
to send repeated last-input updates during continuous activity.)
A service that wants to indicate user input activity sends a <user-
input> 'active' indication when the user has provided user input
within a configurable interval of time, the idle-threshold. If the
user ceases to provide input and the idle-threshold has elapsed, the
tuple is marked with a <user-input> 'idle' indication instead,
optionally including the time of last activity in the 'last-input'
attribute. An example is below:
<user-input idle-threshold="600"
last-input="2004-10-21T13:20:00.000-05:00">idle</user-input>
Depending on device or service capabilities, user input may be
detected only for a particular application, i.e., when the
application has user focus or when a user has sent a message or
placed a call, or can be based on user input across all applications
running on one end system.
The <user-input> element may be used by a watcher, typically in
combination with other data, to estimate how likely a user is to
answer when contacting the service. A tuple that has not been used
in a while may still be OPEN, but a watcher may choose to first
contact a URI in a tuple that is both OPEN and has been used more
recently.
The <user-input> attribute can be omitted if the presentity wants to
indicate that the device has not been used for a while, but does not
want to reveal the precise duration, as in the following:
<user-input>idle</user-input>
Configuration MUST include the option to omit the 'last-input'
attribute.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Example</span>
The example below describes the presentity
'pres:someone@example.com', which has a SIP contact,
'sip:someone@example.com', representing a service. It also has a
device contact, as an email box. The presentity is in a meeting, in
a public office setting. The 'until' information indicates that he
will be there until 5:30 pm local time. The presentity also has an
<span class="grey">Schulzrinne, et al. Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
assistant, sip:secretary@example.com, who happens to be available for
communications.
<?xml version="1.0" encoding="UTF-8"?>
<presence xmlns="urn:ietf:params:xml:ns:pidf"
xmlns:dm="urn:ietf:params:xml:ns:pidf:data-model"
xmlns:lt="urn:ietf:params:xml:ns:location-type"
xmlns:rpid="urn:ietf:params:xml:ns:pidf:rpid"
entity="pres:someone@example.com">
<tuple id="bs35r9">
<status>
<basic>open</basic>
</status>
<dm:deviceID>urn:device:0003ba4811e3</dm:deviceID>
<rpid:relationship><rpid:self/></rpid:relationship>
<rpid:service-class><rpid:electronic/></rpid:service-class>
<contact priority="0.8">im:someone@mobile.example.net</contact>
<note xml:lang="en">Don't Disturb Please!</note>
<note xml:lang="fr">Ne derangez pas, s'il vous plait</note>
<timestamp>2005-10-27T16:49:29Z</timestamp>
</tuple>
<tuple id="ty4658">
<status>
<basic>open</basic>
</status>
<rpid:relationship><rpid:assistant/></rpid:relationship>
<contact priority="1.0">mailto:secretary@example.com</contact>
</tuple>
<tuple id="eg92n8">
<status>
<basic>open</basic>
</status>
<dm:deviceID>urn:x-mac:0003ba4811e3</dm:deviceID>
<rpid:class>email</rpid:class>
<rpid:service-class><rpid:electronic/></rpid:service-class>
<rpid:status-icon>http://example.com/mail.png</rpid:status-icon>
<contact priority="1.0">mailto:someone@example.com</contact>
</tuple>
<note>I'll be in Tokyo next week</note>
<dm:device id="pc147">
<rpid:user-input idle-threshold="600"
last-input="2004-10-21T13:20:00-05:00">idle</rpid:user-input>
<dm:deviceID>urn:device:0003ba4811e3</dm:deviceID>
<span class="grey">Schulzrinne, et al. Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<dm:note>PC</dm:note>
</dm:device>
<dm:person id="p1">
<rpid:activities from="2005-05-30T12:00:00+05:00"
until="2005-05-30T17:00:00+05:00">
<rpid:note>Far away</rpid:note>
<rpid:away/>
</rpid:activities>
<rpid:class>calendar</rpid:class>
<rpid:mood>
<rpid:angry/>
<rpid:other>brooding</rpid:other>
</rpid:mood>
<rpid:place-is>
<rpid:audio>
<rpid:noisy/>
</rpid:audio>
</rpid:place-is>
<rpid:place-type><lt:residence/></rpid:place-type>
<rpid:privacy><rpid:unknown/></rpid:privacy>
<rpid:sphere>bowling league</rpid:sphere>
<rpid:status-icon>http://example.com/play.gif</rpid:status-icon>
<rpid:time-offset>-240</rpid:time-offset>
<dm:note>Scoring 120</dm:note>
<dm:timestamp>2005-05-30T16:09:44+05:00</dm:timestamp>
</dm:person>
</presence>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. XML Schema Definitions</span>
The RPID schema is shown below. Due to limitations in composing
schemas, not all XML documents that validate against the schema below
are semantically valid RPID documents. In particular, the schema
allows each element to appear anyhere in PIDF or data-model elements;
Table 1 restricts where these elements can appear for semantically
valid RPID documents. Elements that do not have from/until
parameters MUST NOT appear more than once in each <person>, <tuple>,
or <device>.
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. urn:ietf:params:xml:ns:pidf:rpid</span>
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="urn:ietf:params:xml:ns:pidf:rpid"
xmlns="urn:ietf:params:xml:ns:pidf:rpid"
xmlns:dm="urn:ietf:params:xml:ns:pidf:data-model"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
<span class="grey">Schulzrinne, et al. Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:simpleType name="activeIdle">
<xs:restriction base="xs:string">
<xs:enumeration value="active"/>
<xs:enumeration value="idle"/>
</xs:restriction>
</xs:simpleType>
<xs:element name="activities">
<xs:annotation>
<xs:documentation>
Describes what the person is currently doing, expressed as
an enumeration of activity-describing elements. A person
can be engaged in multiple activities at the same time,
e.g., traveling and having a meal.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="note" type="Note_t" minOccurs="0"
maxOccurs="unbounded" />
<xs:choice>
<xs:element name="unknown" type="empty" minOccurs="0"/>
<xs:sequence maxOccurs="unbounded">
<xs:choice>
<xs:element name="appointment"
type="empty" />
<xs:element name="away"
type="empty" />
<xs:element name="breakfast"
type="empty" />
<xs:element name="busy"
type="empty" />
<xs:element name="dinner"
type="empty" />
<xs:element name="holiday"
type="empty" />
<xs:element name="in-transit"
type="empty" />
<xs:element name="looking-for-work"
type="empty" />
<xs:element name="meal"
type="empty" />
<xs:element name="meeting"
type="empty" />
<span class="grey">Schulzrinne, et al. Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<xs:element name="on-the-phone"
type="empty" />
<xs:element name="performance"
type="empty" />
<xs:element name="permanent-absence"
type="empty" />
<xs:element name="playing"
type="empty" />
<xs:element name="presentation"
type="empty" />
<xs:element name="shopping"
type="empty" />
<xs:element name="sleeping"
type="empty" />
<xs:element name="spectator"
type="empty" />
<xs:element name="steering"
type="empty" />
<xs:element name="travel"
type="empty" />
<xs:element name="tv"
type="empty" />
<xs:element name="vacation"
type="empty" />
<xs:element name="working"
type="empty" />
<xs:element name="worship"
type="empty" />
<xs:element name="other"
type="Note_t" />
<xs:any namespace="##other"
maxOccurs="unbounded" processContents="lax"/>
</xs:choice>
</xs:sequence>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="fromUntil"/>
<xs:attribute name="id" type="xs:ID"/>
<xs:anyAttribute namespace="##any" processContents="lax"/>
</xs:complexType>
</xs:element>
<xs:element name="class" type="xs:token">
<xs:annotation>
<xs:documentation>
Describes the class of the service, device or person.
</xs:documentation>
</xs:annotation>
<span class="grey">Schulzrinne, et al. Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
</xs:element>
<xs:element name="mood">
<xs:annotation>
<xs:documentation>
Describes the mood of the presentity.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="note" type="Note_t" minOccurs="0"
maxOccurs="unbounded" />
<xs:choice>
<xs:element name="unknown" type="empty"/>
<xs:sequence maxOccurs="unbounded">
<xs:choice>
<xs:element name="afraid"
type="empty"/>
<xs:element name="amazed"
type="empty"/>
<xs:element name="angry"
type="empty"/>
<xs:element name="annoyed"
type="empty"/>
<xs:element name="anxious"
type="empty" />
<xs:element name="ashamed"
type="empty" />
<xs:element name="bored"
type="empty" />
<xs:element name="brave"
type="empty" />
<xs:element name="calm"
type="empty" />
<xs:element name="cold"
type="empty" />
<xs:element name="confused"
type="empty" />
<xs:element name="contented"
type="empty" />
<xs:element name="cranky"
type="empty" />
<xs:element name="curious"
type="empty" />
<xs:element name="depressed"
type="empty" />
<xs:element name="disappointed"
type="empty" />
<span class="grey">Schulzrinne, et al. Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<xs:element name="disgusted"
type="empty" />
<xs:element name="distracted"
type="empty" />
<xs:element name="embarrassed"
type="empty" />
<xs:element name="excited"
type="empty" />
<xs:element name="flirtatious"
type="empty" />
<xs:element name="frustrated"
type="empty" />
<xs:element name="grumpy"
type="empty" />
<xs:element name="guilty"
type="empty" />
<xs:element name="happy"
type="empty" />
<xs:element name="hot"
type="empty" />
<xs:element name="humbled"
type="empty" />
<xs:element name="humiliated"
type="empty" />
<xs:element name="hungry"
type="empty" />
<xs:element name="hurt"
type="empty" />
<xs:element name="impressed"
type="empty" />
<xs:element name="in_awe"
type="empty" />
<xs:element name="in_love"
type="empty" />
<xs:element name="indignant"
type="empty" />
<xs:element name="interested"
type="empty" />
<xs:element name="invincible"
type="empty" />
<xs:element name="jealous"
type="empty" />
<xs:element name="lonely"
type="empty" />
<xs:element name="mean"
type="empty" />
<xs:element name="moody"
type="empty" />
<span class="grey">Schulzrinne, et al. Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<xs:element name="nervous"
type="empty" />
<xs:element name="neutral"
type="empty" />
<xs:element name="offended"
type="empty" />
<xs:element name="playful"
type="empty" />
<xs:element name="proud"
type="empty" />
<xs:element name="relieved"
type="empty" />
<xs:element name="remorseful"
type="empty" />
<xs:element name="restless"
type="empty" />
<xs:element name="sad"
type="empty" />
<xs:element name="sarcastic"
type="empty" />
<xs:element name="serious"
type="empty" />
<xs:element name="shocked"
type="empty" />
<xs:element name="shy"
type="empty" />
<xs:element name="sick"
type="empty" />
<xs:element name="sleepy"
type="empty" />
<xs:element name="stressed"
type="empty" />
<xs:element name="surprised"
type="empty" />
<xs:element name="thirsty"
type="empty" />
<xs:element name="worried"
type="empty" />
<xs:element name="other"
type="Note_t" />
<xs:any namespace="##other"
maxOccurs="unbounded" processContents="lax"/>
</xs:choice>
</xs:sequence>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="fromUntil"/>
<xs:attribute name="id" type="xs:ID"/>
<span class="grey">Schulzrinne, et al. Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<xs:anyAttribute namespace="##any" processContents="lax"/>
</xs:complexType>
</xs:element>
<xs:element name="place-is">
<xs:complexType>
<xs:sequence>
<xs:element name="note" type="Note_t" minOccurs="0"
maxOccurs="unbounded" />
<xs:element name="audio" minOccurs="0">
<xs:complexType>
<xs:choice>
<xs:element name="noisy" type="empty" />
<xs:element name="ok" type="empty" />
<xs:element name="quiet" type="empty" />
<xs:element name="unknown" type="empty" />
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="video" minOccurs="0">
<xs:complexType>
<xs:choice>
<xs:element name="toobright" type="empty" />
<xs:element name="ok" type="empty" />
<xs:element name="dark" type="empty" />
<xs:element name="unknown" type="empty" />
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="text" minOccurs="0">
<xs:complexType>
<xs:choice>
<xs:element name="uncomfortable" type="empty" />
<xs:element name="inappropriate" type="empty" />
<xs:element name="ok" type="empty" />
<xs:element name="unknown" type="empty" />
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="fromUntil"/>
<xs:attribute name="id" type="xs:ID"/>
<xs:anyAttribute namespace="##any" processContents="lax"/>
</xs:complexType>
</xs:element>
<xs:element name="place-type">
<xs:annotation>
<span class="grey">Schulzrinne, et al. Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<xs:documentation>
Describes the type of place the person is currently at.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="note" type="Note_t" minOccurs="0"
maxOccurs="unbounded" />
<xs:choice>
<xs:element name="other" type="Note_t"/>
<xs:any namespace="##other" maxOccurs="unbounded"
processContents="lax"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="fromUntil"/>
<xs:attribute name="id" type="xs:ID"/>
<xs:anyAttribute namespace="##any" processContents="lax"/>
</xs:complexType>
</xs:element>
<xs:element name="privacy">
<xs:annotation>
<xs:documentation>
Indicates which type of communication third parties in the
vicinity of the presentity are unlikely to be able to
intercept accidentally or intentionally.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="note" type="Note_t" minOccurs="0"
maxOccurs="unbounded" />
<xs:choice>
<xs:element name="unknown" type="empty"/>
<xs:sequence minOccurs="1">
<xs:element name="audio" type="empty" minOccurs="0"/>
<xs:element name="text" type="empty" minOccurs="0"/>
<xs:element name="video" type="empty" minOccurs="0"/>
<xs:any namespace="##other" minOccurs="0"
maxOccurs="unbounded" processContents="lax"/>
</xs:sequence>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="fromUntil"/>
<xs:attribute name="id" type="xs:ID"/>
<xs:anyAttribute namespace="##any" processContents="lax"/>
</xs:complexType>
</xs:element>
<span class="grey">Schulzrinne, et al. Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<xs:element name="relationship">
<xs:annotation>
<xs:documentation>
Designates the type of relationship an alternate contact
has with the presentity.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="note" type="Note_t" minOccurs="0"
maxOccurs="unbounded" />
<xs:choice>
<xs:element name="assistant" type="empty" />
<xs:element name="associate" type="empty" />
<xs:element name="family" type="empty" />
<xs:element name="friend" type="empty" />
<xs:element name="other" type="Note_t" minOccurs="0" />
<xs:element name="self" type="empty" />
<xs:element name="supervisor" type="empty" />
<xs:element name="unknown" type="empty" />
<xs:any namespace="##other" maxOccurs="unbounded"
processContents="lax"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="service-class">
<xs:annotation>
<xs:documentation>
Designates the type of service offered.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="note" type="Note_t" minOccurs="0"
maxOccurs="unbounded" />
<xs:choice>
<xs:element name="courier" type="empty" />
<xs:element name="electronic" type="empty" />
<xs:element name="freight" type="empty" />
<xs:element name="in-person" type="empty" />
<xs:element name="postal" type="empty" />
<xs:element name="unknown" type="empty" />
<xs:any namespace="##other" maxOccurs="unbounded"
processContents="lax"/>
</xs:choice>
</xs:sequence>
<span class="grey">Schulzrinne, et al. Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
</xs:complexType>
</xs:element>
<xs:element name="sphere">
<xs:annotation>
<xs:documentation>
Designates the current state and role that the person plays.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:choice minOccurs="0">
<xs:element name="home" type="empty" />
<xs:element name="work" type="empty" />
<xs:element name="unknown" type="empty" />
<xs:any namespace="##other" maxOccurs="unbounded"
processContents="lax"/>
</xs:choice>
<xs:attributeGroup ref="fromUntil"/>
<xs:attribute name="id" type="xs:ID"/>
<xs:anyAttribute namespace="##any" processContents="lax"/>
</xs:complexType>
</xs:element>
<xs:element name="status-icon">
<xs:annotation>
<xs:documentation>
A URI pointing to an image (icon) representing the current
status of the person or service.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attributeGroup ref="fromUntil"/>
<xs:attribute name="id" type="xs:ID"/>
<xs:anyAttribute namespace="##any" processContents="lax"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="time-offset">
<xs:annotation>
<xs:documentation>
Describes the number of minutes of offset from UTC at the
user's current location.
</xs:documentation>
</xs:annotation>
<span class="grey">Schulzrinne, et al. Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:integer">
<xs:attributeGroup ref="fromUntil"/>
<xs:attribute name="description"
type="xs:string"/>
<xs:attribute name="id" type="xs:ID"/>
<xs:anyAttribute namespace="##any" processContents="lax"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="user-input">
<xs:annotation>
<xs:documentation>
Records the user-input or usage state of the service or
device.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="activeIdle">
<xs:attribute name="idle-threshold"
type="xs:positiveInteger"/>
<xs:attribute name="last-input" type="xs:dateTime"/>
<xs:attribute name="id" type="xs:ID"/>
<xs:anyAttribute namespace="##any"
processContents="lax"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:schema>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Extending RPID</span>
Any developer can introduce their own element names, avoiding
conflict by choosing an appropriate namespace URI. To add new
standardized elements to the enumerations <activities>, <mood>,
<privacy>, <relationship> and <service-class>, the extension process
described in PIDF [<a href="#ref-9" title=""Extensible Markup Language (XML) 1.0 (Third Edition),"">9</a>] is followed, i.e., such extensions would use
namespace designators such as urn:ietf:params:xml:ns:pidf:ext, where
'ext' is the name of the extension. Any new values for the <place-
type> element are assigned according to [<a href="#ref-12" title=""Location Types Registry"">12</a>] and are given a
namespace designator at their time of registration.
<span class="grey">Schulzrinne, et al. Standards Track [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
To avoid the unnecessary proliferation of XML namespaces containing a
single element, groups of element registrations for each of these
enumerations, such as <privacy>, SHOULD be bundled into a single
namespace rather than assigning a new namespace to each new element.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. IANA Considerations</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. URN Sub-Namespace Registration for</span>
'urn:ietf:params:xml:ns:pidf:rpid'
URI: urn:ietf:params:xml:ns:pidf:rpid
Description: This is the XML namespace for XML elements defined by
<a href="./rfc4480">RFC 4480</a> to describe rich presence information extensions for the
status element in the PIDF presence document format in the
application/pidf+xml content type.
Registrant Contact: IETF, SIMPLE working group, simple@ietf.org,
Henning Schulzrinne, hgs@cs.columbia.edu
XML:
BEGIN
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN"
"<a href="http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd">http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd</a>">
<html xmlns="http://www.w3.org/1999/xhtml
<head>
<meta http-equiv="content-type"
content="text/html;charset=iso-8859-1"/>
<title>RPID: Rich Presence Extensions to the Presence
Information Data Format (PIDF)</title>
</head>
<body>
<h1>Namespace for rich presence extension</h1>
<h2>urn:ietf:params:xml:ns:pidf:rpid</h2>
<p>See <a href="http://www.rfc-editor.org/rfc/rfc4480.txt">
RFC&4480;</a>.</p>
</body>
</html>
END
<span class="grey">Schulzrinne, et al. Standards Track [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Schema Registration for Schema</span>
'urn:ietf:params:xml:ns:pidf:status:rpid'
URI: urn:ietf:params:xml:ns:pidf:status:rpid
Registrant Contact: IESG
XML: See <a href="#section-5">Section 5</a>
Note that this document does not need a new content type. It
inherits the content type from [<a href="#ref-8" title=""Presence Information Data Format (PIDF)"">8</a>], namely, application/pidf+xml.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Internationalization Considerations</span>
RPID contains mostly tokens that are meant for consumption by
programs, not directly by humans. Programs are expected to translate
those tokens into language-appropriate text strings according to the
preferences of the watcher.
Some elements may contain <note> and <other> elements that can
contain free text. These elements SHOULD be labeled with the 'xml:
lang' attribute to indicate their language and script. The
specification allows multiple occurrences of these elements so that
the presentity can convey <note> and <other> elements in multiple
scripts and languages. If no 'xml:lang' attribute is provided, the
default value is "i-default" [<a href="#ref-3" title=""IETF Policy on Character Sets and Languages"">3</a>].
Since RPID is represented in XML, it provides native support for
encoding information using the Unicode character set and its more
compact representations including UTF-8. Conformant XML processors
recognize both UTF-8 and UTF-16. Though XML includes provisions to
identify and use other character encodings through use of an
"encoding" attribute in an <?xml?> declaration, use of UTF-8 is
RECOMMENDED in environments where parser encoding support
incompatibility exists.
A description of time-zone considerations can be found in
<a href="#section-3.13">Section 3.13</a>.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Security Considerations</span>
The security considerations in [<a href="#ref-8" title=""Presence Information Data Format (PIDF)"">8</a>] apply, as well as [<a href="#ref-7" title=""A Presence Event Package for the Session Initiation Protocol (SIP)"">7</a>]. Compared
to PIDF, this presence document format reveals additional information
about presentities that can be highly sensitive. Beyond traditional
security measures to protect confidentiality and integrity, systems
should offer a means to selectively reveal information to particular
watchers and to inspect the information that is being published,
particularly if it is generated automatically from other sources,
such as calendars or sensors.
<span class="grey">Schulzrinne, et al. Standards Track [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
Like any reference to an external object, the <status-icon> may allow
the presentity to induce the watcher to retrieve data from a third
party (content indirection attack), thus either retrieving harmful
content or adding to the server load of the referenced resource.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. References</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. Normative References</span>
[<a id="ref-1">1</a>] Bradner, S., "Key words for use in RFCs to Indicate Requirement
Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-2">2</a>] Moats, R., "URN Syntax", <a href="./rfc2141">RFC 2141</a>, May 1997.
[<a id="ref-3">3</a>] Alvestrand, H., "IETF Policy on Character Sets and Languages",
<a href="https://www.rfc-editor.org/bcp/bcp18">BCP 18</a>, <a href="./rfc2277">RFC 2277</a>, January 1998.
[<a id="ref-4">4</a>] Moats, R., "A URN Namespace for IETF Documents", <a href="./rfc2648">RFC 2648</a>,
August 1999.
[<a id="ref-5">5</a>] Day, M., Rosenberg, J., and H. Sugano, "A Model for Presence
and Instant Messaging", <a href="./rfc2778">RFC 2778</a>, February 2000.
[<a id="ref-6">6</a>] Mealling, M., "The IETF XML Registry", <a href="https://www.rfc-editor.org/bcp/bcp81">BCP 81</a>, <a href="./rfc3688">RFC 3688</a>,
January 2004.
[<a id="ref-7">7</a>] Rosenberg, J., "A Presence Event Package for the Session
Initiation Protocol (SIP)", <a href="./rfc3856">RFC 3856</a>, August 2004.
[<a id="ref-8">8</a>] Sugano, H., Fujimoto, S., Klyne, G., Bateman, A., Carr, W., and
J. Peterson, "Presence Information Data Format (PIDF)", <a href="./rfc3863">RFC</a>
<a href="./rfc3863">3863</a>, August 2004.
[<a id="ref-9">9</a>] Yergeau, F., Paoli, J., Sperberg-McQueen, C., Bray, T., and E.
Maler, "Extensible Markup Language (XML) 1.0 (Third Edition),"
W3C REC REC-xml-20040204, February 2004.
[<a id="ref-10">10</a>] Maloney, M., Beech, D., Thompson, H., and N. Mendelsohn, "XML
Schema Part 1: Structures Second Edition", W3C REC REC-
xmlschema-1-20041028, October 2004.
[<a id="ref-11">11</a>] Malhotra, A. and P. Biron, "XML Schema Part 2: Datatypes Second
Edition", W3C REC REC-xmlschema-2-20041028, October 2004.
[<a id="ref-12">12</a>] Schulzrinne, H. and H. Tschofenig, "Location Types Registry",
<a href="./rfc4589">RFC 4589</a>, July 2006.
<span class="grey">Schulzrinne, et al. Standards Track [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. Informative References</span>
[<a id="ref-13">13</a>] Dawson, F. and D. Stenerson, "Internet Calendaring and
Scheduling Core Object Specification (iCalendar)", <a href="./rfc2445">RFC 2445</a>,
November 1998.
[<a id="ref-14">14</a>] Peterson, J., "Common Profile for Instant Messaging (CPIM)",
<a href="./rfc3860">RFC 3860</a>, August 2004.
[<a id="ref-15">15</a>] Lennox, J., Wu, X., and H. Schulzrinne, "Call Processing
Language (CPL): A Language for User Control of Internet
Telephony Services", <a href="./rfc3880">RFC 3880</a>, October 2004.
[<a id="ref-16">16</a>] Rosenberg, J., "A Data Model for Presence", <a href="./rfc4479">RFC 4479</a>, July
2006.
[<a id="ref-17">17</a>] Lisetti, C., "Personality, Affect, and Emotion Taxonomy for
Socially Intelligent Agents", Proceedings of FLAIRS 2002, 2002.
[<a id="ref-18">18</a>] Open Mobile Alliance, "The Wireless Village Initiative:
Presence Attributes 1.1", Recommendation WV-29, 2004.
<span class="grey">Schulzrinne, et al. Standards Track [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Acknowledgements</span>
The document reflects the discussion on the SIMPLE mailing list, with
contributions from many individuals. David L. Black, Miguel Garcia,
Avshalom Houri, Markus Isomaki, Rick Jones, Hisham Khartabil,
Jonathan Lennox, Eva-Maria Leppanen, Mikko Lonnfors, Rohan Mahy,
Miguel Marcia, Andrew Newton, Aki Niemi, Jon Peterson, and Brian
Rosen provided detailed comments and suggestions. Xiaotao Wu
assisted with schema testing. Jari Urpalainen provided valuable
advice on XML schema issues.
<span class="grey">Schulzrinne, et al. Standards Track [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
Authors' Addresses
Henning Schulzrinne
Columbia University
Department of Computer Science
450 Computer Science Building
New York, NY 10027
US
Phone: +1 212 939 7042
EMail: hgs+simple@cs.columbia.edu
URI: <a href="http://www.cs.columbia.edu">http://www.cs.columbia.edu</a>
Vijay Gurbani
Lucent
2000 Naperville Rd.
Room 6G-440
Naperville, IL 60566-7033
US
EMail: vkg@lucent.com
Paul Kyzivat
Cisco Systems
BXB500 C2-2
1414 Massachusetts Avenue
Boxborough, MA 01719
US
EMail: pkyzivat@cisco.com
Jonathan Rosenberg
Cisco Systems
600 Lanidex Plaza
Parsippany, NJ 07054-2711
US
EMail: jdrosen@cisco.com
<span class="grey">Schulzrinne, et al. Standards Track [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc4480">RFC 4480</a> RIPD July 2006</span>
Full Copyright Statement
Copyright (C) The Internet Society (2006).
This document is subject to the rights, licenses and restrictions
contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET
ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE
INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
<a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at
ietf-ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is provided by the IETF
Administrative Support Activity (IASA).
Schulzrinne, et al. Standards Track [Page 37]
</pre>
|