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
|
<pre>Internet Engineering Task Force (IETF) B. Hoeneisen
Request for Comments: 6117 Ucom.ch
Obsoletes: <a href="./rfc3761">3761</a> A. Mayrhofer
Category: Standards Track enum.at
ISSN: 2070-1721 J. Livingood
Comcast
March 2011
<span class="h1">IANA Registration of Enumservices:</span>
<span class="h1">Guide, Template, and IANA Considerations</span>
Abstract
This document specifies a revision of the IANA Registration
Guidelines for Enumservices, describes corresponding registration
procedures, and provides a guideline for creating Enumservice
Specifications.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc6117">http://www.rfc-editor.org/info/rfc6117</a>.
Copyright Notice
Copyright (c) 2011 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
This document may contain material from IETF Documents or IETF
Contributions published or made publicly available before November
10, 2008. The person(s) controlling the copyright in some of this
material may not have granted the IETF Trust the right to allow
modifications of such material outside the IETF Standards Process.
Without obtaining an adequate license from the person(s) controlling
the copyright in such materials, this document may not be modified
outside the IETF Standards Process, and derivative works of it may
not be created outside the IETF Standards Process, except to format
it for publication as an RFC or to translate it into languages other
than English.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-2">2</a>. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-3">3</a>. Registration Requirements . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-3.1">3.1</a>. Functionality Requirements . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-3.2">3.2</a>. Naming Requirements . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-3.3">3.3</a>. Security Requirements . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.4">3.4</a>. Publication Requirements . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-4">4</a>. Enumservice Creation Cookbook . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-4.1">4.1</a>. General Enumservice Considerations . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-4.2">4.2</a>. Classification, Type and Subtype . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-4.2.1">4.2.1</a>. General Type/Subtype Considerations . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-4.2.2">4.2.2</a>. Protocol-Based Enumservices Class . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-4.2.3">4.2.3</a>. Application-Based Enumservice Classes . . . . . . . . <a href="#page-10">10</a>
<a href="#section-4.2.4">4.2.4</a>. Data Type-Based Enumservice Class . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-4.2.5">4.2.5</a>. Other Enumservice . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-5">5</a>. Required Sections and Information . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-5.1">5.1</a>. Introduction (REQUIRED) . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-5.2">5.2</a>. IANA Registration (REQUIRED) . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-5.2.1">5.2.1</a>. Enumservice Class (<class>) . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-5.2.2">5.2.2</a>. Enumservice Type (<type>) . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-5.2.3">5.2.3</a>. Enumservice Subtype (<subtype>) . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-5.2.4">5.2.4</a>. URI Scheme(s) (<urischeme>) . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-5.2.5">5.2.5</a>. Functional Specification (<functionalspec>) . . . . . <a href="#page-15">15</a>
<a href="#section-5.2.6">5.2.6</a>. Security Considerations (<security>) . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-5.2.7">5.2.7</a>. Intended Usage (<usage>) . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-5.2.8">5.2.8</a>. Enumservice Specification (<registrationdocs>) . . . . <a href="#page-16">16</a>
<a href="#section-5.2.9">5.2.9</a>. Requesters (<requesters>) . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-5.2.10">5.2.10</a>. Further Information (<additionalinfo>) . . . . . . . . <a href="#page-17">17</a>
<a href="#section-5.3">5.3</a>. Examples (REQUIRED) . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-5.4">5.4</a>. Implementation Recommendations / Notes (OPTIONAL) . . . . <a href="#page-18">18</a>
<a href="#section-5.5">5.5</a>. DNS Considerations (REQUIRED) . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-5.6">5.6</a>. Security Considerations (REQUIRED) . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-5.7">5.7</a>. IANA Considerations (REQUIRED) . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-5.8">5.8</a>. Other Sections (OPTIONAL) . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<a href="#section-6">6</a>. The Process of Registering New Enumservices . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-6.1">6.1</a>. Step 1: Read This Document in Detail . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-6.2">6.2</a>. Step 2: Write and Submit Registration Document . . . . . . <a href="#page-22">22</a>
<a href="#section-6.3">6.3</a>. Step 3: Request Comments From the IETF Community . . . . . <a href="#page-23">23</a>
<a href="#section-6.3.1">6.3.1</a>. Outcome 1: No Changes Needed . . . . . . . . . . . . . <a href="#page-23">23</a>
6.3.2. Outcome 2: Changes, But No Further Comments
Requested . . . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-6.3.3">6.3.3</a>. Outcome 3: Changes and Further Comments Requested . . <a href="#page-23">23</a>
<a href="#section-6.4">6.4</a>. Step 4: Submit Registration Document to IANA . . . . . . . <a href="#page-24">24</a>
<a href="#section-6.5">6.5</a>. Step 5: Expert Review . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
6.5.1. Outcome 1: Experts Approve the Registration
Document . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-25">25</a>
<a href="#section-6.5.2">6.5.2</a>. Outcome 2: Changes Required . . . . . . . . . . . . . <a href="#page-25">25</a>
6.5.3. Outcome 3: Experts Reject the Registration Document . 25
<a href="#section-6.6">6.6</a>. Step 6: Publication of the Registration Document . . . . . <a href="#page-25">25</a>
<a href="#section-6.7">6.7</a>. Step 7: Adding Enumservice to the IANA Registry . . . . . <a href="#page-25">25</a>
<a href="#section-7">7</a>. Expert Review . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-26">26</a>
<a href="#section-7.1">7.1</a>. Expert Selection Process . . . . . . . . . . . . . . . . . <a href="#page-26">26</a>
<a href="#section-7.2">7.2</a>. Review Guidelines . . . . . . . . . . . . . . . . . . . . <a href="#page-26">26</a>
<a href="#section-7.3">7.3</a>. Appeals . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-27">27</a>
<a href="#section-8">8</a>. Revision of Existing Enumservice Specifications . . . . . . . <a href="#page-27">27</a>
<a href="#section-9">9</a>. Extension of Existing Enumservice Specifications . . . . . . . <a href="#page-27">27</a>
<a href="#section-10">10</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-10.1">10.1</a>. Considerations Regarding This Document . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-10.2">10.2</a>. Enumservice Security Considerations Guideline . . . . . . <a href="#page-28">28</a>
<a href="#section-11">11</a>. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-11.1">11.1</a>. Registry Update . . . . . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-11.2">11.2</a>. Registration Template (XML chunk) . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-11.3">11.3</a>. Location . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-29">29</a>
<a href="#section-11.4">11.4</a>. Structure . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<a href="#section-11.5">11.5</a>. Expert Review Procedure . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<a href="#section-11.6">11.6</a>. Registration Procedure . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<a href="#section-11.6.1">11.6.1</a>. Published as an RFC . . . . . . . . . . . . . . . . . <a href="#page-31">31</a>
<a href="#section-11.6.2">11.6.2</a>. Published as a Non-RFC . . . . . . . . . . . . . . . . <a href="#page-31">31</a>
<a href="#section-11.7">11.7</a>. Change Control . . . . . . . . . . . . . . . . . . . . . . <a href="#page-32">32</a>
<a href="#section-11.8">11.8</a>. Restrictions . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-32">32</a>
<a href="#section-12">12</a>. Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-32">32</a>
<a href="#section-13">13</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-33">33</a>
<a href="#section-13.1">13.1</a>. Normative References . . . . . . . . . . . . . . . . . . . <a href="#page-33">33</a>
<a href="#section-13.2">13.2</a>. Informative References . . . . . . . . . . . . . . . . . . <a href="#page-34">34</a>
<a href="#appendix-A">Appendix A</a>. IANA Registration Template Examples . . . . . . . . . <a href="#page-36">36</a>
<a href="#appendix-B">Appendix B</a>. Changes from <a href="./rfc3761">RFC 3761</a> . . . . . . . . . . . . . . . . <a href="#page-39">39</a>
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
E.164 Number Mapping (ENUM) [<a href="./rfc6116" title=""The E.164 to Uniform Resource Identifiers (URI) Dynamic Delegation Discovery System (DDDS) Application (ENUM)"">RFC6116</a>] provides an identifier mapping
mechanism to map E.164 numbers [<a href="#ref-ITU.E164.2005">ITU.E164.2005</a>] to Uniform Resource
Identifiers (URIs) [<a href="./rfc3986" title=""Uniform Resource Identifier (URI): Generic Syntax"">RFC3986</a>] using the Domain Name System (DNS)
[<a href="./rfc1035" title=""Domain names - implementation and specification"">RFC1035</a>]. One of the primary concepts of ENUM is the definition of
"Enumservices", which allows for providing different URIs for
different applications of said mapping mechanism.
This document specifies a revision of the IANA registry for
Enumservices, which was originally described in [<a href="./rfc3761" title=""The E.164 to Uniform Resource Identifiers (URI) Dynamic Delegation Discovery System (DDDS) Application (ENUM)"">RFC3761</a>]. This
document obsoletes <a href="./rfc3761#section-3">Section 3 of RFC 3761</a> while <a href="./rfc6116">RFC 6116</a> obsoletes <a href="./rfc3761">RFC</a>
<a href="./rfc3761">3761</a>.
The new registration processes, which are detailed in <a href="#section-6">Section 6</a>, have
been specifically designed to be decoupled from the existence of the
ENUM working group. Compared to <a href="./rfc3761">RFC 3761</a>, the main changes are as
follows:
o For an Enumservice to be inserted to the IANA registry,
"Specification Required", which implies the use of a Designated
Expert, according to "Guidelines for Writing an IANA
Considerations Section in RFCs" [<a href="./rfc5226" title="">RFC5226</a>], are now sufficient.
o The IANA Registration Template has been supplemented with elements
for "Enumservice Class" and "Enumservice Specification".
The IETF's ENUM Working Group has encountered an unnecessary amount
of variation in the format of Enumservice Specifications. The ENUM
Working Group's view of what particular information is required
and/or recommended has also evolved, and capturing these best current
practices is helpful in both the creation of new Enumservice
Specifications, as well as the revision or refinement of existing
Enumservice Specifications.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
For the purpose of this document:
o "Registration Document" refers to a draft specification that
defines an Enumservice and proposes its registration following the
procedures outlined herein.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
o "Enumservice Specification" refers to a Registration Document that
has been approved by the experts and published according to
"Specification Required" as defined in [<a href="./rfc5226" title="">RFC5226</a>].
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Registration Requirements</span>
As specified in the Augmented Backus-Naur Form (ABNF, [<a href="./rfc5234" title=""Augmented BNF for Syntax Specifications: ABNF"">RFC5234</a>])
found in <a href="./rfc6116#section-3.4.3">Section 3.4.3 of [RFC6116]</a>, an Enumservice is made up of
Types and Subtypes. For any given Type, the allowable Subtypes (if
any) must be defined in the Enumservice Specification. There is
currently no concept of a registered Subtype outside the scope of a
given Type.
While the combination of each Type and all of its Subtypes
constitutes the allowed values for the "Enumservice" field, it is not
sufficient to just list their allowed values. To allow for
interoperability, a complete Enumservice Specification MUST document
the semantics of the Type and Subtype values to be registered, and
MUST contain all sections listed in <a href="#section-5">Section 5</a> of this document.
Furthermore, in order for an Enumservice to be registered, the entire
Registration Document requires approval by the experts according to
"Specification Required", which implies the use of a Designated
Expert, as set out in "Guidelines for Writing an IANA Considerations
Section in RFCs" [<a href="./rfc5226" title="">RFC5226</a>] and <a href="#section-7.2">Section 7.2</a> of this document.
All Enumservice Specifications are expected to conform also to
various requirements laid out in the following sections.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Functionality Requirements</span>
A registered Enumservice must be able to function as a selection
mechanism for choosing one Naming Authority Pointer (NAPTR) [<a href="./rfc3403" title=""Dynamic Delegation Discovery System (DDDS) Part Three: The Domain Name System (DNS) Database"">RFC3403</a>]
DNS Resource Record (RR) from a set of such RRs. That means the
Enumservice Specification MUST define how to use the NAPTR RR and the
URI(s) the NAPTR RR resolves to.
Specifically, a registered Enumservice MUST specify the URI Scheme(s)
that may be used for the Enumservice, and, when needed, other
information that will have to be transferred into the URI resolution
process itself.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Naming Requirements</span>
The name of an Enumservice MUST be unique in order to be useful as a
selection criteria:
o The Type MUST be unique.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
o The Subtype (being dependent on the Type) MUST be unique within a
given Type.
Types and Subtypes MUST conform to the ABNF specified in <a href="./rfc6116#section-3.4.3">Section</a>
<a href="./rfc6116#section-3.4.3">3.4.3 of [RFC6116]</a>.
The ABNF specified in <a href="./rfc6116#section-3.4.3">Section 3.4.3 of [RFC6116]</a> allows the "-"
(dash) character for Types and Subtypes. To avoid confusion with
possible future prefixes, a "-" MUST NOT be used as the first nor as
the second character of a Type nor a Subtype. Furthermore, a "-"
MUST NOT be used as the last character of a Type nor a Subtype. In
addition, Types and Subtypes are case insensitive and SHOULD be
specified in lowercase letters.
Note: The legacy IANA registry of Enumservices contains Type and
Subtype strings with uppercase letters. Implementors could be
tempted to refuse handling uppercase Type or Subtype strings, which
could negatively affect interoperability.
To avoid confusion with Enumservice fields using a deprecated
(obsolete) syntax, Type and Subtype MUST NOT start with the string
"e2u".
The Subtype for one Type MAY have the same identifier as a Subtype
for another Type, but it is not sufficient to simply reference
another Type's Subtype. The functionality of each Subtype MUST be
fully specified in the context of the Type being registered.
<a href="#section-4">Section 4</a> contains further naming requirements.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Security Requirements</span>
An analysis of security issues is REQUIRED for all registered
Enumservices. (This is in accordance with the basic requirements for
all IETF protocols.)
All descriptions of security issues MUST be as accurate and extensive
as feasible. In particular, a statement that there are "no security
issues associated with this Enumservice" must not be confused with
"the security issues associated with this Enumservice have not been
assessed".
There is no requirement that an Enumservice must be completely free
of security risks. Nevertheless, all known security risks MUST be
identified in an Enumservice Specification.
Some of the issues to be looked at in a security analysis of an
Enumservice are:
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
1. Complex Enumservices may include provisions for directives that
institute actions on a user's resources. In many cases provision
can be made to specify arbitrary actions in an unrestricted
fashion which may then have devastating results (especially if
there is a risk for a new ENUM look-up, and because of that an
infinite loop in the overall resolution process of the E.164
number).
2. Complex Enumservices may include provisions for directives that
institute actions which, while not directly harmful, may result
in disclosure of information that either facilitates a subsequent
attack or else violates the users' privacy in some way.
3. An Enumservice might be targeted for applications that require
some sort of security assurance but do not provide the necessary
security mechanisms themselves. For example, an Enumservice
could be defined for storage of confidential security services
information such as alarm systems or message service passcodes,
which in turn require an external confidentiality service.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. Publication Requirements</span>
Enumservices Specifications MUST be published according to the
requirements for "Specification Required" set out in "Guidelines for
Writing an IANA Considerations Section in RFCs" [<a href="./rfc5226" title="">RFC5226</a>]. RFCs
fulfill these requirements. Therefore, it is strongly RECOMMENDED to
publish Enumservice Specifications as RFCs.
In case the Enumservice Specification is not published as an RFC,
sufficient information that allows unique identification of the
Enumservice Specification MUST be provided.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Enumservice Creation Cookbook</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. General Enumservice Considerations</span>
ENUM is an extremely flexible identifier mapping mechanism, using
E.164 (phone) numbers as input identifiers, and returning URIs as
output identifiers. Because of this flexibility, almost every use
case for ENUM could be implemented in several ways.
<a href="#section-2">Section 2</a> of "Guidelines for Writing an IANA Considerations Section
in RFCs" [<a href="./rfc5226" title="">RFC5226</a>] provides motivation for why management of a
namespace might be necessary. Even though the namespace for
Enumservices is rather large (up to 32 alphanumeric characters),
there are reasons to manage this in accordance with <a href="./rfc5226#section-2">Section 2 of
[RFC5226]</a>. The following is a list of motivations applying to
Enumservices:
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
o Prevent hoarding or wasting of values: Enumservice Types are not
an opaque identifier to prevent collisions in the namespace, but
rather identify the use of a certain technology in the context of
ENUM. Service Types might also be displayed to end users in
implementations, so meaningful Type strings having a clear
relation to the protocols and applications used are strongly
RECOMMENDED. Therefore, preventing hoarding, wasting, or
"hijacking" of Enumservice Type strings is important.
o Sanity check to ensure sensible or necessary requests: This
applies to Enumservices, since especially various Enumservices for
the same purpose would reduce the chance of successful
interoperability, and unnecessarily increase confusion among
implementers.
o Delegation of namespace portions: Theoretically, the Type and/or
Subtype structure of Enumservices would allow for delegations of
Type values, and self-supporting management of Subtype values by a
delegate within the Type value. Such delegates could, for
example, be other standardization bodies. However, this would
require clear policies regarding publication and use of such
Subtypes. Delegation of Enumservice namespace portions is
therefore currently not supported.
o Interoperability: Since the benefit of an Enumservice rises with
the number of supporting clients, the registration and use of
several services for a similar or identical purpose clearly
reduces interoperability. Operational circumstances suggest to
keep the space occupied by all services published in the NAPTR
RRSet at any owner in the e164.arpa domain bounded. Registration
of nearly identical services and subsequent competing or parallel
use could easily increase the DNS operational complexity.
Generally, before commencing work on a new Enumservice registration,
the following should be considered:
o Is there an existing Enumservice that could fulfill the desired
functionality without overloading it? Check the IANA Enumservice
Registry at <<a href="http://www.iana.org/assignments/enum-services">http://www.iana.org/assignments/enum-services</a>>.
o Is there work in progress, or previous work, on a similar
Enumservice? Check the <enum@ietf.org> mailing list archives at
<<a href="http://www.ietf.org/mail-archive/web/enum/index.html">http://www.ietf.org/mail-archive/web/enum/index.html</a>>, and search
the Internet-Drafts Archive at <<a href="http://tools.ietf.org/">http://tools.ietf.org/</a>>. Some
Internet-Drafts may have expired and no longer be available in the
Internet-Drafts Archive, or some work on Enumservices may have
been considered outside the IETF; therefore, we also recommend a
web search.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
o <a href="#section-4.2">Section 4.2</a> provides three general categories for Enumservice
classification. In some cases, there might be several options for
designing an Enumservice. For example, a mapping service using
HTTP could be considered a "protocol Type" Enumservice (using HTTP
as the protocol), while it could also be viewed as an "application
Type" Enumservice, with the application providing access to
mapping services. In such a case where several options are
available, defining use cases before commencing work on the
Enumservice itself might be useful before making a decision on
which aspect of the Enumservice is more important.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Classification, Type and Subtype</span>
Because of their flexibility, Enumservices can be and are used in a
lot of different ways. This section contains a classification of
Enumservices, and provides guidance for choosing suitable Type and
Subtype strings for each individual Enumservice Class.
The Classification of each Enumservice MUST be listed in the
Registration Document (see <a href="#section-5.2">Section 5.2</a>). If the Enumservice cannot
be assigned to one of the classes outlined below, the Registration
Document MUST contain a section on the difficulties encountered while
trying to classify the service to help the experts in their decision.
<span class="h4"><a class="selflink" id="section-4.2.1" href="#section-4.2.1">4.2.1</a>. General Type/Subtype Considerations</span>
To avoid confusion, the name of a URI Scheme MUST NOT be used as a
Type string for an Enumservice that is not specifically about the
respective protocol or URI Scheme. For example, the Type string
"imap" would be inadequate for use in an Enumservice about "Internet
mapping" services, because it corresponds to an existing URI Scheme /
protocol for something different.
If Subtypes are defined, the minimum number SHOULD be two (including
the empty Subtype, if defined). The choice of just one possible
Subtype for a given Type does not add any information when selecting
an ENUM record, and hence can be left out completely. However,
potential future expansion of a Type towards several Subtypes may
justify the use of Subtypes, even in the case that just one is
currently defined, as noted in <a href="#section-9">Section 9</a>.
It is perfectly legal under a certain Type to mix the Enumservice
without a Subtype (empty Subtype) with Enumservices containing a
Subtype. In that case, however, the Enumservice with an empty
Subtype SHOULD be specified to reflect the base service, while the
other Enumservices SHOULD be specified to reflect variants.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h4"><a class="selflink" id="section-4.2.2" href="#section-4.2.2">4.2.2</a>. Protocol-Based Enumservices Class</span>
Such an Enumservice indicates that an interaction using the named
protocol will result for use of this NAPTR. The expected behavior of
a system using this Enumservice MUST be clear from the protocol.
A good indication that an Enumservice belongs to this Class is the
fact that a client does not need to understand the actual application
to make use of an instance of this Enumservice.
Examples of such Enumservices include "xmpp" [<a href="./rfc4979" title=""IANA Registration for Enumservice 'XMPP'"">RFC4979</a>] and "sip"
[<a href="./rfc3764" title=""enumservice registration for Session Initiation Protocol (SIP) Addresses-of-Record"">RFC3764</a>].
<span class="h5"><a class="selflink" id="section-4.2.2.1" href="#section-4.2.2.1">4.2.2.1</a>. Protocol-Based Enumservice "Type" Strings</span>
A protocol-based Enumservice SHOULD use the lowercase name of the
protocol as its Type string. Names as registered in the IANA Port
Number Registry (<<a href="http://www.iana.org/assignments/port-numbers">http://www.iana.org/assignments/port-numbers</a>>,
defined in <a href="#section-8">Section 8</a> and 9 of [<a href="./rfc2780" title=""IANA Allocation Guidelines For Values In the Internet Protocol and Related Headers"">RFC2780</a>]) are preferred.
<span class="h5"><a class="selflink" id="section-4.2.2.2" href="#section-4.2.2.2">4.2.2.2</a>. Protocol-Based Enumservice "Subtype" Strings</span>
Where there is a single URI Scheme associated with this protocol, a
Subtype SHOULD NOT be specified for the Enumservice.
Where there are a number of different URI Schemes associated with
this protocol, the Enumservice Specification MAY use the empty
Subtype for all URI Schemes that it specifies as mandatory to
implement. For each URI Scheme that is not mandatory to implement, a
distinct Subtype string MUST be used.
If Subtypes are defined, it is RECOMMENDED to use the URI Scheme name
as the Subtype string.
<span class="h4"><a class="selflink" id="section-4.2.3" href="#section-4.2.3">4.2.3</a>. Application-Based Enumservice Classes</span>
Application-based Enumservices are used when the kind of service
intended is not fully defined by a protocol specification. There are
three cases here:
o Common Application Enumservice:
The application reflects a kind of interaction that can be
realized by different protocols, but where the intent of the
publisher is the same. From a user's perspective, there is a
common kind of interaction -- how that interaction is implemented
is not important. The Enumservice Specification MUST describe the
interaction and expected behavior in enough detail that an
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
implementation can decide if this activity is one in which it can
engage. However, it is RECOMMENDED that the Enumservice be
defined in a way that will allow others to use it at a later date.
An Enumservice that defines a generalized application is preferred
to one that has narrow use.
An example of this flavor of Enumservice is email. Whilst this
might appear to be a "pure" protocol scheme, it is not. The URI
Scheme is 'mailto', and it does not identify the protocol used to
offer or retrieve emails by the sender or the recipient.
Another example is the Short Messaging Service (SMS), where the
existence of such an Enumservice indicates that the publishing
entity is capable of engaging in sending or receiving a message
according to the SMS specifications. The underlying protocol used
and the URI Scheme for the addressable end point can differ, but
the "user visible" interaction of sending and receiving an SMS is
similar.
o Subset Enumservice:
The application interaction reflects a subset of the interactions
possible by use of a protocol. Use of this Enumservice indicates
that some options available by use of the protocol will not be
accepted or are not possible in this case. Any such Enumservice
Specification MUST define the options available by use of this
NAPTR in enough detail that an implementation can decide whether
or not it can use this Enumservice. Examples of this kind of
Enumservice are "voice:tel" and "fax:tel". In both cases, the URI
holds a telephone number. However, the essential feature of these
Enumservices is that the telephone number is capable of receiving
a voice call or of receiving a Facsimile transmission,
respectively. These form subsets of the interactions capable of
using the telephone number, and so have their own Enumservices.
These allow an end point to decide if it has the appropriate
capability to engage in the advertised user service (a voice call
or sending a fax) rather than just being capable of making a
connection to such a destination address. This is especially
important where there is no underlying mechanism within the
protocol to negotiate a different kind of user interaction.
o Ancillary Application Enumservice
Another variant on this is the Ancillary Application. This is one
in which further processing (potentially using a number of
different protocols or methods) is the intended result of using
this Enumservice. An example of this kind of application is the
"pstn:tel" Enumservice. This indicates that the NAPTR holds
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
number portability data. It implies that the client should engage
in number portability processing using the associated URI. Note
that this Enumservice usually does not itself define the kind of
interaction available using the associated URI. That application
is negotiated with some other "out of band" means (either through
prior negotiation, or explicitly through the number portability
process, or through negotiation following the selection of the
final destination address).
<span class="h5"><a class="selflink" id="section-4.2.3.1" href="#section-4.2.3.1">4.2.3.1</a>. Application-Based Enumservice "Type" Strings</span>
It is recommended that Application-class Enumservices use the
lowercase well-known name of the abstract application as the Type
string.
<span class="h5"><a class="selflink" id="section-4.2.3.2" href="#section-4.2.3.2">4.2.3.2</a>. Application-Based Enumservice "Subtype" Strings</span>
It is RECOMMENDED that the URI Scheme(s) used by the application be
used as the Subtype string(s). Subtype strings MAY be shared between
URI Schemes, if all the URI Schemes within the same Subtype are
mandatory to implement.
If it is foreseen that there is only one URI Scheme ever to be used
with the application, the empty Subtype string MAY be used.
<span class="h4"><a class="selflink" id="section-4.2.4" href="#section-4.2.4">4.2.4</a>. Data Type-Based Enumservice Class</span>
"Data Type" Enumservices typically refer to a specific data type or
format, which may be addressed using one or more URI Schemes and
protocols. Examples of such Enumservices include "vpim" [<a href="./rfc4238" title=""Voice Message Routing Service"">RFC4238</a>]
and "vcard" [<a href="./rfc4969" title=""IANA Registration for vCard Enumservice"">RFC4969</a>].
<span class="h5"><a class="selflink" id="section-4.2.4.1" href="#section-4.2.4.1">4.2.4.1</a>. Data Type-Based Enumservice "Type" Strings</span>
It is recommended to use the lowercase well known name of the data
type or format name as the Type string.
<span class="h5"><a class="selflink" id="section-4.2.4.2" href="#section-4.2.4.2">4.2.4.2</a>. Data Type-Based Enumservice "Subtype" Strings</span>
It is RECOMMENDED to use the URI Schemes used to access the service
as Subtype strings. Subtype strings MAY be shared between URI
Schemes, if all the URI Schemes within the same Subtype are mandatory
to implement.
If there is only one URI Scheme foreseen to access the data type or
format, the empty Subtype string MAY be used.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h4"><a class="selflink" id="section-4.2.5" href="#section-4.2.5">4.2.5</a>. Other Enumservice</span>
In case an Enumservice proposal cannot be assigned to any of the
classes mentioned above, the <class> element (Enumservice Class) in
the IANA Registration Template (see <a href="#section-5.2">Section 5.2</a>) MUST be populated
with "Other". In that case, the Enumservice Specification MUST
contain a section elaborating on why the Enumservice does not fit
into the classification structure.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Required Sections and Information</span>
There are several sections that MUST appear in an Enumservice
Specification. These sections are as follows, and they SHOULD be in
the given order.
The following terms SHOULD begin with a capital letter, whenever they
refer to the IANA Registration:
o Class
o Type
o Subtype
o URI Scheme
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Introduction (REQUIRED)</span>
An introductory section MUST be included. This section will explain,
in plain English, the purpose and intended use of the proposed
Enumservice registration.
The Introduction SHOULD start with a short sentence about ENUM,
introduce the protocol used in the Enumservice, and discuss the
Enumservice as it refers from the E.164 number to the protocol or
service.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. IANA Registration (REQUIRED)</span>
This section MUST be included in an Enumservice Specification. Where
a given Enumservice Type has multiple Subtypes, there MUST be a
separate "IANA Registration" section for each Subtype. The following
sections list the elements that are to be used in the XML-chunk-based
Registration Template of an "IANA Registration" section.
<span class="h4"><a class="selflink" id="section-5.2.1" href="#section-5.2.1">5.2.1</a>. Enumservice Class (<class>)</span>
This element contains the Class of the Enumservice as defined in
<a href="#section-4.2">Section 4.2</a>. Its value MUST be one of (without quotes):
o "Protocol-Based": The Enumservice belongs to the Protocol-based
class as described in <a href="#section-4.2.2">Section 4.2.2</a>.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
o "Application-Based, Common": The Enumservice is a "common" case of
the Application-based class as described in <a href="#section-4.2.3">Section 4.2.3</a>.
o "Application-Based, Subset": The Enumservice belongs to the
"subset" case of the Application-based class as described in
<a href="#section-4.2.3">Section 4.2.3</a>.
o "Application-Based, Ancillary": The Enumservice is an "ancillary"
case of the Application-based class, as described in
<a href="#section-4.2.3">Section 4.2.3</a>.
o "Data Type-Based": The Enumservice belongs to the Data Type-Based
class as described in <a href="#section-4.2.4">Section 4.2.4</a>.
o "Other": The majority of the functionality of the Enumservice does
not fall into one of the classes defined.
Class Example
<class>Protocol-Based</class>
<span class="h4"><a class="selflink" id="section-5.2.2" href="#section-5.2.2">5.2.2</a>. Enumservice Type (<type>)</span>
The Type of the Enumservice. All Types SHOULD be listed in lower-
case. The choice of Type depends on the Enumservice Class. Please
find further instructions in <a href="#section-4">Section 4</a>.
Type Example
<type>foo</type>
<span class="h4"><a class="selflink" id="section-5.2.3" href="#section-5.2.3">5.2.3</a>. Enumservice Subtype (<subtype>)</span>
The Subtype of the Enumservice. All Subtypes SHOULD be listed in
lower-case. The choice of Subtype depends on the Enumservice Class.
Should the Enumservice not utilize a Subtype, then the <subtype>
element MUST be omitted in the IANA Registration Template. If a
given Enumservice Type has multiple Subtypes, then there MUST be a
separate IANA Registration Template for each Subtype. Please find
further instructions in <a href="#section-4">Section 4</a>.
Subtype Example
<subtype>bar</subtype>
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h4"><a class="selflink" id="section-5.2.4" href="#section-5.2.4">5.2.4</a>. URI Scheme(s) (<urischeme>)</span>
The URI Schemes [<a href="./rfc3986" title=""Uniform Resource Identifier (URI): Generic Syntax"">RFC3986</a>] that are used with the Enumservice. The
selection of URI Schemes often depends on the Enumservice Class,
Type, and/or Subtype. A colon MUST NOT be placed after the URI
Scheme name. If there is more than one URI Scheme, then one
<urischeme> element per URI scheme MUST be used in the IANA
Registration Template. Please find further instructions in
<a href="#section-4">Section 4</a>.
URI Scheme Example
<urischeme>bar</urischeme>
<urischeme>sbar</urischeme>
Note: A client cannot choose a specific ENUM record in a record set
based on the URI Scheme - the selection is only based on Type and
Subtype, in accordance with [<a href="./rfc3402" title=""Dynamic Delegation Discovery System (DDDS) Part Two: The Algorithm"">RFC3402</a>].
<span class="h4"><a class="selflink" id="section-5.2.5" href="#section-5.2.5">5.2.5</a>. Functional Specification (<functionalspec>)</span>
The Functional Specification describes how the Enumservice is used in
connection with the URI to which it resolves.
Functional Specification Example
<functionalspec>
<paragraph>
This Enumservice indicates that the resource
identified can be addressed by the associated
URI in order to foo the bar.
</paragraph>
<paragraph>
[<a href="#ref-...">...</a>]
</paragraph>
</functionalspec>
Where the terms used are non-obvious, they should be defined in the
Enumservice Specification, or a reference to an external document
containing their definition should be provided.
<span class="h4"><a class="selflink" id="section-5.2.6" href="#section-5.2.6">5.2.6</a>. Security Considerations (<security>)</span>
A reference to the "Security Considerations" section of a given
Enumservice Specification.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
Security Considerations Example
<security>
See <xref type="rfc" data="<a href="./rfc4979">rfc4979</a>"/>, <a href="#section-6">Section 6</a>.
</security>
<span class="h4"><a class="selflink" id="section-5.2.7" href="#section-5.2.7">5.2.7</a>. Intended Usage (<usage>)</span>
One of the following values (without quotes):
o "COMMON": Indicates that the Enumservice is intended for
widespread use on the public Internet, and that its scope is not
limited to a certain environment.
o "LIMITED USE": Indicates that the Enumservice is intended for use
on a limited scope, for example in private ENUM-like application
scenarios. The use case provided in the Enumservice Specification
should describe such a scenario.
o "DEPRECATED": Indicates that the Enumservice has been declared
deprecated (<a href="#section-11.7">Section 11.7</a>) and is not to be used in new
deployments. Applications SHOULD however expect to encounter
legacy instances of this Enumservice.
Intended Usage Example
<usage>COMMON</usage>
<span class="h4"><a class="selflink" id="section-5.2.8" href="#section-5.2.8">5.2.8</a>. Enumservice Specification (<registrationdocs>)</span>
Reference(s) to the Document(s) containing the Enumservice
Specification.
Enumservice Specification Examples
<registrationdocs>
<xref type="rfc" data="<a href="./rfc4979">rfc4979</a>"/>
</registrationdocs>
or
<registrationdocs>
<xref type="rfc" data="<a href="./rfc2026">rfc2026</a>"/> (obsoleted by <a href="./rfc2551">RFC 2551</a>)
<xref type="rfc" data="<a href="./rfc2551">rfc2551</a>"/>
</registrationdocs>
or
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<registrationdocs>
[International Telecommunications Union,
"Enumservice Specification for Foobar",
ITU-F Recommendation B.193, Release 73, Mar 2009.]
</registrationdocs>
<span class="h4"><a class="selflink" id="section-5.2.9" href="#section-5.2.9">5.2.9</a>. Requesters (<requesters>)</span>
The persons requesting the registration of the Enumservice. Usually
these are the authors of the Enumservice Specification.
Requesters Example
<requesters>
<xref type="person" data="John_Doe"/>
</requesters>
[<a id="ref-...">...</a>]
<people>
<person id="John_Doe">
<name>John Doe</name>
<org>ACME Research and Development Inc.</org>
<uri>mailto:jd@acme.example.com</uri>
<updated>2008-11-20</updated>
</person>
</people>
If there is more than one requester, there MUST be one <xref> element
per requester in the <requesters> element, and one <person> chunk per
requester in the <people> element.
<span class="h4"><a class="selflink" id="section-5.2.10" href="#section-5.2.10">5.2.10</a>. Further Information (<additionalinfo>)</span>
Any other information the authors deem interesting, including
artwork.
Further Information Example
<additionalinfo>
<paragraph>more info goes here</paragraph>
</additionalinfo>
Note: If there is no such additional information, then the
<additionalinfo> element is omitted.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Examples (REQUIRED)</span>
This section MUST show at least one example of the Enumservice being
registered, for illustrative purposes. The example(s) shall in no
way limit the various forms that a given Enumservice may take, and
this should be noted at the beginning of this section of the
document. The example(s) MUST show the specific formatting of the
intended NAPTRs (according to [<a href="./rfc3403" title=""Dynamic Delegation Discovery System (DDDS) Part Three: The Domain Name System (DNS) Database"">RFC3403</a>] and [<a href="./rfc6116" title=""The E.164 to Uniform Resource Identifiers (URI) Dynamic Delegation Discovery System (DDDS) Application (ENUM)"">RFC6116</a>]), including one
or more NAPTR example(s), AND a brief textual description, consisting
of one or more sentences written in plain English, explaining the
various parts or attributes of the record(s).
The example(s) SHOULD contain a brief description how a client
supporting this Enumservice could behave, if that description was not
already given in, e.g., the Introduction or the Functional
Specification.
The example(s) SHOULD follow any relevant IETF guidelines on the use
of domain names, phone numbers, and other resource identifier
examples, such as [<a href="./rfc2606" title=""Reserved Top Level DNS Names"">RFC2606</a>].
For example:
$ORIGIN 9.7.8.0.6.9.2.3.6.1.4.4.e164.arpa.
@ IN NAPTR 100 10 "u" "E2U+foo:bar" "!^.*$!bar://example.com/!" .
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. Implementation Recommendations / Notes (OPTIONAL)</span>
Recommendations that pertain to implementation and/or operations
SHOULD be included. Such a section is helpful to someone reading an
Enumservice Specification and trying to understand how best to use it
to support their network or service.
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. DNS Considerations (REQUIRED)</span>
In case the inclusion of protocols and URI Schemes into ENUM
specifically introduces new DNS issues, those MUST be described
within this section.
Such DNS issues include, but are not limited to:
o Assumptions about ownership or administrative control of the
namespace.
o Requirement or need to use DNS wildcards.
o Incompatibility with DNS wildcards.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
o Presence or absence of respective NAPTR Resource Records at
particular levels in the DNS hierarchy (e.g., only for "full"
E.164 numbers or wildcards only).
o Use of any Resource Records (especially non-NAPTR) within or
beyond the e164.arpa namespace other than those needed to resolve
the domain names that appear in the "replacement" URI.
o Potential for significant additional load on the nameserver chain
due to use of the service, and the mitigation of such additional
load.
o Mitigation of potential for DNS loops, specifically in cases where
the result URI of an Enumservice might be used to trigger
additional (subsequent) ENUM queries. This applies in particular
to Enumservices using the 'tel' URI Scheme [<a href="./rfc3966" title=""The tel URI for Telephone Numbers"">RFC3966</a>] or any other
(future) URI Scheme using (E.164) numbers. "The ENUM Dip
Indicator Parameter for the tel URI" [<a href="./rfc4759" title=""The ENUM Dip Indicator Parameter for the "">RFC4759</a>] provides an example
of a loop mitigation mechanism.
Rationale: some Enumservices try to exploit side effects of the DNS
that need to be explicitly discussed.
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. Security Considerations (REQUIRED)</span>
A section explaining any potential security threats that are
especially applicable to the given registration MUST be included.
This MUST also include any information about access to Personally
Identifiable Information (PII).
An Enumservice Specification SHOULD NOT include general and obvious
security recommendations, such as securing servers with strong
password authentication.
For additional background, please note that [<a href="./rfc3552" title=""Guidelines for Writing RFC Text on Security Considerations"">RFC3552</a>] provides
guidance to write a good Security Considerations section. In
addition, [<a href="./rfc6116" title=""The E.164 to Uniform Resource Identifiers (URI) Dynamic Delegation Discovery System (DDDS) Application (ENUM)"">RFC6116</a>] already outlines security considerations
affecting ENUM as a whole. Enumservice Specifications do not need to
and SHOULD NOT repeat considerations already listed in that document.
However, Enumservice Specifications SHOULD include a reference to
that section.
Also, ENUM refers to resources using existing URI Schemes and
protocols. Enumservice Specifications do not need to and SHOULD NOT
repeat security considerations affecting those protocols and URI
Schemes themselves.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
However, in some cases, the inclusion of those protocols and URI
Schemes into ENUM specifically could introduce new security issues.
In these cases, those issues or risks MUST be covered in the
"Security Considerations" section of the Enumservice Specification.
Authors should pay particular attention to any indirect risks that
are associated with a proposed Enumservice, including cases where the
proposed Enumservice could lead to the discovery or disclosure of
Personally Identifiable Information (PII).
<span class="h3"><a class="selflink" id="section-5.7" href="#section-5.7">5.7</a>. IANA Considerations (REQUIRED)</span>
Describe the task IANA needs to fulfill to process the Enumservice
Registration Document.
For example:
This document requests the IANA registration of the Enumservice with
Type "foo" and Subtype "bar" according to the definitions in this
document, [<a href="./rfc6117">RFC6117</a>], and [<a href="./rfc6116" title=""The E.164 to Uniform Resource Identifiers (URI) Dynamic Delegation Discovery System (DDDS) Application (ENUM)"">RFC6116</a>].
For example:
This document requests an update of the IANA registration of the
Enumservice Type "foo" with Subtype "bar", according to the
definitions in this document, [<a href="./rfc6117">RFC6117</a>], and [<a href="./rfc6116" title=""The E.164 to Uniform Resource Identifiers (URI) Dynamic Delegation Discovery System (DDDS) Application (ENUM)"">RFC6116</a>]. Therefore,
in the existing IANA registration for this Enumservice, the
<registrationdocs> element (Enumservice Specification) is enhanced by
adding a supplementary reference that points to this document.
For example:
This document requests an update of the IANA registration of the
Enumservice Type "foo" with all its Subtypes, in order to declare it
deprecated. Therefore, in the existing IANA registration for this
Enumservice, the <usage> element (Intended Usage) is changed to
"DEPRECATED", and the <registrationdocs> element (Enumservice
Specification) is enhanced by adding a supplementary reference that
points to this document.
<span class="h3"><a class="selflink" id="section-5.8" href="#section-5.8">5.8</a>. Other Sections (OPTIONAL)</span>
Other sections beyond those required above MAY be included in an
Enumservice Specification. These sections may relate to the
specifics of the intended use of the Enumservice registration, as
well as to any associated technical, operational, administrative, or
other concerns.
A use case SHOULD be included by the authors of the proposal, so that
experts can better understand the problem the proposal seeks to solve
(intended use of the Enumservice). The inclusion of such a use case
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
will both accelerate the Expert Review process, as well as make any
eventual registration easier to understand and implement by other
parties.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. The Process of Registering New Enumservices</span>
This section is an illustration of the process by which a new
Enumservice Registration Document is submitted for review and
comment, how such proposed Enumservices are reviewed, and how they
are published. This section is a non-normative description of the
process. The normative process is described in [<a href="./rfc5226" title="">RFC5226</a>].
Figure 1 shows what authors of a Registration Document describing an
Enumservice must carry out before said Registration Document can be
formally submitted to IANA for Expert Review. Figure 2 shows the
process from Expert Review onwards.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
+----------------------------+
| Step 1: Read this document |
+----------------------------+
|
V
+-------------------------------+
| Step 2: Write R-D and submit |
+-------------------------------+
|
V
+--------------------------------------------+
| Step 3: Announce R-D and solicit feedback |<--+
+--------------------------------------------+ |
| |
V |
.^. |
. . |
+------------+ . Feed- . +------------+
| Update R-D |<---------< back >------------>| Update R-D |
| and submit | non-sub- . results . substantial | and submit |
+------------+ stantial . in: . changes +------------+
| changes . . needed
| needed Y
| | no changes needed
| V
| +-----------------------------+
+-------->| Step 4: Submit R-D to IANA |
+-----------------------------+
:
:
V
R-D: Registration Document
Figure 1
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Step 1: Read This Document in Detail</span>
This document, particularly in Sections <a href="#section-3">3</a>, <a href="#section-4">4</a>, and <a href="#section-5">5</a>, describes all of
the recommended and required sections, as well as requirements and
suggestions for content of an Enumservice Specification.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Step 2: Write and Submit Registration Document</span>
An Internet-Draft (or another specification as appropriate) must be
written and made publicly available (submitted). The Registration
Document shall follow the guidelines according to Sections <a href="#section-4">4</a> and <a href="#section-5">5</a> of
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
this document. The Review Guidelines for experts are defined in
<a href="#section-7.2">Section 7.2</a>.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. Step 3: Request Comments From the IETF Community</span>
The authors shall send an email to <enum@ietf.org>, in which comments
on the Registration Document are requested. A proper public
reference (a URL is recommended) to the Registration Document must be
included in this email.
Note: The ENUM WG mailing list <enum@ietf.org> will be kept open
after conclusion of the ENUM WG.
The authors should allow a reasonable period of time to elapse, such
as two to four weeks, in order to collect any feedback. The authors
then consider whether or not to take any of those comments into
account, by making changes to the Registration Document and
submitting a revision, or otherwise proceeding. The following
outcomes are open to the authors. The choice of path is left to the
authors' judgement.
Note: Whatever the outcome is, the experts performing the Expert
Review later in the process are not bound to any decision during this
phase.
<span class="h4"><a class="selflink" id="section-6.3.1" href="#section-6.3.1">6.3.1</a>. Outcome 1: No Changes Needed</span>
No changes to the Registration Document are made, and the authors
proceed to Step 4 below.
This outcome is recommended when the feedback received does not lead
to a new revision of the Registration Document.
<span class="h4"><a class="selflink" id="section-6.3.2" href="#section-6.3.2">6.3.2</a>. Outcome 2: Changes, But No Further Comments Requested</span>
The authors update the Registration Document and is/are confident
that all issues are resolved and do not require further discussion.
The authors proceed to Step 4 below.
This outcome is recommended when minor objections have been raised,
or minor changes have been suggested.
<span class="h4"><a class="selflink" id="section-6.3.3" href="#section-6.3.3">6.3.3</a>. Outcome 3: Changes and Further Comments Requested</span>
The authors update and submit the Registration Document, and proceed
to Step 3 above, which involves sending another email to
<enum@ietf.org> to request additional comments for the updated
version.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
This outcome is recommended when substantial objections have been
raised, or substantial changes have been suggested.
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. Step 4: Submit Registration Document to IANA</span>
The authors submit the Registration Document to IANA (using the
<<a href="http://www.iana.org/">http://www.iana.org/</a>> website) for Expert Review.
:
:
V
+-----------------------+
| Step 5: Expert Review |<-------------+
+-----------------------+ |
| |
V |
.^. |
. . |
.---------. . Expert . +------------+
( Bad luck! )<-------- < Review >------------>| Update R-D |
`---------' experts . results . changes | and submit |
reject . in: . required +------------+
. .
Y
| experts approve
V
+-----------------------------------+
| Step 6: Publication of R-D |
+-----------------------------------+
|
V
+---------------------------------------------+
| Step 7: Adding Enumservice to IANA Registry |
+---------------------------------------------+
R-D: Registration Document
Figure 2
<span class="h3"><a class="selflink" id="section-6.5" href="#section-6.5">6.5</a>. Step 5: Expert Review</span>
IANA will take care of the "Expert Review" according to [<a href="./rfc5226" title="">RFC5226</a>].
The Expert Review guidelines are outlined in <a href="#section-7.2">Section 7.2</a> of this
document. The authors must be prepared for further interaction with
IANA and the experts.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h4"><a class="selflink" id="section-6.5.1" href="#section-6.5.1">6.5.1</a>. Outcome 1: Experts Approve the Registration Document</span>
No (more) changes to the Registration Document are made. IANA will
inform the authors, who then will proceed to Step 6 below.
<span class="h4"><a class="selflink" id="section-6.5.2" href="#section-6.5.2">6.5.2</a>. Outcome 2: Changes Required</span>
The experts might require changes before they can approve the
Registration Document. The authors update and submit the
Registration Document. The authors inform the experts about the
available update, who then continue the Expert Review Process.
<span class="h4"><a class="selflink" id="section-6.5.3" href="#section-6.5.3">6.5.3</a>. Outcome 3: Experts Reject the Registration Document</span>
The expert might reject the Registration, which means the Expert
Review process is discontinued.
<span class="h3"><a class="selflink" id="section-6.6" href="#section-6.6">6.6</a>. Step 6: Publication of the Registration Document</span>
The authors are responsible for ensuring that the Registration
Document is published according to "Specification Required" as
defined in [<a href="./rfc5226" title="">RFC5226</a>].
As set out in <a href="#section-3.4">Section 3.4</a> it is strongly RECOMMENDED that Enumservice
Specifications be published RFCs. As to every RFC, the normal IETF
publication process applies (see [<a href="#ref-Instructions2authors">Instructions2authors</a>]); i.e., the
Registration Document is submitted in the form of an Internet Draft
(e.g. via an IETF Working Group or a sponsoring Area Director).
[<a href="#ref-Instructions2authors">Instructions2authors</a>] also contains an option to publish an RFC as
'Independent Submission', which is further described in "Independent
Submissions to the RFC Editor" [<a href="./rfc4846" title=""Independent Submissions to the RFC Editor"">RFC4846</a>].
<span class="h3"><a class="selflink" id="section-6.7" href="#section-6.7">6.7</a>. Step 7: Adding Enumservice to the IANA Registry</span>
In cases where the Registration Document is to be published as an
RFC, the RFC publication process ensures that IANA will add the
Enumservice to the registry.
In cases where the Registration Document is to be published in a
specification other than RFC, the authors must inform IANA, as soon
as the Enumservice Specification has been published according to
"Specification Required" as defined in [<a href="./rfc5226" title="">RFC5226</a>]. The
<registrationdocs> element in the IANA Registration Template must
contain an unambiguous reference to the Enumservice Specification
(see also <a href="#section-5.2">Section 5.2</a>). In addition, the authors must provide IANA
with a stable URL to the Enumservice Specification, in order that
IANA may obtain the information included in the Enumservice
Specification. IANA will then add the Enumservice to the registry.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Expert Review</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Expert Selection Process</span>
According to <a href="./rfc5226#section-3.2">Section 3.2 of [RFC5226]</a>, experts are appointed by the
IESG. The IESG is responsible for ensuring that there is always a
sufficient pool of experts available.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Review Guidelines</span>
Generally, the "Expert Review" process of an Enumservice follows the
guidelines documented in <a href="#section-3.3">Section 3.3</a> of "Guidelines for Writing an
IANA Considerations Section in RFCs" [<a href="./rfc5226" title="">RFC5226</a>]. Note that <a href="./rfc5226">RFC 5226</a>
says 'The review may be wide or narrow, depending on the situation
and the judgment of the designated expert'. Therefore, the following
list should be considered a guideline, rather than a binding list.
In case of conflicts between [<a href="./rfc5226" title="">RFC5226</a>] and the guidelines in this
section, [<a href="./rfc5226" title="">RFC5226</a>] remains authoritative.
The expert evaluates the criteria as set out in [<a href="./rfc5226" title="">RFC5226</a>], and should
additionally consider the following:
o Verify conformance with the ENUM specification [<a href="./rfc6116" title=""The E.164 to Uniform Resource Identifiers (URI) Dynamic Delegation Discovery System (DDDS) Application (ENUM)"">RFC6116</a>].
o Verify that the requirements set out in this document (Sections <a href="#section-3">3</a>
and 5) are met. This includes checking for completeness and
whether all the aspects described in Sections <a href="#section-3">3</a> and <a href="#section-5">5</a> are
sufficiently addressed.
o If a use case is provided, the experts should verify whether the
proposed Enumservice does actually match the use case. The
experts should also determine whether the use case could be
covered by an existing Enumservice.
o Verify that the Enumservice proposed cannot be confused with
identical (or similar) other Enumservices already registered.
o If the Enumservice is classified according to <a href="#section-4.2">Section 4.2</a>, the
experts must verify that the principles of the Class in question
are followed.
o In case the Enumservice is not classified, the experts must verify
whether a convincing reason for the deviation is provided in the
Registration Document.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
o Investigate whether the proposed Enumservice has any negative side
effects on existing clients and infrastructure, particularly the
DNS.
o If the output of processing an Enumservice might be used for input
to more ENUM processing (especially services returning 'tel'
URIs), the experts should verify that the authors have adequately
addressed the issue of potential query loops.
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a>. Appeals</span>
Appeals of Expert Review decisions follow the process described in
<a href="./rfc5226#section-7">Section 7 of [RFC5226]</a> and <a href="./rfc2026#section-6.5">Section 6.5 of [RFC2026]</a>.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Revision of Existing Enumservice Specifications</span>
Many Enumservice registrations, published via IETF RFCs, already
exist at the time of the development of this document. These
existing Enumservice Specifications MAY be revised to comply with the
specifications contained herein. All revisions of Enumservice
Specifications MUST be compliant with the specifications contained
herein.
Note: Enumservice Specifications updated only by [<a href="./rfc6118" title=""Update of Legacy IANA Registrations of Enumservices"">RFC6118</a>] are not
compliant with the specifications contained herein!
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Extension of Existing Enumservice Specifications</span>
There are cases where it is more sensible to extend an existing
Enumservice registration rather than propose a new one. Such cases
include adding a new Subtype to an existing Type. Depending on the
nature of the extension, the original Enumservice Specification needs
to be extended (Updates) or replaced (Obsoletes) [<a href="./rfc2223" title=""Instructions to RFC Authors"">RFC2223</a>].
Specifically, an update is appropriate when a new Subtype is being
added without changes to the existing repertoire. A replacement is
needed if there is a change to the default, or changes to the
assumptions of URI support in clients.
Any Enumservice Specifications for existing Enumservices that are
extended MUST comply with the specifications contained herein. As a
consequence, revisions of existing Enumservice Specifications may be
required according to <a href="#section-8">Section 8</a>.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Security Considerations</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. Considerations Regarding This Document</span>
Since this document does not introduce any new technology, protocol,
or Enumservice Specification, there are no specific security issues
to be considered for this document. However, as this is a guide to
authors of new Enumservice Specifications, the next section should be
considered closely by authors and experts.
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. Enumservice Security Considerations Guideline</span>
Guidelines concerning the Security Considerations section of an
Enumservice Specification can be found in <a href="#section-5.6">Section 5.6</a>.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. IANA Considerations</span>
<span class="h3"><a class="selflink" id="section-11.1" href="#section-11.1">11.1</a>. Registry Update</span>
IANA updated the registry "Enumservice Registrations" as defined in
(this) <a href="#section-11">Section 11</a>, which replaces the old mechanism as defined in
[<a href="./rfc3761" title=""The E.164 to Uniform Resource Identifiers (URI) Dynamic Delegation Discovery System (DDDS) Application (ENUM)"">RFC3761</a>].
It is noted that the process described herein applies only to
ordinary Enumservice registrations (i.e., the registration process of
"X-" Enumservices is beyond the scope of this document, and as per
[<a href="./rfc6116" title=""The E.164 to Uniform Resource Identifiers (URI) Dynamic Delegation Discovery System (DDDS) Application (ENUM)"">RFC6116</a>] "P-" Enumservices will not be registered at all).
<span class="h3"><a class="selflink" id="section-11.2" href="#section-11.2">11.2</a>. Registration Template (XML chunk)</span>
<record>
<class> <!-- Enumservice Class --> </class>
<type> <!-- Type --> </type>
<subtype> <!-- Subtype --> </subtype>
<urischeme> <!-- URI Schema Name --> </urischeme>
<urischeme> <!-- another URI Schema Name --> </urischeme>
<functionalspec>
<paragraph>
<!-- Text that explains the functionality of
the Enumservice to be registered -->
</paragraph>
</functionalspec>
<security>
<!-- Security Considerations of the
Enumservice to be registered -->
</security>
<usage> <!-- COMMON, LIMITED USE, or OBSOLETE --> </usage>
<registrationdocs>
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<!-- Change accordingly -->
<xref type="rfc" data="<a href="./rfc2551">rfc2551</a>"/>
</registrationdocs>
<requesters>
<!-- Change accordingly -->
<xref type="person" data="John_Doe"/>
<xref type="person" data="Jane_Dale"/>
</requesters>
<additionalinfo>
<paragraph>
<!-- Text with additional information about
the Enumservice to be registered -->
</paragraph>
<artwork>
<!-- There can be artwork sections, too -->
:-)
</artwork>
</additionalinfo>
</record>
<people>
<person id="John_Doe">
<name> <!-- Firstname Lastname --> </name>
<org> <!-- Organisation Name --> </org>
<uri> <!-- mailto: or http: URI --> </uri>
<updated> <!-- date format YYYY-MM-DD --> </updated>
</person>
<!-- repeat person section for each person -->
</people>
Authors of an Enumservice Specification are encouraged to use these
XML chunks as a template to create the IANA Registration Template.
Examples for the use of this template are contained in <a href="#appendix-A">Appendix A</a>.
<span class="h3"><a class="selflink" id="section-11.3" href="#section-11.3">11.3</a>. Location</span>
Approved Enumservice registrations are published in the IANA registry
named "Enumservice Registrations", which is available at the
following URI:
<<a href="http://www.iana.org/assignments/enum-services">http://www.iana.org/assignments/enum-services</a>>.
This registry publishes representations derived from the IANA
Registration Template as described in <a href="#section-11.2">Section 11.2</a> and specified in
<a href="#section-5.2">Section 5.2</a>.
Where the Enumservice Specification is not an RFC, IANA must hold an
escrow copy of that Enumservice Specification. Said escrow copy will
act as the master reference for that Enumservice registration.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h3"><a class="selflink" id="section-11.4" href="#section-11.4">11.4</a>. Structure</span>
IANA maintains the Enumservice Registry sorted in alphabetical order.
The first sort field is Type, the second is Subtype.
[<a id="ref-RFC6118">RFC6118</a>] updates the existing Enumservices by transforming them into
the new XML-chunk-based IANA Registration Template (see also
<a href="#section-8">Section 8</a>).
<span class="h3"><a class="selflink" id="section-11.5" href="#section-11.5">11.5</a>. Expert Review Procedure</span>
Whenever a Registration Document is submitted via the IANA website,
IANA will take care of the "Expert Review" process according to
"Guidelines for Writing an IANA Considerations Section in RFCs"
[<a href="./rfc5226" title="">RFC5226</a>].
To prevent clashes, IANA will check whether a request with identical
"type:subtype" (or "type" without Subtype) was submitted for Expert
Review earlier and will inform the experts accordingly. The experts
are authorized to resolve clashes as they see fit. The requesters
may need to update their registration request before getting expert
approval.
Once the experts have conditionally approved the Enumservice, IANA
will inform the authors. This information should also include a
reminder that (i) the authors are now responsible for publication of
the Registration Document (see also <a href="#section-6.6">Section 6.6</a>) and (ii) the
Enumservice will be added to the IANA registry only after its
Enumservice Specification is published according to the
"Specification Required" policy as defined in [<a href="./rfc5226" title="">RFC5226</a>] (see also
<a href="#section-6.7">Section 6.7</a>).
Note: After sending the approval note to the authors, IANA has no
further responsibilities besides keeping internal records of approved
Registration Documents. IANA will be involved again at registration
of the Enumservice (see <a href="#section-11.6">Section 11.6</a>).
<span class="h3"><a class="selflink" id="section-11.6" href="#section-11.6">11.6</a>. Registration Procedure</span>
There is a slight difference in process depending on whether or not
the Enumservice Specification will be published as an RFC. The
reason for this difference lies in the current RFC publication
process that includes IANA interaction shortly before publication of
an RFC.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h4"><a class="selflink" id="section-11.6.1" href="#section-11.6.1">11.6.1</a>. Published as an RFC</span>
As per the RFC publication process, IANA will receive the Enumservice
Specification to carry out IANA actions shortly before publication of
the RFC. The IANA action will be to register the Enumservice, i.e.,
add the Enumservice to the IANA "Enumservice Registrations" registry
(see also <a href="#section-11.3">Section 11.3</a>).
IANA must only add Enumservices to the Registry, if the experts have
(conditionally) approved the corresponding Enumservice Specification.
IANA should attempt to resolve possible conflicts arising from this
together with the experts. In case there are substantial changes
between the (conditionally) approved and the to be published version,
IANA may reject the request after consulting the experts.
IANA must ensure that any further substantial changes the Enumservice
Specification might undergo before final RFC publication are approved
by the experts.
Note: Clearly editorial changes (such as typos) or minor changes in
purely editorial sections (such as Authors' Addresses,
Acknowledgments, References, and alike) are not considered
substantial.
<span class="h4"><a class="selflink" id="section-11.6.2" href="#section-11.6.2">11.6.2</a>. Published as a Non-RFC</span>
Once the authors have informed IANA about the publication, IANA must
ensure that the requirements for "Specification Required" as defined
in [<a href="./rfc5226" title="">RFC5226</a>] are met, the reference to the specification is
unambiguous, and the content of the Enumservice Specification is
identical to the Registration Document as approved by the experts.
IANA will then register the Enumservice, i.e., add the Enumservice to
the IANA "Enumservice Registrations" registry, and make an escrow
copy (see also <a href="#section-11.3">Section 11.3</a>).
IANA must only add Enumservices to the Registry, if the experts have
approved the corresponding Enumservice Specification. IANA should
attempt to resolve possible conflicts arising from this together with
the experts. In case there are substantial changes between the
approved and the published version, IANA may reject the request after
consulting the experts.
Note: Clearly editorial changes (such as typos) or minor changes in
purely editorial sections (such as Authors' Addresses,
Acknowledgments, References, and alike) are not considered
substantial.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h3"><a class="selflink" id="section-11.7" href="#section-11.7">11.7</a>. Change Control</span>
Change control of any Enumservice registrations is done by
"Specification Required", which implies the use of a Designated
Expert, according to [<a href="./rfc5226" title="">RFC5226</a>]. Updates of Enumservice
Specifications MUST comply with the requirements described in this
document. Updates are handled the same way as initial Enumservice
registrations.
Authorized Change Controllers are the experts and the IESG.
Enumservice registrations must not be deleted. An Enumservice that
is believed to be no longer appropriate for use can be declared
deprecated by publication of a new Enumservice Specification,
changing the Enumservice <usage> element (Intended Usage) to
"DEPRECATED"; such Enumservices will be clearly marked in the lists
published by IANA. As obsoletions are updates, they are also handled
the same way as initial Enumservice registrations. Alternatively,
Enumservices may be declared deprecated by an IESG action.
<span class="h3"><a class="selflink" id="section-11.8" href="#section-11.8">11.8</a>. Restrictions</span>
As stated in <a href="#section-3.2">Section 3.2</a>, a "-" (dash) MUST NOT be used as the first
nor as the second nor as the last character of a Type or a Subtype.
Furthermore, Type or Subtype of any Enumservice MUST NOT be set to,
nor start with, "E2U". Any Enumservice registration requests not
following these restrictions must be rejected by IANA, and the Expert
Review process should not be initiated.
<a href="#section-5.2">Section 5.2</a> contains examples for Enumservice registrations.
Therefore, IANA must not register an Enumservice with Type or Subtype
set to "foo", "bar", or "sbar", unless the experts explicitly confirm
an exception.
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Acknowledgments</span>
The authors would like to thank the following people who have
provided feedback or significant contributions to the development of
this document: Jari Arkko, Stewart Bryant, Gonzalo Camarillo,
Lawrence Conroy, Michelle Cotton, Miguel Garcia, David Harrington,
Alfred Hoenes, Ari Keranen, Peter Koch, Edward Lewis, Alexey
Melnikov, Jon Peterson, Pekka Savola, and Peter Saint-Andre.
Lawrence Conroy has provided extensive text for the Enumservice
Classification section.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<a href="./rfc3761#section-3">Section 3 of [RFC3761]</a>, which was edited by Patrik Faltstrom and
Michael Mealling, has been incorporated into this document. Please
see the Acknowledgments section in <a href="./rfc3761">RFC 3761</a> for additional
acknowledgments.
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. References</span>
<span class="h3"><a class="selflink" id="section-13.1" href="#section-13.1">13.1</a>. Normative References</span>
[<a id="ref-RFC2026">RFC2026</a>] Bradner, S., "The Internet Standards Process -- Revision
3", <a href="https://www.rfc-editor.org/bcp/bcp9">BCP 9</a>, <a href="./rfc2026">RFC 2026</a>, October 1996.
[<a id="ref-RFC2119">RFC2119</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-RFC3402">RFC3402</a>] Mealling, M., "Dynamic Delegation Discovery System (DDDS)
Part Two: The Algorithm", <a href="./rfc3402">RFC 3402</a>, October 2002.
[<a id="ref-RFC3403">RFC3403</a>] Mealling, M., "Dynamic Delegation Discovery System (DDDS)
Part Three: The Domain Name System (DNS) Database",
<a href="./rfc3403">RFC 3403</a>, October 2002.
[<a id="ref-RFC3761">RFC3761</a>] Faltstrom, P. and M. Mealling, "The E.164 to Uniform
Resource Identifiers (URI) Dynamic Delegation Discovery
System (DDDS) Application (ENUM)", <a href="./rfc3761">RFC 3761</a>, April 2004.
[<a id="ref-RFC3986">RFC3986</a>] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform
Resource Identifier (URI): Generic Syntax", STD 66,
<a href="./rfc3986">RFC 3986</a>, January 2005.
[<a id="ref-RFC5226">RFC5226</a>] Narten, T. and H. Alvestrand, "Guidelines for Writing an
IANA Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc5226">RFC 5226</a>,
May 2008.
[<a id="ref-RFC6116">RFC6116</a>] Bradner, S., Conroy, L., and K. Fujiwara, "The E.164 to
Uniform Resource Identifiers (URI) Dynamic Delegation
Discovery System (DDDS) Application (ENUM)", <a href="./rfc6116">RFC 6116</a>,
March 2011.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h3"><a class="selflink" id="section-13.2" href="#section-13.2">13.2</a>. Informative References</span>
[<a id="ref-ITU.E164.2005">ITU.E164.2005</a>]
International Telecommunications Union, "The International
Public Telecommunication Numbering Plan", ITU-
T Recommendation E.164, Feb 2005.
[<a id="ref-Instructions2authors">Instructions2authors</a>]
Reynolds, J. and R. Braden, "Instructions to Request for
Comments (RFC) Authors", RFC Editor <a href="http://www.rfc-editor.org/rfc-editor/instructions2authors.txt">http://</a>
<a href="http://www.rfc-editor.org/rfc-editor/instructions2authors.txt">www.rfc-editor.org/rfc-editor/instructions2authors.txt</a>,
August 2004.
[<a id="ref-RFC1035">RFC1035</a>] Mockapetris, P., "Domain names - implementation and
specification", STD 13, <a href="./rfc1035">RFC 1035</a>, November 1987.
[<a id="ref-RFC2223">RFC2223</a>] Postel, J. and J. Reynolds, "Instructions to RFC Authors",
<a href="./rfc2223">RFC 2223</a>, October 1997.
[<a id="ref-RFC2606">RFC2606</a>] Eastlake, D. and A. Panitz, "Reserved Top Level DNS
Names", <a href="https://www.rfc-editor.org/bcp/bcp32">BCP 32</a>, <a href="./rfc2606">RFC 2606</a>, June 1999.
[<a id="ref-RFC2780">RFC2780</a>] Bradner, S. and V. Paxson, "IANA Allocation Guidelines For
Values In the Internet Protocol and Related Headers",
<a href="https://www.rfc-editor.org/bcp/bcp37">BCP 37</a>, <a href="./rfc2780">RFC 2780</a>, March 2000.
[<a id="ref-RFC3552">RFC3552</a>] Rescorla, E. and B. Korver, "Guidelines for Writing RFC
Text on Security Considerations", <a href="https://www.rfc-editor.org/bcp/bcp72">BCP 72</a>, <a href="./rfc3552">RFC 3552</a>,
July 2003.
[<a id="ref-RFC3764">RFC3764</a>] Peterson, J., "enumservice registration for Session
Initiation Protocol (SIP) Addresses-of-Record", <a href="./rfc3764">RFC 3764</a>,
April 2004.
[<a id="ref-RFC3966">RFC3966</a>] Schulzrinne, H., "The tel URI for Telephone Numbers",
<a href="./rfc3966">RFC 3966</a>, December 2004.
[<a id="ref-RFC4238">RFC4238</a>] Vaudreuil, G., "Voice Message Routing Service", <a href="./rfc4238">RFC 4238</a>,
October 2005.
[<a id="ref-RFC4759">RFC4759</a>] Stastny, R., Shockey, R., and L. Conroy, "The ENUM Dip
Indicator Parameter for the "tel" URI", <a href="./rfc4759">RFC 4759</a>,
December 2006.
[<a id="ref-RFC4846">RFC4846</a>] Klensin, J. and D. Thaler, "Independent Submissions to the
RFC Editor", <a href="./rfc4846">RFC 4846</a>, July 2007.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
[<a id="ref-RFC4969">RFC4969</a>] Mayrhofer, A., "IANA Registration for vCard Enumservice",
<a href="./rfc4969">RFC 4969</a>, August 2007.
[<a id="ref-RFC4979">RFC4979</a>] Mayrhofer, A., "IANA Registration for Enumservice 'XMPP'",
<a href="./rfc4979">RFC 4979</a>, August 2007.
[<a id="ref-RFC5234">RFC5234</a>] Crocker, D. and P. Overell, "Augmented BNF for Syntax
Specifications: ABNF", STD 68, <a href="./rfc5234">RFC 5234</a>, January 2008.
[<a id="ref-RFC6118">RFC6118</a>] Hoeneisen, B. and A. Mayrhofer, "Update of Legacy IANA
Registrations of Enumservices", <a href="./rfc6118">RFC 6118</a>, March 2011.
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. IANA Registration Template Examples</span>
This section contains non-normative examples of the XML-chunk-based
IANA Registration Template:
This is the first example:
<record>
<class>Protocol-Based</class>
<type>email</type>
<subtype>mailto</subtype>
<urischeme>mailto</urischeme>
<functionalspec>
<paragraph>
This Enumservice indicates that the resource
can be addressed by the associated URI in
order to send an email.
</paragraph>
</functionalspec>
<security>
See <xref type="rfc" data="<a href="./rfc4355">rfc4355</a>"/>, <a href="#section-6">Section 6</a>.
</security>
<usage>COMMON</usage>
<registrationdocs>
<xref type="rfc" data="<a href="./rfc4355">rfc4355</a>"/>
</registrationdocs>
<requesters>
<xref type="person" data="Lawrence_Conroy"/>
</requesters>
</record>
<people>
<person id="Lawrence_Conroy">
<name>Lawrence Conroy</name>
<org>Siemens Roke Manor Research</org>
<uri>mailto:lwc@roke.co.uk</uri>
<updated>2008-11-20</updated>
</person>
</people>
<span class="grey">Hoeneisen, 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="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
This is the second example.
<record>
<class>Protocol-Based</class>
<type>xmpp</type>
<urischeme>xmpp</urischeme>
<functionalspec>
<paragraph>
This Enumservice indicates that the
resource identified is an XMPP entity.
</paragraph>
</functionalspec>
<security>
See <xref type="rfc" data="<a href="./rfc4979">rfc4979</a>"/>, <a href="#section-6">Section 6</a>.
</security>
<usage>COMMON</usage>
<registrationdocs>
<xref type="rfc" data="<a href="./rfc4979">rfc4979</a>"/>
</registrationdocs>
<requesters>
<xref type="person" data="Alexander_Mayrhofer"/>
</requesters>
</record>
<people>
<person id="Alexander_Mayrhofer">
<name>Alexander Mayrhofer</name>
<org>enum.at GmbH</org>
<uri>mailto:alexander.mayrhofer@enum.at</uri>
<updated>2008-10-10</updated>
</person>
</people>
<span class="grey">Hoeneisen, et al. Standards Track [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
This is the third example:
<record>
<class>Application-Based</class>
<type>voicemsg</type>
<subtype>sip</subtype>
<urischeme>sip</urischeme>
<functionalspec>
<paragraph>
This Enumservice indicates that the resource
identified can be addressed by the associated
URI scheme in order to initiate a voice
communication session to a voice messaging system.
</paragraph>
</functionalspec>
<security>
See <xref type="rfc" data="<a href="./rfc4279">rfc4279</a>"/>, <a href="#section-3">Section 3</a>.
</security>
<usage>COMMON</usage>
<registrationdocs>
<xref type="rfc" data="<a href="./rfc4279">rfc4279</a>"/>
</registrationdocs>
<requesters>
<xref type="person" data="Jason_Livingood"/>
<xref type="person" data="Donald_Troshynski"/>
</requesters>
<additionalinfo>
<paragraph>
Implementers should review a non-exclusive list of
examples in <xref type="rfc" data="<a href="./rfc4279">rfc4279</a>"/>,
<a href="#section-7">Section 7</a>.
</paragraph>
</additionalinfo>
</record>
<people>
<person id="Jason_Livingood">
<name>Jason Livingood</name>
<org>Comcast Cable Communications</org>
<uri>mailto:jason_livingood@cable.comcast.com</uri>
<updated>2008-11-20</updated>
</person>
<span class="grey">Hoeneisen, et al. Standards Track [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
<person id="Donald_Troshynski">
<name>Donald Troshynski</name>
<org>Acme Packet</org>
<uri>mailto:dtroshynski@acmepacket.com</uri>
<updated>2008-11-20</updated>
</person>
</people>
In the third IANA Registration Template example above, the "voicemsg"
Enumservice is used. This Enumservice actually has several Subtypes,
and one of those is shown in the example. For each Subtype, an
individual Registration Template must be submitted to IANA, so that
an Enumservice with several Subtypes will have several corresponding
IANA Registration Templates. This is to avoid any ambiguity of the
relation between <subtype> and <urischeme> elements.
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. Changes from <a href="./rfc3761">RFC 3761</a></span>
This section lists the changes applied to the Enumservice
registration process and the IANA registry definition, compared to
<a href="./rfc3761">RFC 3761</a>.
o While <a href="./rfc3761">RFC 3761</a> required "Standards track or Experimental" RFCs for
an Enumservice to be registered, this document mandates
"Specification Required", which implies the use of a Designated
Expert.
o This document defines the classification of Enumservices. The
IANA Registration Template has been complemented to contain a
<class> element (Enumservice Class).
o A new element <registrationdocs> (Enumservice Specification) has
been added to the IANA Registration Template.
o The former field "Any other information that the author deems
interesting" of the IANA Registration Template turned into the
<additionalinfo> element (Further Information).
o The Enumservice "Name" field has been removed from the IANA
Registration Template.
o The Registration Template is now a chunk of XML data, reflecting
IANA's recent work to convert registries to XML.
<span class="grey">Hoeneisen, et al. Standards Track [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc6117">RFC 6117</a> IANA Registration of Enumservices March 2011</span>
Authors' Addresses
Bernie Hoeneisen
Ucom Standards Track Solutions GmbH
CH-8000 Zuerich
Switzerland
Phone: +41 44 500 52 44
EMail: bernie@ietf.hoeneisen.ch (bernhard.hoeneisen AT ucom.ch)
URI: <a href="http://www.ucom.ch/">http://www.ucom.ch/</a>
Alexander Mayrhofer
enum.at GmbH
Karlsplatz 1/9
Wien A-1010
Austria
Phone: +43 1 5056416 34
EMail: alexander.mayrhofer@enum.at
URI: <a href="http://www.enum.at/">http://www.enum.at/</a>
Jason Livingood
Comcast Cable Communications
One Comcast Center
1701 John F. Kennedy Boulevard
Philadelphia, PA 19103
USA
Phone: +1-215-286-7813
EMail: jason_livingood@cable.comcast.com
URI: <a href="http://www.comcast.com/">http://www.comcast.com/</a>
Hoeneisen, et al. Standards Track [Page 40]
</pre>
|