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
|
<pre>Internet Engineering Task Force (IETF) S. Perreault
Request for Comments: 6350 Viagenie
Obsoletes: <a href="./rfc2425">2425</a>, <a href="./rfc2426">2426</a>, <a href="./rfc4770">4770</a> August 2011
Updates: <a href="./rfc2739">2739</a>
Category: Standards Track
ISSN: 2070-1721
<span class="h1">vCard Format Specification</span>
Abstract
This document defines the vCard data format for representing and
exchanging a variety of information about individuals and other
entities (e.g., formatted and structured name and delivery addresses,
email address, multiple telephone numbers, photograph, logo, audio
clips, etc.). This document obsoletes RFCs 2425, 2426, and 4770, and
updates <a href="./rfc2739">RFC 2739</a>.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc6350">http://www.rfc-editor.org/info/rfc6350</a>.
Copyright Notice
Copyright (c) 2011 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">Perreault Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
This document may contain material from IETF Documents or IETF
Contributions published or made publicly available before November
10, 2008. The person(s) controlling the copyright in some of this
material may not have granted the IETF Trust the right to allow
modifications of such material outside the IETF Standards Process.
Without obtaining an adequate license from the person(s) controlling
the copyright in such materials, this document may not be modified
outside the IETF Standards Process, and derivative works of it may
not be created outside the IETF Standards Process, except to format
it for publication as an RFC or to translate it into languages other
than English.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-2">2</a>. Conventions . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-3">3</a>. vCard Format Specification . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-3.1">3.1</a>. Charset . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-3.2">3.2</a>. Line Delimiting and Folding . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-3.3">3.3</a>. ABNF Format Definition . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.4">3.4</a>. Property Value Escaping . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-4">4</a>. Property Value Data Types . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-4.1">4.1</a>. TEXT . . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-4.2">4.2</a>. URI . . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-4.3">4.3</a>. DATE, TIME, DATE-TIME, DATE-AND-OR-TIME, and TIMESTAMP . . <a href="#page-12">12</a>
<a href="#section-4.3.1">4.3.1</a>. DATE . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-4.3.2">4.3.2</a>. TIME . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-4.3.3">4.3.3</a>. DATE-TIME . . . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-4.3.4">4.3.4</a>. DATE-AND-OR-TIME . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-4.3.5">4.3.5</a>. TIMESTAMP . . . . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-4.4">4.4</a>. BOOLEAN . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-4.5">4.5</a>. INTEGER . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-4.6">4.6</a>. FLOAT . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-4.7">4.7</a>. UTC-OFFSET . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-4.8">4.8</a>. LANGUAGE-TAG . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-5">5</a>. Property Parameters . . . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-5.1">5.1</a>. LANGUAGE . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-5.2">5.2</a>. VALUE . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-5.3">5.3</a>. PREF . . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-5.4">5.4</a>. ALTID . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-5.5">5.5</a>. PID . . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-5.6">5.6</a>. TYPE . . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-5.7">5.7</a>. MEDIATYPE . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-5.8">5.8</a>. CALSCALE . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-5.9">5.9</a>. SORT-AS . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-5.10">5.10</a>. GEO . . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-5.11">5.11</a>. TZ . . . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<span class="grey">Perreault Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<a href="#section-6">6</a>. vCard Properties . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-6.1">6.1</a>. General Properties . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-6.1.1">6.1.1</a>. BEGIN . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-6.1.2">6.1.2</a>. END . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<a href="#section-6.1.3">6.1.3</a>. SOURCE . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#section-6.1.4">6.1.4</a>. KIND . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-25">25</a>
<a href="#section-6.1.5">6.1.5</a>. XML . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-27">27</a>
<a href="#section-6.2">6.2</a>. Identification Properties . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-6.2.1">6.2.1</a>. FN . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
<a href="#section-6.2.2">6.2.2</a>. N . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-29">29</a>
<a href="#section-6.2.3">6.2.3</a>. NICKNAME . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-29">29</a>
<a href="#section-6.2.4">6.2.4</a>. PHOTO . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<a href="#section-6.2.5">6.2.5</a>. BDAY . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<a href="#section-6.2.6">6.2.6</a>. ANNIVERSARY . . . . . . . . . . . . . . . . . . . . . <a href="#page-31">31</a>
<a href="#section-6.2.7">6.2.7</a>. GENDER . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-32">32</a>
<a href="#section-6.3">6.3</a>. Delivery Addressing Properties . . . . . . . . . . . . . . <a href="#page-32">32</a>
<a href="#section-6.3.1">6.3.1</a>. ADR . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-32">32</a>
<a href="#section-6.4">6.4</a>. Communications Properties . . . . . . . . . . . . . . . . <a href="#page-34">34</a>
<a href="#section-6.4.1">6.4.1</a>. TEL . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-34">34</a>
<a href="#section-6.4.2">6.4.2</a>. EMAIL . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-36">36</a>
<a href="#section-6.4.3">6.4.3</a>. IMPP . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-36">36</a>
<a href="#section-6.4.4">6.4.4</a>. LANG . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-37">37</a>
<a href="#section-6.5">6.5</a>. Geographical Properties . . . . . . . . . . . . . . . . . <a href="#page-37">37</a>
<a href="#section-6.5.1">6.5.1</a>. TZ . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-37">37</a>
<a href="#section-6.5.2">6.5.2</a>. GEO . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-38">38</a>
<a href="#section-6.6">6.6</a>. Organizational Properties . . . . . . . . . . . . . . . . <a href="#page-39">39</a>
<a href="#section-6.6.1">6.6.1</a>. TITLE . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-39">39</a>
<a href="#section-6.6.2">6.6.2</a>. ROLE . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-39">39</a>
<a href="#section-6.6.3">6.6.3</a>. LOGO . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-40">40</a>
<a href="#section-6.6.4">6.6.4</a>. ORG . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-40">40</a>
<a href="#section-6.6.5">6.6.5</a>. MEMBER . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-41">41</a>
<a href="#section-6.6.6">6.6.6</a>. RELATED . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-42">42</a>
<a href="#section-6.7">6.7</a>. Explanatory Properties . . . . . . . . . . . . . . . . . . <a href="#page-43">43</a>
<a href="#section-6.7.1">6.7.1</a>. CATEGORIES . . . . . . . . . . . . . . . . . . . . . . <a href="#page-43">43</a>
<a href="#section-6.7.2">6.7.2</a>. NOTE . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-44">44</a>
<a href="#section-6.7.3">6.7.3</a>. PRODID . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-44">44</a>
<a href="#section-6.7.4">6.7.4</a>. REV . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-45">45</a>
<a href="#section-6.7.5">6.7.5</a>. SOUND . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-45">45</a>
<a href="#section-6.7.6">6.7.6</a>. UID . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-46">46</a>
<a href="#section-6.7.7">6.7.7</a>. CLIENTPIDMAP . . . . . . . . . . . . . . . . . . . . . <a href="#page-47">47</a>
<a href="#section-6.7.8">6.7.8</a>. URL . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-47">47</a>
<a href="#section-6.7.9">6.7.9</a>. VERSION . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-48">48</a>
<a href="#section-6.8">6.8</a>. Security Properties . . . . . . . . . . . . . . . . . . . <a href="#page-48">48</a>
<a href="#section-6.8.1">6.8.1</a>. KEY . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-48">48</a>
<a href="#section-6.9">6.9</a>. Calendar Properties . . . . . . . . . . . . . . . . . . . <a href="#page-49">49</a>
<a href="#section-6.9.1">6.9.1</a>. FBURL . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-49">49</a>
<a href="#section-6.9.2">6.9.2</a>. CALADRURI . . . . . . . . . . . . . . . . . . . . . . <a href="#page-50">50</a>
<a href="#section-6.9.3">6.9.3</a>. CALURI . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-50">50</a>
<span class="grey">Perreault Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<a href="#section-6.10">6.10</a>. Extended Properties and Parameters . . . . . . . . . . . . <a href="#page-51">51</a>
<a href="#section-7">7</a>. Synchronization . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-51">51</a>
<a href="#section-7.1">7.1</a>. Mechanisms . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-51">51</a>
<a href="#section-7.1.1">7.1.1</a>. Matching vCard Instances . . . . . . . . . . . . . . . <a href="#page-51">51</a>
<a href="#section-7.1.2">7.1.2</a>. Matching Property Instances . . . . . . . . . . . . . <a href="#page-52">52</a>
<a href="#section-7.1.3">7.1.3</a>. PID Matching . . . . . . . . . . . . . . . . . . . . . <a href="#page-52">52</a>
<a href="#section-7.2">7.2</a>. Example . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-53">53</a>
<a href="#section-7.2.1">7.2.1</a>. Creation . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-53">53</a>
<a href="#section-7.2.2">7.2.2</a>. Initial Sharing . . . . . . . . . . . . . . . . . . . <a href="#page-53">53</a>
<a href="#section-7.2.3">7.2.3</a>. Adding and Sharing a Property . . . . . . . . . . . . <a href="#page-54">54</a>
<a href="#section-7.2.4">7.2.4</a>. Simultaneous Editing . . . . . . . . . . . . . . . . . <a href="#page-54">54</a>
<a href="#section-7.2.5">7.2.5</a>. Global Context Simplification . . . . . . . . . . . . <a href="#page-56">56</a>
<a href="#section-8">8</a>. Example: Author's vCard . . . . . . . . . . . . . . . . . . . <a href="#page-56">56</a>
<a href="#section-9">9</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-57">57</a>
<a href="#section-10">10</a>. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-58">58</a>
<a href="#section-10.1">10.1</a>. Media Type Registration . . . . . . . . . . . . . . . . . <a href="#page-58">58</a>
<a href="#section-10.2">10.2</a>. Registering New vCard Elements . . . . . . . . . . . . . . <a href="#page-59">59</a>
<a href="#section-10.2.1">10.2.1</a>. Registration Procedure . . . . . . . . . . . . . . . . <a href="#page-59">59</a>
<a href="#section-10.2.2">10.2.2</a>. Vendor Namespace . . . . . . . . . . . . . . . . . . . <a href="#page-60">60</a>
<a href="#section-10.2.3">10.2.3</a>. Registration Template for Properties . . . . . . . . . <a href="#page-61">61</a>
<a href="#section-10.2.4">10.2.4</a>. Registration Template for Parameters . . . . . . . . . <a href="#page-61">61</a>
<a href="#section-10.2.5">10.2.5</a>. Registration Template for Value Data Types . . . . . . <a href="#page-62">62</a>
<a href="#section-10.2.6">10.2.6</a>. Registration Template for Values . . . . . . . . . . . <a href="#page-62">62</a>
<a href="#section-10.3">10.3</a>. Initial vCard Elements Registries . . . . . . . . . . . . <a href="#page-63">63</a>
<a href="#section-10.3.1">10.3.1</a>. Properties Registry . . . . . . . . . . . . . . . . . <a href="#page-64">64</a>
<a href="#section-10.3.2">10.3.2</a>. Parameters Registry . . . . . . . . . . . . . . . . . <a href="#page-65">65</a>
<a href="#section-10.3.3">10.3.3</a>. Value Data Types Registry . . . . . . . . . . . . . . <a href="#page-65">65</a>
<a href="#section-10.3.4">10.3.4</a>. Values Registries . . . . . . . . . . . . . . . . . . <a href="#page-66">66</a>
<a href="#section-11">11</a>. Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-69">69</a>
<a href="#section-12">12</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-69">69</a>
<a href="#section-12.1">12.1</a>. Normative References . . . . . . . . . . . . . . . . . . . <a href="#page-69">69</a>
<a href="#section-12.2">12.2</a>. Informative References . . . . . . . . . . . . . . . . . . <a href="#page-71">71</a>
<a href="#appendix-A">Appendix A</a>. Differences from RFCs 2425 and 2426 . . . . . . . . . <a href="#page-73">73</a>
<a href="#appendix-A.1">A.1</a>. New Structure . . . . . . . . . . . . . . . . . . . . . . <a href="#page-73">73</a>
<a href="#appendix-A.2">A.2</a>. Removed Features . . . . . . . . . . . . . . . . . . . . . <a href="#page-73">73</a>
<a href="#appendix-A.3">A.3</a>. New Properties and Parameters . . . . . . . . . . . . . . <a href="#page-73">73</a>
<span class="grey">Perreault Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
Electronic address books have become ubiquitous. Their increased
presence on portable, connected devices as well as the diversity of
platforms that exchange contact data call for a standard. This memo
defines the vCard format, which allows the capture and exchange of
information normally stored within an address book or directory
application.
A high-level overview of the differences from RFCs 2425 and 2426 can
be found in <a href="#appendix-A">Appendix A</a>.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Conventions</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in
[<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. vCard Format Specification</span>
The text/vcard MIME content type (hereafter known as "vCard"; see
<a href="#section-10.1">Section 10.1</a>) contains contact information, typically pertaining to a
single contact or group of contacts. The content consists of one or
more lines in the format given below.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Charset</span>
The charset (see [<a href="./rfc3536" title=""Terminology Used in Internationalization in the IETF"">RFC3536</a>] for internationalization terminology) for
vCard is UTF-8 as defined in [<a href="./rfc3629" title=""UTF-8, a transformation format of ISO 10646"">RFC3629</a>]. There is no way to override
this. It is invalid to specify a value other than "UTF-8" in the
"charset" MIME parameter (see <a href="#section-10.1">Section 10.1</a>).
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Line Delimiting and Folding</span>
Individual lines within vCard are delimited by the [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] line
break, which is a CRLF sequence (U+000D followed by U+000A). Long
logical lines of text can be split into a multiple-physical-line
representation using the following folding technique. Content lines
SHOULD be folded to a maximum width of 75 octets, excluding the line
break. Multi-octet characters MUST remain contiguous. The rationale
for this folding process can be found in <a href="./rfc5322#section-2.1.1">[RFC5322], Section 2.1.1</a>.
A logical line MAY be continued on the next physical line anywhere
between two characters by inserting a CRLF immediately followed by a
single white space character (space (U+0020) or horizontal tab
(U+0009)). The folded line MUST contain at least one character. Any
sequence of CRLF followed immediately by a single white space
<span class="grey">Perreault Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
character is ignored (removed) when processing the content type. For
example, the line:
NOTE:This is a long description that exists on a long line.
can be represented as:
NOTE:This is a long description
that exists on a long line.
It could also be represented as:
NOTE:This is a long descrip
tion that exists o
n a long line.
The process of moving from this folded multiple-line representation
of a property definition to its single-line representation is called
unfolding. Unfolding is accomplished by regarding CRLF immediately
followed by a white space character (namely, HTAB (U+0009) or SPACE
(U+0020)) as equivalent to no characters at all (i.e., the CRLF and
single white space character are removed).
Note: It is possible for very simple implementations to generate
improperly folded lines in the middle of a UTF-8 multi-octet
sequence. For this reason, implementations SHOULD unfold lines in
such a way as to properly restore the original sequence.
Note: Unfolding is done differently than in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>]. Unfolding
in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>] only removes the CRLF, not the space following it.
Folding is done after any content encoding of a type value.
Unfolding is done before any decoding of a type value in a content
line.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. ABNF Format Definition</span>
The following ABNF uses the notation of [<a href="./rfc5234" title=""Augmented BNF for Syntax Specifications: ABNF"">RFC5234</a>], which also defines
CRLF, WSP, DQUOTE, VCHAR, ALPHA, and DIGIT.
vcard-entity = 1*vcard
vcard = "BEGIN:VCARD" CRLF
"VERSION:4.0" CRLF
1*contentline
"END:VCARD" CRLF
; A vCard object MUST include the VERSION and FN properties.
; VERSION MUST come immediately after BEGIN:VCARD.
<span class="grey">Perreault Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
contentline = [group "."] name *(";" param) ":" value CRLF
; When parsing a content line, folded lines must first
; be unfolded according to the unfolding procedure
; described in <a href="#section-3.2">Section 3.2</a>.
; When generating a content line, lines longer than 75
; characters SHOULD be folded according to the folding
; procedure described in <a href="#section-3.2">Section 3.2</a>.
group = 1*(ALPHA / DIGIT / "-")
name = "SOURCE" / "KIND" / "FN" / "N" / "NICKNAME"
/ "PHOTO" / "BDAY" / "ANNIVERSARY" / "GENDER" / "ADR" / "TEL"
/ "EMAIL" / "IMPP" / "LANG" / "TZ" / "GEO" / "TITLE" / "ROLE"
/ "LOGO" / "ORG" / "MEMBER" / "RELATED" / "CATEGORIES"
/ "NOTE" / "PRODID" / "REV" / "SOUND" / "UID" / "CLIENTPIDMAP"
/ "URL" / "KEY" / "FBURL" / "CALADRURI" / "CALURI" / "XML"
/ iana-token / x-name
; Parsing of the param and value is based on the "name" as
; defined in ABNF sections below.
; Group and name are case-insensitive.
iana-token = 1*(ALPHA / DIGIT / "-")
; identifier registered with IANA
x-name = "x-" 1*(ALPHA / DIGIT / "-")
; Names that begin with "x-" or "X-" are
; reserved for experimental use, not intended for released
; products, or for use in bilateral agreements.
param = language-param / value-param / pref-param / pid-param
/ type-param / geo-parameter / tz-parameter / sort-as-param
/ calscale-param / any-param
; Allowed parameters depend on property name.
param-value = *SAFE-CHAR / DQUOTE *QSAFE-CHAR DQUOTE
any-param = (iana-token / x-name) "=" param-value *("," param-value)
NON-ASCII = UTF8-2 / UTF8-3 / UTF8-4
; UTF8-{2,3,4} are defined in [<a href="./rfc3629" title=""UTF-8, a transformation format of ISO 10646"">RFC3629</a>]
QSAFE-CHAR = WSP / "!" / %x23-7E / NON-ASCII
; Any character except CTLs, DQUOTE
SAFE-CHAR = WSP / "!" / %x23-39 / %x3C-7E / NON-ASCII
; Any character except CTLs, DQUOTE, ";", ":"
VALUE-CHAR = WSP / VCHAR / NON-ASCII
; Any textual character
<span class="grey">Perreault Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
A line that begins with a white space character is a continuation of
the previous line, as described in <a href="#section-3.2">Section 3.2</a>. The white space
character and immediately preceeding CRLF should be discarded when
reconstructing the original line. Note that this line-folding
convention differs from that found in [<a href="./rfc5322" title=""Internet Message Format"">RFC5322</a>], in that the sequence
<CRLF><WSP> found anywhere in the content indicates a continued line
and should be removed.
Property names and parameter names are case-insensitive (e.g., the
property name "fn" is the same as "FN" and "Fn"). Parameter values
MAY be case-sensitive or case-insensitive, depending on their
definition. Parameter values that are not explicitly defined as
being case-sensitive are case-insensitive. Based on experience with
vCard 3 interoperability, it is RECOMMENDED that property and
parameter names be upper-case on output.
The group construct is used to group related properties together.
The group name is a syntactic convention used to indicate that all
property names prefaced with the same group name SHOULD be grouped
together when displayed by an application. It has no other
significance. Implementations that do not understand or support
grouping MAY simply strip off any text before a "." to the left of
the type name and present the types and values as normal.
Property cardinalities are indicated using the following notation,
which is based on ABNF (see <a href="./rfc5234#section-3.6">[RFC5234], Section 3.6</a>):
+-------------+--------------------------------------------------+
| Cardinality | Meaning |
+-------------+--------------------------------------------------+
| 1 | Exactly one instance per vCard MUST be present. |
| *1 | Exactly one instance per vCard MAY be present. |
| 1* | One or more instances per vCard MUST be present. |
| * | One or more instances per vCard MAY be present. |
+-------------+--------------------------------------------------+
Properties defined in a vCard instance may have multiple values
depending on the property cardinality. The general rule for encoding
multi-valued properties is to simply create a new content line for
each value (including the property name). However, it should be
noted that some value types support encoding multiple values in a
single content line by separating the values with a comma ",". This
approach has been taken for several of the content types defined
below (date, time, integer, float).
<span class="grey">Perreault Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. Property Value Escaping</span>
Some properties may contain one or more values delimited by a COMMA
character (U+002C). Therefore, a COMMA character in a value MUST be
escaped with a BACKSLASH character (U+005C), even for properties that
don't allow multiple instances (for consistency).
Some properties (e.g., N and ADR) comprise multiple fields delimited
by a SEMICOLON character (U+003B). Therefore, a SEMICOLON in a field
of such a "compound" property MUST be escaped with a BACKSLASH
character. SEMICOLON characters in non-compound properties MAY be
escaped. On input, an escaped SEMICOLON character is never a field
separator. An unescaped SEMICOLON character may be a field
separator, depending on the property in which it appears.
Furthermore, some fields of compound properties may contain a list of
values delimited by a COMMA character. Therefore, a COMMA character
in one of a field's values MUST be escaped with a BACKSLASH
character, even for fields that don't allow multiple values (for
consistency). Compound properties allowing multiple instances MUST
NOT be encoded in a single content line.
Finally, BACKSLASH characters in values MUST be escaped with a
BACKSLASH character. NEWLINE (U+000A) characters in values MUST be
encoded by two characters: a BACKSLASH followed by either an 'n'
(U+006E) or an 'N' (U+004E).
In all other cases, escaping MUST NOT be used.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Property Value Data Types</span>
Standard value types are defined below.
value = text
/ text-list
/ date-list
/ time-list
/ date-time-list
/ date-and-or-time-list
/ timestamp-list
/ boolean
/ integer-list
/ float-list
/ URI ; from <a href="./rfc3986#section-3">Section 3 of [RFC3986]</a>
/ utc-offset
/ Language-Tag
/ iana-valuespec
; Actual value type depends on property name and VALUE parameter.
<span class="grey">Perreault Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
text = *TEXT-CHAR
TEXT-CHAR = "\\" / "\," / "\n" / WSP / NON-ASCII
/ %x21-2B / %x2D-5B / %x5D-7E
; Backslashes, commas, and newlines must be encoded.
component = "\\" / "\," / "\;" / "\n" / WSP / NON-ASCII
/ %x21-2B / %x2D-3A / %x3C-5B / %x5D-7E
list-component = component *("," component)
text-list = text *("," text)
date-list = date *("," date)
time-list = time *("," time)
date-time-list = date-time *("," date-time)
date-and-or-time-list = date-and-or-time *("," date-and-or-time)
timestamp-list = timestamp *("," timestamp)
integer-list = integer *("," integer)
float-list = float *("," float)
boolean = "TRUE" / "FALSE"
integer = [sign] 1*DIGIT
float = [sign] 1*DIGIT ["." 1*DIGIT]
sign = "+" / "-"
year = 4DIGIT ; 0000-9999
month = 2DIGIT ; 01-12
day = 2DIGIT ; 01-28/29/30/31 depending on month and leap year
hour = 2DIGIT ; 00-23
minute = 2DIGIT ; 00-59
second = 2DIGIT ; 00-58/59/60 depending on leap second
zone = utc-designator / utc-offset
utc-designator = %x5A ; uppercase "Z"
date = year [month day]
/ year "-" month
/ "--" month [day]
/ "--" "-" day
date-noreduc = year month day
/ "--" month day
/ "--" "-" day
date-complete = year month day
time = hour [minute [second]] [zone]
/ "-" minute [second] [zone]
/ "-" "-" second [zone]
time-notrunc = hour [minute [second]] [zone]
time-complete = hour minute second [zone]
<span class="grey">Perreault Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
time-designator = %x54 ; uppercase "T"
date-time = date-noreduc time-designator time-notrunc
timestamp = date-complete time-designator time-complete
date-and-or-time = date-time / date / time-designator time
utc-offset = sign hour [minute]
Language-Tag = <Language-Tag, defined in <a href="./rfc5646#section-2.1">[RFC5646], Section 2.1</a>>
iana-valuespec = <value-spec, see <a href="#section-12">Section 12</a>>
; a publicly defined valuetype format, registered
; with IANA, as defined in <a href="#section-12">Section 12</a> of this
; document.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. TEXT</span>
"text": The "text" value type should be used to identify values that
contain human-readable text. As for the language, it is controlled
by the LANGUAGE property parameter defined in <a href="#section-5.1">Section 5.1</a>.
Examples for "text":
this is a text value
this is one value,this is another
this is a single value\, with a comma encoded
A formatted text line break in a text value type MUST be represented
as the character sequence backslash (U+005C) followed by a Latin
small letter n (U+006E) or a Latin capital letter N (U+004E), that
is, "\n" or "\N".
For example, a multiple line NOTE value of:
Mythical Manager
Hyjinx Software Division
BabsCo, Inc.
could be represented as:
NOTE:Mythical Manager\nHyjinx Software Division\n
BabsCo\, Inc.\n
demonstrating the \n literal formatted line break technique, the
CRLF-followed-by-space line folding technique, and the backslash
escape technique.
<span class="grey">Perreault Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. URI</span>
"uri": The "uri" value type should be used to identify values that
are referenced by a Uniform Resource Identifier (URI) instead of
encoded in-line. These value references might be used if the value
is too large, or otherwise undesirable to include directly. The
format for the URI is as defined in <a href="./rfc3986#section-3">Section 3 of [RFC3986]</a>. Note
that the value of a property of type "uri" is what the URI points to,
not the URI itself.
Examples for "uri":
http://www.example.com/my/picture.jpg
ldap://ldap.example.com/cn=babs%20jensen
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. DATE, TIME, DATE-TIME, DATE-AND-OR-TIME, and TIMESTAMP</span>
"date", "time", "date-time", "date-and-or-time", and "timestamp":
Each of these value types is based on the definitions in
[<a href="#ref-ISO.8601.2004">ISO.8601.2004</a>]. Multiple such values can be specified using the
comma-separated notation.
Only the basic format is supported.
<span class="h4"><a class="selflink" id="section-4.3.1" href="#section-4.3.1">4.3.1</a>. DATE</span>
A calendar date as specified in [<a href="#ref-ISO.8601.2004">ISO.8601.2004</a>], Section 4.1.2.
Reduced accuracy, as specified in [<a href="#ref-ISO.8601.2004">ISO.8601.2004</a>], Sections <a href="#section-4.1.2.3">4.1.2.3</a>
a) and b), but not c), is permitted.
Expanded representation, as specified in [<a href="#ref-ISO.8601.2004">ISO.8601.2004</a>], <a href="#section-4.1.4">Section</a>
<a href="#section-4.1.4">4.1.4</a>, is forbidden.
Truncated representation, as specified in [<a href="#ref-ISO.8601.2000">ISO.8601.2000</a>], Sections
5.2.1.3 d), e), and f), is permitted.
Examples for "date":
19850412
1985-04
1985
--0412
---12
<span class="grey">Perreault Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Note the use of YYYY-MM in the second example above. YYYYMM is
disallowed to prevent confusion with YYMMDD. Note also that
YYYY-MM-DD is disallowed since we are using the basic format instead
of the extended format.
<span class="h4"><a class="selflink" id="section-4.3.2" href="#section-4.3.2">4.3.2</a>. TIME</span>
A time of day as specified in [<a href="#ref-ISO.8601.2004">ISO.8601.2004</a>], Section 4.2.
Reduced accuracy, as specified in [<a href="#ref-ISO.8601.2004">ISO.8601.2004</a>], Section 4.2.2.3,
is permitted.
Representation with decimal fraction, as specified in
[<a href="#ref-ISO.8601.2004">ISO.8601.2004</a>], Section 4.2.2.4, is forbidden.
The midnight hour is always represented by 00, never 24 (see
[<a href="#ref-ISO.8601.2004">ISO.8601.2004</a>], Section 4.2.3).
Truncated representation, as specified in [<a href="#ref-ISO.8601.2000">ISO.8601.2000</a>], Sections
5.3.1.4 a), b), and c), is permitted.
Examples for "time":
102200
1022
10
-2200
--00
102200Z
102200-0800
<span class="h4"><a class="selflink" id="section-4.3.3" href="#section-4.3.3">4.3.3</a>. DATE-TIME</span>
A date and time of day combination as specified in [<a href="#ref-ISO.8601.2004">ISO.8601.2004</a>],
Section 4.3.
Truncation of the date part, as specified in [<a href="#ref-ISO.8601.2000">ISO.8601.2000</a>], <a href="#section-5.4.2">Section</a>
<a href="#section-5.4.2">5.4.2</a> c), is permitted.
Examples for "date-time":
19961022T140000
--1022T1400
---22T14
<span class="grey">Perreault Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h4"><a class="selflink" id="section-4.3.4" href="#section-4.3.4">4.3.4</a>. DATE-AND-OR-TIME</span>
Either a DATE-TIME, a DATE, or a TIME value. To allow unambiguous
interpretation, a stand-alone TIME value is always preceded by a "T".
Examples for "date-and-or-time":
19961022T140000
--1022T1400
---22T14
19850412
1985-04
1985
--0412
---12
T102200
T1022
T10
T-2200
T--00
T102200Z
T102200-0800
<span class="h4"><a class="selflink" id="section-4.3.5" href="#section-4.3.5">4.3.5</a>. TIMESTAMP</span>
A complete date and time of day combination as specified in
[<a href="#ref-ISO.8601.2004">ISO.8601.2004</a>], Section 4.3.2.
Examples for "timestamp":
19961022T140000
19961022T140000Z
19961022T140000-05
19961022T140000-0500
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. BOOLEAN</span>
"boolean": The "boolean" value type is used to express boolean
values. These values are case-insensitive.
Examples:
TRUE
false
True
<span class="grey">Perreault Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h3"><a class="selflink" id="section-4.5" href="#section-4.5">4.5</a>. INTEGER</span>
"integer": The "integer" value type is used to express signed
integers in decimal format. If sign is not specified, the value is
assumed positive "+". Multiple "integer" values can be specified
using the comma-separated notation. The maximum value is
9223372036854775807, and the minimum value is -9223372036854775808.
These limits correspond to a signed 64-bit integer using two's-
complement arithmetic.
Examples:
1234567890
-1234556790
+1234556790,432109876
<span class="h3"><a class="selflink" id="section-4.6" href="#section-4.6">4.6</a>. FLOAT</span>
"float": The "float" value type is used to express real numbers. If
sign is not specified, the value is assumed positive "+". Multiple
"float" values can be specified using the comma-separated notation.
Implementations MUST support a precision equal or better than that of
the IEEE "binary64" format [<a href="#ref-IEEE.754.2008">IEEE.754.2008</a>].
Note: Scientific notation is disallowed. Implementers wishing to
use their favorite language's %f formatting should be careful.
Examples:
20.30
1000000.0000001
1.333,3.14
<span class="h3"><a class="selflink" id="section-4.7" href="#section-4.7">4.7</a>. UTC-OFFSET</span>
"utc-offset": The "utc-offset" value type specifies that the property
value is a signed offset from UTC. This value type can be specified
in the TZ property.
The value type is an offset from Coordinated Universal Time (UTC).
It is specified as a positive or negative difference in units of
hours and minutes (e.g., +hhmm). The time is specified as a 24-hour
clock. Hour values are from 00 to 23, and minute values are from 00
to 59. Hour and minutes are 2 digits with high-order zeroes required
to maintain digit count. The basic format for ISO 8601 UTC offsets
MUST be used.
<span class="grey">Perreault Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h3"><a class="selflink" id="section-4.8" href="#section-4.8">4.8</a>. LANGUAGE-TAG</span>
"language-tag": A single language tag, as defined in [<a href="./rfc5646" title=""Tags for Identifying Languages"">RFC5646</a>].
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Property Parameters</span>
A property can have attributes associated with it. These "property
parameters" contain meta-information about the property or the
property value. In some cases, the property parameter can be multi-
valued in which case the property parameter value elements are
separated by a COMMA (U+002C).
Property parameter value elements that contain the COLON (U+003A),
SEMICOLON (U+003B), or COMMA (U+002C) character separators MUST be
specified as quoted-string text values. Property parameter values
MUST NOT contain the DQUOTE (U+0022) character. The DQUOTE character
is used as a delimiter for parameter values that contain restricted
characters or URI text.
Applications MUST ignore x-param and iana-param values they don't
recognize.
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. LANGUAGE</span>
The LANGUAGE property parameter is used to identify data in multiple
languages. There is no concept of "default" language, except as
specified by any "Content-Language" MIME header parameter that is
present [<a href="./rfc3282" title=""Content Language Headers"">RFC3282</a>]. The value of the LANGUAGE property parameter is a
language tag as defined in <a href="./rfc5646#section-2">Section 2 of [RFC5646]</a>.
Examples:
ROLE;LANGUAGE=tr:hoca
ABNF:
language-param = "LANGUAGE=" Language-Tag
; Language-Tag is defined in <a href="./rfc5646#section-2.1">section 2.1 of RFC 5646</a>
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. VALUE</span>
The VALUE parameter is OPTIONAL, used to identify the value type
(data type) and format of the value. The use of these predefined
formats is encouraged even if the value parameter is not explicitly
used. By defining a standard set of value types and their formats,
existing parsing and processing code can be leveraged. The
<span class="grey">Perreault Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
predefined data type values MUST NOT be repeated in COMMA-separated
value lists except within the N, NICKNAME, ADR, and CATEGORIES
properties.
ABNF:
value-param = "VALUE=" value-type
value-type = "text"
/ "uri"
/ "date"
/ "time"
/ "date-time"
/ "date-and-or-time"
/ "timestamp"
/ "boolean"
/ "integer"
/ "float"
/ "utc-offset"
/ "language-tag"
/ iana-token ; registered as described in <a href="#section-12">section 12</a>
/ x-name
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. PREF</span>
The PREF parameter is OPTIONAL and is used to indicate that the
corresponding instance of a property is preferred by the vCard
author. Its value MUST be an integer between 1 and 100 that
quantifies the level of preference. Lower values correspond to a
higher level of preference, with 1 being most preferred.
When the parameter is absent, the default MUST be to interpret the
property instance as being least preferred.
Note that the value of this parameter is to be interpreted only in
relation to values assigned to other instances of the same property
in the same vCard. A given value, or the absence of a value, MUST
NOT be interpreted on its own.
This parameter MAY be applied to any property that allows multiple
instances.
ABNF:
pref-param = "PREF=" (1*2DIGIT / "100")
; An integer between 1 and 100.
<span class="grey">Perreault Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. ALTID</span>
The ALTID parameter is used to "tag" property instances as being
alternative representations of the same logical property. For
example, translations of a property in multiple languages generates
multiple property instances having different LANGUAGE (<a href="#section-5.1">Section 5.1</a>)
parameter that are tagged with the same ALTID value.
This parameter's value is treated as an opaque string. Its sole
purpose is to be compared for equality against other ALTID parameter
values.
Two property instances are considered alternative representations of
the same logical property if and only if their names as well as the
value of their ALTID parameters are identical. Property instances
without the ALTID parameter MUST NOT be considered an alternative
representation of any other property instance. Values for the ALTID
parameter are not globally unique: they MAY be reused for different
property names.
Property instances having the same ALTID parameter value count as 1
toward cardinality. Therefore, since N (<a href="#section-6.2.2">Section 6.2.2</a>) has
cardinality *1 and TITLE (<a href="#section-6.6.1">Section 6.6.1</a>) has cardinality *, these
three examples would be legal:
N;ALTID=1;LANGUAGE=jp:<U+5C71><U+7530>;<U+592A><U+90CE>;;;
N;ALTID=1;LANGUAGE=en:Yamada;Taro;;;
(<U+XXXX> denotes a UTF8-encoded Unicode character.)
TITLE;ALTID=1;LANGUAGE=fr:Patron
TITLE;ALTID=1;LANGUAGE=en:Boss
TITLE;ALTID=1;LANGUAGE=fr:Patron
TITLE;ALTID=1;LANGUAGE=en:Boss
TITLE;ALTID=2;LANGUAGE=en:Chief vCard Evangelist
while this one would not:
N;ALTID=1;LANGUAGE=jp:<U+5C71><U+7530>;<U+592A><U+90CE>;;;
N:Yamada;Taro;;;
(Two instances of the N property.)
and these three would be legal but questionable:
TITLE;ALTID=1;LANGUAGE=fr:Patron
TITLE;ALTID=2;LANGUAGE=en:Boss
(Should probably have the same ALTID value.)
<span class="grey">Perreault Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
TITLE;ALTID=1;LANGUAGE=fr:Patron
TITLE:LANGUAGE=en:Boss
(Second line should probably have ALTID=1.)
N;ALTID=1;LANGUAGE=jp:<U+5C71><U+7530>;<U+592A><U+90CE>;;;
N;ALTID=1;LANGUAGE=en:Yamada;Taro;;;
N;ALTID=1;LANGUAGE=en:Smith;John;;;
(The last line should probably have ALTID=2. But that would be
illegal because N has cardinality *1.)
The ALTID property MAY also be used in may contexts other than with
the LANGUAGE parameter. Here's an example with two representations
of the same photo in different file formats:
PHOTO;ALTID=1:data:image/jpeg;base64,...
PHOTO;ALTID=1;data:image/jp2;base64,...
ABNF:
altid-param = "ALTID=" param-value
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. PID</span>
The PID parameter is used to identify a specific property among
multiple instances. It plays a role analogous to the UID property
(<a href="#section-6.7.6">Section 6.7.6</a>) on a per-property instead of per-vCard basis. It MAY
appear more than once in a given property. It MUST NOT appear on
properties that may have only one instance per vCard. Its value is
either a single small positive integer or a pair of small positive
integers separated by a dot. Multiple values may be encoded in a
single PID parameter by separating the values with a comma ",". See
<a href="#section-7">Section 7</a> for more details on its usage.
ABNF:
pid-param = "PID=" pid-value *("," pid-value)
pid-value = 1*DIGIT ["." 1*DIGIT]
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. TYPE</span>
The TYPE parameter has multiple, different uses. In general, it is a
way of specifying class characteristics of the associated property.
Most of the time, its value is a comma-separated subset of a
predefined enumeration. In this document, the following properties
make use of this parameter: FN, NICKNAME, PHOTO, ADR, TEL, EMAIL,
IMPP, LANG, TZ, GEO, TITLE, ROLE, LOGO, ORG, RELATED, CATEGORIES,
<span class="grey">Perreault Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
NOTE, SOUND, URL, KEY, FBURL, CALADRURI, and CALURI. The TYPE
parameter MUST NOT be applied on other properties defined in this
document.
The "work" and "home" values act like tags. The "work" value implies
that the property is related to an individual's work place, while the
"home" value implies that the property is related to an individual's
personal life. When neither "work" nor "home" is present, it is
implied that the property is related to both an individual's work
place and personal life in the case that the KIND property's value is
"individual", or to none in other cases.
ABNF:
type-param = "TYPE=" type-value *("," type-value)
type-value = "work" / "home" / type-param-tel
/ type-param-related / iana-token / x-name
; This is further defined in individual property sections.
<span class="h3"><a class="selflink" id="section-5.7" href="#section-5.7">5.7</a>. MEDIATYPE</span>
The MEDIATYPE parameter is used with properties whose value is a URI.
Its use is OPTIONAL. It provides a hint to the vCard consumer
application about the media type [<a href="./rfc2046" title=""Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types"">RFC2046</a>] of the resource identified
by the URI. Some URI schemes do not need this parameter. For
example, the "data" scheme allows the media type to be explicitly
indicated as part of the URI [<a href="./rfc2397" title=""The "">RFC2397</a>]. Another scheme, "http",
provides the media type as part of the URI resolution process, with
the Content-Type HTTP header [<a href="./rfc2616" title=""Hypertext Transfer Protocol -- HTTP/1.1"">RFC2616</a>]. The MEDIATYPE parameter is
intended to be used with URI schemes that do not provide such
functionality (e.g., "ftp" [<a href="./rfc1738" title=""Uniform Resource Locators (URL)"">RFC1738</a>]).
ABNF:
mediatype-param = "MEDIATYPE=" mediatype
mediatype = type-name "/" subtype-name *( ";" attribute "=" value )
; "attribute" and "value" are from [<a href="./rfc2045" title=""Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies"">RFC2045</a>]
; "type-name" and "subtype-name" are from [<a href="./rfc4288" title=""Media Type Specifications and Registration Procedures"">RFC4288</a>]
<span class="h3"><a class="selflink" id="section-5.8" href="#section-5.8">5.8</a>. CALSCALE</span>
The CALSCALE parameter is identical to the CALSCALE property in
iCalendar (see <a href="./rfc5545#section-3.7.1">[RFC5545], Section 3.7.1</a>). It is used to define the
calendar system in which a date or date-time value is expressed. The
only value specified by iCalendar is "gregorian", which stands for
the Gregorian system. It is the default when the parameter is
absent. Additional values may be defined in extension documents and
<span class="grey">Perreault Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
registered with IANA (see <a href="#section-10.3.4">Section 10.3.4</a>). A vCard implementation
MUST ignore properties with a CALSCALE parameter value that it does
not understand.
ABNF:
calscale-param = "CALSCALE=" calscale-value
calscale-value = "gregorian" / iana-token / x-name
<span class="h3"><a class="selflink" id="section-5.9" href="#section-5.9">5.9</a>. SORT-AS</span>
The "sort-as" parameter is used to specify the string to be used for
national-language-specific sorting. Without this information,
sorting algorithms could incorrectly sort this vCard within a
sequence of sorted vCards. When this property is present in a vCard,
then the given strings are used for sorting the vCard.
This parameter's value is a comma-separated list that MUST have as
many or fewer elements as the corresponding property value has
components. This parameter's value is case-sensitive.
ABNF:
sort-as-param = "SORT-AS=" sort-as-value
sort-as-value = param-value *("," param-value)
Examples: For the case of surname and given name sorting, the
following examples define common sort string usage with the N
property.
FN:Rene van der Harten
N;SORT-AS="Harten,Rene":van der Harten;Rene,J.;Sir;R.D.O.N.
FN:Robert Pau Shou Chang
N;SORT-AS="Pau Shou Chang,Robert":Shou Chang;Robert,Pau;;
FN:Osamu Koura
N;SORT-AS="Koura,Osamu":Koura;Osamu;;
FN:Oscar del Pozo
N;SORT-AS="Pozo,Oscar":del Pozo Triscon;Oscar;;
FN:Chistine d'Aboville
N;SORT-AS="Aboville,Christine":d'Aboville;Christine;;
<span class="grey">Perreault Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
FN:H. James de Mann
N;SORT-AS="Mann,James":de Mann;Henry,James;;
If sorted by surname, the results would be:
Christine d'Aboville
Rene van der Harten
Osamu Koura
H. James de Mann
Robert Pau Shou Chang
Oscar del Pozo
If sorted by given name, the results would be:
Christine d'Aboville
H. James de Mann
Osamu Koura
Oscar del Pozo
Rene van der Harten
Robert Pau Shou Chang
<span class="h3"><a class="selflink" id="section-5.10" href="#section-5.10">5.10</a>. GEO</span>
The GEO parameter can be used to indicate global positioning
information that is specific to an address. Its value is the same as
that of the GEO property (see <a href="#section-6.5.2">Section 6.5.2</a>).
ABNF:
geo-parameter = "GEO=" DQUOTE URI DQUOTE
<span class="h3"><a class="selflink" id="section-5.11" href="#section-5.11">5.11</a>. TZ</span>
The TZ parameter can be used to indicate time zone information that
is specific to an address. Its value is the same as that of the TZ
property.
ABNF:
tz-parameter = "TZ=" (param-value / DQUOTE URI DQUOTE)
<span class="grey">Perreault Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. vCard Properties</span>
What follows is an enumeration of the standard vCard properties.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. General Properties</span>
<span class="h4"><a class="selflink" id="section-6.1.1" href="#section-6.1.1">6.1.1</a>. BEGIN</span>
Purpose: To denote the beginning of a syntactic entity within a
text/vcard content-type.
Value type: text
Cardinality: 1
Special notes: The content entity MUST begin with the BEGIN property
with a value of "VCARD". The value is case-insensitive.
The BEGIN property is used in conjunction with the END property to
delimit an entity containing a related set of properties within a
text/vcard content-type. This construct can be used instead of
including multiple vCards as body parts inside of a multipart/
alternative MIME message. It is provided for applications that
wish to define content that can contain multiple entities within
the same text/vcard content-type or to define content that can be
identifiable outside of a MIME environment.
ABNF:
BEGIN-param = 0" " ; no parameter allowed
BEGIN-value = "VCARD"
Example:
BEGIN:VCARD
<span class="h4"><a class="selflink" id="section-6.1.2" href="#section-6.1.2">6.1.2</a>. END</span>
Purpose: To denote the end of a syntactic entity within a text/vcard
content-type.
Value type: text
Cardinality: 1
Special notes: The content entity MUST end with the END type with a
value of "VCARD". The value is case-insensitive.
<span class="grey">Perreault Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
The END property is used in conjunction with the BEGIN property to
delimit an entity containing a related set of properties within a
text/vcard content-type. This construct can be used instead of or
in addition to wrapping separate sets of information inside
additional MIME headers. It is provided for applications that
wish to define content that can contain multiple entities within
the same text/vcard content-type or to define content that can be
identifiable outside of a MIME environment.
ABNF:
END-param = 0" " ; no parameter allowed
END-value = "VCARD"
Example:
END:VCARD
<span class="h4"><a class="selflink" id="section-6.1.3" href="#section-6.1.3">6.1.3</a>. SOURCE</span>
Purpose: To identify the source of directory information contained
in the content type.
Value type: uri
Cardinality: *
Special notes: The SOURCE property is used to provide the means by
which applications knowledgable in the given directory service
protocol can obtain additional or more up-to-date information from
the directory service. It contains a URI as defined in [<a href="./rfc3986" title=""Uniform Resource Identifier (URI): Generic Syntax"">RFC3986</a>]
and/or other information referencing the vCard to which the
information pertains. When directory information is available
from more than one source, the sending entity can pick what it
considers to be the best source, or multiple SOURCE properties can
be included.
ABNF:
SOURCE-param = "VALUE=uri" / pid-param / pref-param / altid-param
/ mediatype-param / any-param
SOURCE-value = URI
Examples:
SOURCE:ldap://ldap.example.com/cn=Babs%20Jensen,%20o=Babsco,%20c=US
<span class="grey">Perreault Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
SOURCE:http://directory.example.com/addressbooks/jdoe/
Jean%20Dupont.vcf
<span class="h4"><a class="selflink" id="section-6.1.4" href="#section-6.1.4">6.1.4</a>. KIND</span>
Purpose: To specify the kind of object the vCard represents.
Value type: A single text value.
Cardinality: *1
Special notes: The value may be one of the following:
"individual" for a vCard representing a single person or entity.
This is the default kind of vCard.
"group" for a vCard representing a group of persons or entities.
The group's member entities can be other vCards or other types
of entities, such as email addresses or web sites. A group
vCard will usually contain MEMBER properties to specify the
members of the group, but it is not required to. A group vCard
without MEMBER properties can be considered an abstract
grouping, or one whose members are known empirically (perhaps
"IETF Participants" or "Republican U.S. Senators").
All properties in a group vCard apply to the group as a whole,
and not to any particular MEMBER. For example, an EMAIL
property might specify the address of a mailing list associated
with the group, and an IMPP property might refer to a group
chat room.
"org" for a vCard representing an organization. An organization
vCard will not (in fact, MUST NOT) contain MEMBER properties,
and so these are something of a cross between "individual" and
"group". An organization is a single entity, but not a person.
It might represent a business or government, a department or
division within a business or government, a club, an
association, or the like.
All properties in an organization vCard apply to the
organization as a whole, as is the case with a group vCard.
For example, an EMAIL property might specify the address of a
contact point for the organization.
<span class="grey">Perreault Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
"location" for a named geographical place. A location vCard will
usually contain a GEO property, but it is not required to. A
location vCard without a GEO property can be considered an
abstract location, or one whose definition is known empirically
(perhaps "New England" or "The Seashore").
All properties in a location vCard apply to the location
itself, and not with any entity that might exist at that
location. For example, in a vCard for an office building, an
ADR property might give the mailing address for the building,
and a TEL property might specify the telephone number of the
receptionist.
An x-name. vCards MAY include private or experimental values for
KIND. Remember that x-name values are not intended for general
use and are unlikely to interoperate.
An iana-token. Additional values may be registered with IANA (see
<a href="#section-10.3.4">Section 10.3.4</a>). A new value's specification document MUST
specify which properties make sense for that new kind of vCard
and which do not.
Implementations MUST support the specific string values defined
above. If this property is absent, "individual" MUST be assumed
as the default. If this property is present but the
implementation does not understand its value (the value is an
x-name or iana-token that the implementation does not support),
the implementation SHOULD act in a neutral way, which usually
means treating the vCard as though its kind were "individual".
The presence of MEMBER properties MAY, however, be taken as an
indication that the unknown kind is an extension of "group".
Clients often need to visually distinguish contacts based on what
they represent, and the KIND property provides a direct way for
them to do so. For example, when displaying contacts in a list,
an icon could be displayed next to each one, using distinctive
icons for the different kinds; a client might use an outline of a
single person to represent an "individual", an outline of multiple
people to represent a "group", and so on. Alternatively, or in
addition, a client might choose to segregate different kinds of
vCards to different panes, tabs, or selections in the user
interface.
Some clients might also make functional distinctions among the
kinds, ignoring "location" vCards for some purposes and
considering only "location" vCards for others.
<span class="grey">Perreault Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
When designing those sorts of visual and functional distinctions,
client implementations have to decide how to fit unsupported kinds
into the scheme. What icon is used for them? The one for
"individual"? A unique one, such as an icon of a question mark?
Which tab do they go into? It is beyond the scope of this
specification to answer these questions, but these are things
implementers need to consider.
ABNF:
KIND-param = "VALUE=text" / any-param
KIND-value = "individual" / "group" / "org" / "location"
/ iana-token / x-name
Example:
This represents someone named Jane Doe working in the marketing
department of the North American division of ABC Inc.
BEGIN:VCARD
VERSION:4.0
KIND:individual
FN:Jane Doe
ORG:ABC\, Inc.;North American Division;Marketing
END:VCARD
This represents the department itself, commonly known as ABC
Marketing.
BEGIN:VCARD
VERSION:4.0
KIND:org
FN:ABC Marketing
ORG:ABC\, Inc.;North American Division;Marketing
END:VCARD
<span class="h4"><a class="selflink" id="section-6.1.5" href="#section-6.1.5">6.1.5</a>. XML</span>
Purpose: To include extended XML-encoded vCard data in a plain
vCard.
Value type: A single text value.
Cardinality: *
Special notes: The content of this property is a single XML 1.0
[<a href="#ref-W3C.REC-xml-20081126">W3C.REC-xml-20081126</a>] element whose namespace MUST be explicitly
specified using the xmlns attribute and MUST NOT be the vCard 4
<span class="grey">Perreault Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
namespace ("urn:ietf:params:xml:ns:vcard-4.0"). (This implies
that it cannot duplicate a standard vCard property.) The element
is to be interpreted as if it was contained in a <vcard> element,
as defined in [<a href="./rfc6351" title=""xCard: vCard XML Representation"">RFC6351</a>].
The fragment is subject to normal line folding and escaping, i.e.,
replace all backslashes with "\\", then replace all newlines with
"\n", then fold long lines.
Support for this property is OPTIONAL, but implementations of this
specification MUST preserve instances of this property when
propagating vCards.
See [<a href="./rfc6351" title=""xCard: vCard XML Representation"">RFC6351</a>] for more information on the intended use of this
property.
ABNF:
XML-param = "VALUE=text" / altid-param
XML-value = text
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Identification Properties</span>
These types are used to capture information associated with the
identification and naming of the entity associated with the vCard.
<span class="h4"><a class="selflink" id="section-6.2.1" href="#section-6.2.1">6.2.1</a>. FN</span>
Purpose: To specify the formatted text corresponding to the name of
the object the vCard represents.
Value type: A single text value.
Cardinality: 1*
Special notes: This property is based on the semantics of the X.520
Common Name attribute [<a href="#ref-CCITT.X520.1988">CCITT.X520.1988</a>]. The property MUST be
present in the vCard object.
ABNF:
FN-param = "VALUE=text" / type-param / language-param / altid-param
/ pid-param / pref-param / any-param
FN-value = text
Example:
FN:Mr. John Q. Public\, Esq.
<span class="grey">Perreault Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h4"><a class="selflink" id="section-6.2.2" href="#section-6.2.2">6.2.2</a>. N</span>
Purpose: To specify the components of the name of the object the
vCard represents.
Value type: A single structured text value. Each component can have
multiple values.
Cardinality: *1
Special note: The structured property value corresponds, in
sequence, to the Family Names (also known as surnames), Given
Names, Additional Names, Honorific Prefixes, and Honorific
Suffixes. The text components are separated by the SEMICOLON
character (U+003B). Individual text components can include
multiple text values separated by the COMMA character (U+002C).
This property is based on the semantics of the X.520 individual
name attributes [<a href="#ref-CCITT.X520.1988">CCITT.X520.1988</a>]. The property SHOULD be present
in the vCard object when the name of the object the vCard
represents follows the X.520 model.
The SORT-AS parameter MAY be applied to this property.
ABNF:
N-param = "VALUE=text" / sort-as-param / language-param
/ altid-param / any-param
N-value = list-component 4(";" list-component)
Examples:
N:Public;John;Quinlan;Mr.;Esq.
N:Stevenson;John;Philip,Paul;Dr.;Jr.,M.D.,A.C.P.
<span class="h4"><a class="selflink" id="section-6.2.3" href="#section-6.2.3">6.2.3</a>. NICKNAME</span>
Purpose: To specify the text corresponding to the nickname of the
object the vCard represents.
Value type: One or more text values separated by a COMMA character
(U+002C).
Cardinality: *
<span class="grey">Perreault Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Special note: The nickname is the descriptive name given instead of
or in addition to the one belonging to the object the vCard
represents. It can also be used to specify a familiar form of a
proper name specified by the FN or N properties.
ABNF:
NICKNAME-param = "VALUE=text" / type-param / language-param
/ altid-param / pid-param / pref-param / any-param
NICKNAME-value = text-list
Examples:
NICKNAME:Robbie
NICKNAME:Jim,Jimmie
NICKNAME;TYPE=work:Boss
<span class="h4"><a class="selflink" id="section-6.2.4" href="#section-6.2.4">6.2.4</a>. PHOTO</span>
Purpose: To specify an image or photograph information that
annotates some aspect of the object the vCard represents.
Value type: A single URI.
Cardinality: *
ABNF:
PHOTO-param = "VALUE=uri" / altid-param / type-param
/ mediatype-param / pref-param / pid-param / any-param
PHOTO-value = URI
Examples:
PHOTO:http://www.example.com/pub/photos/jqpublic.gif
PHOTO:data:image/jpeg;base64,MIICajCCAdOgAwIBAgICBEUwDQYJKoZIhv
AQEEBQAwdzELMAkGA1UEBhMCVVMxLDAqBgNVBAoTI05ldHNjYXBlIENvbW11bm
ljYXRpb25zIENvcnBvcmF0aW9uMRwwGgYDVQQLExNJbmZvcm1hdGlvbiBTeXN0
<...remainder of base64-encoded data...>
<span class="h4"><a class="selflink" id="section-6.2.5" href="#section-6.2.5">6.2.5</a>. BDAY</span>
Purpose: To specify the birth date of the object the vCard
represents.
<span class="grey">Perreault Standards Track [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Value type: The default is a single date-and-or-time value. It can
also be reset to a single text value.
Cardinality: *1
ABNF:
BDAY-param = BDAY-param-date / BDAY-param-text
BDAY-value = date-and-or-time / text
; Value and parameter MUST match.
BDAY-param-date = "VALUE=date-and-or-time"
BDAY-param-text = "VALUE=text" / language-param
BDAY-param =/ altid-param / calscale-param / any-param
; calscale-param can only be present when BDAY-value is
; date-and-or-time and actually contains a date or date-time.
Examples:
BDAY:19960415
BDAY:--0415
BDAY;19531015T231000Z
BDAY;VALUE=text:circa 1800
<span class="h4"><a class="selflink" id="section-6.2.6" href="#section-6.2.6">6.2.6</a>. ANNIVERSARY</span>
Purpose: The date of marriage, or equivalent, of the object the
vCard represents.
Value type: The default is a single date-and-or-time value. It can
also be reset to a single text value.
Cardinality: *1
ABNF:
ANNIVERSARY-param = "VALUE=" ("date-and-or-time" / "text")
ANNIVERSARY-value = date-and-or-time / text
; Value and parameter MUST match.
ANNIVERSARY-param =/ altid-param / calscale-param / any-param
; calscale-param can only be present when ANNIVERSARY-value is
; date-and-or-time and actually contains a date or date-time.
Examples:
ANNIVERSARY:19960415
<span class="grey">Perreault Standards Track [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h4"><a class="selflink" id="section-6.2.7" href="#section-6.2.7">6.2.7</a>. GENDER</span>
Purpose: To specify the components of the sex and gender identity of
the object the vCard represents.
Value type: A single structured value with two components. Each
component has a single text value.
Cardinality: *1
Special notes: The components correspond, in sequence, to the sex
(biological), and gender identity. Each component is optional.
Sex component: A single letter. M stands for "male", F stands
for "female", O stands for "other", N stands for "none or not
applicable", U stands for "unknown".
Gender identity component: Free-form text.
ABNF:
GENDER-param = "VALUE=text" / any-param
GENDER-value = sex [";" text]
sex = "" / "M" / "F" / "O" / "N" / "U"
Examples:
GENDER:M
GENDER:F
GENDER:M;Fellow
GENDER:F;grrrl
GENDER:O;intersex
GENDER:;it's complicated
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. Delivery Addressing Properties</span>
These types are concerned with information related to the delivery
addressing or label for the vCard object.
<span class="h4"><a class="selflink" id="section-6.3.1" href="#section-6.3.1">6.3.1</a>. ADR</span>
Purpose: To specify the components of the delivery address for the
vCard object.
Value type: A single structured text value, separated by the
SEMICOLON character (U+003B).
<span class="grey">Perreault Standards Track [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Cardinality: *
Special notes: The structured type value consists of a sequence of
address components. The component values MUST be specified in
their corresponding position. The structured type value
corresponds, in sequence, to
the post office box;
the extended address (e.g., apartment or suite number);
the street address;
the locality (e.g., city);
the region (e.g., state or province);
the postal code;
the country name (full name in the language specified in
<a href="#section-5.1">Section 5.1</a>).
When a component value is missing, the associated component
separator MUST still be specified.
Experience with vCard 3 has shown that the first two components
(post office box and extended address) are plagued with many
interoperability issues. To ensure maximal interoperability,
their values SHOULD be empty.
The text components are separated by the SEMICOLON character
(U+003B). Where it makes semantic sense, individual text
components can include multiple text values (e.g., a "street"
component with multiple lines) separated by the COMMA character
(U+002C).
The property can include the "PREF" parameter to indicate the
preferred delivery address when more than one address is
specified.
The GEO and TZ parameters MAY be used with this property.
The property can also include a "LABEL" parameter to present a
delivery address label for the address. Its value is a plain-text
string representing the formatted address. Newlines are encoded
as \n, as they are for property values.
ABNF:
label-param = "LABEL=" param-value
ADR-param = "VALUE=text" / label-param / language-param
/ geo-parameter / tz-parameter / altid-param / pid-param
/ pref-param / type-param / any-param
<span class="grey">Perreault Standards Track [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
ADR-value = ADR-component-pobox ";" ADR-component-ext ";"
ADR-component-street ";" ADR-component-locality ";"
ADR-component-region ";" ADR-component-code ";"
ADR-component-country
ADR-component-pobox = list-component
ADR-component-ext = list-component
ADR-component-street = list-component
ADR-component-locality = list-component
ADR-component-region = list-component
ADR-component-code = list-component
ADR-component-country = list-component
Example: In this example, the post office box and the extended
address are absent.
ADR;GEO="geo:12.3457,78.910";LABEL="Mr. John Q. Public, Esq.\n
Mail Drop: TNE QB\n123 Main Street\nAny Town, CA 91921-1234\n
U.S.A.":;;123 Main Street;Any Town;CA;91921-1234;U.S.A.
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. Communications Properties</span>
These properties describe information about how to communicate with
the object the vCard represents.
<span class="h4"><a class="selflink" id="section-6.4.1" href="#section-6.4.1">6.4.1</a>. TEL</span>
Purpose: To specify the telephone number for telephony communication
with the object the vCard represents.
Value type: By default, it is a single free-form text value (for
backward compatibility with vCard 3), but it SHOULD be reset to a
URI value. It is expected that the URI scheme will be "tel", as
specified in [<a href="./rfc3966" title=""The tel URI for Telephone Numbers"">RFC3966</a>], but other schemes MAY be used.
Cardinality: *
Special notes: This property is based on the X.520 Telephone Number
attribute [<a href="#ref-CCITT.X520.1988">CCITT.X520.1988</a>].
The property can include the "PREF" parameter to indicate a
preferred-use telephone number.
The property can include the parameter "TYPE" to specify intended
use for the telephone number. The predefined values for the TYPE
parameter are:
<span class="grey">Perreault Standards Track [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
+-----------+-------------------------------------------------------+
| Value | Description |
+-----------+-------------------------------------------------------+
| text | Indicates that the telephone number supports text |
| | messages (SMS). |
| voice | Indicates a voice telephone number. |
| fax | Indicates a facsimile telephone number. |
| cell | Indicates a cellular or mobile telephone number. |
| video | Indicates a video conferencing telephone number. |
| pager | Indicates a paging device telephone number. |
| textphone | Indicates a telecommunication device for people with |
| | hearing or speech difficulties. |
+-----------+-------------------------------------------------------+
The default type is "voice". These type parameter values can be
specified as a parameter list (e.g., TYPE=text;TYPE=voice) or as a
value list (e.g., TYPE="text,voice"). The default can be
overridden to another set of values by specifying one or more
alternate values. For example, the default TYPE of "voice" can be
reset to a VOICE and FAX telephone number by the value list
TYPE="voice,fax".
If this property's value is a URI that can also be used for
instant messaging, the IMPP (<a href="#section-6.4.3">Section 6.4.3</a>) property SHOULD be
used in addition to this property.
ABNF:
TEL-param = TEL-text-param / TEL-uri-param
TEL-value = TEL-text-value / TEL-uri-value
; Value and parameter MUST match.
TEL-text-param = "VALUE=text"
TEL-text-value = text
TEL-uri-param = "VALUE=uri" / mediatype-param
TEL-uri-value = URI
TEL-param =/ type-param / pid-param / pref-param / altid-param
/ any-param
type-param-tel = "text" / "voice" / "fax" / "cell" / "video"
/ "pager" / "textphone" / iana-token / x-name
; type-param-tel MUST NOT be used with a property other than TEL.
<span class="grey">Perreault Standards Track [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Example:
TEL;VALUE=uri;PREF=1;TYPE="voice,home":tel:+1-555-555-5555;ext=5555
TEL;VALUE=uri;TYPE=home:tel:+33-01-23-45-67
<span class="h4"><a class="selflink" id="section-6.4.2" href="#section-6.4.2">6.4.2</a>. EMAIL</span>
Purpose: To specify the electronic mail address for communication
with the object the vCard represents.
Value type: A single text value.
Cardinality: *
Special notes: The property can include tye "PREF" parameter to
indicate a preferred-use email address when more than one is
specified.
Even though the value is free-form UTF-8 text, it is likely to be
interpreted by a Mail User Agent (MUA) as an "addr-spec", as
defined in <a href="./rfc5322#section-3.4.1">[RFC5322], Section 3.4.1</a>. Readers should also be aware
of the current work toward internationalized email addresses
[<a href="#ref-RFC5335bis">RFC5335bis</a>].
ABNF:
EMAIL-param = "VALUE=text" / pid-param / pref-param / type-param
/ altid-param / any-param
EMAIL-value = text
Example:
EMAIL;TYPE=work:jqpublic@xyz.example.com
EMAIL;PREF=1:jane_doe@example.com
<span class="h4"><a class="selflink" id="section-6.4.3" href="#section-6.4.3">6.4.3</a>. IMPP</span>
Purpose: To specify the URI for instant messaging and presence
protocol communications with the object the vCard represents.
Value type: A single URI.
Cardinality: *
Special notes: The property may include the "PREF" parameter to
indicate that this is a preferred address and has the same
semantics as the "PREF" parameter in a TEL property.
<span class="grey">Perreault Standards Track [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
If this property's value is a URI that can be used for voice
and/or video, the TEL property (<a href="#section-6.4.1">Section 6.4.1</a>) SHOULD be used in
addition to this property.
This property is adapted from [<a href="./rfc4770" title=""vCard Extensions for Instant Messaging (IM)"">RFC4770</a>], which is made obsolete by
this document.
ABNF:
IMPP-param = "VALUE=uri" / pid-param / pref-param / type-param
/ mediatype-param / altid-param / any-param
IMPP-value = URI
Example:
IMPP;PREF=1:xmpp:alice@example.com
<span class="h4"><a class="selflink" id="section-6.4.4" href="#section-6.4.4">6.4.4</a>. LANG</span>
Purpose: To specify the language(s) that may be used for contacting
the entity associated with the vCard.
Value type: A single language-tag value.
Cardinality: *
ABNF:
LANG-param = "VALUE=language-tag" / pid-param / pref-param
/ altid-param / type-param / any-param
LANG-value = Language-Tag
Example:
LANG;TYPE=work;PREF=1:en
LANG;TYPE=work;PREF=2:fr
LANG;TYPE=home:fr
<span class="h3"><a class="selflink" id="section-6.5" href="#section-6.5">6.5</a>. Geographical Properties</span>
These properties are concerned with information associated with
geographical positions or regions associated with the object the
vCard represents.
<span class="h4"><a class="selflink" id="section-6.5.1" href="#section-6.5.1">6.5.1</a>. TZ</span>
Purpose: To specify information related to the time zone of the
object the vCard represents.
<span class="grey">Perreault Standards Track [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Value type: The default is a single text value. It can also be
reset to a single URI or utc-offset value.
Cardinality: *
Special notes: It is expected that names from the public-domain
Olson database [<a href="#ref-TZ-DB" title=""Time zone code and data"">TZ-DB</a>] will be used, but this is not a
restriction. See also [<a href="#ref-IANA-TZ" title=""IANA Procedures for Maintaining the Timezone Database"">IANA-TZ</a>].
Efforts are currently being directed at creating a standard URI
scheme for expressing time zone information. Usage of such a
scheme would ensure a high level of interoperability between
implementations that support it.
Note that utc-offset values SHOULD NOT be used because the UTC
offset varies with time -- not just because of the usual daylight
saving time shifts that occur in may regions, but often entire
regions will "re-base" their overall offset. The actual offset
may be +/- 1 hour (or perhaps a little more) than the one given.
ABNF:
TZ-param = "VALUE=" ("text" / "uri" / "utc-offset")
TZ-value = text / URI / utc-offset
; Value and parameter MUST match.
TZ-param =/ altid-param / pid-param / pref-param / type-param
/ mediatype-param / any-param
Examples:
TZ:Raleigh/North America
TZ;VALUE=utc-offset:-0500
; Note: utc-offset format is NOT RECOMMENDED.
<span class="h4"><a class="selflink" id="section-6.5.2" href="#section-6.5.2">6.5.2</a>. GEO</span>
Purpose: To specify information related to the global positioning of
the object the vCard represents.
Value type: A single URI.
Cardinality: *
Special notes: The "geo" URI scheme [<a href="./rfc5870" title=""A Uniform Resource Identifier for Geographic Locations ('geo' URI)"">RFC5870</a>] is particularly well
suited for this property, but other schemes MAY be used.
<span class="grey">Perreault Standards Track [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
ABNF:
GEO-param = "VALUE=uri" / pid-param / pref-param / type-param
/ mediatype-param / altid-param / any-param
GEO-value = URI
Example:
GEO:geo:37.386013,-122.082932
<span class="h3"><a class="selflink" id="section-6.6" href="#section-6.6">6.6</a>. Organizational Properties</span>
These properties are concerned with information associated with
characteristics of the organization or organizational units of the
object that the vCard represents.
<span class="h4"><a class="selflink" id="section-6.6.1" href="#section-6.6.1">6.6.1</a>. TITLE</span>
Purpose: To specify the position or job of the object the vCard
represents.
Value type: A single text value.
Cardinality: *
Special notes: This property is based on the X.520 Title attribute
[<a href="#ref-CCITT.X520.1988">CCITT.X520.1988</a>].
ABNF:
TITLE-param = "VALUE=text" / language-param / pid-param
/ pref-param / altid-param / type-param / any-param
TITLE-value = text
Example:
TITLE:Research Scientist
<span class="h4"><a class="selflink" id="section-6.6.2" href="#section-6.6.2">6.6.2</a>. ROLE</span>
Purpose: To specify the function or part played in a particular
situation by the object the vCard represents.
Value type: A single text value.
Cardinality: *
<span class="grey">Perreault Standards Track [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Special notes: This property is based on the X.520 Business Category
explanatory attribute [<a href="#ref-CCITT.X520.1988">CCITT.X520.1988</a>]. This property is
included as an organizational type to avoid confusion with the
semantics of the TITLE property and incorrect usage of that
property when the semantics of this property is intended.
ABNF:
ROLE-param = "VALUE=text" / language-param / pid-param / pref-param
/ type-param / altid-param / any-param
ROLE-value = text
Example:
ROLE:Project Leader
<span class="h4"><a class="selflink" id="section-6.6.3" href="#section-6.6.3">6.6.3</a>. LOGO</span>
Purpose: To specify a graphic image of a logo associated with the
object the vCard represents.
Value type: A single URI.
Cardinality: *
ABNF:
LOGO-param = "VALUE=uri" / language-param / pid-param / pref-param
/ type-param / mediatype-param / altid-param / any-param
LOGO-value = URI
Examples:
LOGO:http://www.example.com/pub/logos/abccorp.jpg
LOGO:data:image/jpeg;base64,MIICajCCAdOgAwIBAgICBEUwDQYJKoZIhvc
AQEEBQAwdzELMAkGA1UEBhMCVVMxLDAqBgNVBAoTI05ldHNjYXBlIENvbW11bm
ljYXRpb25zIENvcnBvcmF0aW9uMRwwGgYDVQQLExNJbmZvcm1hdGlvbiBTeXN0
<...the remainder of base64-encoded data...>
<span class="h4"><a class="selflink" id="section-6.6.4" href="#section-6.6.4">6.6.4</a>. ORG</span>
Purpose: To specify the organizational name and units associated
with the vCard.
Value type: A single structured text value consisting of components
separated by the SEMICOLON character (U+003B).
<span class="grey">Perreault Standards Track [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Cardinality: *
Special notes: The property is based on the X.520 Organization Name
and Organization Unit attributes [<a href="#ref-CCITT.X520.1988">CCITT.X520.1988</a>]. The property
value is a structured type consisting of the organization name,
followed by zero or more levels of organizational unit names.
The SORT-AS parameter MAY be applied to this property.
ABNF:
ORG-param = "VALUE=text" / sort-as-param / language-param
/ pid-param / pref-param / altid-param / type-param
/ any-param
ORG-value = component *(";" component)
Example: A property value consisting of an organizational name,
organizational unit #1 name, and organizational unit #2 name.
ORG:ABC\, Inc.;North American Division;Marketing
<span class="h4"><a class="selflink" id="section-6.6.5" href="#section-6.6.5">6.6.5</a>. MEMBER</span>
Purpose: To include a member in the group this vCard represents.
Value type: A single URI. It MAY refer to something other than a
vCard object. For example, an email distribution list could
employ the "mailto" URI scheme [<a href="./rfc6068" title=""The 'mailto' URI Scheme"">RFC6068</a>] for efficiency.
Cardinality: *
Special notes: This property MUST NOT be present unless the value of
the KIND property is "group".
ABNF:
MEMBER-param = "VALUE=uri" / pid-param / pref-param / altid-param
/ mediatype-param / any-param
MEMBER-value = URI
<span class="grey">Perreault Standards Track [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Examples:
BEGIN:VCARD
VERSION:4.0
KIND:group
FN:The Doe family
MEMBER:urn:uuid:03a0e51f-d1aa-4385-8a53-e29025acd8af
MEMBER:urn:uuid:b8767877-b4a1-4c70-9acc-505d3819e519
END:VCARD
BEGIN:VCARD
VERSION:4.0
FN:John Doe
UID:urn:uuid:03a0e51f-d1aa-4385-8a53-e29025acd8af
END:VCARD
BEGIN:VCARD
VERSION:4.0
FN:Jane Doe
UID:urn:uuid:b8767877-b4a1-4c70-9acc-505d3819e519
END:VCARD
BEGIN:VCARD
VERSION:4.0
KIND:group
FN:Funky distribution list
MEMBER:mailto:subscriber1@example.com
MEMBER:xmpp:subscriber2@example.com
MEMBER:sip:subscriber3@example.com
MEMBER:tel:+1-418-555-5555
END:VCARD
<span class="h4"><a class="selflink" id="section-6.6.6" href="#section-6.6.6">6.6.6</a>. RELATED</span>
Purpose: To specify a relationship between another entity and the
entity represented by this vCard.
Value type: A single URI. It can also be reset to a single text
value. The text value can be used to specify textual information.
Cardinality: *
Special notes: The TYPE parameter MAY be used to characterize the
related entity. It contains a comma-separated list of values that
are registered with IANA as described in <a href="#section-10.2">Section 10.2</a>. The
registry is pre-populated with the values defined in [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>]. This
document also specifies two additional values:
agent: an entity who may sometimes act on behalf of the entity
associated with the vCard.
<span class="grey">Perreault Standards Track [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
emergency: indicates an emergency contact
ABNF:
RELATED-param = RELATED-param-uri / RELATED-param-text
RELATED-value = URI / text
; Parameter and value MUST match.
RELATED-param-uri = "VALUE=uri" / mediatype-param
RELATED-param-text = "VALUE=text" / language-param
RELATED-param =/ pid-param / pref-param / altid-param / type-param
/ any-param
type-param-related = related-type-value *("," related-type-value)
; type-param-related MUST NOT be used with a property other than
; RELATED.
related-type-value = "contact" / "acquaintance" / "friend" / "met"
/ "co-worker" / "colleague" / "co-resident"
/ "neighbor" / "child" / "parent"
/ "sibling" / "spouse" / "kin" / "muse"
/ "crush" / "date" / "sweetheart" / "me"
/ "agent" / "emergency"
Examples:
RELATED;TYPE=friend:urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6
RELATED;TYPE=contact:http://example.com/directory/jdoe.vcf
RELATED;TYPE=co-worker;VALUE=text:Please contact my assistant Jane
Doe for any inquiries.
<span class="h3"><a class="selflink" id="section-6.7" href="#section-6.7">6.7</a>. Explanatory Properties</span>
These properties are concerned with additional explanations, such as
that related to informational notes or revisions specific to the
vCard.
<span class="h4"><a class="selflink" id="section-6.7.1" href="#section-6.7.1">6.7.1</a>. CATEGORIES</span>
Purpose: To specify application category information about the
vCard, also known as "tags".
Value type: One or more text values separated by a COMMA character
(U+002C).
Cardinality: *
<span class="grey">Perreault Standards Track [Page 43]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-44" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
ABNF:
CATEGORIES-param = "VALUE=text" / pid-param / pref-param
/ type-param / altid-param / any-param
CATEGORIES-value = text-list
Example:
CATEGORIES:TRAVEL AGENT
CATEGORIES:INTERNET,IETF,INDUSTRY,INFORMATION TECHNOLOGY
<span class="h4"><a class="selflink" id="section-6.7.2" href="#section-6.7.2">6.7.2</a>. NOTE</span>
Purpose: To specify supplemental information or a comment that is
associated with the vCard.
Value type: A single text value.
Cardinality: *
Special notes: The property is based on the X.520 Description
attribute [<a href="#ref-CCITT.X520.1988">CCITT.X520.1988</a>].
ABNF:
NOTE-param = "VALUE=text" / language-param / pid-param / pref-param
/ type-param / altid-param / any-param
NOTE-value = text
Example:
NOTE:This fax number is operational 0800 to 1715
EST\, Mon-Fri.
<span class="h4"><a class="selflink" id="section-6.7.3" href="#section-6.7.3">6.7.3</a>. PRODID</span>
Purpose: To specify the identifier for the product that created the
vCard object.
Type value: A single text value.
Cardinality: *1
Special notes: Implementations SHOULD use a method such as that
specified for Formal Public Identifiers in [<a href="#ref-ISO9070" title=""Information Processing - SGML support facilities - Registration Procedures for Public Text Owner Identifiers"">ISO9070</a>] or for
Universal Resource Names in [<a href="./rfc3406" title=""Uniform Resource Names (URN) Namespace Definition Mechanisms"">RFC3406</a>] to ensure that the text
value is unique.
<span class="grey">Perreault Standards Track [Page 44]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-45" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
ABNF:
PRODID-param = "VALUE=text" / any-param
PRODID-value = text
Example:
PRODID:-//ONLINE DIRECTORY//NONSGML Version 1//EN
<span class="h4"><a class="selflink" id="section-6.7.4" href="#section-6.7.4">6.7.4</a>. REV</span>
Purpose: To specify revision information about the current vCard.
Value type: A single timestamp value.
Cardinality: *1
Special notes: The value distinguishes the current revision of the
information in this vCard for other renditions of the information.
ABNF:
REV-param = "VALUE=timestamp" / any-param
REV-value = timestamp
Example:
REV:19951031T222710Z
<span class="h4"><a class="selflink" id="section-6.7.5" href="#section-6.7.5">6.7.5</a>. SOUND</span>
Purpose: To specify a digital sound content information that
annotates some aspect of the vCard. This property is often used
to specify the proper pronunciation of the name property value of
the vCard.
Value type: A single URI.
Cardinality: *
ABNF:
SOUND-param = "VALUE=uri" / language-param / pid-param / pref-param
/ type-param / mediatype-param / altid-param
/ any-param
SOUND-value = URI
<span class="grey">Perreault Standards Track [Page 45]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-46" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Example:
SOUND:CID:JOHNQPUBLIC.part8.19960229T080000.xyzMail@example.com
SOUND:data:audio/basic;base64,MIICajCCAdOgAwIBAgICBEUwDQYJKoZIh
AQEEBQAwdzELMAkGA1UEBhMCVVMxLDAqBgNVBAoTI05ldHNjYXBlIENvbW11bm
ljYXRpb25zIENvcnBvcmF0aW9uMRwwGgYDVQQLExNJbmZvcm1hdGlvbiBTeXN0
<...the remainder of base64-encoded data...>
<span class="h4"><a class="selflink" id="section-6.7.6" href="#section-6.7.6">6.7.6</a>. UID</span>
Purpose: To specify a value that represents a globally unique
identifier corresponding to the entity associated with the vCard.
Value type: A single URI value. It MAY also be reset to free-form
text.
Cardinality: *1
Special notes: This property is used to uniquely identify the object
that the vCard represents. The "uuid" URN namespace defined in
[<a href="./rfc4122" title=""A Universally Unique IDentifier (UUID) URN Namespace"">RFC4122</a>] is particularly well suited to this task, but other URI
schemes MAY be used. Free-form text MAY also be used.
ABNF:
UID-param = UID-uri-param / UID-text-param
UID-value = UID-uri-value / UID-text-value
; Value and parameter MUST match.
UID-uri-param = "VALUE=uri"
UID-uri-value = URI
UID-text-param = "VALUE=text"
UID-text-value = text
UID-param =/ any-param
Example:
UID:urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6
<span class="grey">Perreault Standards Track [Page 46]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-47" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h4"><a class="selflink" id="section-6.7.7" href="#section-6.7.7">6.7.7</a>. CLIENTPIDMAP</span>
Purpose: To give a global meaning to a local PID source identifier.
Value type: A semicolon-separated pair of values. The first field
is a small integer corresponding to the second field of a PID
parameter instance. The second field is a URI. The "uuid" URN
namespace defined in [<a href="./rfc4122" title=""A Universally Unique IDentifier (UUID) URN Namespace"">RFC4122</a>] is particularly well suited to this
task, but other URI schemes MAY be used.
Cardinality: *
Special notes: PID source identifiers (the source identifier is the
second field in a PID parameter instance) are small integers that
only have significance within the scope of a single vCard
instance. Each distinct source identifier present in a vCard MUST
have an associated CLIENTPIDMAP. See <a href="#section-7">Section 7</a> for more details
on the usage of CLIENTPIDMAP.
PID source identifiers MUST be strictly positive. Zero is not
allowed.
As a special exception, the PID parameter MUST NOT be applied to
this property.
ABNF:
CLIENTPIDMAP-param = any-param
CLIENTPIDMAP-value = 1*DIGIT ";" URI
Example:
TEL;PID=3.1,4.2;VALUE=uri:tel:+1-555-555-5555
EMAIL;PID=4.1,5.2:jdoe@example.com
CLIENTPIDMAP:1;urn:uuid:3df403f4-5924-4bb7-b077-3c711d9eb34b
CLIENTPIDMAP:2;urn:uuid:d89c9c7a-2e1b-4832-82de-7e992d95faa5
<span class="h4"><a class="selflink" id="section-6.7.8" href="#section-6.7.8">6.7.8</a>. URL</span>
Purpose: To specify a uniform resource locator associated with the
object to which the vCard refers. Examples for individuals
include personal web sites, blogs, and social networking site
identifiers.
Cardinality: *
Value type: A single uri value.
<span class="grey">Perreault Standards Track [Page 47]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-48" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
ABNF:
URL-param = "VALUE=uri" / pid-param / pref-param / type-param
/ mediatype-param / altid-param / any-param
URL-value = URI
Example:
URL:http://example.org/restaurant.french/~chezchic.html
<span class="h4"><a class="selflink" id="section-6.7.9" href="#section-6.7.9">6.7.9</a>. VERSION</span>
Purpose: To specify the version of the vCard specification used to
format this vCard.
Value type: A single text value.
Cardinality: 1
Special notes: This property MUST be present in the vCard object,
and it must appear immediately after BEGIN:VCARD. The value MUST
be "4.0" if the vCard corresponds to this specification. Note
that earlier versions of vCard allowed this property to be placed
anywhere in the vCard object, or even to be absent.
ABNF:
VERSION-param = "VALUE=text" / any-param
VERSION-value = "4.0"
Example:
VERSION:4.0
<span class="h3"><a class="selflink" id="section-6.8" href="#section-6.8">6.8</a>. Security Properties</span>
These properties are concerned with the security of communication
pathways or access to the vCard.
<span class="h4"><a class="selflink" id="section-6.8.1" href="#section-6.8.1">6.8.1</a>. KEY</span>
Purpose: To specify a public key or authentication certificate
associated with the object that the vCard represents.
Value type: A single URI. It can also be reset to a text value.
Cardinality: *
<span class="grey">Perreault Standards Track [Page 48]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-49" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
ABNF:
KEY-param = KEY-uri-param / KEY-text-param
KEY-value = KEY-uri-value / KEY-text-value
; Value and parameter MUST match.
KEY-uri-param = "VALUE=uri" / mediatype-param
KEY-uri-value = URI
KEY-text-param = "VALUE=text"
KEY-text-value = text
KEY-param =/ altid-param / pid-param / pref-param / type-param
/ any-param
Examples:
KEY:http://www.example.com/keys/jdoe.cer
KEY;MEDIATYPE=application/pgp-keys:ftp://example.com/keys/jdoe
KEY:data:application/pgp-keys;base64,MIICajCCAdOgAwIBAgICBE
UwDQYJKoZIhvcNAQEEBQAwdzELMAkGA1UEBhMCVVMxLDAqBgNVBAoTI05l
<... remainder of base64-encoded data ...>
<span class="h3"><a class="selflink" id="section-6.9" href="#section-6.9">6.9</a>. Calendar Properties</span>
These properties are further specified in [<a href="./rfc2739" title=""Calendar Attributes for vCard and LDAP"">RFC2739</a>].
<span class="h4"><a class="selflink" id="section-6.9.1" href="#section-6.9.1">6.9.1</a>. FBURL</span>
Purpose: To specify the URI for the busy time associated with the
object that the vCard represents.
Value type: A single URI value.
Cardinality: *
Special notes: Where multiple FBURL properties are specified, the
default FBURL property is indicated with the PREF parameter. The
FTP [<a href="./rfc1738" title=""Uniform Resource Locators (URL)"">RFC1738</a>] or HTTP [<a href="./rfc2616" title=""Hypertext Transfer Protocol -- HTTP/1.1"">RFC2616</a>] type of URI points to an iCalendar
[<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>] object associated with a snapshot of the next few weeks
or months of busy time data. If the iCalendar object is
represented as a file or document, its file extension should be
".ifb".
<span class="grey">Perreault Standards Track [Page 49]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-50" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
ABNF:
FBURL-param = "VALUE=uri" / pid-param / pref-param / type-param
/ mediatype-param / altid-param / any-param
FBURL-value = URI
Examples:
FBURL;PREF=1:http://www.example.com/busy/janedoe
FBURL;MEDIATYPE=text/calendar:ftp://example.com/busy/project-a.ifb
<span class="h4"><a class="selflink" id="section-6.9.2" href="#section-6.9.2">6.9.2</a>. CALADRURI</span>
Purpose: To specify the calendar user address [<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>] to which a
scheduling request [<a href="./rfc5546" title=""iCalendar Transport-Independent Interoperability Protocol (iTIP)"">RFC5546</a>] should be sent for the object
represented by the vCard.
Value type: A single URI value.
Cardinality: *
Special notes: Where multiple CALADRURI properties are specified,
the default CALADRURI property is indicated with the PREF
parameter.
ABNF:
CALADRURI-param = "VALUE=uri" / pid-param / pref-param / type-param
/ mediatype-param / altid-param / any-param
CALADRURI-value = URI
Example:
CALADRURI;PREF=1:mailto:janedoe@example.com
CALADRURI:http://example.com/calendar/jdoe
<span class="h4"><a class="selflink" id="section-6.9.3" href="#section-6.9.3">6.9.3</a>. CALURI</span>
Purpose: To specify the URI for a calendar associated with the
object represented by the vCard.
Value type: A single URI value.
Cardinality: *
Special notes: Where multiple CALURI properties are specified, the
default CALURI property is indicated with the PREF parameter. The
property should contain a URI pointing to an iCalendar [<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>]
<span class="grey">Perreault Standards Track [Page 50]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-51" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
object associated with a snapshot of the user's calendar store.
If the iCalendar object is represented as a file or document, its
file extension should be ".ics".
ABNF:
CALURI-param = "VALUE=uri" / pid-param / pref-param / type-param
/ mediatype-param / altid-param / any-param
CALURI-value = URI
Examples:
CALURI;PREF=1:http://cal.example.com/calA
CALURI;MEDIATYPE=text/calendar:ftp://ftp.example.com/calA.ics
<span class="h3"><a class="selflink" id="section-6.10" href="#section-6.10">6.10</a>. Extended Properties and Parameters</span>
The properties and parameters defined by this document can be
extended. Non-standard, private properties and parameters with a
name starting with "X-" may be defined bilaterally between two
cooperating agents without outside registration or standardization.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Synchronization</span>
vCard data often needs to be synchronized between devices. In this
context, synchronization is defined as the intelligent merging of two
representations of the same object. vCard 4.0 includes mechanisms to
aid this process.
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Mechanisms</span>
Two mechanisms are available: the UID property is used to match
multiple instances of the same vCard, while the PID parameter is used
to match multiple instances of the same property.
The term "matching" is used here to mean recognizing that two
instances are in fact representations of the same object. For
example, a single vCard that is shared with someone results in two
vCard instances. After they have evolved separately, they still
represent the same object, and therefore may be matched by a
synchronization engine.
<span class="h4"><a class="selflink" id="section-7.1.1" href="#section-7.1.1">7.1.1</a>. Matching vCard Instances</span>
vCard instances for which the UID properties (<a href="#section-6.7.6">Section 6.7.6</a>) are
equivalent MUST be matched. Equivalence is determined as specified
in <a href="./rfc3986#section-6">[RFC3986], Section 6</a>.
<span class="grey">Perreault Standards Track [Page 51]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-52" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
In all other cases, vCard instances MAY be matched at the discretion
of the synchronization engine.
<span class="h4"><a class="selflink" id="section-7.1.2" href="#section-7.1.2">7.1.2</a>. Matching Property Instances</span>
Property instances belonging to unmatched vCards MUST NOT be matched.
Property instances whose name (e.g., EMAIL, TEL, etc.) is not the
same MUST NOT be matched.
Property instances whose name is CLIENTPIDMAP are handled separately
and MUST NOT be matched. The synchronization MUST ensure that there
is consistency of CLIENTPIDMAPs among matched vCard instances.
Property instances belonging to matched vCards, whose name is the
same, and whose maximum cardinality is 1, MUST be matched.
Property instances belonging to matched vCards, whose name is the
same, and whose PID parameters match, MUST be matched. See
<a href="#section-7.1.3">Section 7.1.3</a> for details on PID matching.
In all other cases, property instances MAY be matched at the
discretion of the synchronization engine.
<span class="h4"><a class="selflink" id="section-7.1.3" href="#section-7.1.3">7.1.3</a>. PID Matching</span>
Two PID values for which the first fields are equivalent represent
the same local value.
Two PID values representing the same local value and for which the
second fields point to CLIENTPIDMAP properties whose second field
URIs are equivalent (as specified in <a href="./rfc3986#section-6">[RFC3986], Section 6</a>) also
represent the same global value.
PID parameters for which at least one pair of their values represent
the same global value MUST be matched.
In all other cases, PID parameters MAY be matched at the discretion
of the synchronization engine.
For example, PID value "5.1", in the first vCard below, and PID value
"5.2", in the second vCard below, represent the same global value.
<span class="grey">Perreault Standards Track [Page 52]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-53" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
BEGIN:VCARD
VERSION:4.0
EMAIL;PID=4.2,5.1:jdoe@example.com
CLIENTPIDMAP:1;urn:uuid:3eef374e-7179-4196-a914-27358c3e6527
CLIENTPIDMAP:2;urn:uuid:42bcd5a7-1699-4514-87b4-056edf68e9cc
END:VCARD
BEGIN:VCARD
VERSION:4.0
EMAIL;PID=5.1,5.2:john@example.com
CLIENTPIDMAP:1;urn:uuid:0c75c629-6a8d-4d5e-a07f-1bb35846854d
CLIENTPIDMAP:2;urn:uuid:3eef374e-7179-4196-a914-27358c3e6527
END:VCARD
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Example</span>
<span class="h4"><a class="selflink" id="section-7.2.1" href="#section-7.2.1">7.2.1</a>. Creation</span>
The following simple vCard is first created on a given device.
BEGIN:VCARD
VERSION:4.0
UID:urn:uuid:4fbe8971-0bc3-424c-9c26-36c3e1eff6b1
FN;PID=1.1:J. Doe
N:Doe;J.;;;
EMAIL;PID=1.1:jdoe@example.com
CLIENTPIDMAP:1;urn:uuid:53e374d9-337e-4727-8803-a1e9c14e0556
END:VCARD
This new vCard is assigned the UID
"urn:uuid:4fbe8971-0bc3-424c-9c26-36c3e1eff6b1" by the creating
device. The FN and EMAIL properties are assigned the same local
value of 1, and this value is given global context by associating it
with "urn:uuid:53e374d9-337e-4727-8803-a1e9c14e0556", which
represents the creating device. We are at liberty to reuse the same
local value since instances of different properties will never be
matched. The N property has no PID because it is forbidden by its
maximum cardinality of 1.
<span class="h4"><a class="selflink" id="section-7.2.2" href="#section-7.2.2">7.2.2</a>. Initial Sharing</span>
This vCard is shared with a second device. Upon inspecting the UID
property, the second device understands that this is a new vCard
(i.e., unmatched) and thus the synchronization results in a simple
copy.
<span class="grey">Perreault Standards Track [Page 53]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-54" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h4"><a class="selflink" id="section-7.2.3" href="#section-7.2.3">7.2.3</a>. Adding and Sharing a Property</span>
A new phone number is created on the first device, then the vCard is
shared with the second device. This is what the second device
receives:
BEGIN:VCARD
VERSION:4.0
UID:urn:uuid:4fbe8971-0bc3-424c-9c26-36c3e1eff6b1
FN;PID=1.1:J. Doe
N:Doe;J.;;;
EMAIL;PID=1.1:jdoe@example.com
TEL;PID=1.1;VALUE=uri:tel:+1-555-555-5555
CLIENTPIDMAP:1;urn:uuid:53e374d9-337e-4727-8803-a1e9c14e0556
END:VCARD
Upon inspecting the UID property, the second device matches the vCard
it received to the vCard that it already has stored. It then starts
comparing the properties of the two vCards in same-named pairs.
The FN properties are matched because the PID parameters have the
same global value. Since the property value is the same, no update
takes place.
The N properties are matched automatically because their maximum
cardinality is 1. Since the property value is the same, no update
takes place.
The EMAIL properties are matched because the PID parameters have the
same global value. Since the property value is the same, no update
takes place.
The TEL property in the new vCard is not matched to any in the stored
vCard because no property in the stored vCard has the same name.
Therefore, this property is copied from the new vCard to the stored
vCard.
The CLIENTPIDMAP property is handled separately by the
synchronization engine. It ensures that it is consistent with the
stored one. If it was not, the results would be up to the
synchronization engine, and thus undefined by this document.
<span class="h4"><a class="selflink" id="section-7.2.4" href="#section-7.2.4">7.2.4</a>. Simultaneous Editing</span>
A new email address and a new phone number are added to the vCard on
each of the two devices, and then a new synchronization event
happens. Here are the vCards that are communicated to each other:
<span class="grey">Perreault Standards Track [Page 54]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-55" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
BEGIN:VCARD
VERSION:4.0
UID:urn:uuid:4fbe8971-0bc3-424c-9c26-36c3e1eff6b1
FN;PID=1.1:J. Doe
N:Doe;J.;;;
EMAIL;PID=1.1:jdoe@example.com
EMAIL;PID=2.1:boss@example.com
TEL;PID=1.1;VALUE=uri:tel:+1-555-555-5555
TEL;PID=2.1;VALUE=uri:tel:+1-666-666-6666
CLIENTPIDMAP:1;urn:uuid:53e374d9-337e-4727-8803-a1e9c14e0556
END:VCARD
BEGIN:VCARD
VERSION:4.0
UID:urn:uuid:4fbe8971-0bc3-424c-9c26-36c3e1eff6b1
FN;PID=1.1:J. Doe
N:Doe;J.;;;
EMAIL;PID=1.1:jdoe@example.com
EMAIL;PID=2.2:ceo@example.com
TEL;PID=1.1;VALUE=uri:tel:+1-555-555-5555
TEL;PID=2.2;VALUE=uri:tel:+1-666-666-6666
CLIENTPIDMAP:1;urn:uuid:53e374d9-337e-4727-8803-a1e9c14e0556
CLIENTPIDMAP:2;urn:uuid:1f762d2b-03c4-4a83-9a03-75ff658a6eee
END:VCARD
On the first device, the same PID source identifier (1) is reused for
the new EMAIL and TEL properties. On the second device, a new source
identifier (2) is generated, and a corresponding CLIENTPIDMAP
property is created. It contains the second device's identifier,
"urn:uuid:1f762d2b-03c4-4a83-9a03-75ff658a6eee".
The new EMAIL properties are unmatched on both sides since the PID
global value is new in both cases. The sync thus results in a copy
on both sides.
Although the situation appears to be the same for the TEL properties,
in this case, the synchronization engine is particularly smart and
matches the two new TEL properties even though their PID global
values are different. Note that in this case, the rules of
<a href="#section-7.1.2">Section 7.1.2</a> state that two properties MAY be matched at the
discretion of the synchronization engine. Therefore, the two
properties are merged.
All this results in the following vCard, which is stored on both
devices:
<span class="grey">Perreault Standards Track [Page 55]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-56" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
BEGIN:VCARD
VERSION:4.0
UID:urn:uuid:4fbe8971-0bc3-424c-9c26-36c3e1eff6b1
FN:J. Doe
N:Doe;J.;;;
EMAIL;PID=1.1:jdoe@example.com
EMAIL;PID=2.1:boss@example.com
EMAIL;PID=2.2:ceo@example.com
TEL;PID=1.1;VALUE=uri:tel:+1-555-555-5555
TEL;PID=2.1,2.2;VALUE=uri:tel:+1-666-666-6666
CLIENTPIDMAP:1;urn:uuid:53e374d9-337e-4727-8803-a1e9c14e0556
CLIENTPIDMAP:2;urn:uuid:1f762d2b-03c4-4a83-9a03-75ff658a6eee
END:VCARD
<span class="h4"><a class="selflink" id="section-7.2.5" href="#section-7.2.5">7.2.5</a>. Global Context Simplification</span>
The two devices finish their synchronization procedure by simplifying
their global contexts. Since they haven't talked to any other
device, the following vCard is for all purposes equivalent to the
above. It is also shorter.
BEGIN:VCARD
VERSION:4.0
UID:urn:uuid:4fbe8971-0bc3-424c-9c26-36c3e1eff6b1
FN:J. Doe
N:Doe;J.;;;
EMAIL;PID=1.1:jdoe@example.com
EMAIL;PID=2.1:boss@example.com
EMAIL;PID=3.1:ceo@example.com
TEL;PID=1.1;VALUE=uri:tel:+1-555-555-5555
TEL;PID=2.1;VALUE=uri:tel:+1-666-666-6666
CLIENTPIDMAP:1;urn:uuid:53e374d9-337e-4727-8803-a1e9c14e0556
END:VCARD
The details of global context simplification are unspecified by this
document. They are left up to the synchronization engine. This
example is merely intended to illustrate the possibility, which
investigating would be, in the author's opinion, worthwhile.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Example: Author's vCard</span>
BEGIN:VCARD
VERSION:4.0
FN:Simon Perreault
N:Perreault;Simon;;;ing. jr,M.Sc.
BDAY:--0203
ANNIVERSARY:20090808T1430-0500
GENDER:M
<span class="grey">Perreault Standards Track [Page 56]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-57" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
LANG;PREF=1:fr
LANG;PREF=2:en
ORG;TYPE=work:Viagenie
ADR;TYPE=work:;Suite D2-630;2875 Laurier;
Quebec;QC;G1V 2M2;Canada
TEL;VALUE=uri;TYPE="work,voice";PREF=1:tel:+1-418-656-9254;ext=102
TEL;VALUE=uri;TYPE="work,cell,voice,video,text":tel:+1-418-262-6501
EMAIL;TYPE=work:simon.perreault@viagenie.ca
GEO;TYPE=work:geo:46.772673,-71.282945
KEY;TYPE=work;VALUE=uri:
<a href="http://www.viagenie.ca/simon.perreault/simon.asc">http://www.viagenie.ca/simon.perreault/simon.asc</a>
TZ:-0500
URL;TYPE=home:http://nomis80.org
END:VCARD
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Security Considerations</span>
o Internet mail is often used to transport vCards and is subject to
many well-known security attacks, including monitoring, replay,
and forgery. Care should be taken by any directory service in
allowing information to leave the scope of the service itself,
where any access controls or confidentiality can no longer be
guaranteed. Applications should also take care to display
directory data in a "safe" environment.
o vCards can carry cryptographic keys or certificates, as described
in <a href="#section-6.8.1">Section 6.8.1</a>.
o vCards often carry information that can be sensitive (e.g.,
birthday, address, and phone information). Although vCards have
no inherent authentication or confidentiality provisions, they can
easily be carried by any security mechanism that transfers MIME
objects to address authentication or confidentiality (e.g., S/MIME
[<a href="./rfc5751" title=""Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 3.2 Message Specification"">RFC5751</a>], OpenPGP [<a href="./rfc4880" title=""OpenPGP Message Format"">RFC4880</a>]). In cases where the confidentiality
or authenticity of information contained in vCard is a concern,
the vCard SHOULD be transported using one of these secure
mechanisms. The KEY property (<a href="#section-6.8.1">Section 6.8.1</a>) can be used to
transport the public key used by these mechanisms.
o The information in a vCard may become out of date. In cases where
the vitality of data is important to an originator of a vCard, the
SOURCE property (<a href="#section-6.1.3">Section 6.1.3</a>) SHOULD be specified. In addition,
the "REV" type described in <a href="#section-6.7.4">Section 6.7.4</a> can be specified to
indicate the last time that the vCard data was updated.
o Many vCard properties may be used to transport URIs. Please refer
to <a href="./rfc3986#section-7">[RFC3986], Section 7</a>, for considerations related to URIs.
<span class="grey">Perreault Standards Track [Page 57]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-58" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. IANA Considerations</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. Media Type Registration</span>
IANA has registered the following Media Type (in
<<a href="http://www.iana.org/">http://www.iana.org/</a>>) and marked the text/directory Media Type as
DEPRECATED.
To: ietf-types@iana.org
Subject: Registration of media type text/vcard
Type name: text
Subtype name: vcard
Required parameters: none
Optional parameters: version
The "version" parameter is to be interpreted identically as the
VERSION vCard property. If this parameter is present, all vCards
in a text/vcard body part MUST have a VERSION property with value
identical to that of this MIME parameter.
"charset": as defined for text/plain [<a href="./rfc2046" title=""Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types"">RFC2046</a>]; encodings other
than UTF-8 [<a href="./rfc3629" title=""UTF-8, a transformation format of ISO 10646"">RFC3629</a>] MUST NOT be used.
Encoding considerations: 8bit
Security considerations: See <a href="#section-9">Section 9</a>.
Interoperability considerations: The text/vcard media type is
intended to identify vCard data of any version. There are older
specifications of vCard [<a href="./rfc2426" title=""vCard MIME Directory Profile"">RFC2426</a>][vCard21] still in common use.
While these formats are similar, they are not strictly compatible.
In general, it is necessary to inspect the value of the VERSION
property (see <a href="#section-6.7.9">Section 6.7.9</a>) for identifying the standard to which
a given vCard object conforms.
In addition, the following media types are known to have been used
to refer to vCard data. They should be considered deprecated in
favor of text/vcard.
* text/directory
* text/directory; profile=vcard
* text/x-vcard
<span class="grey">Perreault Standards Track [Page 58]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-59" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Published specification: <a href="./rfc6350">RFC 6350</a>
Applications that use this media type: They are numerous, diverse,
and include mail user agents, instant messaging clients, address
book applications, directory servers, and customer relationship
management software.
Additional information:
Magic number(s):
File extension(s): .vcf .vcard
Macintosh file type code(s):
Person & email address to contact for further information: vCard
discussion mailing list <vcarddav@ietf.org>
Intended usage: COMMON
Restrictions on usage: none
Author: Simon Perreault
Change controller: IETF
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. Registering New vCard Elements</span>
This section defines the process for registering new or modified
vCard elements (i.e., properties, parameters, value data types, and
values) with IANA.
<span class="h4"><a class="selflink" id="section-10.2.1" href="#section-10.2.1">10.2.1</a>. Registration Procedure</span>
The IETF has created a mailing list, vcarddav@ietf.org, which can be
used for public discussion of vCard element proposals prior to
registration. Use of the mailing list is strongly encouraged. The
IESG has appointed a designated expert who will monitor the
vcarddav@ietf.org mailing list and review registrations.
Registration of new vCard elements MUST be reviewed by the designated
expert and published in an RFC. A Standards Track RFC is REQUIRED
for the registration of new value data types that modify existing
properties. A Standards Track RFC is also REQUIRED for registration
of vCard elements that modify vCard elements previously documented in
a Standards Track RFC.
<span class="grey">Perreault Standards Track [Page 59]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-60" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
The registration procedure begins when a completed registration
template, defined in the sections below, is sent to vcarddav@ietf.org
and iana@iana.org. Within two weeks, the designated expert is
expected to tell IANA and the submitter of the registration whether
the registration is approved, approved with minor changes, or
rejected with cause. When a registration is rejected with cause, it
can be re-submitted if the concerns listed in the cause are
addressed. Decisions made by the designated expert can be appealed
to the IESG Applications Area Director, then to the IESG. They
follow the normal appeals procedure for IESG decisions.
Once the registration procedure concludes successfully, IANA creates
or modifies the corresponding record in the vCard registry. The
completed registration template is discarded.
An RFC specifying new vCard elements MUST include the completed
registration templates, which MAY be expanded with additional
information. These completed templates are intended to go in the
body of the document, not in the IANA Considerations section.
Finally, note that there is an XML representation for vCard defined
in [<a href="./rfc6351" title=""xCard: vCard XML Representation"">RFC6351</a>]. An XML representation SHOULD be defined for new vCard
elements.
<span class="h4"><a class="selflink" id="section-10.2.2" href="#section-10.2.2">10.2.2</a>. Vendor Namespace</span>
The vendor namespace is used for vCard elements associated with
commercially available products. "Vendor" or "producer" are
construed as equivalent and very broadly in this context.
A registration may be placed in the vendor namespace by anyone who
needs to interchange files associated with the particular product.
However, the registration formally belongs to the vendor or
organization handling the vCard elements in the namespace being
registered. Changes to the specification will be made at their
request, as discussed in subsequent sections.
vCard elements belonging to the vendor namespace will be
distinguished by the "VND-" prefix. This is followed by an IANA-
registered Private Enterprise Number (PEN), a dash, and a vCard
element designation of the vendor's choosing (e.g., "VND-123456-
MUDPIE").
While public exposure and review of vCard elements to be registered
in the vendor namespace are not required, using the vcarddav@ietf.org
mailing list for review is strongly encouraged to improve the quality
of those specifications. Registrations in the vendor namespace may
be submitted directly to the IANA.
<span class="grey">Perreault Standards Track [Page 60]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-61" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h4"><a class="selflink" id="section-10.2.3" href="#section-10.2.3">10.2.3</a>. Registration Template for Properties</span>
A property is defined by completing the following template.
Namespace: Empty for the global namespace, "VND-NNNN-" for a vendor-
specific property (where NNNN is replaced by the vendor's PEN).
Property name: The name of the property.
Purpose: The purpose of the property. Give a short but clear
description.
Value type: Any of the valid value types for the property value
needs to be specified. The default value type also needs to be
specified.
Cardinality: See <a href="#section-6">Section 6</a>.
Property parameters: Any of the valid property parameters for the
property MUST be specified.
Description: Any special notes about the property, how it is to be
used, etc.
Format definition: The ABNF for the property definition needs to be
specified.
Example(s): One or more examples of instances of the property need
to be specified.
<span class="h4"><a class="selflink" id="section-10.2.4" href="#section-10.2.4">10.2.4</a>. Registration Template for Parameters</span>
A parameter is defined by completing the following template.
Namespace: Empty for the global namespace, "VND-NNNN-" for a vendor-
specific property (where NNNN is replaced by the vendor's PEN).
Parameter name: The name of the parameter.
Purpose: The purpose of the parameter. Give a short but clear
description.
Description: Any special notes about the parameter, how it is to be
used, etc.
Format definition: The ABNF for the parameter definition needs to be
specified.
<span class="grey">Perreault Standards Track [Page 61]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-62" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Example(s): One or more examples of instances of the parameter need
to be specified.
<span class="h4"><a class="selflink" id="section-10.2.5" href="#section-10.2.5">10.2.5</a>. Registration Template for Value Data Types</span>
A value data type is defined by completing the following template.
Value name: The name of the value type.
Purpose: The purpose of the value type. Give a short but clear
description.
Description: Any special notes about the value type, how it is to be
used, etc.
Format definition: The ABNF for the value type definition needs to
be specified.
Example(s): One or more examples of instances of the value type need
to be specified.
<span class="h4"><a class="selflink" id="section-10.2.6" href="#section-10.2.6">10.2.6</a>. Registration Template for Values</span>
A value is defined by completing the following template.
Value: The value literal.
Purpose: The purpose of the value. Give a short but clear
description.
Conformance: The vCard properties and/or parameters that can take
this value needs to be specified.
Example(s): One or more examples of instances of the value need to
be specified.
The following is a fictitious example of a registration of a vCard
value:
Value: supervisor
Purpose: It means that the related entity is the direct hierarchical
superior (i.e., supervisor or manager) of the entity this vCard
represents.
Conformance: This value can be used with the "TYPE" parameter
applied on the "RELATED" property.
<span class="grey">Perreault Standards Track [Page 62]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-63" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
Example(s):
RELATED;TYPE=supervisor:urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6
<span class="h3"><a class="selflink" id="section-10.3" href="#section-10.3">10.3</a>. Initial vCard Elements Registries</span>
The IANA has created and will maintain the following registries for
vCard elements with pointers to appropriate reference documents. The
registries are grouped together under the heading "vCard Elements".
<span class="grey">Perreault Standards Track [Page 63]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-64" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h4"><a class="selflink" id="section-10.3.1" href="#section-10.3.1">10.3.1</a>. Properties Registry</span>
The following table has been used to initialize the properties
registry.
+-----------+--------------+-------------------------+
| Namespace | Property | Reference |
+-----------+--------------+-------------------------+
| | SOURCE | <a href="./rfc6350#section-6.1.3">RFC 6350, Section 6.1.3</a> |
| | KIND | <a href="./rfc6350#section-6.1.4">RFC 6350, Section 6.1.4</a> |
| | XML | <a href="./rfc6350#section-6.1.5">RFC 6350, Section 6.1.5</a> |
| | FN | <a href="./rfc6350#section-6.2.1">RFC 6350, Section 6.2.1</a> |
| | N | <a href="./rfc6350#section-6.2.2">RFC 6350, Section 6.2.2</a> |
| | NICKNAME | <a href="./rfc6350#section-6.2.3">RFC 6350, Section 6.2.3</a> |
| | PHOTO | <a href="./rfc6350#section-6.2.4">RFC 6350, Section 6.2.4</a> |
| | BDAY | <a href="./rfc6350#section-6.2.5">RFC 6350, Section 6.2.5</a> |
| | ANNIVERSARY | <a href="./rfc6350#section-6.2.6">RFC 6350, Section 6.2.6</a> |
| | GENDER | <a href="./rfc6350#section-6.2.7">RFC 6350, Section 6.2.7</a> |
| | ADR | <a href="./rfc6350#section-6.3.1">RFC 6350, Section 6.3.1</a> |
| | TEL | <a href="./rfc6350#section-6.4.1">RFC 6350, Section 6.4.1</a> |
| | EMAIL | <a href="./rfc6350#section-6.4.2">RFC 6350, Section 6.4.2</a> |
| | IMPP | <a href="./rfc6350#section-6.4.3">RFC 6350, Section 6.4.3</a> |
| | LANG | <a href="./rfc6350#section-6.4.4">RFC 6350, Section 6.4.4</a> |
| | TZ | <a href="./rfc6350#section-6.5.1">RFC 6350, Section 6.5.1</a> |
| | GEO | <a href="./rfc6350#section-6.5.2">RFC 6350, Section 6.5.2</a> |
| | TITLE | <a href="./rfc6350#section-6.6.1">RFC 6350, Section 6.6.1</a> |
| | ROLE | <a href="./rfc6350#section-6.6.2">RFC 6350, Section 6.6.2</a> |
| | LOGO | <a href="./rfc6350#section-6.6.3">RFC 6350, Section 6.6.3</a> |
| | ORG | <a href="./rfc6350#section-6.6.4">RFC 6350, Section 6.6.4</a> |
| | MEMBER | <a href="./rfc6350#section-6.6.5">RFC 6350, Section 6.6.5</a> |
| | RELATED | <a href="./rfc6350#section-6.6.6">RFC 6350, Section 6.6.6</a> |
| | CATEGORIES | <a href="./rfc6350#section-6.7.1">RFC 6350, Section 6.7.1</a> |
| | NOTE | <a href="./rfc6350#section-6.7.2">RFC 6350, Section 6.7.2</a> |
| | PRODID | <a href="./rfc6350#section-6.7.3">RFC 6350, Section 6.7.3</a> |
| | REV | <a href="./rfc6350#section-6.7.4">RFC 6350, Section 6.7.4</a> |
| | SOUND | <a href="./rfc6350#section-6.7.5">RFC 6350, Section 6.7.5</a> |
| | UID | <a href="./rfc6350#section-6.7.6">RFC 6350, Section 6.7.6</a> |
| | CLIENTPIDMAP | <a href="./rfc6350#section-6.7.7">RFC 6350, Section 6.7.7</a> |
| | URL | <a href="./rfc6350#section-6.7.8">RFC 6350, Section 6.7.8</a> |
| | VERSION | <a href="./rfc6350#section-6.7.9">RFC 6350, Section 6.7.9</a> |
| | KEY | <a href="./rfc6350#section-6.8.1">RFC 6350, Section 6.8.1</a> |
| | FBURL | <a href="./rfc6350#section-6.9.1">RFC 6350, Section 6.9.1</a> |
| | CALADRURI | <a href="./rfc6350#section-6.9.2">RFC 6350, Section 6.9.2</a> |
| | CALURI | <a href="./rfc6350#section-6.9.3">RFC 6350, Section 6.9.3</a> |
+-----------+--------------+-------------------------+
<span class="grey">Perreault Standards Track [Page 64]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-65" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h4"><a class="selflink" id="section-10.3.2" href="#section-10.3.2">10.3.2</a>. Parameters Registry</span>
The following table has been used to initialize the parameters
registry.
+-----------+-----------+------------------------+
| Namespace | Parameter | Reference |
+-----------+-----------+------------------------+
| | LANGUAGE | <a href="./rfc6350#section-5.1">RFC 6350, Section 5.1</a> |
| | VALUE | <a href="./rfc6350#section-5.2">RFC 6350, Section 5.2</a> |
| | PREF | <a href="./rfc6350#section-5.3">RFC 6350, Section 5.3</a> |
| | ALTID | <a href="./rfc6350#section-5.4">RFC 6350, Section 5.4</a> |
| | PID | <a href="./rfc6350#section-5.5">RFC 6350, Section 5.5</a> |
| | TYPE | <a href="./rfc6350#section-5.6">RFC 6350, Section 5.6</a> |
| | MEDIATYPE | <a href="./rfc6350#section-5.7">RFC 6350, Section 5.7</a> |
| | CALSCALE | <a href="./rfc6350#section-5.8">RFC 6350, Section 5.8</a> |
| | SORT-AS | <a href="./rfc6350#section-5.9">RFC 6350, Section 5.9</a> |
| | GEO | <a href="./rfc6350#section-5.10">RFC 6350, Section 5.10</a> |
| | TZ | <a href="./rfc6350#section-5.11">RFC 6350, Section 5.11</a> |
+-----------+-----------+------------------------+
<span class="h4"><a class="selflink" id="section-10.3.3" href="#section-10.3.3">10.3.3</a>. Value Data Types Registry</span>
The following table has been used to initialize the parameters
registry.
+------------------+-------------------------+
| Value Data Type | Reference |
+------------------+-------------------------+
| BOOLEAN | <a href="./rfc6350#section-4.4">RFC 6350, Section 4.4</a> |
| DATE | <a href="./rfc6350#section-4.3.1">RFC 6350, Section 4.3.1</a> |
| DATE-AND-OR-TIME | <a href="./rfc6350#section-4.3.4">RFC 6350, Section 4.3.4</a> |
| DATE-TIME | <a href="./rfc6350#section-4.3.3">RFC 6350, Section 4.3.3</a> |
| FLOAT | <a href="./rfc6350#section-4.6">RFC 6350, Section 4.6</a> |
| INTEGER | <a href="./rfc6350#section-4.5">RFC 6350, Section 4.5</a> |
| LANGUAGE-TAG | <a href="./rfc6350#section-4.8">RFC 6350, Section 4.8</a> |
| TEXT | <a href="./rfc6350#section-4.1">RFC 6350, Section 4.1</a> |
| TIME | <a href="./rfc6350#section-4.3.2">RFC 6350, Section 4.3.2</a> |
| TIMESTAMP | <a href="./rfc6350#section-4.3.5">RFC 6350, Section 4.3.5</a> |
| URI | <a href="./rfc6350#section-4.2">RFC 6350, Section 4.2</a> |
| UTC-OFFSET | <a href="./rfc6350#section-4.7">RFC 6350, Section 4.7</a> |
+------------------+-------------------------+
<span class="grey">Perreault Standards Track [Page 65]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-66" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h4"><a class="selflink" id="section-10.3.4" href="#section-10.3.4">10.3.4</a>. Values Registries</span>
Separate tables are used for property and parameter values.
The following table is to be used to initialize the property values
registry.
+----------+------------+-------------------------+
| Property | Value | Reference |
+----------+------------+-------------------------+
| BEGIN | VCARD | <a href="./rfc6350#section-6.1.1">RFC 6350, Section 6.1.1</a> |
| END | VCARD | <a href="./rfc6350#section-6.1.2">RFC 6350, Section 6.1.2</a> |
| KIND | individual | <a href="./rfc6350#section-6.1.4">RFC 6350, Section 6.1.4</a> |
| KIND | group | <a href="./rfc6350#section-6.1.4">RFC 6350, Section 6.1.4</a> |
| KIND | org | <a href="./rfc6350#section-6.1.4">RFC 6350, Section 6.1.4</a> |
| KIND | location | <a href="./rfc6350#section-6.1.4">RFC 6350, Section 6.1.4</a> |
+----------+------------+-------------------------+
The following table has been used to initialize the parameter values
registry.
<span class="grey">Perreault Standards Track [Page 66]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-67" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
+------------------------+-----------+--------------+---------------+
| Property | Parameter | Value | Reference |
+------------------------+-----------+--------------+---------------+
| FN, NICKNAME, PHOTO, | TYPE | work | <a href="./rfc6350">RFC 6350</a>, |
| ADR, TEL, EMAIL, IMPP, | | | <a href="#section-5.6">Section 5.6</a> |
| LANG, TZ, GEO, TITLE, | | | |
| ROLE, LOGO, ORG, | | | |
| RELATED, CATEGORIES, | | | |
| NOTE, SOUND, URL, KEY, | | | |
| FBURL, CALADRURI, and | | | |
| CALURI | | | |
| FN, NICKNAME, PHOTO, | TYPE | home | <a href="./rfc6350">RFC 6350</a>, |
| ADR, TEL, EMAIL, IMPP, | | | <a href="#section-5.6">Section 5.6</a> |
| LANG, TZ, GEO, TITLE, | | | |
| ROLE, LOGO, ORG, | | | |
| RELATED, CATEGORIES, | | | |
| NOTE, SOUND, URL, KEY, | | | |
| FBURL, CALADRURI, and | | | |
| CALURI | | | |
| TEL | TYPE | text | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.4.1">Section 6.4.1</a> |
| TEL | TYPE | voice | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.4.1">Section 6.4.1</a> |
| TEL | TYPE | fax | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.4.1">Section 6.4.1</a> |
| TEL | TYPE | cell | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.4.1">Section 6.4.1</a> |
| TEL | TYPE | video | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.4.1">Section 6.4.1</a> |
| TEL | TYPE | pager | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.4.1">Section 6.4.1</a> |
| TEL | TYPE | textphone | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.4.1">Section 6.4.1</a> |
| BDAY, ANNIVERSARY | CALSCALE | gregorian | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-5.8">Section 5.8</a> |
| RELATED | TYPE | contact | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | acquaintance | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | friend | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | met | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
<span class="grey">Perreault Standards Track [Page 67]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-68" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
| RELATED | TYPE | co-worker | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | colleague | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | co-resident | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | neighbor | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | child | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | parent | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | sibling | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | spouse | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | kin | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | muse | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | crush | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | date | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | sweetheart | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | me | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| | | | and [<a href="#ref-xfn" title=""XFN 1.1 profile"">xfn</a>] |
| RELATED | TYPE | agent | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
| RELATED | TYPE | emergency | <a href="./rfc6350">RFC 6350</a>, |
| | | | <a href="#section-6.6.6">Section 6.6.6</a> |
+------------------------+-----------+--------------+---------------+
<span class="grey">Perreault Standards Track [Page 68]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-69" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Acknowledgments</span>
The authors would like to thank Tim Howes, Mark Smith, and Frank
Dawson, the original authors of [<a href="./rfc2425" title=""A MIME Content-Type for Directory Information"">RFC2425</a>] and [<a href="./rfc2426" title=""vCard MIME Directory Profile"">RFC2426</a>], Pete
Resnick, who got this effort started and provided help along the way,
as well as the following individuals who have participated in the
drafting, review, and discussion of this memo:
Aki Niemi, Andy Mabbett, Alexander Mayrhofer, Alexey Melnikov, Anil
Srivastava, Barry Leiba, Ben Fortuna, Bernard Desruisseaux, Bernie
Hoeneisen, Bjoern Hoehrmann, Caleb Richardson, Chris Bryant, Chris
Newman, Cyrus Daboo, Daisuke Miyakawa, Dan Brickley, Dan Mosedale,
Dany Cauchie, Darryl Champagne, Dave Thewlis, Filip Navara, Florian
Zeitz, Helge Hess, Jari Urpalainen, Javier Godoy, Jean-Luc Schellens,
Joe Hildebrand, Jose Luis Gayosso, Joseph Smarr, Julian Reschke,
Kepeng Li, Kevin Marks, Kevin Wu Won, Kurt Zeilenga, Lisa Dusseault,
Marc Blanchet, Mark Paterson, Markus Lorenz, Michael Haardt, Mike
Douglass, Nick Levinson, Peter K. Sheerin, Peter Mogensen, Peter
Saint-Andre, Renato Iannella, Rohit Khare, Sly Gryphon, Stephane
Bortzmeyer, Tantek Celik, and Zoltan Ordogh.
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. References</span>
<span class="h3"><a class="selflink" id="section-12.1" href="#section-12.1">12.1</a>. Normative References</span>
[<a id="ref-CCITT.X520.1988">CCITT.X520.1988</a>]
International Telephone and Telegraph Consultative
Committee, "Information Technology - Open Systems
Interconnection - The Directory: Selected Attribute
Types", CCITT Recommendation X.520, November 1988.
[<a id="ref-IEEE.754.2008">IEEE.754.2008</a>]
Institute of Electrical and Electronics Engineers,
"Standard for Binary Floating-Point Arithmetic",
IEEE Standard 754, August 2008.
[<a id="ref-ISO.8601.2000">ISO.8601.2000</a>]
International Organization for Standardization, "Data
elements and interchange formats - Information interchange
- Representation of dates and times", ISO Standard 8601,
December 2000.
[<a id="ref-ISO.8601.2004">ISO.8601.2004</a>]
International Organization for Standardization, "Data
elements and interchange formats - Information interchange
- Representation of dates and times", ISO Standard 8601,
December 2004.
<span class="grey">Perreault Standards Track [Page 69]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-70" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
[<a id="ref-RFC2045">RFC2045</a>] Freed, N. and N. Borenstein, "Multipurpose Internet Mail
Extensions (MIME) Part One: Format of Internet Message
Bodies", <a href="./rfc2045">RFC 2045</a>, November 1996.
[<a id="ref-RFC2046">RFC2046</a>] Freed, N. and N. Borenstein, "Multipurpose Internet Mail
Extensions (MIME) Part Two: Media Types", <a href="./rfc2046">RFC 2046</a>,
November 1996.
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-RFC2739">RFC2739</a>] Small, T., Hennessy, D., and F. Dawson, "Calendar
Attributes for vCard and LDAP", <a href="./rfc2739">RFC 2739</a>, January 2000.
[<a id="ref-RFC3629">RFC3629</a>] Yergeau, F., "UTF-8, a transformation format of ISO
10646", STD 63, <a href="./rfc3629">RFC 3629</a>, November 2003.
[<a id="ref-RFC3966">RFC3966</a>] Schulzrinne, H., "The tel URI for Telephone Numbers",
<a href="./rfc3966">RFC 3966</a>, December 2004.
[<a id="ref-RFC3986">RFC3986</a>] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform
Resource Identifier (URI): Generic Syntax", STD 66,
<a href="./rfc3986">RFC 3986</a>, January 2005.
[<a id="ref-RFC4122">RFC4122</a>] Leach, P., Mealling, M., and R. Salz, "A Universally
Unique IDentifier (UUID) URN Namespace", <a href="./rfc4122">RFC 4122</a>,
July 2005.
[<a id="ref-RFC4288">RFC4288</a>] Freed, N. and J. Klensin, "Media Type Specifications and
Registration Procedures", <a href="https://www.rfc-editor.org/bcp/bcp13">BCP 13</a>, <a href="./rfc4288">RFC 4288</a>, December 2005.
[<a id="ref-RFC5234">RFC5234</a>] Crocker, D. and P. Overell, "Augmented BNF for Syntax
Specifications: ABNF", STD 68, <a href="./rfc5234">RFC 5234</a>, January 2008.
[<a id="ref-RFC5322">RFC5322</a>] Resnick, P., Ed., "Internet Message Format", <a href="./rfc5322">RFC 5322</a>,
October 2008.
[<a id="ref-RFC5545">RFC5545</a>] Desruisseaux, B., "Internet Calendaring and Scheduling
Core Object Specification (iCalendar)", <a href="./rfc5545">RFC 5545</a>,
September 2009.
[<a id="ref-RFC5546">RFC5546</a>] Daboo, C., "iCalendar Transport-Independent
Interoperability Protocol (iTIP)", <a href="./rfc5546">RFC 5546</a>,
December 2009.
[<a id="ref-RFC5646">RFC5646</a>] Phillips, A. and M. Davis, "Tags for Identifying
Languages", <a href="https://www.rfc-editor.org/bcp/bcp47">BCP 47</a>, <a href="./rfc5646">RFC 5646</a>, September 2009.
<span class="grey">Perreault Standards Track [Page 70]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-71" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
[<a id="ref-RFC5870">RFC5870</a>] Mayrhofer, A. and C. Spanring, "A Uniform Resource
Identifier for Geographic Locations ('geo' URI)",
<a href="./rfc5870">RFC 5870</a>, June 2010.
[<a id="ref-RFC6351">RFC6351</a>] Perreault, S., "xCard: vCard XML Representation",
<a href="./rfc6351">RFC 6351</a>, August 2011.
[<a id="ref-W3C.REC-xml-20081126">W3C.REC-xml-20081126</a>]
Maler, E., Yergeau, F., Sperberg-McQueen, C., Paoli, J.,
and T. Bray, "Extensible Markup Language (XML) 1.0 (Fifth
Edition)", World Wide Web Consortium Recommendation REC-
xml-20081126, November 2008,
<<a href="http://www.w3.org/TR/2008/REC-xml-20081126">http://www.w3.org/TR/2008/REC-xml-20081126</a>>.
[<a id="ref-xfn">xfn</a>] Celik, T., Mullenweg, M., and E. Meyer, "XFN 1.1 profile",
<<a href="http://gmpg.org/xfn/11">http://gmpg.org/xfn/11</a>>.
<span class="h3"><a class="selflink" id="section-12.2" href="#section-12.2">12.2</a>. Informative References</span>
[<a id="ref-IANA-TZ">IANA-TZ</a>] Lear, E. and P. Eggert, "IANA Procedures for Maintaining
the Timezone Database", Work in Progress, May 2011.
[<a id="ref-ISO9070">ISO9070</a>] International Organization for Standardization,
"Information Processing - SGML support facilities -
Registration Procedures for Public Text Owner
Identifiers", ISO 9070, April 1991.
[<a id="ref-RFC1738">RFC1738</a>] Berners-Lee, T., Masinter, L., and M. McCahill, "Uniform
Resource Locators (URL)", <a href="./rfc1738">RFC 1738</a>, December 1994.
[<a id="ref-RFC2397">RFC2397</a>] Masinter, L., "The "data" URL scheme", <a href="./rfc2397">RFC 2397</a>,
August 1998.
[<a id="ref-RFC2425">RFC2425</a>] Howes, T., Smith, M., and F. Dawson, "A MIME Content-Type
for Directory Information", <a href="./rfc2425">RFC 2425</a>, September 1998.
[<a id="ref-RFC2426">RFC2426</a>] Dawson, F. and T. Howes, "vCard MIME Directory Profile",
<a href="./rfc2426">RFC 2426</a>, September 1998.
[<a id="ref-RFC2616">RFC2616</a>] Fielding, R., Gettys, J., Mogul, J., Frystyk, H.,
Masinter, L., Leach, P., and T. Berners-Lee, "Hypertext
Transfer Protocol -- HTTP/1.1", <a href="./rfc2616">RFC 2616</a>, June 1999.
[<a id="ref-RFC3282">RFC3282</a>] Alvestrand, H., "Content Language Headers", <a href="./rfc3282">RFC 3282</a>,
May 2002.
<span class="grey">Perreault Standards Track [Page 71]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-72" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
[<a id="ref-RFC3406">RFC3406</a>] Daigle, L., van Gulik, D., Iannella, R., and P. Faltstrom,
"Uniform Resource Names (URN) Namespace Definition
Mechanisms", <a href="https://www.rfc-editor.org/bcp/bcp66">BCP 66</a>, <a href="./rfc3406">RFC 3406</a>, October 2002.
[<a id="ref-RFC3536">RFC3536</a>] Hoffman, P., "Terminology Used in Internationalization in
the IETF", <a href="./rfc3536">RFC 3536</a>, May 2003.
[<a id="ref-RFC4770">RFC4770</a>] Jennings, C. and J. Reschke, Ed., "vCard Extensions for
Instant Messaging (IM)", <a href="./rfc4770">RFC 4770</a>, January 2007.
[<a id="ref-RFC4880">RFC4880</a>] Callas, J., Donnerhacke, L., Finney, H., Shaw, D., and R.
Thayer, "OpenPGP Message Format", <a href="./rfc4880">RFC 4880</a>, November 2007.
[<a id="ref-RFC5335bis">RFC5335bis</a>]
Yang, A. and S. Steele, <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%22Internationalized+Email+Headers%22'>"Internationalized Email Headers"</a>,
Work in Progress, July 2011.
[<a id="ref-RFC5751">RFC5751</a>] Ramsdell, B. and S. Turner, "Secure/Multipurpose Internet
Mail Extensions (S/MIME) Version 3.2 Message
Specification", <a href="./rfc5751">RFC 5751</a>, January 2010.
[<a id="ref-RFC6068">RFC6068</a>] Duerst, M., Masinter, L., and J. Zawinski, "The 'mailto'
URI Scheme", <a href="./rfc6068">RFC 6068</a>, October 2010.
[<a id="ref-TZ-DB">TZ-DB</a>] Olson, A., "Time zone code and data",
<<a href="ftp://elsie.nci.nih.gov/pub/">ftp://elsie.nci.nih.gov/pub/</a>>.
[<a id="ref-vCard21">vCard21</a>] Internet Mail Consortium, "vCard - The Electronic Business
Card Version 2.1", September 1996.
<span class="grey">Perreault Standards Track [Page 72]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-73" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Differences from RFCs 2425 and 2426</span>
This appendix contains a high-level overview of the major changes
that have been made in the vCard specification from RFCs 2425 and
2426. It is incomplete, as it only lists the most important changes.
<span class="h3"><a class="selflink" id="appendix-A.1" href="#appendix-A.1">A.1</a>. New Structure</span>
o [<a href="./rfc2425" title=""A MIME Content-Type for Directory Information"">RFC2425</a>] and [<a href="./rfc2426" title=""vCard MIME Directory Profile"">RFC2426</a>] have been merged.
o vCard is now not only a MIME type but a stand-alone format.
o A proper MIME type registration form has been included.
o UTF-8 is now the only possible character set.
o New vCard elements can be registered from IANA.
<span class="h3"><a class="selflink" id="appendix-A.2" href="#appendix-A.2">A.2</a>. Removed Features</span>
o The CONTEXT and CHARSET parameters are no more.
o The NAME, MAILER, LABEL, and CLASS properties are no more.
o The "intl", "dom", "postal", and "parcel" TYPE parameter values
for the ADR property have been removed.
o In-line vCards (such as the value of the AGENT property) are no
longer supported.
<span class="h3"><a class="selflink" id="appendix-A.3" href="#appendix-A.3">A.3</a>. New Properties and Parameters</span>
o The KIND, GENDER, LANG, ANNIVERSARY, XML, and CLIENTPIDMAP
properties have been added.
o [<a href="./rfc2739" title=""Calendar Attributes for vCard and LDAP"">RFC2739</a>], which defines the FBURL, CALADRURI, CAPURI, and CALURI
properties, has been merged in.
o [<a href="./rfc4770" title=""vCard Extensions for Instant Messaging (IM)"">RFC4770</a>], which defines the IMPP property, has been merged in.
o The "work" and "home" TYPE parameter values are now applicable to
many more properties.
o The "pref" value of the TYPE parameter is now a parameter of its
own, with a positive integer value indicating the level of
preference.
o The ALTID and PID parameters have been added.
<span class="grey">Perreault Standards Track [Page 73]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-74" ></span>
<span class="grey"><a href="./rfc6350">RFC 6350</a> vCard August 2011</span>
o The MEDIATYPE parameter has been added and replaces the TYPE
parameter when it was used for indicating the media type of the
property's content.
Author's Address
Simon Perreault
Viagenie
2875 Laurier, suite D2-630
Quebec, QC G1V 2M2
Canada
Phone: +1 418 656 9254
EMail: simon.perreault@viagenie.ca
URI: <a href="http://www.viagenie.ca">http://www.viagenie.ca</a>
Perreault Standards Track [Page 74]
</pre>
|