1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377
|
<!DOCTYPE html>
<html lang="en" class="RFC STD">
<head>
<meta charset="utf-8">
<meta content="Common,Latin" name="scripts">
<meta content="initial-scale=1.0" name="viewport">
<title>RFC 9083: JSON Responses for the Registration Data Access Protocol (RDAP)</title>
<meta content="Scott Hollenbeck" name="author">
<meta content="Andy Newton" name="author">
<meta content="
This document describes JSON data structures representing
registration information maintained by Regional Internet Registries
(RIRs) and Domain Name Registries (DNRs). These data structures are
used to form Registration Data Access Protocol (RDAP) query
responses. This document obsoletes RFC 7483.
" name="description">
<meta content="xml2rfc 3.8.0" name="generator">
<meta content="9083" name="rfc.number">
<!-- Generator version information:
xml2rfc 3.8.0
Python 3.6.10
appdirs 1.4.4
ConfigArgParse 1.2.3
google-i18n-address 2.3.5
html5lib 1.0.1
intervaltree 3.0.2
Jinja2 2.11.2
kitchen 1.2.6
lxml 4.4.2
pycairo 1.19.0
pycountry 19.8.18
pyflakes 2.1.1
PyYAML 5.3.1
requests 2.22.0
setuptools 40.6.2
six 1.14.0
WeasyPrint 51
-->
<link href="rfc9083.xml" rel="alternate" type="application/rfc+xml">
<link href="#copyright" rel="license">
<style type="text/css">/*
NOTE: Changes at the bottom of this file overrides some earlier settings.
Once the style has stabilized and has been adopted as an official RFC style,
this can be consolidated so that style settings occur only in one place, but
for now the contents of this file consists first of the initial CSS work as
provided to the RFC Formatter (xml2rfc) work, followed by itemized and
commented changes found necssary during the development of the v3
formatters.
*/
/* fonts */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans'); /* Sans-serif */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif'); /* Serif (print) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); /* Monospace */
@viewport {
zoom: 1.0;
width: extend-to-zoom;
}
@-ms-viewport {
width: extend-to-zoom;
zoom: 1.0;
}
/* general and mobile first */
html {
}
body {
max-width: 90%;
margin: 1.5em auto;
color: #222;
background-color: #fff;
font-size: 14px;
font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
line-height: 1.6;
scroll-behavior: smooth;
}
.ears {
display: none;
}
/* headings */
#title, h1, h2, h3, h4, h5, h6 {
margin: 1em 0 0.5em;
font-weight: bold;
line-height: 1.3;
}
#title {
clear: both;
border-bottom: 1px solid #ddd;
margin: 0 0 0.5em 0;
padding: 1em 0 0.5em;
}
.author {
padding-bottom: 4px;
}
h1 {
font-size: 26px;
margin: 1em 0;
}
h2 {
font-size: 22px;
margin-top: -20px; /* provide offset for in-page anchors */
padding-top: 33px;
}
h3 {
font-size: 18px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h4 {
font-size: 16px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h5, h6 {
font-size: 14px;
}
#n-copyright-notice {
border-bottom: 1px solid #ddd;
padding-bottom: 1em;
margin-bottom: 1em;
}
/* general structure */
p {
padding: 0;
margin: 0 0 1em 0;
text-align: left;
}
div, span {
position: relative;
}
div {
margin: 0;
}
.alignRight.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignRight.art-text pre {
padding: 0;
}
.alignRight {
margin: 1em 0;
}
.alignRight > *:first-child {
border: none;
margin: 0;
float: right;
clear: both;
}
.alignRight > *:nth-child(2) {
clear: both;
display: block;
border: none;
}
svg {
display: block;
}
.alignCenter.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignCenter.art-text pre {
padding: 0;
}
.alignCenter {
margin: 1em 0;
}
.alignCenter > *:first-child {
border: none;
/* this isn't optimal, but it's an existence proof. PrinceXML doesn't
support flexbox yet.
*/
display: table;
margin: 0 auto;
}
/* lists */
ol, ul {
padding: 0;
margin: 0 0 1em 2em;
}
ol ol, ul ul, ol ul, ul ol {
margin-left: 1em;
}
li {
margin: 0 0 0.25em 0;
}
.ulCompact li {
margin: 0;
}
ul.empty, .ulEmpty {
list-style-type: none;
}
ul.empty li, .ulEmpty li {
margin-top: 0.5em;
}
ul.compact, .ulCompact,
ol.compact, .olCompact {
line-height: 100%;
margin: 0 0 0 2em;
}
/* definition lists */
dl {
}
dl > dt {
float: left;
margin-right: 1em;
}
/*
dl.nohang > dt {
float: none;
}
*/
dl > dd {
margin-bottom: .8em;
min-height: 1.3em;
}
dl.compact > dd, .dlCompact > dd {
margin-bottom: 0em;
}
dl > dd > dl {
margin-top: 0.5em;
margin-bottom: 0em;
}
/* links */
a {
text-decoration: none;
}
a[href] {
color: #22e; /* Arlen: WCAG 2019 */
}
a[href]:hover {
background-color: #f2f2f2;
}
figcaption a[href],
a[href].selfRef {
color: #222;
}
/* XXX probably not this:
a.selfRef:hover {
background-color: transparent;
cursor: default;
} */
/* Figures */
tt, code, pre, code {
background-color: #f9f9f9;
font-family: 'Roboto Mono', monospace;
}
pre {
border: 1px solid #eee;
margin: 0;
padding: 1em;
}
img {
max-width: 100%;
}
figure {
margin: 0;
}
figure blockquote {
margin: 0.8em 0.4em 0.4em;
}
figcaption {
font-style: italic;
margin: 0 0 1em 0;
}
@media screen {
pre {
overflow-x: auto;
max-width: 100%;
max-width: calc(100% - 22px);
}
}
/* aside, blockquote */
aside, blockquote {
margin-left: 0;
padding: 1.2em 2em;
}
blockquote {
background-color: #f9f9f9;
color: #111; /* Arlen: WCAG 2019 */
border: 1px solid #ddd;
border-radius: 3px;
margin: 1em 0;
}
cite {
display: block;
text-align: right;
font-style: italic;
}
/* tables */
table {
width: 100%;
margin: 0 0 1em;
border-collapse: collapse;
border: 1px solid #eee;
}
th, td {
text-align: left;
vertical-align: top;
padding: 0.5em 0.75em;
}
th {
text-align: left;
background-color: #e9e9e9;
}
tr:nth-child(2n+1) > td {
background-color: #f5f5f5;
}
table caption {
font-style: italic;
margin: 0;
padding: 0;
text-align: left;
}
table p {
/* XXX to avoid bottom margin on table row signifiers. If paragraphs should
be allowed within tables more generally, it would be far better to select on a class. */
margin: 0;
}
/* pilcrow */
a.pilcrow {
color: #666; /* Arlen: AHDJ 2019 */
text-decoration: none;
visibility: hidden;
user-select: none;
-ms-user-select: none;
-o-user-select:none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
@media screen {
aside:hover > a.pilcrow,
p:hover > a.pilcrow,
blockquote:hover > a.pilcrow,
div:hover > a.pilcrow,
li:hover > a.pilcrow,
pre:hover > a.pilcrow {
visibility: visible;
}
a.pilcrow:hover {
background-color: transparent;
}
}
/* misc */
hr {
border: 0;
border-top: 1px solid #eee;
}
.bcp14 {
font-variant: small-caps;
}
.role {
font-variant: all-small-caps;
}
/* info block */
#identifiers {
margin: 0;
font-size: 0.9em;
}
#identifiers dt {
width: 3em;
clear: left;
}
#identifiers dd {
float: left;
margin-bottom: 0;
}
#identifiers .authors .author {
display: inline-block;
margin-right: 1.5em;
}
#identifiers .authors .org {
font-style: italic;
}
/* The prepared/rendered info at the very bottom of the page */
.docInfo {
color: #666; /* Arlen: WCAG 2019 */
font-size: 0.9em;
font-style: italic;
margin-top: 2em;
}
.docInfo .prepared {
float: left;
}
.docInfo .prepared {
float: right;
}
/* table of contents */
#toc {
padding: 0.75em 0 2em 0;
margin-bottom: 1em;
}
nav.toc ul {
margin: 0 0.5em 0 0;
padding: 0;
list-style: none;
}
nav.toc li {
line-height: 1.3em;
margin: 0.75em 0;
padding-left: 1.2em;
text-indent: -1.2em;
}
/* references */
.references dt {
text-align: right;
font-weight: bold;
min-width: 7em;
}
.references dd {
margin-left: 8em;
overflow: auto;
}
.refInstance {
margin-bottom: 1.25em;
}
.references .ascii {
margin-bottom: 0.25em;
}
/* index */
.index ul {
margin: 0 0 0 1em;
padding: 0;
list-style: none;
}
.index ul ul {
margin: 0;
}
.index li {
margin: 0;
text-indent: -2em;
padding-left: 2em;
padding-bottom: 5px;
}
.indexIndex {
margin: 0.5em 0 1em;
}
.index a {
font-weight: 700;
}
/* make the index two-column on all but the smallest screens */
@media (min-width: 600px) {
.index ul {
-moz-column-count: 2;
-moz-column-gap: 20px;
}
.index ul ul {
-moz-column-count: 1;
-moz-column-gap: 0;
}
}
/* authors */
address.vcard {
font-style: normal;
margin: 1em 0;
}
address.vcard .nameRole {
font-weight: 700;
margin-left: 0;
}
address.vcard .label {
font-family: "Noto Sans",Arial,Helvetica,sans-serif;
margin: 0.5em 0;
}
address.vcard .type {
display: none;
}
.alternative-contact {
margin: 1.5em 0 1em;
}
hr.addr {
border-top: 1px dashed;
margin: 0;
color: #ddd;
max-width: calc(100% - 16px);
}
/* temporary notes */
.rfcEditorRemove::before {
position: absolute;
top: 0.2em;
right: 0.2em;
padding: 0.2em;
content: "The RFC Editor will remove this note";
color: #9e2a00; /* Arlen: WCAG 2019 */
background-color: #ffd; /* Arlen: WCAG 2019 */
}
.rfcEditorRemove {
position: relative;
padding-top: 1.8em;
background-color: #ffd; /* Arlen: WCAG 2019 */
border-radius: 3px;
}
.cref {
background-color: #ffd; /* Arlen: WCAG 2019 */
padding: 2px 4px;
}
.crefSource {
font-style: italic;
}
/* alternative layout for smaller screens */
@media screen and (max-width: 1023px) {
body {
padding-top: 2em;
}
#title {
padding: 1em 0;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 20px;
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 38px;
}
#identifiers dd {
max-width: 60%;
}
#toc {
position: fixed;
z-index: 2;
top: 0;
right: 0;
padding: 0;
margin: 0;
background-color: inherit;
border-bottom: 1px solid #ccc;
}
#toc h2 {
margin: -1px 0 0 0;
padding: 4px 0 4px 6px;
padding-right: 1em;
min-width: 190px;
font-size: 1.1em;
text-align: right;
background-color: #444;
color: white;
cursor: pointer;
}
#toc h2::before { /* css hamburger */
float: right;
position: relative;
width: 1em;
height: 1px;
left: -164px;
margin: 6px 0 0 0;
background: white none repeat scroll 0 0;
box-shadow: 0 4px 0 0 white, 0 8px 0 0 white;
content: "";
}
#toc nav {
display: none;
padding: 0.5em 1em 1em;
overflow: auto;
height: calc(100vh - 48px);
border-left: 1px solid #ddd;
}
}
/* alternative layout for wide screens */
@media screen and (min-width: 1024px) {
body {
max-width: 724px;
margin: 42px auto;
padding-left: 1.5em;
padding-right: 29em;
}
#toc {
position: fixed;
top: 42px;
right: 42px;
width: 25%;
margin: 0;
padding: 0 1em;
z-index: 1;
}
#toc h2 {
border-top: none;
border-bottom: 1px solid #ddd;
font-size: 1em;
font-weight: normal;
margin: 0;
padding: 0.25em 1em 1em 0;
}
#toc nav {
display: block;
height: calc(90vh - 84px);
bottom: 0;
padding: 0.5em 0 0;
overflow: auto;
}
img { /* future proofing */
max-width: 100%;
height: auto;
}
}
/* pagination */
@media print {
body {
width: 100%;
}
p {
orphans: 3;
widows: 3;
}
#n-copyright-notice {
border-bottom: none;
}
#toc, #n-introduction {
page-break-before: always;
}
#toc {
border-top: none;
padding-top: 0;
}
figure, pre {
page-break-inside: avoid;
}
figure {
overflow: scroll;
}
h1, h2, h3, h4, h5, h6 {
page-break-after: avoid;
}
h2+*, h3+*, h4+*, h5+*, h6+* {
page-break-before: avoid;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
font-size: 10pt;
}
table {
border: 1px solid #ddd;
}
td {
border-top: 1px solid #ddd;
}
}
/* This is commented out here, as the string-set: doesn't
pass W3C validation currently */
/*
.ears thead .left {
string-set: ears-top-left content();
}
.ears thead .center {
string-set: ears-top-center content();
}
.ears thead .right {
string-set: ears-top-right content();
}
.ears tfoot .left {
string-set: ears-bottom-left content();
}
.ears tfoot .center {
string-set: ears-bottom-center content();
}
.ears tfoot .right {
string-set: ears-bottom-right content();
}
*/
@page :first {
padding-top: 0;
@top-left {
content: normal;
border: none;
}
@top-center {
content: normal;
border: none;
}
@top-right {
content: normal;
border: none;
}
}
@page {
size: A4;
margin-bottom: 45mm;
padding-top: 20px;
/* The follwing is commented out here, but set appropriately by in code, as
the content depends on the document */
/*
@top-left {
content: 'Internet-Draft';
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-left {
content: string(ears-top-left);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-center {
content: string(ears-top-center);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-right {
content: string(ears-top-right);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@bottom-left {
content: string(ears-bottom-left);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-center {
content: string(ears-bottom-center);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-right {
content: '[Page ' counter(page) ']';
vertical-align: top;
border-top: solid 1px #ccc;
}
*/
}
/* Changes introduced to fix issues found during implementation */
/* Make sure links are clickable even if overlapped by following H* */
a {
z-index: 2;
}
/* Separate body from document info even without intervening H1 */
section {
clear: both;
}
/* Top align author divs, to avoid names without organization dropping level with org names */
.author {
vertical-align: top;
}
/* Leave room in document info to show Internet-Draft on one line */
#identifiers dt {
width: 8em;
}
/* Don't waste quite as much whitespace between label and value in doc info */
#identifiers dd {
margin-left: 1em;
}
/* Give floating toc a background color (needed when it's a div inside section */
#toc {
background-color: white;
}
/* Make the collapsed ToC header render white on gray also when it's a link */
@media screen and (max-width: 1023px) {
#toc h2 a,
#toc h2 a:link,
#toc h2 a:focus,
#toc h2 a:hover,
#toc a.toplink,
#toc a.toplink:hover {
color: white;
background-color: #444;
text-decoration: none;
}
}
/* Give the bottom of the ToC some whitespace */
@media screen and (min-width: 1024px) {
#toc {
padding: 0 0 1em 1em;
}
}
/* Style section numbers with more space between number and title */
.section-number {
padding-right: 0.5em;
}
/* prevent monospace from becoming overly large */
tt, code, pre, code {
font-size: 95%;
}
/* Fix the height/width aspect for ascii art*/
pre.sourcecode,
.art-text pre {
line-height: 1.12;
}
/* Add styling for a link in the ToC that points to the top of the document */
a.toplink {
float: right;
margin-right: 0.5em;
}
/* Fix the dl styling to match the RFC 7992 attributes */
dl > dt,
dl.dlParallel > dt {
float: left;
margin-right: 1em;
}
dl.dlNewline > dt {
float: none;
}
/* Provide styling for table cell text alignment */
table td.text-left,
table th.text-left {
text-align: left;
}
table td.text-center,
table th.text-center {
text-align: center;
}
table td.text-right,
table th.text-right {
text-align: right;
}
/* Make the alternative author contact informatio look less like just another
author, and group it closer with the primary author contact information */
.alternative-contact {
margin: 0.5em 0 0.25em 0;
}
address .non-ascii {
margin: 0 0 0 2em;
}
/* With it being possible to set tables with alignment
left, center, and right, { width: 100%; } does not make sense */
table {
width: auto;
}
/* Avoid reference text that sits in a block with very wide left margin,
because of a long floating dt label.*/
.references dd {
overflow: visible;
}
/* Control caption placement */
caption {
caption-side: bottom;
}
/* Limit the width of the author address vcard, so names in right-to-left
script don't end up on the other side of the page. */
address.vcard {
max-width: 30em;
margin-right: auto;
}
/* For address alignment dependent on LTR or RTL scripts */
address div.left {
text-align: left;
}
address div.right {
text-align: right;
}
/* Provide table alignment support. We can't use the alignX classes above
since they do unwanted things with caption and other styling. */
table.right {
margin-left: auto;
margin-right: 0;
}
table.center {
margin-left: auto;
margin-right: auto;
}
table.left {
margin-left: 0;
margin-right: auto;
}
/* Give the table caption label the same styling as the figcaption */
caption a[href] {
color: #222;
}
@media print {
.toplink {
display: none;
}
/* avoid overwriting the top border line with the ToC header */
#toc {
padding-top: 1px;
}
/* Avoid page breaks inside dl and author address entries */
.vcard {
page-break-inside: avoid;
}
}
/* Tweak the bcp14 keyword presentation */
.bcp14 {
font-variant: small-caps;
font-weight: bold;
font-size: 0.9em;
}
/* Tweak the invisible space above H* in order not to overlay links in text above */
h2 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 31px;
}
h3 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
h4 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
/* Float artwork pilcrow to the right */
@media screen {
.artwork a.pilcrow {
display: block;
line-height: 0.7;
margin-top: 0.15em;
}
}
/* Make pilcrows on dd visible */
@media screen {
dd:hover > a.pilcrow {
visibility: visible;
}
}
/* Make the placement of figcaption match that of a table's caption
by removing the figure's added bottom margin */
.alignLeft.art-text,
.alignCenter.art-text,
.alignRight.art-text {
margin-bottom: 0;
}
.alignLeft,
.alignCenter,
.alignRight {
margin: 1em 0 0 0;
}
/* In print, the pilcrow won't show on hover, so prevent it from taking up space,
possibly even requiring a new line */
@media print {
a.pilcrow {
display: none;
}
}
/* Styling for the external metadata */
div#external-metadata {
background-color: #eee;
padding: 0.5em;
margin-bottom: 0.5em;
display: none;
}
div#internal-metadata {
padding: 0.5em; /* to match the external-metadata padding */
}
/* Styling for title RFC Number */
h1#rfcnum {
clear: both;
margin: 0 0 -1em;
padding: 1em 0 0 0;
}
/* Make .olPercent look the same as <ol><li> */
dl.olPercent > dd {
margin-bottom: 0.25em;
min-height: initial;
}
/* Give aside some styling to set it apart */
aside {
border-left: 1px solid #ddd;
margin: 1em 0 1em 2em;
padding: 0.2em 2em;
}
aside > dl,
aside > ol,
aside > ul,
aside > table,
aside > p {
margin-bottom: 0.5em;
}
/* Additional page break settings */
@media print {
figcaption, table caption {
page-break-before: avoid;
}
}
/* Font size adjustments for print */
@media print {
body { font-size: 10pt; line-height: normal; max-width: 96%; }
h1 { font-size: 1.72em; padding-top: 1.5em; } /* 1*1.2*1.2*1.2 */
h2 { font-size: 1.44em; padding-top: 1.5em; } /* 1*1.2*1.2 */
h3 { font-size: 1.2em; padding-top: 1.5em; } /* 1*1.2 */
h4 { font-size: 1em; padding-top: 1.5em; }
h5, h6 { font-size: 1em; margin: initial; padding: 0.5em 0 0.3em; }
}
/* Sourcecode margin in print, when there's no pilcrow */
@media print {
.artwork,
.sourcecode {
margin-bottom: 1em;
}
}
/* Avoid narrow tables forcing too narrow table captions, which may render badly */
table {
min-width: 20em;
}
/* ol type a */
ol.type-a { list-style-type: lower-alpha; }
ol.type-A { list-style-type: upper-alpha; }
ol.type-i { list-style-type: lower-roman; }
ol.type-I { list-style-type: lower-roman; }
/* Apply the print table and row borders in general, on request from the RPC,
and increase the contrast between border and odd row background sligthtly */
table {
border: 1px solid #ddd;
}
td {
border-top: 1px solid #ddd;
}
tr:nth-child(2n+1) > td {
background-color: #f8f8f8;
}
/* Use style rules to govern display of the TOC. */
@media screen and (max-width: 1023px) {
#toc nav { display: none; }
#toc.active nav { display: block; }
}
/* Add support for keepWithNext */
.keepWithNext {
break-after: avoid-page;
break-after: avoid-page;
}
/* Add support for keepWithPrevious */
.keepWithPrevious {
break-before: avoid-page;
}
/* Change the approach to avoiding breaks inside artwork etc. */
figure, pre, table, .artwork, .sourcecode {
break-before: avoid-page;
break-after: auto;
}
/* Avoid breaks between <dt> and <dd> */
dl {
break-before: auto;
break-inside: auto;
}
dt {
break-before: auto;
break-after: avoid-page;
}
dd {
break-before: avoid-page;
break-after: auto;
orphans: 3;
widows: 3
}
span.break, dd.break {
margin-bottom: 0;
min-height: 0;
break-before: auto;
break-inside: auto;
break-after: auto;
}
/* Undo break-before ToC */
@media print {
#toc {
break-before: auto;
}
}
/* Text in compact lists should not get extra bottim margin space,
since that would makes the list not compact */
ul.compact p, .ulCompact p,
ol.compact p, .olCompact p {
margin: 0;
}
/* But the list as a whole needs the extra space at the end */
section ul.compact,
section .ulCompact,
section ol.compact,
section .olCompact {
margin-bottom: 1em; /* same as p not within ul.compact etc. */
}
/* The tt and code background above interferes with for instance table cell
backgrounds. Changed to something a bit more selective. */
tt, code {
background-color: transparent;
}
p tt, p code, li tt, li code {
background-color: #f8f8f8;
}
/* Tweak the pre margin -- 0px doesn't come out well */
pre {
margin-top: 0.5px;
}
/* Tweak the comact list text */
ul.compact, .ulCompact,
ol.compact, .olCompact,
dl.compact, .dlCompact {
line-height: normal;
}
/* Don't add top margin for nested lists */
li > ul, li > ol, li > dl,
dd > ul, dd > ol, dd > dl,
dl > dd > dl {
margin-top: initial;
}
/* Elements that should not be rendered on the same line as a <dt> */
/* This should match the element list in writer.text.TextWriter.render_dl() */
dd > div.artwork:first-child,
dd > aside:first-child,
dd > figure:first-child,
dd > ol:first-child,
dd > div:first-child > pre.sourcecode,
dd > table:first-child,
dd > ul:first-child {
clear: left;
}
/* fix for weird browser behaviour when <dd/> is empty */
dt+dd:empty::before{
content: "\00a0";
}
/* Make paragraph spacing inside <li> smaller than in body text, to fit better within the list */
li > p {
margin-bottom: 0.5em
}
/* Don't let p margin spill out from inside list items */
li > p:last-of-type {
margin-bottom: 0;
}
</style>
<link href="rfc-local.css" rel="stylesheet" type="text/css">
<link href="https://dx.doi.org/10.17487/rfc9083" rel="alternate">
<link href="urn:issn:2070-1721" rel="alternate">
<link href="https://datatracker.ietf.org/doc/draft-ietf-regext-rfc7483bis-05" rel="prev">
</head>
<body>
<script src="https://www.rfc-editor.org/js/metadata.min.js"></script>
<table class="ears">
<thead><tr>
<td class="left">RFC 9083</td>
<td class="center">RDAP JSON Responses</td>
<td class="right">June 2021</td>
</tr></thead>
<tfoot><tr>
<td class="left">Hollenbeck & Newton</td>
<td class="center">Standards Track</td>
<td class="right">[Page]</td>
</tr></tfoot>
</table>
<div id="external-metadata" class="document-information"></div>
<div id="internal-metadata" class="document-information">
<dl id="identifiers">
<dt class="label-stream">Stream:</dt>
<dd class="stream">Internet Engineering Task Force (IETF)</dd>
<dt class="label-rfc">RFC:</dt>
<dd class="rfc"><a href="https://www.rfc-editor.org/rfc/rfc9083" class="eref">9083</a></dd>
<dt class="label-std">STD:</dt>
<dd class="std">95</dd>
<dt class="label-obsoletes">Obsoletes:</dt>
<dd class="obsoletes">
<a href="https://www.rfc-editor.org/rfc/rfc7483" class="eref">7483</a> </dd>
<dt class="label-category">Category:</dt>
<dd class="category">Standards Track</dd>
<dt class="label-published">Published:</dt>
<dd class="published">
<time datetime="2021-06" class="published">June 2021</time>
</dd>
<dt class="label-issn">ISSN:</dt>
<dd class="issn">2070-1721</dd>
<dt class="label-authors">Authors:</dt>
<dd class="authors">
<div class="author">
<div class="author-name">S. Hollenbeck</div>
<div class="org">Verisign Labs</div>
</div>
<div class="author">
<div class="author-name">A. Newton</div>
<div class="org">AWS</div>
</div>
</dd>
</dl>
</div>
<h1 id="rfcnum">RFC 9083</h1>
<h1 id="title">JSON Responses for the Registration Data Access Protocol (RDAP)</h1>
<section id="section-abstract">
<h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">
This document describes JSON data structures representing
registration information maintained by Regional Internet Registries
(RIRs) and Domain Name Registries (DNRs). These data structures are
used to form Registration Data Access Protocol (RDAP) query
responses. This document obsoletes RFC 7483.<a href="#section-abstract-1" class="pilcrow">¶</a></p>
</section>
<div id="status-of-memo">
<section id="section-boilerplate.1">
<h2 id="name-status-of-this-memo">
<a href="#name-status-of-this-memo" class="section-name selfRef">Status of This Memo</a>
</h2>
<p id="section-boilerplate.1-1">
This is an Internet Standards Track document.<a href="#section-boilerplate.1-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-2">
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 Section 2 of
RFC 7841.<a href="#section-boilerplate.1-2" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-3">
Information about the current status of this document, any
errata, and how to provide feedback on it may be obtained at
<span><a href="https://www.rfc-editor.org/info/rfc9083">https://www.rfc-editor.org/info/rfc9083</a></span>.<a href="#section-boilerplate.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="copyright">
<section id="section-boilerplate.2">
<h2 id="name-copyright-notice">
<a href="#name-copyright-notice" class="section-name selfRef">Copyright Notice</a>
</h2>
<p id="section-boilerplate.2-1">
Copyright (c) 2021 IETF Trust and the persons identified as the
document authors. All rights reserved.<a href="#section-boilerplate.2-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.2-2">
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<span><a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a></span>) 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.<a href="#section-boilerplate.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="toc">
<section id="section-toc.1">
<a href="#" onclick="scroll(0,0)" class="toplink">▲</a><h2 id="name-table-of-contents">
<a href="#name-table-of-contents" class="section-name selfRef">Table of Contents</a>
</h2>
<nav class="toc"><ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.1">
<p id="section-toc.1-1.1.1" class="keepWithNext"><a href="#section-1" class="xref">1</a>. <a href="#name-introduction" class="xref">Introduction</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.1.2.1">
<p id="section-toc.1-1.1.2.1.1" class="keepWithNext"><a href="#section-1.1" class="xref">1.1</a>. <a href="#name-terminology-and-definitions" class="xref">Terminology and Definitions</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.1.2.2">
<p id="section-toc.1-1.1.2.2.1" class="keepWithNext"><a href="#section-1.2" class="xref">1.2</a>. <a href="#name-data-model" class="xref">Data Model</a></p>
</li>
</ul>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.2">
<p id="section-toc.1-1.2.1"><a href="#section-2" class="xref">2</a>. <a href="#name-use-of-json" class="xref">Use of JSON</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.2.2.1">
<p id="section-toc.1-1.2.2.1.1"><a href="#section-2.1" class="xref">2.1</a>. <a href="#name-naming" class="xref">Naming</a></p>
</li>
</ul>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.3">
<p id="section-toc.1-1.3.1"><a href="#section-3" class="xref">3</a>. <a href="#name-common-data-types" class="xref">Common Data Types</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.4">
<p id="section-toc.1-1.4.1"><a href="#section-4" class="xref">4</a>. <a href="#name-common-data-structures" class="xref">Common Data Structures</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.4.2.1">
<p id="section-toc.1-1.4.2.1.1"><a href="#section-4.1" class="xref">4.1</a>. <a href="#name-rdap-conformance" class="xref">RDAP Conformance</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.4.2.2">
<p id="section-toc.1-1.4.2.2.1"><a href="#section-4.2" class="xref">4.2</a>. <a href="#name-links" class="xref">Links</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.4.2.3">
<p id="section-toc.1-1.4.2.3.1"><a href="#section-4.3" class="xref">4.3</a>. <a href="#name-notices-and-remarks" class="xref">Notices and Remarks</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.4.2.4">
<p id="section-toc.1-1.4.2.4.1"><a href="#section-4.4" class="xref">4.4</a>. <a href="#name-language-identifier" class="xref">Language Identifier</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.4.2.5">
<p id="section-toc.1-1.4.2.5.1"><a href="#section-4.5" class="xref">4.5</a>. <a href="#name-events" class="xref">Events</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.4.2.6">
<p id="section-toc.1-1.4.2.6.1"><a href="#section-4.6" class="xref">4.6</a>. <a href="#name-status" class="xref">Status</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.4.2.7">
<p id="section-toc.1-1.4.2.7.1"><a href="#section-4.7" class="xref">4.7</a>. <a href="#name-port-43-whois-server" class="xref">Port 43 WHOIS Server</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.4.2.8">
<p id="section-toc.1-1.4.2.8.1"><a href="#section-4.8" class="xref">4.8</a>. <a href="#name-public-ids" class="xref">Public IDs</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.4.2.9">
<p id="section-toc.1-1.4.2.9.1"><a href="#section-4.9" class="xref">4.9</a>. <a href="#name-object-class-name" class="xref">Object Class Name</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.4.2.10">
<p id="section-toc.1-1.4.2.10.1"><a href="#section-4.10" class="xref">4.10</a>. <a href="#name-an-example" class="xref">An Example</a></p>
</li>
</ul>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.5">
<p id="section-toc.1-1.5.1"><a href="#section-5" class="xref">5</a>. <a href="#name-object-classes" class="xref">Object Classes</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.5.2.1">
<p id="section-toc.1-1.5.2.1.1"><a href="#section-5.1" class="xref">5.1</a>. <a href="#name-the-entity-object-class" class="xref">The Entity Object Class</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.5.2.2">
<p id="section-toc.1-1.5.2.2.1"><a href="#section-5.2" class="xref">5.2</a>. <a href="#name-the-nameserver-object-class" class="xref">The Nameserver Object Class</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.5.2.3">
<p id="section-toc.1-1.5.2.3.1"><a href="#section-5.3" class="xref">5.3</a>. <a href="#name-the-domain-object-class" class="xref">The Domain Object Class</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.5.2.4">
<p id="section-toc.1-1.5.2.4.1"><a href="#section-5.4" class="xref">5.4</a>. <a href="#name-the-ip-network-object-class" class="xref">The IP Network Object Class</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.5.2.5">
<p id="section-toc.1-1.5.2.5.1"><a href="#section-5.5" class="xref">5.5</a>. <a href="#name-the-autonomous-system-numbe" class="xref">The Autonomous System Number Object Class</a></p>
</li>
</ul>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.6">
<p id="section-toc.1-1.6.1"><a href="#section-6" class="xref">6</a>. <a href="#name-error-response-body" class="xref">Error Response Body</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.7">
<p id="section-toc.1-1.7.1"><a href="#section-7" class="xref">7</a>. <a href="#name-responding-to-help-queries" class="xref">Responding to Help Queries</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.8">
<p id="section-toc.1-1.8.1"><a href="#section-8" class="xref">8</a>. <a href="#name-responding-to-searches" class="xref">Responding To Searches</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.9">
<p id="section-toc.1-1.9.1"><a href="#section-9" class="xref">9</a>. <a href="#name-indicating-truncated-respon" class="xref">Indicating Truncated Responses</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.10">
<p id="section-toc.1-1.10.1"><a href="#section-10" class="xref">10</a>. <a href="#name-iana-considerations" class="xref">IANA Considerations</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.10.2.1">
<p id="section-toc.1-1.10.2.1.1"><a href="#section-10.1" class="xref">10.1</a>. <a href="#name-rdap-json-media-type-regist" class="xref">RDAP JSON Media Type Registration</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.10.2.2">
<p id="section-toc.1-1.10.2.2.1"><a href="#section-10.2" class="xref">10.2</a>. <a href="#name-json-values-registry" class="xref">JSON Values Registry</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.10.2.2.2.1">
<p id="section-toc.1-1.10.2.2.2.1.1"><a href="#section-10.2.1" class="xref">10.2.1</a>. <a href="#name-notice-and-remark-types" class="xref">Notice and Remark Types</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.10.2.2.2.2">
<p id="section-toc.1-1.10.2.2.2.2.1"><a href="#section-10.2.2" class="xref">10.2.2</a>. <a href="#name-status-2" class="xref">Status</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.10.2.2.2.3">
<p id="section-toc.1-1.10.2.2.2.3.1"><a href="#section-10.2.3" class="xref">10.2.3</a>. <a href="#name-event-actions" class="xref">Event Actions</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.10.2.2.2.4">
<p id="section-toc.1-1.10.2.2.2.4.1"><a href="#section-10.2.4" class="xref">10.2.4</a>. <a href="#name-roles" class="xref">Roles</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.10.2.2.2.5">
<p id="section-toc.1-1.10.2.2.2.5.1"><a href="#section-10.2.5" class="xref">10.2.5</a>. <a href="#name-variant-relations" class="xref">Variant Relations</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.11">
<p id="section-toc.1-1.11.1"><a href="#section-11" class="xref">11</a>. <a href="#name-security-considerations" class="xref">Security Considerations</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.12">
<p id="section-toc.1-1.12.1"><a href="#section-12" class="xref">12</a>. <a href="#name-internationalization-consid" class="xref">Internationalization Considerations</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.12.2.1">
<p id="section-toc.1-1.12.2.1.1"><a href="#section-12.1" class="xref">12.1</a>. <a href="#name-character-encoding" class="xref">Character Encoding</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.12.2.2">
<p id="section-toc.1-1.12.2.2.1"><a href="#section-12.2" class="xref">12.2</a>. <a href="#name-uris-and-iris" class="xref">URIs and IRIs</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.12.2.3">
<p id="section-toc.1-1.12.2.3.1"><a href="#section-12.3" class="xref">12.3</a>. <a href="#name-language-tags" class="xref">Language Tags</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.12.2.4">
<p id="section-toc.1-1.12.2.4.1"><a href="#section-12.4" class="xref">12.4</a>. <a href="#name-internationalized-domain-na" class="xref">Internationalized Domain Names</a></p>
</li>
</ul>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.13">
<p id="section-toc.1-1.13.1"><a href="#section-13" class="xref">13</a>. <a href="#name-privacy-considerations" class="xref">Privacy Considerations</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.14">
<p id="section-toc.1-1.14.1"><a href="#section-14" class="xref">14</a>. <a href="#name-references" class="xref">References</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.14.2.1">
<p id="section-toc.1-1.14.2.1.1"><a href="#section-14.1" class="xref">14.1</a>. <a href="#name-normative-references" class="xref">Normative References</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.14.2.2">
<p id="section-toc.1-1.14.2.2.1"><a href="#section-14.2" class="xref">14.2</a>. <a href="#name-informative-references" class="xref">Informative References</a></p>
</li>
</ul>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.15">
<p id="section-toc.1-1.15.1"><a href="#section-appendix.a" class="xref">Appendix A</a>. <a href="#name-suggested-data-modeling-wit" class="xref">Suggested Data Modeling with the Entity Object Class</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.15.2.1">
<p id="section-toc.1-1.15.2.1.1"><a href="#section-a.1" class="xref">A.1</a>. <a href="#name-registrants-and-contacts" class="xref">Registrants and Contacts</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.15.2.2">
<p id="section-toc.1-1.15.2.2.1"><a href="#section-a.2" class="xref">A.2</a>. <a href="#name-registrars" class="xref">Registrars</a></p>
</li>
</ul>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.16">
<p id="section-toc.1-1.16.1"><a href="#section-appendix.b" class="xref">Appendix B</a>. <a href="#name-modeling-events" class="xref">Modeling Events</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.17">
<p id="section-toc.1-1.17.1"><a href="#section-appendix.c" class="xref">Appendix C</a>. <a href="#name-structured-vs-unstructured-" class="xref">Structured vs. Unstructured Addresses</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.18">
<p id="section-toc.1-1.18.1"><a href="#section-appendix.d" class="xref">Appendix D</a>. <a href="#name-secure-dns" class="xref">Secure DNS</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.19">
<p id="section-toc.1-1.19.1"><a href="#section-appendix.e" class="xref">Appendix E</a>. <a href="#name-motivations-for-using-json" class="xref">Motivations for Using JSON</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.20">
<p id="section-toc.1-1.20.1"><a href="#section-appendix.f" class="xref">Appendix F</a>. <a href="#name-changes-from-rfc-7483" class="xref">Changes from RFC 7483</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.21">
<p id="section-toc.1-1.21.1"><a href="#section-appendix.g" class="xref"></a><a href="#name-acknowledgments" class="xref">Acknowledgments</a></p>
</li>
<li class="toc compact ulEmpty" id="section-toc.1-1.22">
<p id="section-toc.1-1.22.1"><a href="#section-appendix.h" class="xref"></a><a href="#name-authors-addresses" class="xref">Authors' Addresses</a></p>
</li>
</ul>
</nav>
</section>
</div>
<div id="sect-1">
<section id="section-1">
<h2 id="name-introduction">
<a href="#section-1" class="section-number selfRef">1. </a><a href="#name-introduction" class="section-name selfRef">Introduction</a>
</h2>
<p id="section-1-1">
This document describes responses in the JSON <span>[<a href="#RFC8259" class="xref">RFC8259</a>]</span> format for
the queries as defined by the Registration Data Access Protocol Query
Format <span>[<a href="#RFC9082" class="xref">RFC9082</a>]</span>. A communication protocol for exchanging queries
and responses is described in <span>[<a href="#RFC7480" class="xref">RFC7480</a>]</span>. This document obsoletes RFC 7483.<a href="#section-1-1" class="pilcrow">¶</a></p>
<div id="sect-1.1">
<section id="section-1.1">
<h3 id="name-terminology-and-definitions">
<a href="#section-1.1" class="section-number selfRef">1.1. </a><a href="#name-terminology-and-definitions" class="section-name selfRef">Terminology and Definitions</a>
</h3>
<p id="section-1.1-1">
The key words "<span class="bcp14">MUST</span>", "<span class="bcp14">MUST NOT</span>", "<span class="bcp14">REQUIRED</span>", "<span class="bcp14">SHALL</span>", "<span class="bcp14">SHALL NOT</span>", "<span class="bcp14">SHOULD</span>", "<span class="bcp14">SHOULD NOT</span>", "<span class="bcp14">RECOMMENDED</span>", "<span class="bcp14">NOT RECOMMENDED</span>",
"<span class="bcp14">MAY</span>", and "<span class="bcp14">OPTIONAL</span>" in this document are to be interpreted as
described in BCP 14 <span>[<a href="#RFC2119" class="xref">RFC2119</a>]</span> <span>[<a href="#RFC8174" class="xref">RFC8174</a>]</span> when, and only when, they
appear in all capitals, as shown here.<a href="#section-1.1-1" class="pilcrow">¶</a></p>
<p id="section-1.1-2">
The following list describes terminology and definitions used
throughout this document:<a href="#section-1.1-2" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-1.1-3">
<dt id="section-1.1-3.1">DNR:</dt>
<dd style="margin-left: 0.5em" id="section-1.1-3.2">
Domain Name Registry or Domain Name Registrar<a href="#section-1.1-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-1.1-3.3">LDH:</dt>
<dd style="margin-left: 0.5em" id="section-1.1-3.4">
letters, digits, hyphen<a href="#section-1.1-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-1.1-3.5">member:</dt>
<dd style="margin-left: 0.5em" id="section-1.1-3.6">
data found within an object as defined by JSON <span>[<a href="#RFC8259" class="xref">RFC8259</a>]</span><a href="#section-1.1-3.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-1.1-3.7">object:</dt>
<dd style="margin-left: 0.5em" id="section-1.1-3.8">
a data structure as defined by JSON <span>[<a href="#RFC8259" class="xref">RFC8259</a>]</span><a href="#section-1.1-3.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-1.1-3.9">object class:</dt>
<dd style="margin-left: 0.5em" id="section-1.1-3.10">
the definition of members that may be found in JSON
objects described in this document<a href="#section-1.1-3.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-1.1-3.11">object instance:</dt>
<dd style="margin-left: 0.5em" id="section-1.1-3.12">
an instantiation or specific instance of an object
class<a href="#section-1.1-3.12" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-1.1-3.13">RDAP:</dt>
<dd style="margin-left: 0.5em" id="section-1.1-3.14">
Registration Data Access Protocol<a href="#section-1.1-3.14" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-1.1-3.15">RIR:</dt>
<dd style="margin-left: 0.5em" id="section-1.1-3.16">
Regional Internet Registry<a href="#section-1.1-3.16" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sect-1.2">
<section id="section-1.2">
<h3 id="name-data-model">
<a href="#section-1.2" class="section-number selfRef">1.2. </a><a href="#name-data-model" class="section-name selfRef">Data Model</a>
</h3>
<p id="section-1.2-1">
The data model for JSON responses is specified in five sections:<a href="#section-1.2-1" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-1.2-2">
<li id="section-1.2-2.1">simple data types conveyed in JSON
primitive types (strings, numbers, booleans, and null)<a href="#section-1.2-2.1" class="pilcrow">¶</a>
</li>
<li id="section-1.2-2.2">data structures specified as JSON arrays or objects that are used
repeatedly when building up larger objects<a href="#section-1.2-2.2" class="pilcrow">¶</a>
</li>
<li id="section-1.2-2.3">object classes representing structured data corresponding to a
lookup of a single object<a href="#section-1.2-2.3" class="pilcrow">¶</a>
</li>
<li id="section-1.2-2.4">arrays of objects representing structured data corresponding to a
search for multiple objects<a href="#section-1.2-2.4" class="pilcrow">¶</a>
</li>
<li id="section-1.2-2.5">the response to an error<a href="#section-1.2-2.5" class="pilcrow">¶</a>
</li>
</ol>
<p id="section-1.2-3">
The object classes represent responses for two major categories of
data: responses returned by RIRs for registration data related to IP
addresses, reverse DNS names, and Autonomous System numbers and
responses returned by DNRs for registration data related to forward
DNS names. The following object classes are returned by both RIRs
and DNRs:<a href="#section-1.2-3" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-1.2-4">
<li id="section-1.2-4.1">domains<a href="#section-1.2-4.1" class="pilcrow">¶</a>
</li>
<li id="section-1.2-4.2">nameservers<a href="#section-1.2-4.2" class="pilcrow">¶</a>
</li>
<li id="section-1.2-4.3">entities<a href="#section-1.2-4.3" class="pilcrow">¶</a>
</li>
</ol>
<p id="section-1.2-5">
The information served by both RIRs and DNRs for these object classes
overlap extensively and are given in this document as a unified model
for both classes of service.<a href="#section-1.2-5" class="pilcrow">¶</a></p>
<p id="section-1.2-6">
In addition to the object classes listed above, RIRs also serve the
following object classes:<a href="#section-1.2-6" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-1.2-7">
<li id="section-1.2-7.1">IP networks<a href="#section-1.2-7.1" class="pilcrow">¶</a>
</li>
<li id="section-1.2-7.2">Autonomous System numbers<a href="#section-1.2-7.2" class="pilcrow">¶</a>
</li>
</ol>
<p id="section-1.2-8">
Object classes defined in this document represent a minimal set of
what a compliant client/server needs to understand to function
correctly; however, some deployments may want to include additional
object classes to suit individual needs. Anticipating this need for
extension, <a href="#sect-2.1" class="xref">Section 2.1</a> of this document defines a mechanism for
extending the JSON objects that are described in this document.<a href="#section-1.2-8" class="pilcrow">¶</a></p>
<p id="section-1.2-9">
Positive responses take two forms. A response to a lookup of a
single object in the registration system yields a JSON object, which
is the subject of the lookup. A response to a search for multiple
objects yields a JSON object that contains an array of JSON objects
that are the subject of the search. In each type of response, other
data structures are present within the topmost JSON object.<a href="#section-1.2-9" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sect-2">
<section id="section-2">
<h2 id="name-use-of-json">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-use-of-json" class="section-name selfRef">Use of JSON</a>
</h2>
<div id="sect-2.1">
<section id="section-2.1">
<h3 id="name-naming">
<a href="#section-2.1" class="section-number selfRef">2.1. </a><a href="#name-naming" class="section-name selfRef">Naming</a>
</h3>
<p id="section-2.1-1">
Clients of these JSON responses <span class="bcp14">SHOULD</span> ignore unrecognized JSON
members in responses. Servers can insert members into the JSON
responses, which are not specified in this document, but that does
not constitute an error in the response. Servers that insert such
unspecified members into JSON responses <span class="bcp14">SHOULD</span> have member names
prefixed with a short identifier followed by an underscore followed
by a meaningful name. It has been observed that these short
identifiers aid software implementers with identifying the
specification of the JSON member, and failure to use one could cause
an implementer to assume the server is erroneously using a name from
this specification. This allowance does not apply to jCard <span>[<a href="#RFC7095" class="xref">RFC7095</a>]</span>
objects. The full JSON name (the prefix plus the underscore plus the
meaningful name) <span class="bcp14">SHOULD</span> adhere to the character and name limitations
of the prefix registry described in <span>[<a href="#RFC7480" class="xref">RFC7480</a>]</span>. Failure to use these
limitations could result in slower adoption as these limitations have
been observed to aid some client programming models.<a href="#section-2.1-1" class="pilcrow">¶</a></p>
<p id="section-2.1-2">
Consider the following JSON response with JSON members, all of which
are specified in this document.<a href="#section-2.1-2" class="pilcrow">¶</a></p>
<div id="ure-1">
<figure id="figure-1">
<div id="section-2.1-3.1">
<pre class="sourcecode lang-json">
{
"handle" : "ABC123",
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
]
}
</pre>
</div>
<figcaption><a href="#figure-1" class="selfRef">Figure 1</a></figcaption></figure>
</div>
<p id="section-2.1-4">
If The Registry of the Moon desires to express information not found
in this specification, it might select "lunarNIC" as its identifying
prefix and insert, as an example, the member named
"lunarNIC_beforeOneSmallStep" to signify registrations occurring
before the first moon landing and the member named
"lunarNIC_harshMistressNotes" that contains other descriptive text.<a href="#section-2.1-4" class="pilcrow">¶</a></p>
<p id="section-2.1-5">
Consider the following JSON response with JSON names, some of which
should be ignored by clients without knowledge of their meaning.<a href="#section-2.1-5" class="pilcrow">¶</a></p>
<div id="ure-2">
<figure id="figure-2">
<div id="section-2.1-6.1">
<pre class="sourcecode lang-json">
{
"handle" : "ABC123",
"lunarNIC_beforeOneSmallStep" : "TRUE THAT!",
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"lunarNIC_harshMistressNotes" :
[
"In space,",
"nobody can hear you scream."
]
}
</pre>
</div>
<figcaption><a href="#figure-2" class="selfRef">Figure 2</a></figcaption></figure>
</div>
<p id="section-2.1-7">
Insertion of unrecognized members ignored by clients may also be used
for future revisions to this specification.<a href="#section-2.1-7" class="pilcrow">¶</a></p>
<p id="section-2.1-8">
Clients processing JSON responses need to be prepared for members
representing registration data specified in this document to be
absent from a response. In other words, servers are free to omit
unrequired/optional JSON members containing registration data based
on their own policies.<a href="#section-2.1-8" class="pilcrow">¶</a></p>
<p id="section-2.1-9">
Finally, all JSON names specified in this document are case
sensitive. Both servers and clients <span class="bcp14">MUST</span> transmit and process them
using the specified character case.<a href="#section-2.1-9" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sect-3">
<section id="section-3">
<h2 id="name-common-data-types">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-common-data-types" class="section-name selfRef">Common Data Types</a>
</h2>
<p id="section-3-1">
JSON <span>[<a href="#RFC8259" class="xref">RFC8259</a>]</span> defines the data types of a number, character string,
boolean, array, object, and null. This section describes the
semantics and/or syntax reference for common, JSON character strings
used in this document.<a href="#section-3-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-3-2">
<dt id="section-3-2.1">handle:</dt>
<dd style="margin-left: 9.0em" id="section-3-2.2">
DNRs and RIRs have registry-unique identifiers that
may be used to specifically reference an object
instance. The semantics of this data type as found
in this document are to be a registry-unique
reference to the closest enclosing object where the
value is found. The data type names "registryId",
"roid", "nic-handle", "registrationNo", etc., are
terms often synonymous with this data type. In
this document, the term "handle" is used. The term
exposed to users by clients is a presentation issue
beyond the scope of this document. This value is a
simple character string.<a href="#section-3-2.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-3-2.3">IPv4 addresses:</dt>
<dd style="margin-left: 9.0em" id="section-3-2.4">
The representation of IPv4 addresses in this
document uses the dotted-decimal notation. An
example of this textual representation is
"192.0.2.0".<a href="#section-3-2.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-3-2.5">IPv6 addresses:</dt>
<dd style="margin-left: 9.0em" id="section-3-2.6">
The representation of IPv6 addresses in this
document follow the forms outlined in <span>[<a href="#RFC5952" class="xref">RFC5952</a>]</span>.
An example of this textual representation is
"2001:db8::1:0:0:1".<a href="#section-3-2.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-3-2.7">country codes:</dt>
<dd style="margin-left: 9.0em" id="section-3-2.8">
Where the identity of a geopolitical nation or
country is needed, these identities are represented
with the alpha-2 or two-character country code
designation as defined in <span>[<a href="#ISO.3166.2020" class="xref">ISO.3166.2020</a>]</span>. The
alpha-2 representation is used because it is freely
available, whereas the alpha-3 and numeric-3
standards are not.<a href="#section-3-2.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-3-2.9">LDH names:</dt>
<dd style="margin-left: 9.0em" id="section-3-2.10">
Textual representations of DNS names where the
labels of the domain are all "letters, digits, hyphen" labels as described by <span>[<a href="#RFC5890" class="xref">RFC5890</a>]</span>. Trailing
periods are optional.<a href="#section-3-2.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-3-2.11">Unicode names:</dt>
<dd style="margin-left: 9.0em" id="section-3-2.12">
Textual representations of DNS names where one or
more of the labels are U-labels as described by
<span>[<a href="#RFC5890" class="xref">RFC5890</a>]</span>. Trailing periods are optional.<a href="#section-3-2.12" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-3-2.13">dates and times:</dt>
<dd style="margin-left: 9.0em" id="section-3-2.14">
The syntax for values denoting dates and times is
defined in <span>[<a href="#RFC3339" class="xref">RFC3339</a>]</span>.<a href="#section-3-2.14" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-3-2.15">URIs:</dt>
<dd style="margin-left: 9.0em" id="section-3-2.16">
The syntax for values denoting a Uniform Resource
Identifier (URI) is defined by <span>[<a href="#RFC3986" class="xref">RFC3986</a>]</span>.<a href="#section-3-2.16" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-3-3">
Contact information is defined using jCards as described in
<span>[<a href="#RFC7095" class="xref">RFC7095</a>]</span>. The "fn" member is required and <span class="bcp14">MUST NOT</span> be null according to <span>[<a href="#RFC6350" class="xref">RFC6350</a>]</span>. An empty
"fn" member <span class="bcp14">MAY</span> be used when the contact name does not exist
or is redacted.<a href="#section-3-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-4">
<section id="section-4">
<h2 id="name-common-data-structures">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-common-data-structures" class="section-name selfRef">Common Data Structures</a>
</h2>
<p id="section-4-1">
This section defines common data structures used in responses and
object classes.<a href="#section-4-1" class="pilcrow">¶</a></p>
<div id="sect-4.1">
<section id="section-4.1">
<h3 id="name-rdap-conformance">
<a href="#section-4.1" class="section-number selfRef">4.1. </a><a href="#name-rdap-conformance" class="section-name selfRef">RDAP Conformance</a>
</h3>
<p id="section-4.1-1">
The data structure named "rdapConformance" is an array of strings,
each providing a hint as to the specifications used in the
construction of the response. This data structure <span class="bcp14">MUST</span> appear
in the topmost JSON object of a response and <span class="bcp14">MUST NOT</span> appear
anywhere else. A response to a "help"
request will include identifiers for all of the specifications
supported by the server. A response to any other request will
include only identifiers for the specifications used in the
construction of the response. The set of returned identifiers
<span class="bcp14">MAY</span> vary depending on the authorization level of the client.<a href="#section-4.1-1" class="pilcrow">¶</a></p>
<p id="section-4.1-2">
An example rdapConformance data structure:<a href="#section-4.1-2" class="pilcrow">¶</a></p>
<div id="ure-3">
<figure id="figure-3">
<div id="section-4.1-3.1">
<pre class="sourcecode lang-json">
"rdapConformance" :
[
"rdap_level_0"
]
</pre>
</div>
<figcaption><a href="#figure-3" class="selfRef">Figure 3</a></figcaption></figure>
</div>
<p id="section-4.1-4">
The string literal "rdap_level_0" signifies conformance with this
specification. When custom JSON values are inserted into responses,
conformance to those custom specifications <span class="bcp14">MUST</span> be indicated by including
a unique string literal value registered in the IANA RDAP Extensions
registry specified in <span>[<a href="#RFC7480" class="xref">RFC7480</a>]</span>. For example, if the fictional
Registry of the Moon wants to signify that their JSON responses are
conformant with their registered extensions, the string used might be
"lunarNIC_level_0". These registered values aid the identification of
specifications for software implementers, and failure to use them
could result in slower adoption of extensions.<a href="#section-4.1-4" class="pilcrow">¶</a></p>
<p id="section-4.1-5">
Example rdapConformance structure with custom extensions noted:<a href="#section-4.1-5" class="pilcrow">¶</a></p>
<div id="ure-4">
<figure id="figure-4">
<div id="section-4.1-6.1">
<pre class="sourcecode lang-json">
"rdapConformance" :
[
"rdap_level_0",
"lunarNIC_level_0"
]
</pre>
</div>
<figcaption><a href="#figure-4" class="selfRef">Figure 4</a></figcaption></figure>
</div>
</section>
</div>
<div id="sect-4.2">
<section id="section-4.2">
<h3 id="name-links">
<a href="#section-4.2" class="section-number selfRef">4.2. </a><a href="#name-links" class="section-name selfRef">Links</a>
</h3>
<p id="section-4.2-1">
The "links" array is found in data structures to signify links to
other resources on the Internet. The relationship of these links is
defined by the IANA registry described by <span>[<a href="#RFC8288" class="xref">RFC8288</a>]</span>.<a href="#section-4.2-1" class="pilcrow">¶</a></p>
<p id="section-4.2-2">The following is an example of the link structure:<a href="#section-4.2-2" class="pilcrow">¶</a></p>
<div id="ure-5">
<figure id="figure-5">
<div id="section-4.2-3.1">
<pre class="sourcecode lang-json">
{
"value" : "https://example.com/context_uri",
"rel" : "self",
"href" : "https://example.com/target_uri",
"hreflang" : [ "en", "ch" ],
"title" : "title",
"media" : "screen",
"type" : "application/json"
}
</pre>
</div>
<figcaption><a href="#figure-5" class="selfRef">Figure 5</a></figcaption></figure>
</div>
<p id="section-4.2-4">
The JSON name/values of "rel", "href", "hreflang", "title", "media",
and "type" correspond to values found in <span><a href="https://www.rfc-editor.org/rfc/rfc8288#section-3" class="relref">Section 3</a> of [<a href="#RFC8288" class="xref">RFC8288</a>]</span>. The
"value" JSON value is the context URI as described by <span>[<a href="#RFC8288" class="xref">RFC8288</a>]</span>. The
"value", "rel", and "href" JSON values <span class="bcp14">MUST</span> be specified. All other JSON values are
<span class="bcp14">OPTIONAL</span>. A "related" link relation <span class="bcp14">MUST NOT</span> include an "href" URI that is the
same as the "self" link relation "href" URI to reduce the risk of infinite client
processing loops. Internationalized Domain Names (IDNs) returned in URIs <span class="bcp14">SHOULD</span>
be consistently returned in LDH name format to allow clients to process these IDNs
according to their capabilities.<a href="#section-4.2-4" class="pilcrow">¶</a></p>
<p id="section-4.2-5">
This is an example of the "links" array as it might be found in an
object class:<a href="#section-4.2-5" class="pilcrow">¶</a></p>
<div id="ure-6">
<figure id="figure-6">
<div id="section-4.2-6.1">
<pre class="sourcecode lang-json">
"links" :
[
{
"value" : "https://example.com/ip/2001:db8::123",
"rel" : "self",
"href" : "https://example.com/ip/2001:db8::123",
"type" : "application/rdap+json"
},
{
"value" : "https://example.com/ip/2001:db8::123",
"rel" : "up",
"href" : "https://example.com/ip/2001:db8::/48",
"type" : "application/rdap+json"
}
]
</pre>
</div>
<figcaption><a href="#figure-6" class="selfRef">Figure 6</a></figcaption></figure>
</div>
</section>
</div>
<div id="sect-4.3">
<section id="section-4.3">
<h3 id="name-notices-and-remarks">
<a href="#section-4.3" class="section-number selfRef">4.3. </a><a href="#name-notices-and-remarks" class="section-name selfRef">Notices and Remarks</a>
</h3>
<p id="section-4.3-1">
The "notices" and "remarks" data structures take the same form. The
notices structure denotes information about the service providing
RDAP information and/or information about the entire response,
whereas the remarks structure denotes information about the object
class that contains it (see <a href="#sect-5" class="xref">Section 5</a> regarding object classes).<a href="#section-4.3-1" class="pilcrow">¶</a></p>
<p id="section-4.3-2">Both are arrays of objects. Each object contains a "title" string
representing the title of the object, a "type" string denoting a
registered type of remark or notice (see <a href="#sect-10.2.1" class="xref">Section 10.2.1</a>), an
array of strings named "description" for the purposes of conveying any
descriptive text, and a "links" array as described in <a href="#sect-4.2" class="xref">Section 4.2</a>. The
"description" array <span class="bcp14">MUST</span> be included. All other JSON values are <span class="bcp14">OPTIONAL</span>.<a href="#section-4.3-2" class="pilcrow">¶</a></p>
<p id="section-4.3-3">
An example of the notices data structure:<a href="#section-4.3-3" class="pilcrow">¶</a></p>
<div id="ure-7">
<figure id="figure-7">
<div id="section-4.3-4.1">
<pre class="sourcecode lang-json">
"notices" :
[
{
"title" : "Terms of Use",
"description" :
[
"Service subject to The Registry of the Moon's TOS.",
"Copyright (c) 2020 LunarNIC"
],
"links" :
[
{
"value" : "https://example.net/entity/XXXX",
"rel" : "alternate",
"type" : "text/html",
"href" : "https://www.example.com/terms_of_use.html"
}
]
}
]
</pre>
</div>
<figcaption><a href="#figure-7" class="selfRef">Figure 7</a></figcaption></figure>
</div>
<p id="section-4.3-5">
It is the job of the clients to determine line breaks, spacing, and
display issues for sentences within the character strings of the
"description" array. Each string in the "description" array contains
a single complete division of human-readable text indicating to
clients where there are semantic breaks.<a href="#section-4.3-5" class="pilcrow">¶</a></p>
<p id="section-4.3-6">
An example of the remarks data structure:<a href="#section-4.3-6" class="pilcrow">¶</a></p>
<div id="ure-8">
<figure id="figure-8">
<div id="section-4.3-7.1">
<pre class="sourcecode lang-json">
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
]
</pre>
</div>
<figcaption><a href="#figure-8" class="selfRef">Figure 8</a></figcaption></figure>
</div>
<p id="section-4.3-8">
Note that objects in the "remarks" array may also have a "links"
array.<a href="#section-4.3-8" class="pilcrow">¶</a></p>
<p id="section-4.3-9">
While the "title" and "description" fields are intended primarily for
human consumption, the "type" string contains a well-known value to
be registered with IANA (see <a href="#sect-10.2.1" class="xref">Section 10.2.1</a>) for programmatic use.<a href="#section-4.3-9" class="pilcrow">¶</a></p>
<p id="section-4.3-10">
An example of the remarks data structure:<a href="#section-4.3-10" class="pilcrow">¶</a></p>
<div id="ure-9">
<figure id="figure-9">
<div id="section-4.3-11.1">
<pre class="sourcecode lang-json">
"remarks" :
[
{
"type" : "object truncated due to authorization",
"description" :
[
"Some registration data may not have been given.",
"Use proper authorization credentials to see all of it."
]
}
]
</pre>
</div>
<figcaption><a href="#figure-9" class="selfRef">Figure 9</a></figcaption></figure>
</div>
<p id="section-4.3-12">
While the "remarks" array will appear in many object classes in a
response, the "notices" array appears only in the topmost object of a
response.<a href="#section-4.3-12" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-4.4">
<section id="section-4.4">
<h3 id="name-language-identifier">
<a href="#section-4.4" class="section-number selfRef">4.4. </a><a href="#name-language-identifier" class="section-name selfRef">Language Identifier</a>
</h3>
<p id="section-4.4-1">
This data structure consists solely of a name/value pair, where the
name is "lang" and the value is a string containing a language
identifier as described in <span>[<a href="#RFC5646" class="xref">RFC5646</a>]</span>.<a href="#section-4.4-1" class="pilcrow">¶</a></p>
<div id="ure-10">
<figure id="figure-10">
<div id="section-4.4-2.1">
<pre class="sourcecode lang-json">"lang" : "mn-Cyrl-MN"</pre>
</div>
<figcaption><a href="#figure-10" class="selfRef">Figure 10</a></figcaption></figure>
</div>
<p id="section-4.4-3">The "lang" attribute as defined in this section <span class="bcp14">MAY</span> appear anywhere
in an object class or data structure, except for in jCard objects. vCard
supports similar functionality by way of the LANGUAGE property parameter
(see Section <a href="https://www.rfc-editor.org/rfc/rfc6350#section-5.1" class="relref">5.1</a> of RFC 6350 <span>[<a href="#RFC6350" class="xref">RFC6350</a>]</span>).<a href="#section-4.4-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-4.5">
<section id="section-4.5">
<h3 id="name-events">
<a href="#section-4.5" class="section-number selfRef">4.5. </a><a href="#name-events" class="section-name selfRef">Events</a>
</h3>
<p id="section-4.5-1">
This data structure represents events that have occurred on an
instance of an object class (see <a href="#sect-5" class="xref">Section 5</a> regarding object classes).<a href="#section-4.5-1" class="pilcrow">¶</a></p>
<p id="section-4.5-2">
This is an example of an "events" array.<a href="#section-4.5-2" class="pilcrow">¶</a></p>
<div id="ure-11">
<figure id="figure-11">
<div id="section-4.5-3.1">
<pre class="sourcecode lang-json">
"events" :
[
{
"eventAction" : "registration",
"eventActor" : "SOMEID-LUNARNIC",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventActor" : "OTHERID-LUNARNIC",
"eventDate" : "1991-12-31T23:59:59Z"
}
]
</pre>
</div>
<figcaption><a href="#figure-11" class="selfRef">Figure 11</a></figcaption></figure>
</div>
<p id="section-4.5-4">
The "events" array consists of objects, each with the following members:<a href="#section-4.5-4" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-4.5-5.1">"eventAction" -- a <span class="bcp14">REQUIRED</span> string denoting the reason for the event<a href="#section-4.5-5.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.5-5.2">"eventActor" -- an <span class="bcp14">OPTIONAL</span> identifier denoting the actor
responsible for the event<a href="#section-4.5-5.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.5-5.3">"eventDate" -- a <span class="bcp14">REQUIRED</span> string containing the time and date the event
occurred<a href="#section-4.5-5.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.5-5.4">"links" -- <span class="bcp14">OPTIONAL</span>; see <a href="#sect-4.2" class="xref">Section 4.2</a><a href="#section-4.5-5.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-4.5-6">
Events can be future dated. One use case for future dating of events
is to denote when an object expires from a registry.<a href="#section-4.5-6" class="pilcrow">¶</a></p>
<p id="section-4.5-7">
The "links" array in this data structure is provided for references
to the event actor. In order to reference an RDAP entity, a "rel" of
"related" and a "type" of "application/rdap+json" is used in the link
reference.<a href="#section-4.5-7" class="pilcrow">¶</a></p>
<p id="section-4.5-8">
See <a href="#sect-10.2.3" class="xref">Section 10.2.3</a> for a list of values for the "eventAction" string.
See <a href="#sect-b" class="xref">Appendix B</a> regarding the various ways events can be modeled.<a href="#section-4.5-8" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-4.6">
<section id="section-4.6">
<h3 id="name-status">
<a href="#section-4.6" class="section-number selfRef">4.6. </a><a href="#name-status" class="section-name selfRef">Status</a>
</h3>
<p id="section-4.6-1">
This data structure, named "status", is an array of strings
indicating the state of a registered object (see <a href="#sect-10.2.2" class="xref">Section 10.2.2</a> for a
list of values).<a href="#section-4.6-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-4.7">
<section id="section-4.7">
<h3 id="name-port-43-whois-server">
<a href="#section-4.7" class="section-number selfRef">4.7. </a><a href="#name-port-43-whois-server" class="section-name selfRef">Port 43 WHOIS Server</a>
</h3>
<p id="section-4.7-1">
This data structure, a member named "port43", is a simple character string
containing the fully qualified host name or IP address of the WHOIS
<span>[<a href="#RFC3912" class="xref">RFC3912</a>]</span> server where the containing object instance may be found.
Note that this is not a URI, as there is no WHOIS URI scheme.<a href="#section-4.7-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-4.8">
<section id="section-4.8">
<h3 id="name-public-ids">
<a href="#section-4.8" class="section-number selfRef">4.8. </a><a href="#name-public-ids" class="section-name selfRef">Public IDs</a>
</h3>
<p id="section-4.8-1">
This data structure maps a public identifier to an object class. It
is named "publicIds" and is an array of objects, with each object
containing the following <span class="bcp14">REQUIRED</span> members:<a href="#section-4.8-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-4.8-2.1">type -- a string denoting the type of public identifier<a href="#section-4.8-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.8-2.2">identifier -- a string denoting a public identifier of the type related to "type"<a href="#section-4.8-2.2" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-4.8-3">
The following is an example of a publicIds structure.<a href="#section-4.8-3" class="pilcrow">¶</a></p>
<div id="ure-12">
<figure id="figure-12">
<div id="section-4.8-4.1">
<pre class="sourcecode lang-json">
"publicIds":
[
{
"type":"IANA Registrar ID",
"identifier":"1"
}
]
</pre>
</div>
<figcaption><a href="#figure-12" class="selfRef">Figure 12</a></figcaption></figure>
</div>
</section>
</div>
<div id="sect-4.9">
<section id="section-4.9">
<h3 id="name-object-class-name">
<a href="#section-4.9" class="section-number selfRef">4.9. </a><a href="#name-object-class-name" class="section-name selfRef">Object Class Name</a>
</h3>
<p id="section-4.9-1">
This data structure, a member named "objectClassName", gives the
object class name of a particular object as a string. This
identifies the type of object being processed. An objectClassName is
<span class="bcp14">REQUIRED</span> in all RDAP response objects so that the type of the object
can be interpreted.<a href="#section-4.9-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-4.10">
<section id="section-4.10">
<h3 id="name-an-example">
<a href="#section-4.10" class="section-number selfRef">4.10. </a><a href="#name-an-example" class="section-name selfRef">An Example</a>
</h3>
<p id="section-4.10-1">
This is an example response with both rdapConformance and notices
embedded:<a href="#section-4.10-1" class="pilcrow">¶</a></p>
<div id="ure-13">
<figure id="figure-13">
<div id="section-4.10-2.1">
<pre class="sourcecode lang-json">
{
"rdapConformance" :
[
"rdap_level_0"
],
"notices" :
[
{
"title" : "Content Removed",
"description" :
[
"Without full authorization, content has been removed.",
"Sorry, dude!"
],
"links" :
[
{
"value" : "https://example.net/ip/192.0.2.0/24",
"rel" : "alternate",
"type" : "text/html",
"href" : "https://www.example.com/redaction_policy.html"
}
]
}
],
"lang" : "en",
"objectClassName" : "ip network",
"startAddress" : "192.0.2.0",
"endAddress" : "192.0.2.255",
"handle" : "XXXX-RIR",
"ipVersion" : "v4",
"name": "NET-RTR-1",
"parentHandle" : "YYYY-RIR",
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
]
}
</pre>
</div>
<figcaption><a href="#figure-13" class="selfRef">Figure 13</a></figcaption></figure>
</div>
</section>
</div>
</section>
</div>
<div id="sect-5">
<section id="section-5">
<h2 id="name-object-classes">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-object-classes" class="section-name selfRef">Object Classes</a>
</h2>
<p id="section-5-1">
Object classes represent structures appropriate for a response from
the queries specified in <span>[<a href="#RFC9082" class="xref">RFC9082</a>]</span>.<a href="#section-5-1" class="pilcrow">¶</a></p>
<p id="section-5-2">
Each object class contains a "links" array as specified in
<a href="#sect-4.2" class="xref">Section 4.2</a>. For every object class instance in a response, whether
the object class instance is directly representing the response to a
query or is embedded in other object class instances or is an item in
a search result set, servers <span class="bcp14">SHOULD</span> provide a link representing a URI
for that object class instance using the "self" relationship as
described in the IANA registry specified by <span>[<a href="#RFC8288" class="xref">RFC8288</a>]</span>. As explained
in <a href="#sect-5.2" class="xref">Section 5.2</a>, this may be not always be possible for nameserver
data. Clients <span class="bcp14">MUST</span> be able to process object instances without a
self link. When present, clients can use the self link for caching
data. Servers <span class="bcp14">MAY</span> provide more than one self link for any given
object instance. Failure to provide any self link by a server may
result in clients being unable to cache object class instances.<a href="#section-5-2" class="pilcrow">¶</a></p>
<p id="section-5-3">
Clients using self links for caching <span class="bcp14">SHOULD NOT</span> cache any object
class instances where the authority of the self link is different
than the authority of the server returning the data. Failing to do
so might result in cache poisoning.<a href="#section-5-3" class="pilcrow">¶</a></p>
<p id="section-5-4">
Self links <span class="bcp14">MUST</span> contain a "type" element containing the "application/rdap+json" media type when referencing RDAP object instances as
defined by this document.<a href="#section-5-4" class="pilcrow">¶</a></p>
<p id="section-5-5">
This is an example of the "links" array with a self link to an object
class:<a href="#section-5-5" class="pilcrow">¶</a></p>
<div id="ure-14">
<figure id="figure-14">
<div id="section-5-6.1">
<pre class="sourcecode lang-json">
"links" :
[
{
"value" : "https://example.com/ip/2001:db8::123",
"rel" : "self",
"href" : "https://example.com/ip/2001:db8::123",
"type" : "application/rdap+json"
}
]
</pre>
</div>
<figcaption><a href="#figure-14" class="selfRef">Figure 14</a></figcaption></figure>
</div>
<div id="sect-5.1">
<section id="section-5.1">
<h3 id="name-the-entity-object-class">
<a href="#section-5.1" class="section-number selfRef">5.1. </a><a href="#name-the-entity-object-class" class="section-name selfRef">The Entity Object Class</a>
</h3>
<p id="section-5.1-1">
The entity object class appears throughout this document and is an
appropriate response for the /entity/XXXX query defined in
"<a href="#RFC9082" class="xref">Registration Data Access Protocol (RDAP) Query Format</a>" <span>[<a href="#RFC9082" class="xref">RFC9082</a>]</span>.
This object class represents the information of organizations,
corporations, governments, non-profits, clubs, individual persons,
and informal groups of people. All of these representations are so
similar that it is best to represent them in JSON <span>[<a href="#RFC8259" class="xref">RFC8259</a>]</span> with one
construct, the entity object class, to aid in the reuse of code by
implementers.<a href="#section-5.1-1" class="pilcrow">¶</a></p>
<p id="section-5.1-2">
The entity object class uses jCard <span>[<a href="#RFC7095" class="xref">RFC7095</a>]</span> to represent contact
information, such as postal addresses, email addresses, phone numbers
and names of organizations and individuals. Many of the types of
information that can be represented with jCard have little or no use in RDAP,
such as birthdays, anniversaries, and gender.<a href="#section-5.1-2" class="pilcrow">¶</a></p>
<p id="section-5.1-3">
The entity object is served by both RIRs and DNRs. The following is
an example of an entity that might be served by an RIR.<a href="#section-5.1-3" class="pilcrow">¶</a></p>
<div id="ure-15">
<figure id="figure-15">
<div id="section-5.1-4.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "entity",
"handle":"XXXX",
"vcardArray":[
"vcard",
[
["version", {}, "text", "4.0"],
["fn", {}, "text", "Joe User"],
["n", {}, "text",
["User", "Joe", "", "", ["ing. jr", "M.Sc."]]
],
["kind", {}, "text", "individual"],
["lang", {
"pref":"1"
}, "language-tag", "fr"],
["lang", {
"pref":"2"
}, "language-tag", "en"],
["org", {
"type":"work"
}, "text", "Example"],
["title", {}, "text", "Research Scientist"],
["role", {}, "text", "Project Lead"],
["adr",
{ "type":"work" },
"text",
[
"",
"Suite 1234",
"4321 Rue Somewhere",
"Quebec",
"QC",
"G1V 2M2",
"Canada"
]
],
["adr",
{
"type":"home",
"label":"123 Maple Ave\nSuite 90001\nVancouver\nBC\n1239\n"
},
"text",
[
"", "", "", "", "", "", ""
]
],
["tel",
{
"type":["work", "voice"],
"pref":"1"
},
"uri",
"tel:+1-555-555-1234;ext=102"
],
["tel",
{ "type":["work", "cell", "voice", "video", "text"] },
"uri",
"tel:+1-555-555-4321"
],
["email",
{ "type":"work" },
"text",
"joe.user@example.com"
],
["geo", {
"type":"work"
}, "uri", "geo:46.772673,-71.282945"],
["key",
{ "type":"work" },
"uri",
"https://www.example.com/joe.user/joe.asc"
],
["tz", {},
"utc-offset", "-05:00"],
["url", { "type":"home" },
"uri", "https://example.org"]
]
],
"roles":[ "registrar" ],
"publicIds":[
{
"type":"IANA Registrar ID",
"identifier":"1"
}
],
"remarks":[
{
"description":[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links":[
{
"value":"https://example.com/entity/XXXX",
"rel":"self",
"href":"https://example.com/entity/XXXX",
"type" : "application/rdap+json"
}
],
"events":[
{
"eventAction":"registration",
"eventDate":"1990-12-31T23:59:59Z"
}
],
"asEventActor":[
{
"eventAction":"last changed",
"eventDate":"1991-12-31T23:59:59Z"
}
]
}
</pre>
</div>
<figcaption><a href="#figure-15" class="selfRef">Figure 15</a></figcaption></figure>
</div>
<p id="section-5.1-5">
The entity object class can contain the following members:<a href="#section-5.1-5" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.1-6.1">objectClassName -- the string "entity"<a href="#section-5.1-6.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.2">handle -- a string representing a registry-unique identifier of
the entity<a href="#section-5.1-6.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.3">vcardArray -- a jCard with the entity's contact information<a href="#section-5.1-6.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.4">roles -- an array of strings, each signifying the relationship an
object would have with its closest containing object (see
<a href="#sect-10.2.4" class="xref">Section 10.2.4</a> for a list of values)<a href="#section-5.1-6.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.5">publicIds -- see <a href="#sect-4.8" class="xref">Section 4.8</a><a href="#section-5.1-6.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.6">entities -- an array of entity objects as defined by this section<a href="#section-5.1-6.6" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.7">remarks -- see <a href="#sect-4.3" class="xref">Section 4.3</a><a href="#section-5.1-6.7" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.8">links -- see <a href="#sect-4.2" class="xref">Section 4.2</a><a href="#section-5.1-6.8" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.9">events -- see <a href="#sect-4.5" class="xref">Section 4.5</a><a href="#section-5.1-6.9" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.10">asEventActor -- this data structure takes the same form as the
events data structure (see <a href="#sect-4.5" class="xref">Section 4.5</a>), but each object in the
array <span class="bcp14">MUST NOT</span> have an "eventActor" member. These objects denote
that the entity is an event actor for the given events. See
<a href="#sect-b" class="xref">Appendix B</a> regarding the various ways events can be modeled.<a href="#section-5.1-6.10" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.11">status -- see <a href="#sect-4.6" class="xref">Section 4.6</a><a href="#section-5.1-6.11" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.12">port43 -- see <a href="#sect-4.7" class="xref">Section 4.7</a><a href="#section-5.1-6.12" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.13">networks -- an array of IP network objects as defined in
<a href="#sect-5.4" class="xref">Section 5.4</a><a href="#section-5.1-6.13" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.1-6.14">autnums -- an array of autnum objects as defined in <a href="#sect-5.5" class="xref">Section 5.5</a><a href="#section-5.1-6.14" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-5.1-7">
Entities may also have other entities embedded with them in an array.
This can be used to model an organization with specific individuals
fulfilling designated roles of responsibility.<a href="#section-5.1-7" class="pilcrow">¶</a></p>
<p id="section-5.1-8">
The following is an elided example of an entity with embedded
entities.<a href="#section-5.1-8" class="pilcrow">¶</a></p>
<div id="ure-16">
<figure id="figure-16">
<div id="section-5.1-9.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "entity",
"handle" : "ANENTITY",
"roles" : [ "registrar" ],
...
"entities" :
[
{
"objectClassName" : "entity",
"handle": "ANEMBEDDEDENTITY",
"roles" : [ "technical" ],
...
},
...
],
...
}
</pre>
</div>
<figcaption><a href="#figure-16" class="selfRef">Figure 16</a></figcaption></figure>
</div>
<p id="section-5.1-10">
The following is an example of an entity that might be served by a
DNR.<a href="#section-5.1-10" class="pilcrow">¶</a></p>
<div id="ure-17">
<figure id="figure-17">
<div id="section-5.1-11.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "entity",
"handle":"XXXX",
"vcardArray":[
"vcard",
[
["version", {}, "text", "4.0"],
["fn", {}, "text", "Joe User"],
["kind", {}, "text", "individual"],
["lang", {
"pref":"1"
}, "language-tag", "fr"],
["lang", {
"pref":"2"
}, "language-tag", "en"],
["org", {
"type":"work"
}, "text", "Example"],
["title", {}, "text", "Research Scientist"],
["role", {}, "text", "Project Lead"],
["adr",
{ "type":"work" },
"text",
[
"",
"Suite 1234",
"4321 Rue Somewhere",
"Quebec",
"QC",
"G1V 2M2",
"Canada"
]
],
["tel",
{ "type":["work", "voice"], "pref":"1" },
"uri", "tel:+1-555-555-1234;ext=102"
],
["email",
{ "type":"work" },
"text", "joe.user@example.com"
]
]
],
"status":[ "validated", "locked" ],
"remarks":[
{
"description":[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links":[
{
"value":"https://example.com/entity/XXXX",
"rel":"self",
"href":"https://example.com/entity/XXXX",
"type":"application/rdap+json"
}
],
"port43":"whois.example.net",
"events":[
{
"eventAction":"registration",
"eventDate":"1990-12-31T23:59:59Z"
},
{
"eventAction":"last changed",
"eventDate":"1991-12-31T23:59:59Z",
"eventActor":"joe@example.com"
}
]
}
</pre>
</div>
<figcaption><a href="#figure-17" class="selfRef">Figure 17</a></figcaption></figure>
</div>
<p id="section-5.1-12">
See <a href="#sect-a" class="xref">Appendix A</a> for use of the entity object class to model various
types of entities found in both RIRs and DNRs. See <a href="#sect-c" class="xref">Appendix C</a>
regarding structured vs. unstructured postal addresses in entities.<a href="#section-5.1-12" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-5.2">
<section id="section-5.2">
<h3 id="name-the-nameserver-object-class">
<a href="#section-5.2" class="section-number selfRef">5.2. </a><a href="#name-the-nameserver-object-class" class="section-name selfRef">The Nameserver Object Class</a>
</h3>
<p id="section-5.2-1">
The nameserver object class represents information regarding DNS
nameservers used in both forward and reverse DNS. RIRs and some DNRs
register or expose nameserver information as an attribute of a domain
name, while other DNRs model nameservers as "first class objects".
Please note that some of the examples in this section include lines
that have been wrapped for reading clarity.<a href="#section-5.2-1" class="pilcrow">¶</a></p>
<p id="section-5.2-2">
The nameserver object class accommodates both models and degrees of
variation in between.<a href="#section-5.2-2" class="pilcrow">¶</a></p>
<p id="section-5.2-3">The following is an example of a nameserver object.<a href="#section-5.2-3" class="pilcrow">¶</a></p>
<div id="ure-18">
<figure id="figure-18">
<div id="section-5.2-4.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "nameserver",
"handle" : "XXXX",
"ldhName" : "ns1.xn--fo-5ja.example",
"unicodeName" : "ns.fóo.example",
"status" : [ "active" ],
"ipAddresses" :
{
"v4": [ "192.0.2.1", "192.0.2.2" ],
"v6": [ "2001:db8::123" ]
},
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links" :
[
{
"value" : "https://example.net/nameserver/
ns1.xn--fo-5ja.example",
"rel" : "self",
"href" : "https://example.net/nameserver/
ns1.xn--fo-5ja.example",
"type" : "application/rdap+json"
}
],
"port43" : "whois.example.net",
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventDate" : "1991-12-31T23:59:59Z",
"eventActor" : "joe@example.com"
}
]
}
</pre>
</div>
<figcaption><a href="#figure-18" class="selfRef">Figure 18</a></figcaption></figure>
</div>
<p id="section-5.2-5">
<a href="#ure-18" class="xref">Figure 18</a> is an example of a nameserver object with all appropriate values given.
Registries using a first-class nameserver data model would embed this
in domain objects as well as allowing references to it with the
"/nameserver" query type (all depending on the registry operators
policy). Other registries may pare back the information as needed.
<a href="#ure-19" class="xref">Figure 19</a> is an example of a nameserver object as would be found in
RIRs and some DNRs, while <a href="#ure-20" class="xref">Figure 20</a> is an example of a nameserver
object as would be found in other DNRs.<a href="#section-5.2-5" class="pilcrow">¶</a></p>
<p id="section-5.2-6">The following is an example of the simplest nameserver object:<a href="#section-5.2-6" class="pilcrow">¶</a></p>
<div id="ure-19">
<figure id="figure-19">
<div id="section-5.2-7.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "nameserver",
"ldhName" : "ns1.example.com"
}
</pre>
</div>
<figcaption><a href="#figure-19" class="selfRef">Figure 19</a></figcaption></figure>
</div>
<p id="section-5.2-8">
The following is an example of a simple nameserver object that might
be commonly used by DNRs:<a href="#section-5.2-8" class="pilcrow">¶</a></p>
<div id="ure-20">
<figure id="figure-20">
<div id="section-5.2-9.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "nameserver",
"ldhName" : "ns1.example.com",
"ipAddresses" : { "v6" : [ "2001:db8::123", "2001:db8::124" ] }
}
</pre>
</div>
<figcaption><a href="#figure-20" class="selfRef">Figure 20</a></figcaption></figure>
</div>
<p id="section-5.2-10">
As nameservers can be modeled by some registries to be first-class
objects, they may also have an array of entities (<a href="#sect-5.1" class="xref">Section 5.1</a>)
embedded to signify parties responsible for the maintenance,
registrations, etc., of the nameservers.<a href="#section-5.2-10" class="pilcrow">¶</a></p>
<p id="section-5.2-11">
The following is an elided example of a nameserver with embedded
entities.<a href="#section-5.2-11" class="pilcrow">¶</a></p>
<div id="ure-21">
<figure id="figure-21">
<div id="section-5.2-12.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "nameserver",
"handle" : "XXXX",
"ldhName" : "ns.xn--fo-5ja.example",
...
"entities" :
[
...
],
...
}
</pre>
</div>
<figcaption><a href="#figure-21" class="selfRef">Figure 21</a></figcaption></figure>
</div>
<p id="section-5.2-13">
The nameserver object class can contain the following members:<a href="#section-5.2-13" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.2-14.1">objectClassName -- the string "nameserver"<a href="#section-5.2-14.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.2-14.2">handle -- a string representing a registry-unique identifier of
the nameserver<a href="#section-5.2-14.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.2-14.3">ldhName -- a string containing the LDH name of the nameserver (see
<a href="#sect-3" class="xref">Section 3</a>)<a href="#section-5.2-14.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.2-14.4">unicodeName -- a string containing a DNS Unicode name of the
nameserver (see <a href="#sect-3" class="xref">Section 3</a>)<a href="#section-5.2-14.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.2-14.5">
<p id="section-5.2-14.5.1">ipAddresses -- an object containing the following members:<a href="#section-5.2-14.5.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.2-14.5.2.1">v6 -- an array of strings containing IPv6 addresses of the
nameserver<a href="#section-5.2-14.5.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.2-14.5.2.2">v4 -- an array of strings containing IPv4 addresses of the
nameserver<a href="#section-5.2-14.5.2.2" class="pilcrow">¶</a>
</li>
</ul>
</li>
<li class="normal" id="section-5.2-14.6">entities -- an array of entity objects as defined by <a href="#sect-5.1" class="xref">Section 5.1</a><a href="#section-5.2-14.6" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.2-14.7">status -- see <a href="#sect-4.6" class="xref">Section 4.6</a><a href="#section-5.2-14.7" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.2-14.8">remarks -- see <a href="#sect-4.3" class="xref">Section 4.3</a><a href="#section-5.2-14.8" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.2-14.9">links -- see <a href="#sect-4.2" class="xref">Section 4.2</a><a href="#section-5.2-14.9" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.2-14.10">port43 -- see <a href="#sect-4.7" class="xref">Section 4.7</a><a href="#section-5.2-14.10" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.2-14.11">events -- see <a href="#sect-4.5" class="xref">Section 4.5</a><a href="#section-5.2-14.11" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="sect-5.3">
<section id="section-5.3">
<h3 id="name-the-domain-object-class">
<a href="#section-5.3" class="section-number selfRef">5.3. </a><a href="#name-the-domain-object-class" class="section-name selfRef">The Domain Object Class</a>
</h3>
<p id="section-5.3-1">
The domain object class represents a DNS name and point of
delegation. For RIRs, these delegation points are in the reverse DNS
tree, whereas for DNRs, these delegation points are in the forward
DNS tree.<a href="#section-5.3-1" class="pilcrow">¶</a></p>
<p id="section-5.3-2">
In both cases, the high-level structure of the domain object class
consists of information about the domain registration, nameserver
information related to the domain name, and entities related to the
domain name (e.g., registrant information, contacts, etc.).<a href="#section-5.3-2" class="pilcrow">¶</a></p>
<p id="section-5.3-3">
The following is an elided example of the domain object showing the
high-level structure:<a href="#section-5.3-3" class="pilcrow">¶</a></p>
<div id="ure-22">
<figure id="figure-22">
<div id="section-5.3-4.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "domain",
"handle" : "XXX",
"ldhName" : "blah.example.com",
...
"nameservers" :
[
...
],
...
"entities" :
[
...
]
}
</pre>
</div>
<figcaption><a href="#figure-22" class="selfRef">Figure 22</a></figcaption></figure>
</div>
<p id="section-5.3-5">
The domain object class can contain the following members:<a href="#section-5.3-5" class="pilcrow">¶</a></p>
<p id="section-5.3-6"></p>
<ul class="normal">
<li class="normal" id="section-5.3-7.1">objectClassName -- the string "domain"<a href="#section-5.3-7.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.2">handle -- a string representing a registry-unique identifier of
the domain object instance<a href="#section-5.3-7.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.3">ldhName -- a string describing a domain name in LDH form as
described in <a href="#sect-3" class="xref">Section 3</a><a href="#section-5.3-7.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.4">unicodeName -- a string containing a domain name with U-labels as
described in <a href="#sect-3" class="xref">Section 3</a><a href="#section-5.3-7.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.5">
<p id="section-5.3-7.5.1">variants -- an array of objects, each containing the following
values:<a href="#section-5.3-7.5.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.3-7.5.2.1">relation -- an array of strings, with each string denoting the
relationship between the variants and the containing domain
object (see <a href="#sect-10.2.5" class="xref">Section 10.2.5</a> for a list of suggested variant
relations).<a href="#section-5.3-7.5.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.5.2.2">idnTable -- the character string literal that represents the Internationalized
Domain Name (IDN) table that has been registered in the IANA Repository of IDN
Practices <span>[<a href="#IANA_IDNTABLES" class="xref">IANA_IDNTABLES</a>]</span>.<a href="#section-5.3-7.5.2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.5.2.3">variantNames -- an array of objects, with each object
containing an "ldhName" member and a "unicodeName" member (see
<a href="#sect-3" class="xref">Section 3</a>).<a href="#section-5.3-7.5.2.3" class="pilcrow">¶</a>
</li>
</ul>
</li>
<li class="normal" id="section-5.3-7.6">nameservers -- an array of nameserver objects as defined by
<a href="#sect-5.2" class="xref">Section 5.2</a><a href="#section-5.3-7.6" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7">
<p id="section-5.3-7.7.1">secureDNS -- an object with the following members:<a href="#section-5.3-7.7.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.3-7.7.2.1">zoneSigned -- boolean true if the zone has been signed, false
otherwise.<a href="#section-5.3-7.7.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.2">delegationSigned -- boolean true if there are DS records in the
parent, false otherwise.<a href="#section-5.3-7.7.2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.3">maxSigLife -- an integer representing the signature lifetime in
seconds to be used when creating the RRSIG DS record in the
parent zone <span>[<a href="#RFC5910" class="xref">RFC5910</a>]</span>.<a href="#section-5.3-7.7.2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.4">
<p id="section-5.3-7.7.2.4.1">dsData -- an array of objects, each with the following members:<a href="#section-5.3-7.7.2.4.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.3-7.7.2.4.2.1">keyTag -- an integer as specified by the key tag field of a
DNS DS record as specified by <span>[<a href="#RFC4034" class="xref">RFC4034</a>]</span> in presentation
format<a href="#section-5.3-7.7.2.4.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.4.2.2">algorithm -- an integer as specified by the algorithm field
of a DNS DS record as described by RFC 4034 in presentation
format<a href="#section-5.3-7.7.2.4.2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.4.2.3">digest -- a string as specified by the digest field of a DNS
DS record as specified by RFC 4034 in presentation format<a href="#section-5.3-7.7.2.4.2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.4.2.4">digestType -- an integer as specified by the digest type
field of a DNS DS record as specified by RFC 4034 in
presentation format<a href="#section-5.3-7.7.2.4.2.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.4.2.5">events -- see <a href="#sect-4.5" class="xref">Section 4.5</a><a href="#section-5.3-7.7.2.4.2.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.4.2.6">links -- see <a href="#sect-4.2" class="xref">Section 4.2</a><a href="#section-5.3-7.7.2.4.2.6" class="pilcrow">¶</a>
</li>
</ul>
</li>
<li class="normal" id="section-5.3-7.7.2.5">
<p id="section-5.3-7.7.2.5.1">keyData -- an array of objects, each with the following
members:<a href="#section-5.3-7.7.2.5.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.3-7.7.2.5.2.1">flags -- an integer representing the flags field value in
the DNSKEY record <span>[<a href="#RFC4034" class="xref">RFC4034</a>]</span> in presentation format<a href="#section-5.3-7.7.2.5.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.5.2.2">protocol -- an integer representation of the protocol field
value of the DNSKEY record <span>[<a href="#RFC4034" class="xref">RFC4034</a>]</span> in presentation format<a href="#section-5.3-7.7.2.5.2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.5.2.3">publicKey -- a string representation of the public key in
the DNSKEY record <span>[<a href="#RFC4034" class="xref">RFC4034</a>]</span> in presentation format<a href="#section-5.3-7.7.2.5.2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.5.2.4">algorithm -- an integer as specified by the algorithm field
of a DNSKEY record as specified by <span>[<a href="#RFC4034" class="xref">RFC4034</a>]</span> in presentation
format<a href="#section-5.3-7.7.2.5.2.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.5.2.5">events -- see <a href="#sect-4.5" class="xref">Section 4.5</a><a href="#section-5.3-7.7.2.5.2.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.7.2.5.2.6">
<p id="section-5.3-7.7.2.5.2.6.1">links -- see <a href="#sect-4.2" class="xref">Section 4.2</a><a href="#section-5.3-7.7.2.5.2.6.1" class="pilcrow">¶</a></p>
<p id="section-5.3-7.7.2.5.2.6.2">See <a href="#sect-d" class="xref">Appendix D</a> for background information on these objects.<a href="#section-5.3-7.7.2.5.2.6.2" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="normal" id="section-5.3-7.8">entities -- an array of entity objects as defined by <a href="#sect-5.1" class="xref">Section 5.1</a><a href="#section-5.3-7.8" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.9">status -- see <a href="#sect-4.6" class="xref">Section 4.6</a><a href="#section-5.3-7.9" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.10">publicIds -- see <a href="#sect-4.8" class="xref">Section 4.8</a><a href="#section-5.3-7.10" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.11">remarks -- see <a href="#sect-4.3" class="xref">Section 4.3</a><a href="#section-5.3-7.11" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.12">links -- see <a href="#sect-4.2" class="xref">Section 4.2</a><a href="#section-5.3-7.12" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.13">port43 -- see <a href="#sect-4.7" class="xref">Section 4.7</a><a href="#section-5.3-7.13" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.14">events -- see <a href="#sect-4.5" class="xref">Section 4.5</a><a href="#section-5.3-7.14" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3-7.15">network -- represents the IP network for which a reverse DNS
domain is referenced; see <a href="#sect-5.4" class="xref">Section 5.4</a><a href="#section-5.3-7.15" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-5.3-8">
The following is an example of a JSON domain object representing a
reverse DNS delegation point that might be served by an RIR (note
that the dsData digest value has been modified to fit on one line).<a href="#section-5.3-8" class="pilcrow">¶</a></p>
<div id="ure-23">
<figure id="figure-23">
<div id="section-5.3-9.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "domain",
"handle" : "XXXX",
"ldhName" : "0.2.192.in-addr.arpa",
"nameservers" :
[
{
"objectClassName" : "nameserver",
"ldhName" : "ns1.rir.example"
},
{
"objectClassName" : "nameserver",
"ldhName" : "ns2.rir.example"
}
],
"secureDNS":
{
"delegationSigned": true,
"dsData":
[
{
"keyTag": 25345,
"algorithm": 8,
"digestType": 2,
"digest": "2788970E18EA14...C890C85B8205B94"
}
]
},
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links" :
[
{
"value": "https://example.net/domain/0.2.192.in-addr.arpa",
"rel" : "self",
"href" : "https://example.net/domain/0.2.192.in-addr.arpa",
"type" : "application/rdap+json"
}
],
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventDate" : "1991-12-31T23:59:59Z",
"eventActor" : "joe@example.com"
}
],
"entities" :
[
{
"objectClassName" : "entity",
"handle" : "XXXX",
"vcardArray":[
"vcard",
[
["version", {}, "text", "4.0"],
["fn", {}, "text", "Joe User"],
["kind", {}, "text", "individual"],
["lang", {
"pref":"1"
}, "language-tag", "fr"],
["lang", {
"pref":"2"
}, "language-tag", "en"],
["org", {
"type":"work"
}, "text", "Example"],
["title", {}, "text", "Research Scientist"],
["role", {}, "text", "Project Lead"],
["adr",
{ "type":"work" },
"text",
[
"",
"Suite 1234",
"4321 Rue Somewhere",
"Quebec",
"QC",
"G1V 2M2",
"Canada"
]
],
["tel",
{ "type":["work", "voice"], "pref":"1" },
"uri", "tel:+1-555-555-1234;ext=102"
],
["email",
{ "type":"work" },
"text", "joe.user@example.com"
]
]
],
"roles" : [ "registrant" ],
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links" :
[
{
"value": "https://example.net/entity/XXXX",
"rel" : "self",
"href" : "https://example.net/entity/XXXX",
"type" : "application/rdap+json"
}
],
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventDate" : "1991-12-31T23:59:59Z",
"eventActor" : "joe@example.com"
}
]
}
],
"network" :
{
"objectClassName" : "ip network",
"handle" : "XXXX-RIR",
"startAddress" : "192.0.2.0",
"endAddress" : "192.0.2.255",
"ipVersion" : "v4",
"name": "NET-RTR-1",
"type" : "DIRECT ALLOCATION",
"country" : "AU",
"parentHandle" : "YYYY-RIR",
"status" : [ "active" ]
}
}
</pre>
</div>
<figcaption><a href="#figure-23" class="selfRef">Figure 23</a></figcaption></figure>
</div>
<p id="section-5.3-10">
The following is an example of a JSON domain object representing a
forward DNS delegation point that might be served by a DNR. Note that
the secureDNS keyData publicKey value has been modified to fit on a
single line.<a href="#section-5.3-10" class="pilcrow">¶</a></p>
<div id="ure-24">
<figure id="figure-24">
<div id="section-5.3-11.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "domain",
"handle" : "XXXX",
"ldhName" : "xn--fo-5ja.example",
"unicodeName" : "fóo.example",
"variants" :
[
{
"relation" : [ "registered", "conjoined" ],
"variantNames" :
[
{
"ldhName" : "xn--fo-cka.example",
"unicodeName" : "fõo.example"
},
{
"ldhName" : "xn--fo-fka.example",
"unicodeName" : "föo.example"
}
]
},
{
"relation" : [ "unregistered", "registration restricted" ],
"idnTable": ".EXAMPLE Swedish",
"variantNames" :
[
{
"ldhName": "xn--fo-8ja.example",
"unicodeName" : "fôo.example"
}
]
}
],
"status" : [ "locked", "transfer prohibited" ],
"publicIds":[
{
"type":"ENS_Auth ID",
"identifier":"1234567890"
}
],
"nameservers" :
[
{
"objectClassName" : "nameserver",
"handle" : "XXXX",
"ldhName" : "ns1.example.com",
"status" : [ "active" ],
"ipAddresses" :
{
"v6": [ "2001:db8::123", "2001:db8::124" ],
"v4": [ "192.0.2.1", "192.0.2.2" ]
},
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links" :
[
{
"value" : "https://example.net/nameserver/ns1.example.com",
"rel" : "self",
"href" : "https://example.net/nameserver/ns1.example.com",
"type" : "application/rdap+json"
}
],
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventDate" : "1991-12-31T23:59:59Z"
}
]
},
{
"objectClassName" : "nameserver",
"handle" : "XXXX",
"ldhName" : "ns2.example.com",
"status" : [ "active" ],
"ipAddresses" :
{
"v6" : [ "2001:db8::125", "2001:db8::126" ],
"v4" : [ "192.0.2.3", "192.0.2.4" ]
},
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links" :
[
{
"value" : "https://example.net/nameserver/ns2.example.com",
"rel" : "self",
"href" : "https://example.net/nameserver/ns2.example.com",
"type" : "application/rdap+json"
}
],
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventDate" : "1991-12-31T23:59:59Z"
}
]
}
],
"secureDNS":
{
"zoneSigned": true,
"delegationSigned": true,
"maxSigLife": 604800,
"keyData":
[
{
"flags": 257,
"protocol": 3,
"algorithm": 8,
"publicKey": "AwEAAa6eDzronzjEDbT...Jg1M5N rBSPkuXpdFE=",
"events":
[
{
"eventAction": "last changed",
"eventDate": "2012-07-23T05:15:47Z"
}
]
}
]
},
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links" :
[
{
"value": "https://example.net/domain/xn--fo-5ja.example",
"rel" : "self",
"href" : "https://example.net/domain/xn--fo-5ja.example",
"type" : "application/rdap+json"
}
],
"port43" : "whois.example.net",
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventDate" : "1991-12-31T23:59:59Z",
"eventActor" : "joe@example.com"
},
{
"eventAction" : "transfer",
"eventDate" : "1991-12-31T23:59:59Z",
"eventActor" : "joe@example.com"
},
{
"eventAction" : "expiration",
"eventDate" : "2016-12-31T23:59:59Z",
"eventActor" : "joe@example.com"
}
],
"entities" :
[
{
"objectClassName" : "entity",
"handle" : "XXXX",
"vcardArray":[
"vcard",
[
["version", {}, "text", "4.0"],
["fn", {}, "text", "Joe User"],
["kind", {}, "text", "individual"],
["lang", {
"pref":"1"
}, "language-tag", "fr"],
["lang", {
"pref":"2"
}, "language-tag", "en"],
["org", {
"type":"work"
}, "text", "Example"],
["title", {}, "text", "Research Scientist"],
["role", {}, "text", "Project Lead"],
["adr",
{ "type":"work" },
"text",
[
"",
"Suite 1234",
"4321 Rue Somewhere",
"Quebec",
"QC",
"G1V 2M2",
"Canada"
]
],
["tel",
{ "type":["work", "voice"], "pref":"1" },
"uri", "tel:+1-555-555-1234;ext=102"
],
["email",
{ "type":"work" },
"text", "joe.user@example.com"
]
]
],
"status" : [ "validated", "locked" ],
"roles" : [ "registrant" ],
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links" :
[
{
"value" : "https://example.net/entity/XXXX",
"rel" : "self",
"href" : "https://example.net/entity/XXXX",
"type" : "application/rdap+json"
}
],
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventDate" : "1991-12-31T23:59:59Z"
}
]
}
]
}
</pre>
</div>
<figcaption><a href="#figure-24" class="selfRef">Figure 24</a></figcaption></figure>
</div>
</section>
</div>
<div id="sect-5.4">
<section id="section-5.4">
<h3 id="name-the-ip-network-object-class">
<a href="#section-5.4" class="section-number selfRef">5.4. </a><a href="#name-the-ip-network-object-class" class="section-name selfRef">The IP Network Object Class</a>
</h3>
<p id="section-5.4-1">
The IP network object class models IP network registrations found in
RIRs and is the expected response for the "/ip" query as defined by
<span>[<a href="#RFC9082" class="xref">RFC9082</a>]</span>. There is no equivalent object class for DNRs. The high-
level structure of the IP network object class consists of
information about the network registration and entities related to
the IP network (e.g., registrant information, contacts, etc.).<a href="#section-5.4-1" class="pilcrow">¶</a></p>
<p id="section-5.4-2">
The following is an elided example of the IP network object type
showing the high-level structure:<a href="#section-5.4-2" class="pilcrow">¶</a></p>
<div id="ure-25">
<figure id="figure-25">
<div id="section-5.4-3.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "ip network",
"handle" : "XXX",
...
"entities" :
[
...
]
}
</pre>
</div>
<figcaption><a href="#figure-25" class="selfRef">Figure 25</a></figcaption></figure>
</div>
<p id="section-5.4-4">
The following is an example of the JSON object for the network
registration information.<a href="#section-5.4-4" class="pilcrow">¶</a></p>
<div id="ure-26">
<figure id="figure-26">
<div id="section-5.4-5.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "ip network",
"handle" : "XXXX-RIR",
"startAddress" : "2001:db8::",
"endAddress" : "2001:db8:0:ffff:ffff:ffff:ffff:ffff",
"ipVersion" : "v6",
"name": "NET-RTR-1",
"type" : "DIRECT ALLOCATION",
"country" : "AU",
"parentHandle" : "YYYY-RIR",
"status" : [ "active" ],
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links" :
[
{
"value" : "https://example.net/ip/2001:db8::/48",
"rel" : "self",
"href" : "https://example.net/ip/2001:db8::/48",
"type" : "application/rdap+json"
},
{
"value" : "https://example.net/ip/2001:db8::/48",
"rel" : "up",
"href" : "https://example.net/ip/2001:db8::/32",
"type" : "application/rdap+json"
}
],
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventDate" : "1991-12-31T23:59:59Z"
}
],
"entities" :
[
{
"objectClassName" : "entity",
"handle" : "XXXX",
"vcardArray":[
"vcard",
[
["version", {}, "text", "4.0"],
["fn", {}, "text", "Joe User"],
["kind", {}, "text", "individual"],
["lang", {
"pref":"1"
}, "language-tag", "fr"],
["lang", {
"pref":"2"
}, "language-tag", "en"],
["org", {
"type":"work"
}, "text", "Example"],
["title", {}, "text", "Research Scientist"],
["role", {}, "text", "Project Lead"],
["adr",
{ "type":"work" },
"text",
[
"",
"Suite 1234",
"4321 Rue Somewhere",
"Quebec",
"QC",
"G1V 2M2",
"Canada"
]
],
["tel",
{ "type":["work", "voice"], "pref":"1" },
"uri", "tel:+1-555-555-1234;ext=102"
],
["email",
{ "type":"work" },
"text", "joe.user@example.com"
]
]
],
"roles" : [ "registrant" ],
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links" :
[
{
"value" : "https://example.net/entity/xxxx",
"rel" : "self",
"href" : "https://example.net/entity/xxxx",
"type" : "application/rdap+json"
}
],
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventDate" : "1991-12-31T23:59:59Z"
}
]
}
]
}
</pre>
</div>
<figcaption><a href="#figure-26" class="selfRef">Figure 26</a></figcaption></figure>
</div>
<p id="section-5.4-6">
The IP network object class can contain the following members:<a href="#section-5.4-6" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.4-7.1">objectClassName -- the string "ip network"<a href="#section-5.4-7.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.2">handle -- a string representing the RIR-unique identifier of the
network registration<a href="#section-5.4-7.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.3">startAddress -- a string representing the starting IP address of the network, either
IPv4 or IPv6<a href="#section-5.4-7.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.4">endAddress -- a string representing the ending IP address of the network, either IPv4 or
IPv6<a href="#section-5.4-7.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.5">ipVersion -- a string signifying the IP protocol version of the
network: "v4" signifies an IPv4 network, and "v6" signifies an
IPv6 network<a href="#section-5.4-7.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.6">name -- a string representing an identifier assigned to the network registration by the
registration holder<a href="#section-5.4-7.6" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.7">type -- a string containing an RIR-specific classification of the
network per that RIR's registration model<a href="#section-5.4-7.7" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.8">country -- a string containing the two-character country code of
the network<a href="#section-5.4-7.8" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.9">parentHandle -- a string containing an RIR-unique identifier of
the parent network of this network registration<a href="#section-5.4-7.9" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.10">status -- an array of strings indicating the state of the IP
network as defined by <a href="#sect-4.6" class="xref">Section 4.6</a><a href="#section-5.4-7.10" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.11">entities -- an array of entity objects as defined by <a href="#sect-5.1" class="xref">Section 5.1</a><a href="#section-5.4-7.11" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.12">remarks -- see <a href="#sect-4.3" class="xref">Section 4.3</a><a href="#section-5.4-7.12" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.13">links -- see <a href="#sect-4.2" class="xref">Section 4.2</a><a href="#section-5.4-7.13" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.14">port43 -- see <a href="#sect-4.7" class="xref">Section 4.7</a><a href="#section-5.4-7.14" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.4-7.15">events -- see <a href="#sect-4.5" class="xref">Section 4.5</a><a href="#section-5.4-7.15" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="sect-5.5">
<section id="section-5.5">
<h3 id="name-the-autonomous-system-numbe">
<a href="#section-5.5" class="section-number selfRef">5.5. </a><a href="#name-the-autonomous-system-numbe" class="section-name selfRef">The Autonomous System Number Object Class</a>
</h3>
<p id="section-5.5-1">
The Autonomous System number (autnum) object class models Autonomous
System number registrations found in RIRs and represents the expected
response to an "/autnum" query as defined by <span>[<a href="#RFC9082" class="xref">RFC9082</a>]</span>. There is no
equivalent object class for DNRs. The high-level structure of the
autnum object class consists of information about the Autonomous System number
registration and entities related to the autnum registration (e.g.,
registrant information, contacts, etc.) and is similar to the IP
network object class.<a href="#section-5.5-1" class="pilcrow">¶</a></p>
<p id="section-5.5-2">
The following is an example of a JSON object representing an autnum.<a href="#section-5.5-2" class="pilcrow">¶</a></p>
<div id="ure-27">
<figure id="figure-27">
<div id="section-5.5-3.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "autnum",
"handle" : "XXXX-RIR",
"startAutnum" : 65536,
"endAutnum" : 65541,
"name": "AS-RTR-1",
"type" : "DIRECT ALLOCATION",
"status" : [ "active" ],
"country": "AU",
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links" :
[
{
"value" : "https://example.net/autnum/65537",
"rel" : "self",
"href" : "https://example.net/autnum/65537",
"type" : "application/rdap+json"
}
],
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventDate" : "1991-12-31T23:59:59Z"
}
],
"entities" :
[
{
"objectClassName" : "entity",
"handle" : "XXXX",
"vcardArray":[
"vcard",
[
["version", {}, "text", "4.0"],
["fn", {}, "text", "Joe User"],
["kind", {}, "text", "individual"],
["lang", {
"pref":"1"
}, "language-tag", "fr"],
["lang", {
"pref":"2"
}, "language-tag", "en"],
["org", {
"type":"work"
}, "text", "Example"],
["title", {}, "text", "Research Scientist"],
["role", {}, "text", "Project Lead"],
["adr",
{ "type":"work" },
"text",
[
"",
"Suite 1234",
"4321 Rue Somewhere",
"Quebec",
"QC",
"G1V 2M2",
"Canada"
]
],
["tel",
{ "type":["work", "voice"], "pref":"1" },
"uri", "tel:+1-555-555-1234;ext=102"
],
["email",
{ "type":"work" },
"text", "joe.user@example.com"
]
]
],
"roles" : [ "registrant" ],
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links" :
[
{
"value" : "https://example.net/entity/XXXX",
"rel" : "self",
"href" : "https://example.net/entity/XXXX",
"type" : "application/rdap+json"
}
],
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventDate" : "1991-12-31T23:59:59Z"
}
]
}
]
}
</pre>
</div>
<figcaption><a href="#figure-27" class="selfRef">Figure 27</a></figcaption></figure>
</div>
<p id="section-5.5-4">
The Autonomous System number object class can contain the following
members:<a href="#section-5.5-4" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.5-5.1">objectClassName -- the string "autnum"<a href="#section-5.5-5.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.5-5.2">handle -- a string representing the RIR-unique identifier of the
autnum registration<a href="#section-5.5-5.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.5-5.3">startAutnum -- an unsigned 32-bit integer representing the starting number <span>[<a href="#RFC5396" class="xref">RFC5396</a>]</span>
in the block of Autonomous System numbers<a href="#section-5.5-5.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.5-5.4">endAutnum -- an unsigned 32-bit integer representing the ending number <span>[<a href="#RFC5396" class="xref">RFC5396</a>]</span> in
the block of Autonomous System numbers<a href="#section-5.5-5.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.5-5.5">name -- a string representing an identifier assigned to the autnum registration by the
registration holder<a href="#section-5.5-5.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.5-5.6">type -- a string containing an RIR-specific classification of the
autnum per that RIR's registration model<a href="#section-5.5-5.6" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.5-5.7">status -- an array of strings indicating the state of the autnum as defined by <a href="#sect-4.6" class="xref">Section 4.6</a><a href="#section-5.5-5.7" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.5-5.8">country -- a string containing the two-character country
code of the autnum<a href="#section-5.5-5.8" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.5-5.9">entities -- an array of entity objects as defined by <a href="#sect-5.1" class="xref">Section 5.1</a><a href="#section-5.5-5.9" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.5-5.10">remarks -- see <a href="#sect-4.3" class="xref">Section 4.3</a><a href="#section-5.5-5.10" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.5-5.11">links -- see <a href="#sect-4.2" class="xref">Section 4.2</a><a href="#section-5.5-5.11" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.5-5.12">port43 -- see <a href="#sect-4.7" class="xref">Section 4.7</a><a href="#section-5.5-5.12" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.5-5.13">events -- see <a href="#sect-4.5" class="xref">Section 4.5</a><a href="#section-5.5-5.13" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
</section>
</div>
<div id="sect-6">
<section id="section-6">
<h2 id="name-error-response-body">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-error-response-body" class="section-name selfRef">Error Response Body</a>
</h2>
<p id="section-6-1">
Some non-answer responses <span class="bcp14">MAY</span> return entity bodies with information
that could be more descriptive.<a href="#section-6-1" class="pilcrow">¶</a></p>
<p id="section-6-2">
The basic structure of that response is an object class containing a
<span class="bcp14">REQUIRED</span> error code number (corresponding to the HTTP response code) followed
by an <span class="bcp14">OPTIONAL</span> string named "title" and an <span class="bcp14">OPTIONAL</span> array of strings named
"description".<a href="#section-6-2" class="pilcrow">¶</a></p>
<p id="section-6-3">
This is an example of the common response body.<a href="#section-6-3" class="pilcrow">¶</a></p>
<div id="ure-28">
<figure id="figure-28">
<div id="section-6-4.1">
<pre class="sourcecode lang-json">
{
"errorCode": 418,
"title": "Your Beverage Choice is Not Available",
"description":
[
"I know coffee has more ummppphhh.",
"Sorry, dude!"
]
}
</pre>
</div>
<figcaption><a href="#figure-28" class="selfRef">Figure 28</a></figcaption></figure>
</div>
<p id="section-6-5">
This is an example of the common response body with an
rdapConformance and notices data structures:<a href="#section-6-5" class="pilcrow">¶</a></p>
<div id="ure-29">
<figure id="figure-29">
<div id="section-6-6.1">
<pre class="sourcecode lang-json">
{
"rdapConformance" :
[
"rdap_level_0"
],
"notices" :
[
{
"title" : "Beverage Policy",
"description" :
[
"Beverages with caffeine for keeping horses awake."
],
"links" :
[
{
"value" : "https://example.net/ip/192.0.2.0/24",
"rel" : "alternate",
"type" : "text/html",
"href" : "https://www.example.com/redaction_policy.html"
}
]
}
],
"lang" : "en",
"errorCode": 418,
"title": "Your beverage choice is not available",
"description":
[
"I know coffee has more ummppphhh.",
"Sorry, dude!"
]
}
</pre>
</div>
<figcaption><a href="#figure-29" class="selfRef">Figure 29</a></figcaption></figure>
</div>
</section>
</div>
<div id="sect-7">
<section id="section-7">
<h2 id="name-responding-to-help-queries">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-responding-to-help-queries" class="section-name selfRef">Responding to Help Queries</a>
</h2>
<p id="section-7-1">
The appropriate response to /help queries as defined by <span>[<a href="#RFC9082" class="xref">RFC9082</a>]</span> is
to use the notices structure as defined in <a href="#sect-4.3" class="xref">Section 4.3</a>.<a href="#section-7-1" class="pilcrow">¶</a></p>
<p id="section-7-2">
This is an example of a response to a /help query including the
rdapConformance data structure.<a href="#section-7-2" class="pilcrow">¶</a></p>
<div id="ure-30">
<figure id="figure-30">
<div id="section-7-3.1">
<pre class="sourcecode lang-json">
{
"rdapConformance" :
[
"rdap_level_0"
],
"notices" :
[
{
"title" : "Authentication Policy",
"description" :
[
"Access to sensitive data for users with proper credentials."
],
"links" :
[
{
"value" : "https://example.net/help",
"rel" : "alternate",
"type" : "text/html",
"href" : "https://www.example.com/auth_policy.html"
}
]
}
]
}
</pre>
</div>
<figcaption><a href="#figure-30" class="selfRef">Figure 30</a></figcaption></figure>
</div>
</section>
</div>
<div id="sect-8">
<section id="section-8">
<h2 id="name-responding-to-searches">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-responding-to-searches" class="section-name selfRef">Responding To Searches</a>
</h2>
<p id="section-8-1">
<span>[<a href="#RFC9082" class="xref">RFC9082</a>]</span> specifies three types of searches: domains, nameservers,
and entities. Responses to these searches take the form of an array
of object instances where each instance is an appropriate object
class for the search (i.e., a search for /domains yields an array of
domain object instances). These arrays are contained within the
response object.<a href="#section-8-1" class="pilcrow">¶</a></p>
<p id="section-8-2">
The names of the arrays are as follows:<a href="#section-8-2" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-8-3.1">for /domains searches, the array is "domainSearchResults"<a href="#section-8-3.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-8-3.2">for /nameservers searches, the array is "nameserverSearchResults"<a href="#section-8-3.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-8-3.3">for /entities searches, the array is "entitySearchResults"<a href="#section-8-3.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-8-4">
The following is an elided example of a response to a /domains
search.<a href="#section-8-4" class="pilcrow">¶</a></p>
<div id="ure-31">
<figure id="figure-31">
<div id="section-8-5.1">
<pre class="sourcecode lang-json">
{
"rdapConformance" :
[
"rdap_level_0"
],
...
"domainSearchResults" :
[
{
"objectClassName" : "domain",
"handle" : "1-XXXX",
"ldhName" : "1.example.com",
...
},
{
"objectClassName" : "domain",
"handle" : "2-XXXX",
"ldhName" : "2.example.com",
...
}
]
}
</pre>
</div>
<figcaption><a href="#figure-31" class="selfRef">Figure 31</a></figcaption></figure>
</div>
</section>
</div>
<div id="sect-9">
<section id="section-9">
<h2 id="name-indicating-truncated-respon">
<a href="#section-9" class="section-number selfRef">9. </a><a href="#name-indicating-truncated-respon" class="section-name selfRef">Indicating Truncated Responses</a>
</h2>
<p id="section-9-1">
In cases where the data of a response needs to be limited or parts of
the data need to be omitted, the response is considered "truncated".
A truncated response is still valid JSON, but some of the results in
a search set or some of the data in an object are not provided by the
server. A server may indicate this by including a typed notice in
the response object.<a href="#section-9-1" class="pilcrow">¶</a></p>
<p id="section-9-2">
The following is an elided example of a search response that has been
truncated.<a href="#section-9-2" class="pilcrow">¶</a></p>
<div id="ure-32">
<figure id="figure-32">
<div id="section-9-3.1">
<pre class="sourcecode lang-json">
{
"rdapConformance" :
[
"rdap_level_0"
],
"notices" :
[
{
"title" : "Search Policy",
"type" : "result set truncated due to authorization",
"description" :
[
"Search results are limited to 25 per day per querying IP."
],
"links" :
[
{
"value" : "https://example.net/help",
"rel" : "alternate",
"type" : "text/html",
"href" : "https://www.example.com/search_policy.html"
}
]
}
],
"domainSearchResults" :
[
...
]
}
</pre>
</div>
<figcaption><a href="#figure-32" class="selfRef">Figure 32</a></figcaption></figure>
</div>
<p id="section-9-4">
A similar technique can be used with a typed remark where a single
object has been returned and data in that object has been truncated.
Such an example might be an entity object with only a partial set of
the IP networks associated with it.<a href="#section-9-4" class="pilcrow">¶</a></p>
<p id="section-9-5">
The following is an elided example of an entity truncated data.<a href="#section-9-5" class="pilcrow">¶</a></p>
<div id="ure-33">
<figure id="figure-33">
<div id="section-9-6.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "entity",
"handle" : "ANENTITY",
"roles" : [ "registrant" ],
...
"entities" :
[
{
"objectClassName" : "entity",
"handle": "ANEMBEDDEDENTITY",
"roles" : [ "technical" ],
...
},
...
],
"networks" :
[
...
],
...
"remarks" :
[
{
"title" : "Data Policy",
"type" : "object truncated due to unexplainable reason",
"description" :
[
"Some of the data in this object has been removed."
],
"links" :
[
{
"value" : "https://example.net/help",
"rel" : "alternate",
"type" : "text/html",
"href" : "https://www.example.com/data_policy.html"
}
]
}
]
}
</pre>
</div>
<figcaption><a href="#figure-33" class="selfRef">Figure 33</a></figcaption></figure>
</div>
</section>
</div>
<div id="sect-10">
<section id="section-10">
<h2 id="name-iana-considerations">
<a href="#section-10" class="section-number selfRef">10. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
</h2>
<p id="section-10-1">IANA has updated the description of the "transfer" event action as described in <a href="#sect-10.2.3" class="xref">Section 10.2.3</a>.<a href="#section-10-1" class="pilcrow">¶</a></p>
<div id="sect-10.1">
<section id="section-10.1">
<h3 id="name-rdap-json-media-type-regist">
<a href="#section-10.1" class="section-number selfRef">10.1. </a><a href="#name-rdap-json-media-type-regist" class="section-name selfRef">RDAP JSON Media Type Registration</a>
</h3>
<p id="section-10.1-1">IANA has updated the media type registration as described below.<a href="#section-10.1-1" class="pilcrow">¶</a></p>
<p id="section-10.1-2">This specification registers the "application/rdap+json" media type.<a href="#section-10.1-2" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-10.1-3">
<dt id="section-10.1-3.1">
Type name:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.2"> application<a href="#section-10.1-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.3">
Subtype name:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.4"> rdap+json<a href="#section-10.1-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.5">
Required parameters:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.6"> n/a<a href="#section-10.1-3.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.7">
Encoding considerations:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.8"> See <span><a href="https://www.rfc-editor.org/rfc/rfc6839#section-3.1" class="relref">Section 3.1</a> of [<a href="#RFC6839" class="xref">RFC6839</a>]</span>.<a href="#section-10.1-3.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.9">
Security considerations:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.10">The media represented by this identifier
does not have security considerations beyond that found in
<span><a href="https://www.rfc-editor.org/rfc/rfc8259#section-12" class="relref">Section 12</a> of [<a href="#RFC8259" class="xref">RFC8259</a>]</span>.<a href="#section-10.1-3.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.11">
Interoperability considerations:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.12"> There are no known
interoperability problems regarding this media format.<a href="#section-10.1-3.12" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.13">
Published specification:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.14"> RFC 9083<a href="#section-10.1-3.14" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.15">
Applications that use this media type:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.16"> Implementations of the
Registration Data Access Protocol (RDAP).<a href="#section-10.1-3.16" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.17">
Additional information:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.18"> This media type is a product of the IETF
REGEXT Working Group. The REGEXT charter, information on the
REGEXT mailing list, and other documents produced by the REGEXT
Working Group can be found at
<span><a href="https://datatracker.ietf.org/wg/regext/">https://datatracker.ietf.org/wg/regext/</a></span>.<a href="#section-10.1-3.18" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.19">
Person & email address to contact for further information:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.20">
<br>IESG
<iesg@ietf.org><a href="#section-10.1-3.20" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.21">
Intended usage:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.22"> COMMON<a href="#section-10.1-3.22" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.23">
Restrictions on usage:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.24"> none<a href="#section-10.1-3.24" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.25">
Author:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.26"> Andy Newton<a href="#section-10.1-3.26" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.27">
Change controller:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.28"> IETF<a href="#section-10.1-3.28" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.1-3.29">
Provisional Registration:</dt>
<dd style="margin-left: 1.5em" id="section-10.1-3.30"> No<a href="#section-10.1-3.30" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sect-10.2">
<section id="section-10.2">
<h3 id="name-json-values-registry">
<a href="#section-10.2" class="section-number selfRef">10.2. </a><a href="#name-json-values-registry" class="section-name selfRef">JSON Values Registry</a>
</h3>
<p id="section-10.2-1">
IANA has created a category in the protocol registries labeled
"Registration Data Access Protocol (RDAP)", and within that category,
IANA has established a URL-referenceable, stand-alone registry
labeled "RDAP JSON Values". This new registry is for use in the
notices and remarks (<a href="#sect-4.3" class="xref">Section 4.3</a>), status (<a href="#sect-4.6" class="xref">Section 4.6</a>), role
(<a href="#sect-5.1" class="xref">Section 5.1</a>), event action (<a href="#sect-4.5" class="xref">Section 4.5</a>), and domain variant
relation (<a href="#sect-5.3" class="xref">Section 5.3</a>) fields specified in RDAP.<a href="#section-10.2-1" class="pilcrow">¶</a></p>
<p id="section-10.2-2">
Each entry in the registry contains the following fields:<a href="#section-10.2-2" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-10.2-3">
<li id="section-10.2-3.1">Value -- the string value being registered.<a href="#section-10.2-3.1" class="pilcrow">¶</a>
</li>
<li id="section-10.2-3.2">
<p id="section-10.2-3.2.1">Type -- the type of value being registered. It should be one of
the following:<a href="#section-10.2-3.2.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-10.2-3.2.2.1">"notice or remark type" -- denotes a type of notice or remark.<a href="#section-10.2-3.2.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-10.2-3.2.2.2">"status" -- denotes a value for the "status" object member as
defined by <a href="#sect-4.6" class="xref">Section 4.6</a>.<a href="#section-10.2-3.2.2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-10.2-3.2.2.3">"role" -- denotes a value for the "role" array as defined in
<a href="#sect-5.1" class="xref">Section 5.1</a>.<a href="#section-10.2-3.2.2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-10.2-3.2.2.4">"event action" -- denotes a value for an event action as
defined in <a href="#sect-4.5" class="xref">Section 4.5</a>.<a href="#section-10.2-3.2.2.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-10.2-3.2.2.5">"domain variant relation" -- denotes a relationship between a
domain and a domain variant as defined in <a href="#sect-5.3" class="xref">Section 5.3</a>.<a href="#section-10.2-3.2.2.5" class="pilcrow">¶</a>
</li>
</ul>
</li>
<li id="section-10.2-3.3">Description -- a one- or two-sentence description regarding the
meaning of the value, how it might be used, and/or how it should
be interpreted by clients.<a href="#section-10.2-3.3" class="pilcrow">¶</a>
</li>
<li id="section-10.2-3.4">Registrant Name -- the name of the person registering the value.<a href="#section-10.2-3.4" class="pilcrow">¶</a>
</li>
<li id="section-10.2-3.5">Registrant Contact Information -- an email address, postal
address, or some other information to be used to contact the
registrant.<a href="#section-10.2-3.5" class="pilcrow">¶</a>
</li>
</ol>
<p id="section-10.2-4">
This registry is operated under the "Expert Review" policy defined in
<span>[<a href="#RFC8126" class="xref">RFC8126</a>]</span>.<a href="#section-10.2-4" class="pilcrow">¶</a></p>
<p id="section-10.2-5">
Review of registrations into this registry by the designated
expert(s) should be narrowly judged on the following criteria:<a href="#section-10.2-5" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-10.2-6">
<li id="section-10.2-6.1">Values in need of being placed into multiple types must be
assigned a separate registration for each type.<a href="#section-10.2-6.1" class="pilcrow">¶</a>
</li>
<li id="section-10.2-6.2">Values must be strings. They should be multiple words separated
by single space characters. Every character should be
lowercased. If possible, every word should be given in English
and each character should be US-ASCII.<a href="#section-10.2-6.2" class="pilcrow">¶</a>
</li>
<li id="section-10.2-6.3">Registrations should not duplicate the meaning of any existing
registration. That is, if a request for a registration is
significantly similar in nature to an existing registration, the
request should be denied. For example, the terms "maintainer"
and "registrant" are significantly similar in nature as they both
denote a holder of a domain name or Internet number resource. In
cases where it may be reasonably argued that machine
interpretation of two similar values may alter the operation of
client software, designated experts should not judge the values
to be of significant similarity.<a href="#section-10.2-6.3" class="pilcrow">¶</a>
</li>
<li id="section-10.2-6.4">Registrations should be relevant to the common usages of RDAP.
Designated experts may rely upon the serving of the value by a
DNR or RIR to make this determination.<a href="#section-10.2-6.4" class="pilcrow">¶</a>
</li>
</ol>
<p id="section-10.2-7">
The following sections provide initial registrations into this
registry.<a href="#section-10.2-7" class="pilcrow">¶</a></p>
<div id="sect-10.2.1">
<section id="section-10.2.1">
<h4 id="name-notice-and-remark-types">
<a href="#section-10.2.1" class="section-number selfRef">10.2.1. </a><a href="#name-notice-and-remark-types" class="section-name selfRef">Notice and Remark Types</a>
</h4>
<p id="section-10.2.1-1">
The following values have been registered in the "RDAP JSON Values"
registry:<a href="#section-10.2.1-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.1-2">
<dt id="section-10.2.1-2.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-2.2">result set truncated due to authorization<a href="#section-10.2.1-2.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-2.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-2.4">notice and remark type<a href="#section-10.2.1-2.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-2.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-2.6">The list of results does not contain all results due to lack of authorization.
This may indicate to some clients that proper authorization will yield a longer result
set.<a href="#section-10.2.1-2.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-2.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-2.8">IESG<a href="#section-10.2.1-2.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-2.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-2.10">iesg@ietf.org<a href="#section-10.2.1-2.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.1-3">
<dt id="section-10.2.1-3.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-3.2">result set truncated due to excessive load<a href="#section-10.2.1-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-3.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-3.4">notice and remark type<a href="#section-10.2.1-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-3.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-3.6">The list of results does not contain all results due to an excessively heavy load on the server.
This may indicate to some clients that requerying at a later time will yield a longer result
set.<a href="#section-10.2.1-3.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-3.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-3.8">IESG<a href="#section-10.2.1-3.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-3.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-3.10">iesg@ietf.org<a href="#section-10.2.1-3.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.1-4">
<dt id="section-10.2.1-4.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-4.2">result set truncated due to unexplainable reasons<a href="#section-10.2.1-4.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-4.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-4.4">notice and remark type<a href="#section-10.2.1-4.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-4.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-4.6">The list of results does not contain all results for an unexplainable reason.
This may indicate to some clients that requerying for any reason will not yield a longer result set.<a href="#section-10.2.1-4.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-4.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-4.8">IESG<a href="#section-10.2.1-4.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-4.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-4.10">iesg@ietf.org<a href="#section-10.2.1-4.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.1-5">
<dt id="section-10.2.1-5.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-5.2">object truncated due to authorization<a href="#section-10.2.1-5.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-5.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-5.4">notice and remark type<a href="#section-10.2.1-5.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-5.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-5.6">The object does not contain all data due to lack of authorization.<a href="#section-10.2.1-5.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-5.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-5.8">IESG<a href="#section-10.2.1-5.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-5.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-5.10">iesg@ietf.org<a href="#section-10.2.1-5.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.1-6">
<dt id="section-10.2.1-6.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-6.2">object truncated due to excessive load<a href="#section-10.2.1-6.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-6.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-6.4">notice and remark type<a href="#section-10.2.1-6.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-6.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-6.6">The object does not contain all data due to an excessively heavy load on the server.
This may indicate to some clients that requerying at a later time will yield all data of the object.<a href="#section-10.2.1-6.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-6.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-6.8">IESG<a href="#section-10.2.1-6.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-6.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-6.10">iesg@ietf.org<a href="#section-10.2.1-6.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.1-7">
<dt id="section-10.2.1-7.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-7.2">object truncated due to unexplainable reasons<a href="#section-10.2.1-7.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-7.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-7.4">notice and remark type<a href="#section-10.2.1-7.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-7.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-7.6">The object does not contain all data for an unexplainable reason.<a href="#section-10.2.1-7.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-7.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-7.8">IESG<a href="#section-10.2.1-7.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.1-7.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.1-7.10">iesg@ietf.org<a href="#section-10.2.1-7.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sect-10.2.2">
<section id="section-10.2.2">
<h4 id="name-status-2">
<a href="#section-10.2.2" class="section-number selfRef">10.2.2. </a><a href="#name-status-2" class="section-name selfRef">Status</a>
</h4>
<p id="section-10.2.2-1">The following values have been registered in the "RDAP JSON Values" registry:<a href="#section-10.2.2-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-2">
<dt id="section-10.2.2-2.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-2.2">validated<a href="#section-10.2.2-2.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-2.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-2.4">status<a href="#section-10.2.2-2.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-2.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-2.6">Signifies that the data of the object instance has been
found to be accurate. This type of status is usually found on entity
object instances to note the validity of identifying contact
information.<a href="#section-10.2.2-2.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-2.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-2.8">IESG<a href="#section-10.2.2-2.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-2.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-2.10">iesg@ietf.org<a href="#section-10.2.2-2.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-3">
<dt id="section-10.2.2-3.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-3.2">renew prohibited<a href="#section-10.2.2-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-3.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-3.4">status<a href="#section-10.2.2-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-3.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-3.6">Renewal or reregistration of the object instance is forbidden.<a href="#section-10.2.2-3.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-3.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-3.8">IESG<a href="#section-10.2.2-3.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-3.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-3.10">iesg@ietf.org<a href="#section-10.2.2-3.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-4">
<dt id="section-10.2.2-4.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-4.2">update prohibited<a href="#section-10.2.2-4.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-4.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-4.4">status<a href="#section-10.2.2-4.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-4.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-4.6">Updates to the object instance are forbidden.<a href="#section-10.2.2-4.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-4.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-4.8">IESG<a href="#section-10.2.2-4.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-4.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-4.10">iesg@ietf.org<a href="#section-10.2.2-4.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-5">
<dt id="section-10.2.2-5.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-5.2">transfer prohibited<a href="#section-10.2.2-5.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-5.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-5.4">status<a href="#section-10.2.2-5.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-5.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-5.6">Transfers of the registration from one registrar
to another are forbidden. This type of status normally applies to DNR
domain names.<a href="#section-10.2.2-5.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-5.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-5.8">IESG<a href="#section-10.2.2-5.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-5.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-5.10">iesg@ietf.org<a href="#section-10.2.2-5.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-6">
<dt id="section-10.2.2-6.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-6.2">delete prohibited<a href="#section-10.2.2-6.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-6.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-6.4">status<a href="#section-10.2.2-6.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-6.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-6.6">Deletion of the registration of the object
instance is forbidden. This type of status normally applies to DNR
domain names.<a href="#section-10.2.2-6.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-6.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-6.8">IESG<a href="#section-10.2.2-6.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-6.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-6.10">iesg@ietf.org<a href="#section-10.2.2-6.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-7">
<dt id="section-10.2.2-7.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-7.2">proxy<a href="#section-10.2.2-7.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-7.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-7.4">status<a href="#section-10.2.2-7.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-7.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-7.6">The registration of the object instance has been performed
by a third party. This is most commonly applied to entities.<a href="#section-10.2.2-7.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-7.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-7.8">IESG<a href="#section-10.2.2-7.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-7.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-7.10">iesg@ietf.org<a href="#section-10.2.2-7.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-8">
<dt id="section-10.2.2-8.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-8.2">private<a href="#section-10.2.2-8.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-8.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-8.4">status<a href="#section-10.2.2-8.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-8.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-8.6">The information of the object instance is not designated
for public consumption. This is most commonly applied to entities.<a href="#section-10.2.2-8.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-8.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-8.8">IESG<a href="#section-10.2.2-8.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-8.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-8.10">iesg@ietf.org<a href="#section-10.2.2-8.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-9">
<dt id="section-10.2.2-9.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-9.2">removed<a href="#section-10.2.2-9.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-9.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-9.4">status<a href="#section-10.2.2-9.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-9.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-9.6">Some of the information of the object instance has not
been made available and has been removed. This is most commonly applied to entities.<a href="#section-10.2.2-9.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-9.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-9.8">IESG<a href="#section-10.2.2-9.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-9.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-9.10">iesg@ietf.org<a href="#section-10.2.2-9.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-10">
<dt id="section-10.2.2-10.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-10.2">obscured<a href="#section-10.2.2-10.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-10.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-10.4">status<a href="#section-10.2.2-10.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-10.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-10.6">Some of the information of the object instance has been
altered for the purposes of not readily revealing the actual information
of the object instance. This is most commonly applied to entities.<a href="#section-10.2.2-10.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-10.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-10.8">IESG<a href="#section-10.2.2-10.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-10.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-10.10">iesg@ietf.org<a href="#section-10.2.2-10.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-11">
<dt id="section-10.2.2-11.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-11.2">associated<a href="#section-10.2.2-11.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-11.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-11.4">status<a href="#section-10.2.2-11.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-11.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-11.6">The object instance is associated with other object instances
in the registry. This is most commonly used to signify that a nameserver is
associated with a domain or that an entity is associated with a network resource
or domain.<a href="#section-10.2.2-11.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-11.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-11.8">IESG<a href="#section-10.2.2-11.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-11.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-11.10">iesg@ietf.org<a href="#section-10.2.2-11.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-12">
<dt id="section-10.2.2-12.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-12.2">active<a href="#section-10.2.2-12.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-12.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-12.4">status<a href="#section-10.2.2-12.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-12.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-12.6">The object instance is in use. For domain names, it signifies
that the domain name is published in DNS. For network and autnum registrations,
it signifies that they are allocated or assigned for use in operational networks.
This maps to the "OK" status of the Extensible Provisioning Protocol (EPP) <span>[<a href="#RFC5730" class="xref">RFC5730</a>]</span>.<a href="#section-10.2.2-12.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-12.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-12.8">IESG<a href="#section-10.2.2-12.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-12.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-12.10">iesg@ietf.org<a href="#section-10.2.2-12.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-13">
<dt id="section-10.2.2-13.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-13.2">inactive<a href="#section-10.2.2-13.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-13.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-13.4">status<a href="#section-10.2.2-13.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-13.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-13.6">The object instance is not in use. See "active".<a href="#section-10.2.2-13.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-13.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-13.8">IESG<a href="#section-10.2.2-13.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-13.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-13.10">iesg@ietf.org<a href="#section-10.2.2-13.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-14">
<dt id="section-10.2.2-14.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-14.2">locked<a href="#section-10.2.2-14.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-14.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-14.4">status<a href="#section-10.2.2-14.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-14.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-14.6">Changes to the object instance cannot be made, including the association of other
object instances.<a href="#section-10.2.2-14.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-14.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-14.8">IESG<a href="#section-10.2.2-14.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-14.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-14.10">iesg@ietf.org<a href="#section-10.2.2-14.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-15">
<dt id="section-10.2.2-15.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-15.2">pending create<a href="#section-10.2.2-15.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-15.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-15.4">status<a href="#section-10.2.2-15.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-15.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-15.6">A request has been received for the creation of the object instance, but
this action is not yet complete.<a href="#section-10.2.2-15.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-15.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-15.8">IESG<a href="#section-10.2.2-15.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-15.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-15.10">iesg@ietf.org<a href="#section-10.2.2-15.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-16">
<dt id="section-10.2.2-16.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-16.2">pending renew<a href="#section-10.2.2-16.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-16.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-16.4">status<a href="#section-10.2.2-16.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-16.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-16.6">A request has been received for the renewal of the object instance, but
this action is not yet complete.<a href="#section-10.2.2-16.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-16.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-16.8">IESG<a href="#section-10.2.2-16.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-16.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-16.10">iesg@ietf.org<a href="#section-10.2.2-16.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-17">
<dt id="section-10.2.2-17.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-17.2">pending transfer<a href="#section-10.2.2-17.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-17.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-17.4">status<a href="#section-10.2.2-17.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-17.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-17.6">A request has been received for the transfer of the object instance, but
this action is not yet complete.<a href="#section-10.2.2-17.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-17.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-17.8">IESG<a href="#section-10.2.2-17.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-17.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-17.10">iesg@ietf.org<a href="#section-10.2.2-17.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-18">
<dt id="section-10.2.2-18.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-18.2">pending update<a href="#section-10.2.2-18.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-18.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-18.4">status<a href="#section-10.2.2-18.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-18.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-18.6">A request has been received for the update or modification of the object instance, but
this action is not yet complete.<a href="#section-10.2.2-18.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-18.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-18.8">IESG<a href="#section-10.2.2-18.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-18.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-18.10">iesg@ietf.org<a href="#section-10.2.2-18.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.2-19">
<dt id="section-10.2.2-19.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-19.2">pending delete<a href="#section-10.2.2-19.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-19.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-19.4">status<a href="#section-10.2.2-19.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-19.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-19.6">A request has been received for the deletion or removal of the object instance, but
this action is not yet complete. For domains, this might mean that the name is no longer published
in DNS but has not yet been purged from the registry database.<a href="#section-10.2.2-19.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-19.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-19.8">IESG<a href="#section-10.2.2-19.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.2-19.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.2-19.10">iesg@ietf.org<a href="#section-10.2.2-19.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sect-10.2.3">
<section id="section-10.2.3">
<h4 id="name-event-actions">
<a href="#section-10.2.3" class="section-number selfRef">10.2.3. </a><a href="#name-event-actions" class="section-name selfRef">Event Actions</a>
</h4>
<p id="section-10.2.3-1">
The following values have been registered in the "RDAP JSON Values"
registry:<a href="#section-10.2.3-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.3-2">
<dt id="section-10.2.3-2.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-2.2">registration<a href="#section-10.2.3-2.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-2.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-2.4">event action<a href="#section-10.2.3-2.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-2.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-2.6">The object instance was initially registered.<a href="#section-10.2.3-2.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-2.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-2.8">IESG<a href="#section-10.2.3-2.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-2.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-2.10">iesg@ietf.org<a href="#section-10.2.3-2.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.3-3">
<dt id="section-10.2.3-3.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-3.2">reregistration<a href="#section-10.2.3-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-3.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-3.4">event action<a href="#section-10.2.3-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-3.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-3.6">The object instance was registered subsequently to initial registration.<a href="#section-10.2.3-3.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-3.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-3.8">IESG<a href="#section-10.2.3-3.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-3.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-3.10">iesg@ietf.org<a href="#section-10.2.3-3.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.3-4">
<dt id="section-10.2.3-4.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-4.2">last changed<a href="#section-10.2.3-4.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-4.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-4.4">event action<a href="#section-10.2.3-4.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-4.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-4.6">An action noting when the information in the object instance was last changed.<a href="#section-10.2.3-4.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-4.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-4.8">IESG<a href="#section-10.2.3-4.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-4.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-4.10">iesg@ietf.org<a href="#section-10.2.3-4.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.3-5">
<dt id="section-10.2.3-5.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-5.2">expiration<a href="#section-10.2.3-5.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-5.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-5.4">event action<a href="#section-10.2.3-5.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-5.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-5.6">The object instance has been removed or will be removed at a predetermined
date and time from the registry.<a href="#section-10.2.3-5.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-5.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-5.8">IESG<a href="#section-10.2.3-5.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-5.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-5.10">iesg@ietf.org<a href="#section-10.2.3-5.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.3-6">
<dt id="section-10.2.3-6.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-6.2">deletion<a href="#section-10.2.3-6.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-6.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-6.4">event action<a href="#section-10.2.3-6.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-6.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-6.6">The object instance was removed from the registry at a point in time that was not predetermined.<a href="#section-10.2.3-6.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-6.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-6.8">IESG<a href="#section-10.2.3-6.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-6.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-6.10">iesg@ietf.org<a href="#section-10.2.3-6.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.3-7">
<dt id="section-10.2.3-7.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-7.2">reinstantiation<a href="#section-10.2.3-7.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-7.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-7.4">event action<a href="#section-10.2.3-7.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-7.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-7.6">The object instance was reregistered after having been
removed from the registry.<a href="#section-10.2.3-7.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-7.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-7.8">IESG<a href="#section-10.2.3-7.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-7.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-7.10">iesg@ietf.org<a href="#section-10.2.3-7.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.3-8">
<dt id="section-10.2.3-8.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-8.2">transfer<a href="#section-10.2.3-8.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-8.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-8.4">event action<a href="#section-10.2.3-8.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-8.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-8.6">The object instance was transferred from one registrar to another.<a href="#section-10.2.3-8.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-8.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-8.8">IESG<a href="#section-10.2.3-8.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-8.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-8.10">iesg@ietf.org<a href="#section-10.2.3-8.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.3-9">
<dt id="section-10.2.3-9.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-9.2">locked<a href="#section-10.2.3-9.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-9.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-9.4">event action<a href="#section-10.2.3-9.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-9.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-9.6">The object instance was locked (see the "locked" status).<a href="#section-10.2.3-9.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-9.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-9.8">IESG<a href="#section-10.2.3-9.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-9.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-9.10">iesg@ietf.org<a href="#section-10.2.3-9.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.3-10">
<dt id="section-10.2.3-10.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-10.2">unlocked<a href="#section-10.2.3-10.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-10.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-10.4">event action<a href="#section-10.2.3-10.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-10.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-10.6">The object instance was unlocked (see the "locked" status).<a href="#section-10.2.3-10.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-10.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-10.8">IESG<a href="#section-10.2.3-10.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.3-10.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.3-10.10">iesg@ietf.org<a href="#section-10.2.3-10.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sect-10.2.4">
<section id="section-10.2.4">
<h4 id="name-roles">
<a href="#section-10.2.4" class="section-number selfRef">10.2.4. </a><a href="#name-roles" class="section-name selfRef">Roles</a>
</h4>
<p id="section-10.2.4-1">
The following values have been registered in the "RDAP JSON Values"
registry:<a href="#section-10.2.4-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.4-2">
<dt id="section-10.2.4-2.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-2.2">registrant<a href="#section-10.2.4-2.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-2.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-2.4">role<a href="#section-10.2.4-2.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-2.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-2.6">The entity object instance is the registrant of the
registration. In some registries, this is known as a maintainer.<a href="#section-10.2.4-2.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-2.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-2.8">IESG<a href="#section-10.2.4-2.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-2.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-2.10">iesg@ietf.org<a href="#section-10.2.4-2.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.4-3">
<dt id="section-10.2.4-3.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-3.2">technical<a href="#section-10.2.4-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-3.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-3.4">role<a href="#section-10.2.4-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-3.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-3.6">The entity object instance is a technical contact for the
registration.<a href="#section-10.2.4-3.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-3.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-3.8">IESG<a href="#section-10.2.4-3.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-3.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-3.10">iesg@ietf.org<a href="#section-10.2.4-3.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.4-4">
<dt id="section-10.2.4-4.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-4.2">administrative<a href="#section-10.2.4-4.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-4.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-4.4">role<a href="#section-10.2.4-4.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-4.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-4.6">The entity object instance is an administrative contact for
the registration.<a href="#section-10.2.4-4.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-4.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-4.8">IESG<a href="#section-10.2.4-4.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-4.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-4.10">iesg@ietf.org<a href="#section-10.2.4-4.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.4-5">
<dt id="section-10.2.4-5.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-5.2">abuse<a href="#section-10.2.4-5.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-5.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-5.4">role<a href="#section-10.2.4-5.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-5.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-5.6">The entity object instance handles network abuse issues on
behalf of the registrant of the registration.<a href="#section-10.2.4-5.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-5.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-5.8">IESG<a href="#section-10.2.4-5.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-5.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-5.10">iesg@ietf.org<a href="#section-10.2.4-5.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.4-6">
<dt id="section-10.2.4-6.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-6.2">billing<a href="#section-10.2.4-6.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-6.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-6.4">role<a href="#section-10.2.4-6.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-6.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-6.6">The entity object instance handles payment and billing
issues on behalf of the registrant of the registration.<a href="#section-10.2.4-6.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-6.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-6.8">IESG<a href="#section-10.2.4-6.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-6.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-6.10">iesg@ietf.org<a href="#section-10.2.4-6.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.4-7">
<dt id="section-10.2.4-7.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-7.2">registrar<a href="#section-10.2.4-7.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-7.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-7.4">role<a href="#section-10.2.4-7.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-7.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-7.6">The entity object instance represents the authority
responsible for the registration in the registry.<a href="#section-10.2.4-7.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-7.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-7.8">IESG<a href="#section-10.2.4-7.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-7.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-7.10">iesg@ietf.org<a href="#section-10.2.4-7.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.4-8">
<dt id="section-10.2.4-8.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-8.2">reseller<a href="#section-10.2.4-8.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-8.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-8.4">role<a href="#section-10.2.4-8.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-8.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-8.6">The entity object instance represents a third party
through which the registration was conducted (i.e., not the registry or registrar).<a href="#section-10.2.4-8.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-8.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-8.8">IESG<a href="#section-10.2.4-8.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-8.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-8.10">iesg@ietf.org<a href="#section-10.2.4-8.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.4-9">
<dt id="section-10.2.4-9.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-9.2">sponsor<a href="#section-10.2.4-9.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-9.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-9.4">role<a href="#section-10.2.4-9.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-9.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-9.6">The entity object instance represents a domain policy
sponsor, such as an ICANN-approved sponsor.<a href="#section-10.2.4-9.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-9.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-9.8">IESG<a href="#section-10.2.4-9.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-9.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-9.10">iesg@ietf.org<a href="#section-10.2.4-9.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.4-10">
<dt id="section-10.2.4-10.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-10.2">proxy<a href="#section-10.2.4-10.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-10.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-10.4">role<a href="#section-10.2.4-10.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-10.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-10.6">The entity object instance represents a proxy for another
entity object, such as a registrant.<a href="#section-10.2.4-10.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-10.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-10.8">IESG<a href="#section-10.2.4-10.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-10.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-10.10">iesg@ietf.org<a href="#section-10.2.4-10.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.4-11">
<dt id="section-10.2.4-11.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-11.2">notifications<a href="#section-10.2.4-11.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-11.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-11.4">role<a href="#section-10.2.4-11.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-11.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-11.6">An entity object instance designated to receive notifications about
association object instances.<a href="#section-10.2.4-11.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-11.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-11.8">IESG<a href="#section-10.2.4-11.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-11.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-11.10">iesg@ietf.org<a href="#section-10.2.4-11.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.4-12">
<dt id="section-10.2.4-12.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-12.2">noc<a href="#section-10.2.4-12.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-12.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-12.4">role<a href="#section-10.2.4-12.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-12.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-12.6">The entity object instance handles communications related to a
network operations center (NOC).<a href="#section-10.2.4-12.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-12.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-12.8">IESG<a href="#section-10.2.4-12.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.4-12.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.4-12.10">iesg@ietf.org<a href="#section-10.2.4-12.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sect-10.2.5">
<section id="section-10.2.5">
<h4 id="name-variant-relations">
<a href="#section-10.2.5" class="section-number selfRef">10.2.5. </a><a href="#name-variant-relations" class="section-name selfRef">Variant Relations</a>
</h4>
<p id="section-10.2.5-1">
The following values have been registered in the "RDAP JSON Values"
registry:<a href="#section-10.2.5-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.5-2">
<dt id="section-10.2.5-2.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-2.2">registered<a href="#section-10.2.5-2.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-2.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-2.4">domain variant relation<a href="#section-10.2.5-2.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-2.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-2.6">The variant names are registered in the registry.<a href="#section-10.2.5-2.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-2.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-2.8">IESG<a href="#section-10.2.5-2.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-2.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-2.10">iesg@ietf.org<a href="#section-10.2.5-2.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.5-3">
<dt id="section-10.2.5-3.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-3.2">unregistered<a href="#section-10.2.5-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-3.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-3.4">domain variant relation<a href="#section-10.2.5-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-3.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-3.6">The variant names are not found in the registry.<a href="#section-10.2.5-3.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-3.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-3.8">IESG<a href="#section-10.2.5-3.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-3.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-3.10">iesg@ietf.org<a href="#section-10.2.5-3.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.5-4">
<dt id="section-10.2.5-4.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-4.2">registration restricted<a href="#section-10.2.5-4.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-4.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-4.4">domain variant relation<a href="#section-10.2.5-4.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-4.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-4.6">Registration of the variant names is
restricted to certain parties or within certain rules.<a href="#section-10.2.5-4.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-4.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-4.8">IESG<a href="#section-10.2.5-4.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-4.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-4.10">iesg@ietf.org<a href="#section-10.2.5-4.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.5-5">
<dt id="section-10.2.5-5.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-5.2">open registration<a href="#section-10.2.5-5.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-5.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-5.4">domain variant relation<a href="#section-10.2.5-5.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-5.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-5.6">Registration of the variant names is available to
generally qualified registrants.<a href="#section-10.2.5-5.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-5.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-5.8">IESG<a href="#section-10.2.5-5.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-5.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-5.10">iesg@ietf.org<a href="#section-10.2.5-5.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-10.2.5-6">
<dt id="section-10.2.5-6.1">Value:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-6.2">conjoined<a href="#section-10.2.5-6.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-6.3">Type:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-6.4">domain variant relation<a href="#section-10.2.5-6.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-6.5">Description:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-6.6">Registration of the variant names occurs automatically with the
registration of the containing domain registration.<a href="#section-10.2.5-6.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-6.7">Registrant Name:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-6.8">IESG<a href="#section-10.2.5-6.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-10.2.5-6.9">Registrant Contact Information:</dt>
<dd style="margin-left: 1.5em" id="section-10.2.5-6.10">iesg@ietf.org<a href="#section-10.2.5-6.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
</section>
</div>
</section>
</div>
<div id="sect-11">
<section id="section-11">
<h2 id="name-security-considerations">
<a href="#section-11" class="section-number selfRef">11. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
</h2>
<p id="section-11-1">
This specification models information serialized in JSON format. As
JSON is a subset of JavaScript, implementations are advised to follow
the security considerations outlined in <span><a href="https://www.rfc-editor.org/rfc/rfc8259#section-12" class="relref">Section 12</a> of [<a href="#RFC8259" class="xref">RFC8259</a>]</span> to
prevent code injection.<a href="#section-11-1" class="pilcrow">¶</a></p>
<p id="section-11-2">
Though not specific to JSON, RDAP implementers should be aware of the
security considerations specified in <span>[<a href="#RFC7480" class="xref">RFC7480</a>]</span> and the security
requirements and considerations in <span>[<a href="#RFC7481" class="xref">RFC7481</a>]</span>.<a href="#section-11-2" class="pilcrow">¶</a></p>
<p id="section-11-3">RDAP responses allow for retrieval of DNSSEC (key) related information,
but the RRSIG DS from the parent zone is not conveyed alongside it.
This means that the DNSSEC keys retrieved by RDAP are disconnected
from their containing PKI, and as such are not generally expected to
be trusted without additional information. In particular, the HTTPS
channel protecting the RDAP connection is not expected to be authorized
to certify the validity of the DNSSEC keys.<a href="#section-11-3" class="pilcrow">¶</a></p>
<p id="section-11-4">
Clients caching data, especially clients using RDAP-specific caches
(instead of HTTP-layer caches), should have safeguards to prevent
cache poisoning. See <a href="#sect-5" class="xref">Section 5</a> for advice on using the self links
for caching.<a href="#section-11-4" class="pilcrow">¶</a></p>
<p id="section-11-5">
Finally, service operators should be aware of the privacy mechanisms
noted in <a href="#sect-13" class="xref">Section 13</a>.<a href="#section-11-5" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-12">
<section id="section-12">
<h2 id="name-internationalization-consid">
<a href="#section-12" class="section-number selfRef">12. </a><a href="#name-internationalization-consid" class="section-name selfRef">Internationalization Considerations</a>
</h2>
<div id="sect-12.1">
<section id="section-12.1">
<h3 id="name-character-encoding">
<a href="#section-12.1" class="section-number selfRef">12.1. </a><a href="#name-character-encoding" class="section-name selfRef">Character Encoding</a>
</h3>
<p id="section-12.1-1">
The default text encoding for JSON responses in RDAP is UTF-8
<span>[<a href="#RFC3629" class="xref">RFC3629</a>]</span>, and all servers and clients <span class="bcp14">MUST</span> support UTF-8.<a href="#section-12.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-12.2">
<section id="section-12.2">
<h3 id="name-uris-and-iris">
<a href="#section-12.2" class="section-number selfRef">12.2. </a><a href="#name-uris-and-iris" class="section-name selfRef">URIs and IRIs</a>
</h3>
<p id="section-12.2-1">
<span>[<a href="#RFC7480" class="xref">RFC7480</a>]</span> defines the use of URIs and IRIs in RDAP.<a href="#section-12.2-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-12.3">
<section id="section-12.3">
<h3 id="name-language-tags">
<a href="#section-12.3" class="section-number selfRef">12.3. </a><a href="#name-language-tags" class="section-name selfRef">Language Tags</a>
</h3>
<p id="section-12.3-1">
<a href="#sect-4.4" class="xref">Section 4.4</a> defines the use of language tags in the JSON responses
defined in this document.<a href="#section-12.3-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-12.4">
<section id="section-12.4">
<h3 id="name-internationalized-domain-na">
<a href="#section-12.4" class="section-number selfRef">12.4. </a><a href="#name-internationalized-domain-na" class="section-name selfRef">Internationalized Domain Names</a>
</h3>
<p id="section-12.4-1">
IDNs are denoted in this specification by the separation of DNS names
in LDH form and Unicode form (see <a href="#sect-3" class="xref">Section 3</a>). Representation of IDNs
in registries is described by the "variants" object in <a href="#sect-5.3" class="xref">Section 5.3</a>
and the suggested values listed in <a href="#sect-10.2.5" class="xref">Section 10.2.5</a>.<a href="#section-12.4-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sect-13">
<section id="section-13">
<h2 id="name-privacy-considerations">
<a href="#section-13" class="section-number selfRef">13. </a><a href="#name-privacy-considerations" class="section-name selfRef">Privacy Considerations</a>
</h2>
<p id="section-13-1">
This specification suggests status values to denote contact and
registrant information that has been marked as private and/or has
been removed or obscured. See <a href="#sect-10.2.2" class="xref">Section 10.2.2</a> for the complete list
of status values. A few of the status values indicate that there are
privacy concerns associated with the object instance. The following
status codes <span class="bcp14">SHOULD</span> be used to describe data elements of a response
when appropriate:<a href="#section-13-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-13-2.1">
private -- The object is not be shared in query responses, unless
the user is authorized to view this information.<a href="#section-13-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-13-2.2">
removed -- Data elements within the object have been collected but
have been omitted from the response. This option can be used to
prevent unauthorized access to associated object instances without
the need to mark them as private.<a href="#section-13-2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-13-2.3">
obscured -- Data elements within the object have been collected,
but the response value has been altered so that values are not
easily discernible. A value changed from "1212" to "XXXX" is an
example of obscured data. This option may reveal privacy
sensitive information and should only be used when data
sensitivity does not require a more protective option like
"private" or "removed".<a href="#section-13-2.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-13-3">
See <a href="#sect-a.1" class="xref">Appendix A.1</a> for an example of applying those values to contacts
and registrants.<a href="#section-13-3" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-14">
<h2 id="name-references">
<a href="#section-14" class="section-number selfRef">14. </a><a href="#name-references" class="section-name selfRef">References</a>
</h2>
<section id="section-14.1">
<h3 id="name-normative-references">
<a href="#section-14.1" class="section-number selfRef">14.1. </a><a href="#name-normative-references" class="section-name selfRef">Normative References</a>
</h3>
<dl class="references">
<dt id="ISO.3166.2020">[ISO.3166.2020]</dt>
<dd>
<span class="refAuthor">International Organization for Standardization</span>, <span class="refTitle">"Codes for the representation of names of countries and their subdivisions"</span>, <span class="refContent">Fourth edition</span>, <span class="seriesInfo">ISO Standard 3166</span>, <time datetime="2020-08" class="refDate">August 2020</time>. </dd>
<dd class="break"></dd>
<dt id="RFC2119">[RFC2119]</dt>
<dd>
<span class="refAuthor">Bradner, S.</span>, <span class="refTitle">"Key words for use in RFCs to Indicate Requirement Levels"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 2119</span>, <span class="seriesInfo">DOI 10.17487/RFC2119</span>, <time datetime="1997-03" class="refDate">March 1997</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC3339">[RFC3339]</dt>
<dd>
<span class="refAuthor">Klyne, G.</span> and <span class="refAuthor">C. Newman</span>, <span class="refTitle">"Date and Time on the Internet: Timestamps"</span>, <span class="seriesInfo">RFC 3339</span>, <span class="seriesInfo">DOI 10.17487/RFC3339</span>, <time datetime="2002-07" class="refDate">July 2002</time>, <span><<a href="https://www.rfc-editor.org/info/rfc3339">https://www.rfc-editor.org/info/rfc3339</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC3629">[RFC3629]</dt>
<dd>
<span class="refAuthor">Yergeau, F.</span>, <span class="refTitle">"UTF-8, a transformation format of ISO 10646"</span>, <span class="seriesInfo">STD 63</span>, <span class="seriesInfo">RFC 3629</span>, <span class="seriesInfo">DOI 10.17487/RFC3629</span>, <time datetime="2003-11" class="refDate">November 2003</time>, <span><<a href="https://www.rfc-editor.org/info/rfc3629">https://www.rfc-editor.org/info/rfc3629</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC3986">[RFC3986]</dt>
<dd>
<span class="refAuthor">Berners-Lee, T.</span>, <span class="refAuthor">Fielding, R.</span>, and <span class="refAuthor">L. Masinter</span>, <span class="refTitle">"Uniform Resource Identifier (URI): Generic Syntax"</span>, <span class="seriesInfo">STD 66</span>, <span class="seriesInfo">RFC 3986</span>, <span class="seriesInfo">DOI 10.17487/RFC3986</span>, <time datetime="2005-01" class="refDate">January 2005</time>, <span><<a href="https://www.rfc-editor.org/info/rfc3986">https://www.rfc-editor.org/info/rfc3986</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4034">[RFC4034]</dt>
<dd>
<span class="refAuthor">Arends, R.</span>, <span class="refAuthor">Austein, R.</span>, <span class="refAuthor">Larson, M.</span>, <span class="refAuthor">Massey, D.</span>, and <span class="refAuthor">S. Rose</span>, <span class="refTitle">"Resource Records for the DNS Security Extensions"</span>, <span class="seriesInfo">RFC 4034</span>, <span class="seriesInfo">DOI 10.17487/RFC4034</span>, <time datetime="2005-03" class="refDate">March 2005</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4034">https://www.rfc-editor.org/info/rfc4034</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5396">[RFC5396]</dt>
<dd>
<span class="refAuthor">Huston, G.</span> and <span class="refAuthor">G. Michaelson</span>, <span class="refTitle">"Textual Representation of Autonomous System (AS) Numbers"</span>, <span class="seriesInfo">RFC 5396</span>, <span class="seriesInfo">DOI 10.17487/RFC5396</span>, <time datetime="2008-12" class="refDate">December 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5396">https://www.rfc-editor.org/info/rfc5396</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5646">[RFC5646]</dt>
<dd>
<span class="refAuthor">Phillips, A., Ed.</span> and <span class="refAuthor">M. Davis, Ed.</span>, <span class="refTitle">"Tags for Identifying Languages"</span>, <span class="seriesInfo">BCP 47</span>, <span class="seriesInfo">RFC 5646</span>, <span class="seriesInfo">DOI 10.17487/RFC5646</span>, <time datetime="2009-09" class="refDate">September 2009</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5646">https://www.rfc-editor.org/info/rfc5646</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5890">[RFC5890]</dt>
<dd>
<span class="refAuthor">Klensin, J.</span>, <span class="refTitle">"Internationalized Domain Names for Applications (IDNA): Definitions and Document Framework"</span>, <span class="seriesInfo">RFC 5890</span>, <span class="seriesInfo">DOI 10.17487/RFC5890</span>, <time datetime="2010-08" class="refDate">August 2010</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5890">https://www.rfc-editor.org/info/rfc5890</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5952">[RFC5952]</dt>
<dd>
<span class="refAuthor">Kawamura, S.</span> and <span class="refAuthor">M. Kawashima</span>, <span class="refTitle">"A Recommendation for IPv6 Address Text Representation"</span>, <span class="seriesInfo">RFC 5952</span>, <span class="seriesInfo">DOI 10.17487/RFC5952</span>, <time datetime="2010-08" class="refDate">August 2010</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5952">https://www.rfc-editor.org/info/rfc5952</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC7095">[RFC7095]</dt>
<dd>
<span class="refAuthor">Kewisch, P.</span>, <span class="refTitle">"jCard: The JSON Format for vCard"</span>, <span class="seriesInfo">RFC 7095</span>, <span class="seriesInfo">DOI 10.17487/RFC7095</span>, <time datetime="2014-01" class="refDate">January 2014</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7095">https://www.rfc-editor.org/info/rfc7095</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC7480">[RFC7480]</dt>
<dd>
<span class="refAuthor">Newton, A.</span>, <span class="refAuthor">Ellacott, B.</span>, and <span class="refAuthor">N. Kong</span>, <span class="refTitle">"HTTP Usage in the Registration Data Access Protocol (RDAP)"</span>, <span class="seriesInfo">STD 95</span>, <span class="seriesInfo">RFC 7480</span>, <span class="seriesInfo">DOI 10.17487/RFC7480</span>, <time datetime="2015-03" class="refDate">March 2015</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7480">https://www.rfc-editor.org/info/rfc7480</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC7481">[RFC7481]</dt>
<dd>
<span class="refAuthor">Hollenbeck, S.</span> and <span class="refAuthor">N. Kong</span>, <span class="refTitle">"Security Services for the Registration Data Access Protocol (RDAP)"</span>, <span class="seriesInfo">STD 95</span>, <span class="seriesInfo">RFC 7481</span>, <span class="seriesInfo">DOI 10.17487/RFC7481</span>, <time datetime="2015-03" class="refDate">March 2015</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7481">https://www.rfc-editor.org/info/rfc7481</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8126">[RFC8126]</dt>
<dd>
<span class="refAuthor">Cotton, M.</span>, <span class="refAuthor">Leiba, B.</span>, and <span class="refAuthor">T. Narten</span>, <span class="refTitle">"Guidelines for Writing an IANA Considerations Section in RFCs"</span>, <span class="seriesInfo">BCP 26</span>, <span class="seriesInfo">RFC 8126</span>, <span class="seriesInfo">DOI 10.17487/RFC8126</span>, <time datetime="2017-06" class="refDate">June 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8126">https://www.rfc-editor.org/info/rfc8126</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8174">[RFC8174]</dt>
<dd>
<span class="refAuthor">Leiba, B.</span>, <span class="refTitle">"Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 8174</span>, <span class="seriesInfo">DOI 10.17487/RFC8174</span>, <time datetime="2017-05" class="refDate">May 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8259">[RFC8259]</dt>
<dd>
<span class="refAuthor">Bray, T., Ed.</span>, <span class="refTitle">"The JavaScript Object Notation (JSON) Data Interchange Format"</span>, <span class="seriesInfo">STD 90</span>, <span class="seriesInfo">RFC 8259</span>, <span class="seriesInfo">DOI 10.17487/RFC8259</span>, <time datetime="2017-12" class="refDate">December 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8259">https://www.rfc-editor.org/info/rfc8259</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8288">[RFC8288]</dt>
<dd>
<span class="refAuthor">Nottingham, M.</span>, <span class="refTitle">"Web Linking"</span>, <span class="seriesInfo">RFC 8288</span>, <span class="seriesInfo">DOI 10.17487/RFC8288</span>, <time datetime="2017-10" class="refDate">October 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8288">https://www.rfc-editor.org/info/rfc8288</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC9082">[RFC9082]</dt>
<dd>
<span class="refAuthor">Hollenbeck, S.</span> and <span class="refAuthor">A. Newton</span>, <span class="refTitle">"Registration Data Access Protocol (RDAP) Query Format"</span>, <span class="seriesInfo">STD 95</span>, <span class="seriesInfo">RFC 9082</span>, <span class="seriesInfo">DOI 10.17487/RFC9082</span>, <time datetime="2021-06" class="refDate">June 2021</time>, <span><<a href="https://www.rfc-editor.org/info/rfc9082">https://www.rfc-editor.org/info/rfc9082</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-14.2">
<h3 id="name-informative-references">
<a href="#section-14.2" class="section-number selfRef">14.2. </a><a href="#name-informative-references" class="section-name selfRef">Informative References</a>
</h3>
<dl class="references">
<dt id="IANA_IDNTABLES">[IANA_IDNTABLES]</dt>
<dd>
<span class="refAuthor">IANA</span>, <span class="refTitle">"Repository of IDN Practices"</span>, <span><<a href="https://www.iana.org/domains/idn-tables">https://www.iana.org/domains/idn-tables</a>></span>. </dd>
<dd class="break"></dd>
<dt id="JSON_ascendancy">[JSON_ascendancy]</dt>
<dd>
<span class="refAuthor">MacVittie, L.</span>, <span class="refTitle">"The Stealthy Ascendancy of JSON"</span>, <time datetime="2011-04" class="refDate">April 2011</time>, <span><<a href="https://devcentral.f5.com/s/articles/the-stealthy-ascendancy-of-json">https://devcentral.f5.com/s/articles/the-stealthy-ascendancy-of-json</a>></span>. </dd>
<dd class="break"></dd>
<dt id="JSON_performance_study">[JSON_performance_study]</dt>
<dd>
<span class="refAuthor">Nurseitov, N.</span>, <span class="refAuthor">Paulson, M.</span>, <span class="refAuthor">Reynolds, R.</span>, and <span class="refAuthor">C. Izurieta</span>, <span class="refTitle">"Comparison of JSON and XML Data Interchange Formats: A Case Study"</span>, <time datetime="2009" class="refDate">2009</time>, <span><<a href="https://www.cs.montana.edu/izurieta/pubs/caine2009.pdf">https://www.cs.montana.edu/izurieta/pubs/caine2009.pdf</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC3912">[RFC3912]</dt>
<dd>
<span class="refAuthor">Daigle, L.</span>, <span class="refTitle">"WHOIS Protocol Specification"</span>, <span class="seriesInfo">RFC 3912</span>, <span class="seriesInfo">DOI 10.17487/RFC3912</span>, <time datetime="2004-09" class="refDate">September 2004</time>, <span><<a href="https://www.rfc-editor.org/info/rfc3912">https://www.rfc-editor.org/info/rfc3912</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5730">[RFC5730]</dt>
<dd>
<span class="refAuthor">Hollenbeck, S.</span>, <span class="refTitle">"Extensible Provisioning Protocol (EPP)"</span>, <span class="seriesInfo">STD 69</span>, <span class="seriesInfo">RFC 5730</span>, <span class="seriesInfo">DOI 10.17487/RFC5730</span>, <time datetime="2009-08" class="refDate">August 2009</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5730">https://www.rfc-editor.org/info/rfc5730</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5910">[RFC5910]</dt>
<dd>
<span class="refAuthor">Gould, J.</span> and <span class="refAuthor">S. Hollenbeck</span>, <span class="refTitle">"Domain Name System (DNS) Security Extensions Mapping for the Extensible Provisioning Protocol (EPP)"</span>, <span class="seriesInfo">RFC 5910</span>, <span class="seriesInfo">DOI 10.17487/RFC5910</span>, <time datetime="2010-05" class="refDate">May 2010</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5910">https://www.rfc-editor.org/info/rfc5910</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6350">[RFC6350]</dt>
<dd>
<span class="refAuthor">Perreault, S.</span>, <span class="refTitle">"vCard Format Specification"</span>, <span class="seriesInfo">RFC 6350</span>, <span class="seriesInfo">DOI 10.17487/RFC6350</span>, <time datetime="2011-08" class="refDate">August 2011</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6350">https://www.rfc-editor.org/info/rfc6350</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6839">[RFC6839]</dt>
<dd>
<span class="refAuthor">Hansen, T.</span> and <span class="refAuthor">A. Melnikov</span>, <span class="refTitle">"Additional Media Type Structured Syntax Suffixes"</span>, <span class="seriesInfo">RFC 6839</span>, <span class="seriesInfo">DOI 10.17487/RFC6839</span>, <time datetime="2013-01" class="refDate">January 2013</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6839">https://www.rfc-editor.org/info/rfc6839</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
</section>
<div id="sect-a">
<section id="section-appendix.a">
<h2 id="name-suggested-data-modeling-wit">
<a href="#section-appendix.a" class="section-number selfRef">Appendix A. </a><a href="#name-suggested-data-modeling-wit" class="section-name selfRef">Suggested Data Modeling with the Entity Object Class</a>
</h2>
<div id="sect-a.1">
<section id="section-a.1">
<h2 id="name-registrants-and-contacts">
<a href="#section-a.1" class="section-number selfRef">A.1. </a><a href="#name-registrants-and-contacts" class="section-name selfRef">Registrants and Contacts</a>
</h2>
<p id="section-a.1-1">
This document does not provide specific object classes for
registrants and contacts. Instead, the entity object class may be
used to represent a registrant or contact. When the entity object is
embedded inside a containing object such as a domain name or IP
network, the "roles" string array can be used to signify the
relationship. It is recommended that the values from <a href="#sect-10.2.4" class="xref">Section 10.2.4</a>
be used.<a href="#section-a.1-1" class="pilcrow">¶</a></p>
<p id="section-a.1-2">
The following is an example of an elided containing object with an
embedded entity that is both a registrant and administrative contact:<a href="#section-a.1-2" class="pilcrow">¶</a></p>
<div id="ure-34">
<figure id="figure-34">
<div id="section-a.1-3.1">
<pre class="sourcecode lang-json">
{
...
"entities" :
[
{
"objectClassName" : "entity",
"handle" : "XXXX",
"vcardArray":[
"vcard",
[
["version", {}, "text", "4.0"],
["fn", {}, "text", "Joe User"],
["kind", {}, "text", "individual"],
["lang", {
"pref":"1"
}, "language-tag", "fr"],
["lang", {
"pref":"2"
}, "language-tag", "en"],
["org", {
"type":"work"
}, "text", "Example"],
["title", {}, "text", "Research Scientist"],
["role", {}, "text", "Project Lead"],
["adr",
{ "type":"work" },
"text",
[
"",
"Suite 1234",
"4321 Rue Somewhere",
"Quebec",
"QC",
"G1V 2M2",
"Canada"
]
],
["tel",
{ "type":["work", "voice"], "pref":"1" },
"uri", "tel:+1-555-555-1234;ext=102"
],
["email",
{ "type":"work" },
"text", "joe.user@example.com"
]
]
],
"roles" : [ "registrant", "administrative" ],
"remarks" :
[
{
"description" :
[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
},
{
"eventAction" : "last changed",
"eventDate" : "1991-12-31T23:59:59Z"
}
]
}
]
}
</pre>
</div>
<figcaption><a href="#figure-34" class="selfRef">Figure 34</a></figcaption></figure>
</div>
<p id="section-a.1-4">
In many use cases, it is necessary to hide or obscure the information
of a registrant or contact due to policy or other operational
matters. Registries can denote these situations with "status" values
(see <a href="#sect-10.2.2" class="xref">Section 10.2.2</a>).<a href="#section-a.1-4" class="pilcrow">¶</a></p>
<p id="section-a.1-5">
The following is an elided example of a registrant with information
changed to reflect that of a third party.<a href="#section-a.1-5" class="pilcrow">¶</a></p>
<div id="ure-35">
<figure id="figure-35">
<div id="section-a.1-6.1">
<pre class="sourcecode lang-json">
{
...
"entities" :
[
{
"objectClassName" : "entity",
"handle" : "XXXX",
...
"roles" : [ "registrant", "administrative" ],
"status" : [ "proxy", "private", "obscured" ]
}
]
}
</pre>
</div>
<figcaption><a href="#figure-35" class="selfRef">Figure 35</a></figcaption></figure>
</div>
</section>
</div>
<div id="sect-a.2">
<section id="section-a.2">
<h2 id="name-registrars">
<a href="#section-a.2" class="section-number selfRef">A.2. </a><a href="#name-registrars" class="section-name selfRef">Registrars</a>
</h2>
<p id="section-a.2-1">
This document does not provide a specific object class for
registrars, but like registrants and contacts (see <a href="#sect-a.1" class="xref">Appendix A.1</a>), the
"roles" string array maybe used. Additionally, many registrars have
publicly assigned identifiers. The publicIds structure (<a href="#sect-4.8" class="xref">Section 4.8</a>)
represents that information.<a href="#section-a.2-1" class="pilcrow">¶</a></p>
<p id="section-a.2-2">
The following is an example of an elided containing object with an
embedded entity that is a registrar:<a href="#section-a.2-2" class="pilcrow">¶</a></p>
<div id="ure-36">
<figure id="figure-36">
<div id="section-a.2-3.1">
<pre class="sourcecode lang-json">
{
...
"entities":[
{
"objectClassName" : "entity",
"handle":"XXXX",
"vcardArray":[
"vcard",
[
["version", {}, "text", "4.0"],
["fn", {}, "text", "Joe's Fish, Chips, and Domains"],
["kind", {}, "text", "org"],
["lang", {
"pref":"1"
}, "language-tag", "fr"],
["lang", {
"pref":"2"
}, "language-tag", "en"],
["org", {
"type":"work"
}, "text", "Example"],
["adr",
{ "type":"work" },
"text",
[
"",
"Suite 1234",
"4321 Rue Somewhere",
"Quebec",
"QC",
"G1V 2M2",
"Canada"
]
],
["tel",
{
"type":["work", "voice"],
"pref":"1"
},
"uri", "tel:+1-555-555-1234;ext=102"
],
["email",
{ "type":"work" },
"text", "joes_fish_chips_and_domains@example.com"
]
]
],
"roles":[ "registrar" ],
"publicIds":[
{
"type":"IANA Registrar ID",
"identifier":"1"
}
],
"remarks":[
{
"description":[
"She sells sea shells down by the sea shore.",
"Originally written by Terry Sullivan."
]
}
],
"links":[
{
"value":"https://example.net/entity/XXXX",
"rel":"alternate",
"type":"text/html",
"href":"https://www.example.com"
}
]
}
]
}
</pre>
</div>
<figcaption><a href="#figure-36" class="selfRef">Figure 36</a></figcaption></figure>
</div>
</section>
</div>
</section>
</div>
<div id="sect-b">
<section id="section-appendix.b">
<h2 id="name-modeling-events">
<a href="#section-appendix.b" class="section-number selfRef">Appendix B. </a><a href="#name-modeling-events" class="section-name selfRef">Modeling Events</a>
</h2>
<p id="section-appendix.b-1">
Events represent actions that have taken place against a registered
object at a certain date and time. Events have three properties: the
action, the actor, and the date and time of the event (which is
sometimes in the future). In some cases, the identity of the actor
is not captured.<a href="#section-appendix.b-1" class="pilcrow">¶</a></p>
<p id="section-appendix.b-2">
Events can be modeled in three ways:<a href="#section-appendix.b-2" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-appendix.b-3">
<li id="section-appendix.b-3.1">events with no designated actor<a href="#section-appendix.b-3.1" class="pilcrow">¶</a>
</li>
<li id="section-appendix.b-3.2">events where the actor is only designated by an identifier<a href="#section-appendix.b-3.2" class="pilcrow">¶</a>
</li>
<li id="section-appendix.b-3.3">events where the actor can be modeled as an entity<a href="#section-appendix.b-3.3" class="pilcrow">¶</a>
</li>
</ol>
<p id="section-appendix.b-4">
For the first use case, the events data structure (<a href="#sect-4.5" class="xref">Section 4.5</a>) is
used without the "eventActor" object member.<a href="#section-appendix.b-4" class="pilcrow">¶</a></p>
<p id="section-appendix.b-5">
This is an example of an "events" array without the "eventActor".<a href="#section-appendix.b-5" class="pilcrow">¶</a></p>
<div id="ure-37">
<figure id="figure-37">
<div id="section-appendix.b-6.1">
<pre class="sourcecode lang-json">
"events" :
[
{
"eventAction" : "registration",
"eventDate" : "1990-12-31T23:59:59Z"
}
]
</pre>
</div>
<figcaption><a href="#figure-37" class="selfRef">Figure 37</a></figcaption></figure>
</div>
<p id="section-appendix.b-7">
For the second use case, the events data structure (<a href="#sect-4.5" class="xref">Section 4.5</a>) is
used with the "eventActor" object member.<a href="#section-appendix.b-7" class="pilcrow">¶</a></p>
<p id="section-appendix.b-8">
This is an example of an "events" array with the "eventActor".<a href="#section-appendix.b-8" class="pilcrow">¶</a></p>
<div id="ure-38">
<figure id="figure-38">
<div id="section-appendix.b-9.1">
<pre class="sourcecode lang-json">
"events" :
[
{
"eventAction" : "registration",
"eventActor" : "XYZ-NIC",
"eventDate" : "1990-12-31T23:59:59Z"
}
]
</pre>
</div>
<figcaption><a href="#figure-38" class="selfRef">Figure 38</a></figcaption></figure>
</div>
<p id="section-appendix.b-10">
For the third use case, the "asEventActor" array is used when an
entity (<a href="#sect-5.1" class="xref">Section 5.1</a>) is embedded into another object class. The
"asEventActor" array follows the same structure as the "events" array
but does not have "eventActor" attributes.<a href="#section-appendix.b-10" class="pilcrow">¶</a></p>
<p id="section-appendix.b-11">
The following is an elided example of a domain object with an entity
as an event actor.<a href="#section-appendix.b-11" class="pilcrow">¶</a></p>
<div id="ure-39">
<figure id="figure-39">
<div id="section-appendix.b-12.1">
<pre class="sourcecode lang-json">
{
"objectClassName" : "domain",
"handle" : "XXXX",
"ldhName" : "foo.example",
"status" : [ "locked", "transfer prohibited" ],
...
"entities" :
[
{
"handle" : "XXXX",
...
"asEventActor" :
[
{
"eventAction" : "last changed",
"eventDate" : "1990-12-31T23:59:59Z"
}
]
}
]
}
</pre>
</div>
<figcaption><a href="#figure-39" class="selfRef">Figure 39</a></figcaption></figure>
</div>
</section>
</div>
<div id="sect-c">
<section id="section-appendix.c">
<h2 id="name-structured-vs-unstructured-">
<a href="#section-appendix.c" class="section-number selfRef">Appendix C. </a><a href="#name-structured-vs-unstructured-" class="section-name selfRef">Structured vs. Unstructured Addresses</a>
</h2>
<p id="section-appendix.c-1">
The entity (<a href="#sect-5.1" class="xref">Section 5.1</a>) object class uses jCard <span>[<a href="#RFC7095" class="xref">RFC7095</a>]</span> to
represent contact information, including postal addresses. jCard has
the ability to represent multiple language preferences, multiple
email address and phone numbers, and multiple postal addresses in
both a structured and unstructured format. This section describes
the use of jCard for representing structured and unstructured
addresses.<a href="#section-appendix.c-1" class="pilcrow">¶</a></p>
<p id="section-appendix.c-2">
The following is an example of a jCard.<a href="#section-appendix.c-2" class="pilcrow">¶</a></p>
<div id="ure-40">
<figure id="figure-40">
<div id="section-appendix.c-3.1">
<pre class="sourcecode lang-json">
{
"vcardArray":[
"vcard",
[
["version", {}, "text", "4.0"],
["fn", {}, "text", "Joe User"],
["n", {}, "text",
["User", "Joe", "", "", ["ing. jr", "M.Sc."]]
],
["kind", {}, "text", "individual"],
["lang", {
"pref":"1"
}, "language-tag", "fr"],
["lang", {
"pref":"2"
}, "language-tag", "en"],
["org", {
"type":"work"
}, "text", "Example"],
["title", {}, "text", "Research Scientist"],
["role", {}, "text", "Project Lead"],
["adr",
{ "type":"work" },
"text",
[
"",
"Suite 1234",
"4321 Rue Somewhere",
"Quebec",
"QC",
"G1V 2M2",
"Canada"
]
],
["adr",
{
"type":"home",
"label":"123 Maple Ave\nSuite 90001\nVancouver\nBC\n1239\n"
},
"text",
[
"", "", "", "", "", "", ""
]
],
["tel",
{ "type":["work", "voice"], "pref":"1" },
"uri", "tel:+1-555-555-1234;ext=102"
],
["tel",
{
"type":["work", "cell", "voice", "video", "text"]
},
"uri",
"tel:+1-555-555-1234"
],
["email",
{ "type":"work" },
"text", "joe.user@example.com"
],
["geo", {
"type":"work"
}, "uri", "geo:46.772673,-71.282945"],
["key",
{ "type":"work" },
"uri", "https://www.example.com/joe.user/joe.asc"
],
["tz", {},
"utc-offset", "-05:00"],
["url", { "type":"home" },
"uri", "https://example.org"]
]
]
}
</pre>
</div>
<figcaption><a href="#figure-40" class="selfRef">Figure 40</a></figcaption></figure>
</div>
<p id="section-appendix.c-4">
The arrays in <a href="#ure-40" class="xref">Figure 40</a> with the first member of "adr" represent
postal addresses. In the first example, the postal address is given
as an array of strings and constitutes a structured address. For
components of the structured address that are not applicable, an
empty string is given. Each member of that array aligns with the
positions of a vCard as given in <span>[<a href="#RFC6350" class="xref">RFC6350</a>]</span>. In this example, the
following data corresponds to the following positional meanings:<a href="#section-appendix.c-4" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-appendix.c-5">
<li id="section-appendix.c-5.1">post office box -- not applicable; empty string<a href="#section-appendix.c-5.1" class="pilcrow">¶</a>
</li>
<li id="section-appendix.c-5.2">extended address (e.g., apartment or suite number) -- Suite 1234<a href="#section-appendix.c-5.2" class="pilcrow">¶</a>
</li>
<li id="section-appendix.c-5.3">street address -- 4321 Rue Somewhere<a href="#section-appendix.c-5.3" class="pilcrow">¶</a>
</li>
<li id="section-appendix.c-5.4">locality (e.g., city) -- Quebec<a href="#section-appendix.c-5.4" class="pilcrow">¶</a>
</li>
<li id="section-appendix.c-5.5">region (e.g., state or province) -- QC<a href="#section-appendix.c-5.5" class="pilcrow">¶</a>
</li>
<li id="section-appendix.c-5.6">postal code -- G1V 2M2<a href="#section-appendix.c-5.6" class="pilcrow">¶</a>
</li>
<li id="section-appendix.c-5.7">country name (full name) -- Canada<a href="#section-appendix.c-5.7" class="pilcrow">¶</a>
</li>
</ol>
<p id="section-appendix.c-6">
The second example is an unstructured address. It uses the "label"
attribute, which is a string containing a newline (\n) character to
separate address components in an unordered, unspecified manner.
Note that in this example, the structured address array is still
given but that each string is an empty string.<a href="#section-appendix.c-6" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-d">
<section id="section-appendix.d">
<h2 id="name-secure-dns">
<a href="#section-appendix.d" class="section-number selfRef">Appendix D. </a><a href="#name-secure-dns" class="section-name selfRef">Secure DNS</a>
</h2>
<p id="section-appendix.d-1">
<a href="#sect-5.3" class="xref">Section 5.3</a> defines the "secureDNS" member to represent secure DNS
information about domain names.<a href="#section-appendix.d-1" class="pilcrow">¶</a></p>
<p id="section-appendix.d-2">
DNSSEC provides data integrity for DNS through the digital signing of
resource records. To enable DNSSEC, the zone is signed by one or
more private keys and the signatures are stored as RRSIG records. To
complete the chain of trust in the DNS zone hierarchy, a digest of
each DNSKEY record (which contains the public key) must be loaded
into the parent zone, stored as DS records, and signed by the
parent's private key (RRSIG DS record), as indicated in "<a href="#RFC4034" class="xref">Resource Records for the DNS Security Extensions</a>" <span>[<a href="#RFC4034" class="xref">RFC4034</a>]</span>. Creating the DS
records in the parent zone can be done by the registration authority
"<a href="#RFC5910" class="xref">Domain Name System (DNS) Security Extensions Mapping for the Extensible Provisioning Protocol (EPP)</a>" <span>[<a href="#RFC5910" class="xref">RFC5910</a>]</span>.<a href="#section-appendix.d-2" class="pilcrow">¶</a></p>
<p id="section-appendix.d-3">
Only DS-related information is provided by RDAP, since other
information is not generally stored in the registration database.
Other DNSSEC-related information can be retrieved with other DNS
tools such as dig.<a href="#section-appendix.d-3" class="pilcrow">¶</a></p>
<p id="section-appendix.d-4">
The domain object class (<a href="#sect-5.3" class="xref">Section 5.3</a>) can represent this information
using either the "dsData" or "keyData" object arrays. Client
implementers should be aware that some registries do not collect or
do not publish all of the secure DNS meta-information.<a href="#section-appendix.d-4" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sect-e">
<section id="section-appendix.e">
<h2 id="name-motivations-for-using-json">
<a href="#section-appendix.e" class="section-number selfRef">Appendix E. </a><a href="#name-motivations-for-using-json" class="section-name selfRef">Motivations for Using JSON</a>
</h2>
<p id="section-appendix.e-1">
This section addresses a common question regarding the use of JSON
over other data formats, most notably XML.<a href="#section-appendix.e-1" class="pilcrow">¶</a></p>
<p id="section-appendix.e-2">
It is often pointed out that many DNRs and one RIR support the EPP
<span>[<a href="#RFC5730" class="xref">RFC5730</a>]</span> standard, which is an XML serialized protocol. The logic
is that since EPP is a common protocol in the industry, it follows
that XML would be a more natural choice. While EPP does influence
this specification quite a bit, EPP serves a different purpose, which
is the provisioning of Internet resources between registries and
accredited registrars and serving a much narrower audience than that
envisioned for RDAP.<a href="#section-appendix.e-2" class="pilcrow">¶</a></p>
<p id="section-appendix.e-3">
By contrast, RDAP has a broader audience and is designed for public
consumption of data. Experience from RIRs with first generation
RESTful web services for WHOIS indicate that a large percentage of
clients operate within browsers and other platforms where full-blown
XML stacks are not readily available and where JSON is a better fit.<a href="#section-appendix.e-3" class="pilcrow">¶</a></p>
<p id="section-appendix.e-4">
Additionally, while EPP is used in much of the DNR community it is
not a universal constant in that industry. And finally, EPP's use of
XML predates the specification of JSON. If EPP had been defined
today, it may very well have used JSON instead of XML.<a href="#section-appendix.e-4" class="pilcrow">¶</a></p>
<p id="section-appendix.e-5">
Beyond the specific DNR and RIR communities, the trend in the broader
Internet industry is also switching to JSON over XML, especially in
the area of RESTful web services (see <span>[<a href="#JSON_ascendancy" class="xref">JSON_ascendancy</a>]</span>). Studies
have also found that JSON is generally less bulky and consequently
faster to parse (see <span>[<a href="#JSON_performance_study" class="xref">JSON_performance_study</a>]</span>).<a href="#section-appendix.e-5" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-appendix.f">
<h2 id="name-changes-from-rfc-7483">
<a href="#section-appendix.f" class="section-number selfRef">Appendix F. </a><a href="#name-changes-from-rfc-7483" class="section-name selfRef">Changes from RFC 7483</a>
</h2>
<ul class="normal">
<li class="normal" id="section-appendix.f-1.1">Addressed known errata.<a href="#section-appendix.f-1.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.2">Updated references to 7482 to RFC 9082.
Adjusted case of "xxxx" used in examples where "XXXX" was previously used, and removed an "X" from "XXXXX".
Changed IPv6 address example using "C00" to "c00". Added "a string representing" to the definitions of startAddress and endAddress.
Removed "entity" from "Autonomous System Number Entity Object Class".
Added "an unsigned 32-bit integer" to the definition of startAutnum and endAutnum.
Added "a string representing" to the definition of name in the IP network and ASN object classes.
Clarified rdapConformance identifier registration expectations in <a href="#sect-4.1" class="xref">Section 4.1</a>.
Changed "lunarNic_level_0" to "lunarNIC_level_0".<a href="#section-appendix.f-1.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.3">Clarified that the "value", "rel" and "href" JSON values <span class="bcp14">MUST</span> be specified in the "links" array.<a href="#section-appendix.f-1.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.4">Clarified that the "description" array is required in the Notices and Remarks data structures and other values are <span class="bcp14">OPTIONAL</span>.<a href="#section-appendix.f-1.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.5">Noted that all members of the "events" and "Public IDs" arrays are <span class="bcp14">REQUIRED</span>.<a href="#section-appendix.f-1.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.6">Fix "self" link values in examples. Changed "http" to "https" link values in examples.
Noted that <a href="#ure-18" class="xref">Figure 18</a> is an example of a nameserver object with all "appropriate" values given.
In <a href="#sect-c" class="xref">Appendix C</a>, quoted the word "label" in "label attribute".
Added reference to "status" definition in the descriptions for IP networks and autnums.
Fixed a 404 for the informative reference to "The Stealthy Ascendancy of JSON".
Added "boolean" to the definition of zoneSigned.<a href="#section-appendix.f-1.6" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.7">Clarified <span class="bcp14">REQUIRED</span> and <span class="bcp14">OPTIONAL</span> members of the "events" array.<a href="#section-appendix.f-1.7" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.8">Changed "<span class="bcp14">SHOULD</span> not" to "<span class="bcp14">SHOULD NOT</span>" in <a href="#sect-5" class="xref">Section 5</a>.<a href="#section-appendix.f-1.8" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.9">Updated normative references (RFC 5226 to RFC 8126, RFC 5988 to RFC 8288, RFC 7159 to RFC 8259).
Changed examples using "ns1.xn--fo-5ja.example" to split URLs to avoid long lines.<a href="#section-appendix.f-1.9" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.10">Added acknowledgments.<a href="#section-appendix.f-1.10" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.11">Changed "The "lang" attribute may appear anywhere in an object class or data structure except for in jCard objects" to "The "lang" attribute as defined in this section <span class="bcp14">MAY</span> appear anywhere in an object class or data structure, except for in jCard objects. jCard supports similar functionality by way of the LANGUAGE property parameter (see Section <a href="https://www.rfc-editor.org/rfc/rfc6350#section-5.1" class="relref">5.1</a> of RFC 6350 <span>[<a href="#RFC6350" class="xref">RFC6350</a>]</span>".<a href="#section-appendix.f-1.11" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.12">Changed "simple data types conveyed in JSON strings" to "simple data types conveyed in JSON primitive types (strings, numbers, booleans, and null)". Changed "In other words, servers are free to not include JSON members containing registration data based on their own policies" to "In other words, servers are free to omit unrequired/optional JSON members containing registration data based on their own policies".<a href="#section-appendix.f-1.12" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.13">Changed "This data structure appears only in the topmost JSON object of a response" to "This data structure <span class="bcp14">MUST</span> appear in the topmost JSON object of a response".<a href="#section-appendix.f-1.13" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.14">Changed "Some non-answer responses may return entity bodies with information that could be more descriptive" to "Some non-answer responses <span class="bcp14">MAY</span> return entity bodies with information that could be more descriptive".<a href="#section-appendix.f-1.14" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.15">Changed "The basic structure of that response is an object class containing an error code number (corresponding to the HTTP response code) followed by a string named "title" and an array of strings named "description"" to "The basic structure of that response is an object class containing a <span class="bcp14">REQUIRED</span> error code number (corresponding to the HTTP response code) followed by an <span class="bcp14">OPTIONAL</span> string named "title" and an <span class="bcp14">OPTIONAL</span> array of strings named "description"".<a href="#section-appendix.f-1.15" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.16">Changed the "Autonomous System Number Object Class" section title to "The Autonomous System Number Object Class" for consistency with other section titles. Removed trailing periods in the "Terminology and Definitions" section for consistency. Changed instances of "lunarNic" to "lunarNIC" for consistency. Removed an extraneous trailing period after the eventDate description. Changed a "." to ";" in the description of the "network" member of the domain object class. Changed "The high-level structure of the autnum object class consists of information about the network registration" to "The high-level structure of the autnum object class consists of information about the Autonomous System number registration". Changed "registry unique" to "registry-unique".<a href="#section-appendix.f-1.16" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.17">Changed "registrant" to "registrar" in the description of the "transfer" event action to address erratum 6158. Added IANA instructions to correct the description of the value in the registry.<a href="#section-appendix.f-1.17" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.18">Added text to <a href="#sect-4.2" class="xref">Section 4.2</a> to note that "self" and "related" "href" URIs <span class="bcp14">MUST NOT</span> be the same.<a href="#section-appendix.f-1.18" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.19">Added text to <a href="#sect-4.2" class="xref">Section 4.2</a> to describe return of IDNs in LDH name format.<a href="#section-appendix.f-1.19" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.20">Added text to note that the "fn" member of a contact object <span class="bcp14">MAY</span> be empty in <a href="#sect-3" class="xref">Section 3</a>.<a href="#section-appendix.f-1.20" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.21">Added text to clarify rdapConformance requirements in <a href="#sect-4.1" class="xref">Section 4.1</a>.<a href="#section-appendix.f-1.21" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-appendix.f-1.22">Added "obsoletes 7483" to the headers, Abstract, and Introduction. Updated BCP 14 boilerplate. Updated IANA Considerations to note that this RFC (a product of the REGEXT Working Group) replaces RFC 7483. Changed "simple string" to "simple character string" in Sections <a href="#sect-3" class="xref">3</a> and <a href="#sect-4.7" class="xref">4.7</a>. Clarified requirement for the "fn" member in <a href="#sect-3" class="xref">Section 3</a>. Modified the requirement for rdapConformance placement in <a href="#sect-4.1" class="xref">Section 4.1</a>. Changed "jCard" to "vCard" LANGUAGE property reference in <a href="#sect-4.4" class="xref">Section 4.4</a>. Changed "no use" to "little or no use" in <a href="#sect-5.1" class="xref">Section 5.1</a>. Added example line wrap note in <a href="#sect-5.2" class="xref">Section 5.2</a>. Modified the definition of "idnTable" in <a href="#sect-5.3" class="xref">Section 5.3</a>. Modified the dsData and keyData examples in <a href="#sect-5.3" class="xref">Section 5.3</a>. Changed "2001:c00::/23" to "2001:db8::/32" in <a href="#sect-5.4" class="xref">Section 5.4</a>. Expanded the definition of "type" in Sections <a href="#sect-5.4" class="xref">5.4</a> and <a href="#sect-5.5" class="xref">5.5</a>. Modified example autnums in <a href="#sect-5.5" class="xref">Section 5.5</a>. Added text to the Security Considerations section to note that DNSSEC information returned in a response cannot be trusted directly.<a href="#section-appendix.f-1.22" class="pilcrow">¶</a>
</li>
</ul>
</section>
<div id="acknowledgments">
<section id="section-appendix.g">
<h2 id="name-acknowledgments">
<a href="#name-acknowledgments" class="section-name selfRef">Acknowledgments</a>
</h2>
<p id="section-appendix.g-1">
This document is derived from original work on RIR responses in JSON
by <span class="contact-name">Byron J. Ellacott</span>, <span class="contact-name">Arturo L. Servin</span>,
<span class="contact-name">Kaveh Ranjbar</span>, and <span class="contact-name">Andrew L. Newton</span>.
Additionally, this document incorporates work on DNR
responses in JSON by <span class="contact-name">Ning Kong</span>, <span class="contact-name">Linlin Zhou</span>, <span class="contact-name">Jiagui Xie</span>, and
<span class="contact-name">Sean Shen</span>.<a href="#section-appendix.g-1" class="pilcrow">¶</a></p>
<p id="section-appendix.g-2">
The components of the DNR object classes are derived from a
categorization of WHOIS response formats created by <span class="contact-name">Ning Kong</span>, <span class="contact-name">Linlin Zhou</span>,
<span class="contact-name">Guangqing Deng</span>, <span class="contact-name">Steve Sheng</span>, <span class="contact-name">Francisco Arias</span>,
<span class="contact-name">Ray Bellis</span>, and
<span class="contact-name">Frederico Neves</span>.<a href="#section-appendix.g-2" class="pilcrow">¶</a></p>
<p id="section-appendix.g-3">
<span class="contact-name">Tom Harrison</span>, <span class="contact-name">Murray Kucherawy</span>, <span class="contact-name">Ed Lewis</span>, <span class="contact-name">Audric Schiltknecht</span>,
<span class="contact-name">Naoki Kambe</span>, <span class="contact-name">Maarten Bosteels</span>, <span class="contact-name">Mario Loffredo</span>, and <span class="contact-name">Jasdip Singh</span> contributed significant review comments
and provided clarifying text. <span class="contact-name">James Mitchell</span> provided text regarding
the processing of unknown JSON attributes and identified issues
leading to the remodeling of events. <span class="contact-name">Ernie Dainow</span> and
<span class="contact-name">Francisco Obispo</span> provided concrete suggestions that led to a better variant
model for domain names.<a href="#section-appendix.g-3" class="pilcrow">¶</a></p>
<p id="section-appendix.g-4">
<span class="contact-name">Ernie Dainow</span> provided the background information on the secure DNS
attributes and objects for domains, informative text on DNSSEC, and
many other attributes that appear throughout the object classes of
this document.<a href="#section-appendix.g-4" class="pilcrow">¶</a></p>
<p id="section-appendix.g-5">
The switch to and incorporation of jCard was performed by <span class="contact-name">Simon Perreault</span>.<a href="#section-appendix.g-5" class="pilcrow">¶</a></p>
<p id="section-appendix.g-6">
<span class="contact-name">Olaf Kolkman</span> and <span class="contact-name">Murray Kucherawy</span> chaired the IETF's WEIRDS Working
Group from which this document was originally created. <span class="contact-name">James Galvin</span>
and <span class="contact-name">Antoin Verschuren</span> chaired the REGEXT Working Group that worked
on this document.<a href="#section-appendix.g-6" class="pilcrow">¶</a></p>
</section>
</div>
<div id="authors-addresses">
<section id="section-appendix.h">
<h2 id="name-authors-addresses">
<a href="#name-authors-addresses" class="section-name selfRef">Authors' Addresses</a>
</h2>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Scott Hollenbeck</span></div>
<div dir="auto" class="left"><span class="org">Verisign Labs</span></div>
<div dir="auto" class="left"><span class="street-address">12061 Bluemont Way</span></div>
<div dir="auto" class="left">
<span class="locality">Reston</span>, <span class="region">VA</span> <span class="postal-code">20190</span>
</div>
<div dir="auto" class="left"><span class="country-name">United States of America</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:shollenbeck@verisign.com" class="email">shollenbeck@verisign.com</a>
</div>
<div class="url">
<span>URI:</span>
<a href="https://www.verisignlabs.com/" class="url">https://www.verisignlabs.com/</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Andy Newton</span></div>
<div dir="auto" class="left"><span class="org">Amazon Web Services, Inc.</span></div>
<div dir="auto" class="left"><span class="street-address">13200 Woodland Park Road</span></div>
<div dir="auto" class="left">
<span class="locality">Herndon</span>, <span class="region">VA</span> <span class="postal-code">20171</span>
</div>
<div dir="auto" class="left"><span class="country-name">United States of America</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:andy@hxr.us" class="email">andy@hxr.us</a>
</div>
</address>
</section>
</div>
<script>const toc = document.getElementById("toc");
toc.querySelector("h2").addEventListener("click", e => {
toc.classList.toggle("active");
});
toc.querySelector("nav").addEventListener("click", e => {
toc.classList.remove("active");
});
</script>
</body>
</html>
|