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
|
<pre>Internet Engineering Task Force (IETF) C. Daboo
Request for Comments: 7986 Apple Inc.
Updates: <a href="./rfc5545">5545</a> October 2016
Category: Standards Track
ISSN: 2070-1721
<span class="h1">New Properties for iCalendar</span>
Abstract
This document defines a set of new properties for iCalendar data and
extends the use of some existing properties to the entire iCalendar
object.
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="./rfc7841#section-2">Section 2 of RFC 7841</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/rfc7986">http://www.rfc-editor.org/info/rfc7986</a>.
Copyright Notice
Copyright (c) 2016 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">Daboo Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-3">3</a>
<a href="#section-2">2</a>. Conventions Used in This Document ...............................<a href="#page-3">3</a>
<a href="#section-3">3</a>. Backwards-Compatible Extension Properties .......................<a href="#page-3">3</a>
<a href="#section-4">4</a>. Modifications to Calendar Components ............................<a href="#page-4">4</a>
<a href="#section-5">5</a>. Properties ......................................................<a href="#page-5">5</a>
<a href="#section-5.1">5.1</a>. NAME Property ..............................................<a href="#page-5">5</a>
<a href="#section-5.2">5.2</a>. DESCRIPTION Property .......................................<a href="#page-6">6</a>
<a href="#section-5.3">5.3</a>. UID Property ...............................................<a href="#page-7">7</a>
<a href="#section-5.4">5.4</a>. LAST-MODIFIED Property .....................................<a href="#page-8">8</a>
<a href="#section-5.5">5.5</a>. URL Property ...............................................<a href="#page-8">8</a>
<a href="#section-5.6">5.6</a>. CATEGORIES Property ........................................<a href="#page-8">8</a>
<a href="#section-5.7">5.7</a>. REFRESH-INTERVAL Property ..................................<a href="#page-9">9</a>
<a href="#section-5.8">5.8</a>. SOURCE Property ...........................................<a href="#page-10">10</a>
<a href="#section-5.9">5.9</a>. COLOR Property ............................................<a href="#page-10">10</a>
<a href="#section-5.10">5.10</a>. IMAGE Property ...........................................<a href="#page-11">11</a>
<a href="#section-5.11">5.11</a>. CONFERENCE Property ......................................<a href="#page-13">13</a>
<a href="#section-6">6</a>. Property Parameters ............................................<a href="#page-14">14</a>
<a href="#section-6.1">6.1</a>. DISPLAY Property Parameter ................................<a href="#page-14">14</a>
<a href="#section-6.2">6.2</a>. EMAIL Property Parameter ..................................<a href="#page-15">15</a>
<a href="#section-6.3">6.3</a>. FEATURE Property Parameter ................................<a href="#page-16">16</a>
<a href="#section-6.4">6.4</a>. LABEL Property Parameter ..................................<a href="#page-17">17</a>
<a href="#section-7">7</a>. Security Considerations ........................................<a href="#page-18">18</a>
<a href="#section-8">8</a>. Privacy Considerations .........................................<a href="#page-18">18</a>
<a href="#section-9">9</a>. IANA Considerations ............................................<a href="#page-19">19</a>
<a href="#section-9.1">9.1</a>. Property Registrations ....................................<a href="#page-19">19</a>
<a href="#section-9.2">9.2</a>. Parameter Registrations ...................................<a href="#page-20">20</a>
<a href="#section-9.3">9.3</a>. Property Parameter Value Registries .......................<a href="#page-20">20</a>
<a href="#section-10">10</a>. References ....................................................<a href="#page-21">21</a>
<a href="#section-10.1">10.1</a>. Normative References .....................................<a href="#page-21">21</a>
<a href="#section-10.2">10.2</a>. Informative References ...................................<a href="#page-22">22</a>
Acknowledgments ...................................................<a href="#page-23">23</a>
Author's Address ..................................................<a href="#page-23">23</a>
<span class="grey">Daboo Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The iCalendar [<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>] data format is used to represent calendar
data and is used with the iCalendar Transport-Independent
Interoperability Protocol (iTIP) [<a href="./rfc5546" title=""iCalendar Transport-Independent Interoperability Protocol (iTIP)"">RFC5546</a>] to handle scheduling
operations between calendar users. iCalendar is in widespread use,
and in accordance with provisions in that specification, extension
elements have been added by various vendors to the data format in
order to support and enhance capabilities. This specification
collects a number of these ad hoc extensions and uses the new IANA
registry capability defined in [<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>] to register standard
variants with clearly defined definitions and semantics. In
addition, some new elements are introduced for features that vendors
have recently been requesting.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Conventions Used in This Document</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>].
The notation used in this memo is the ABNF notation of [<a href="./rfc5234" title=""Augmented BNF for Syntax Specifications: ABNF"">RFC5234</a>] as
used by iCalendar [<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>]. Any syntax elements shown below that
are not explicitly defined in this specification come from iCalendar
[<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>].
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Backwards-Compatible Extension Properties</span>
iCalendar defines properties that can have different value types
indicated by a "VALUE" parameter. The definition of a property
specifies a "default" value type that is assumed to be used when no
"VALUE" parameter is present. However, this poses a problem to the
iCalendar parser/generator software that does not know about the
default values for new properties. For example, if a new property
"FOO" were defined with a default value type of URI and a URI value
with a comma was used, an iCalendar generator not aware of this fact
would likely treat the property value as "TEXT" and apply backslash
escaping to the comma in the value, effectively making it an invalid
URI value.
To avoid this problem, this specification recommends that all
properties not defined in [<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>] always include a "VALUE"
parameter if the type is other than "TEXT". That is, in the example
above, the "FOO" property would have a "VALUE=URI" parameter. This
allows iCalendar parser/generator software to track the correct types
of unknown properties.
<span class="grey">Daboo Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
New properties defined in this specification use the term "no
default" in the "Value Type" definition to indicate that the "VALUE"
parameter has to be included.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Modifications to Calendar Components</span>
This section details changes to the syntax defined in iCalendar
[<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>]. New elements are defined in subsequent sections.
calprops =/ *(
;
; The following are OPTIONAL,
; but MUST NOT occur more than once.
;
uid / last-mod / url /
refresh / source / color
;
; The following are OPTIONAL,
; and MAY occur more than once.
;
name / description / categories /
image
;
)
eventprop =/ *(
;
; The following are OPTIONAL,
; but MUST NOT occur more than once.
;
color /
;
; The following are OPTIONAL,
; and MAY occur more than once.
;
conference / image
;
)
todoprop =/ *(
;
; The following are OPTIONAL,
; but MUST NOT occur more than once.
;
color /
;
; The following are OPTIONAL,
; and MAY occur more than once.
<span class="grey">Daboo Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
;
conference / image
;
)
jourprop =/ *(
;
; The following are OPTIONAL,
; but MUST NOT occur more than once.
;
color /
;
; The following are OPTIONAL,
; and MAY occur more than once.
;
image
;
)
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Properties</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. NAME Property</span>
Property Name: NAME
Purpose: This property specifies the name of the calendar.
Value Type: TEXT
Property Parameters: IANA, non-standard, alternate text
representation, and language property parameters can be specified
on this property.
Conformance: This property can be specified multiple times in an
iCalendar object. However, each property MUST represent the name
of the calendar in a different language.
Description: This property is used to specify a name of the
iCalendar object that can be used by calendar user agents when
presenting the calendar data to a user. Whilst a calendar only
has a single name, multiple language variants can be specified by
including this property multiple times with different "LANGUAGE"
parameter values on each.
<span class="grey">Daboo Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
Format Definition: This property is defined by the following
notation:
name = "NAME" nameparam ":" text CRLF
nameparam = *(
;
; The following are OPTIONAL,
; but MUST NOT occur more than once.
;
(";" altrepparam) / (";" languageparam) /
;
; The following is OPTIONAL,
; and MAY occur more than once.
;
(";" other-param)
;
)
Example: The following is an example of this property:
NAME:Company Vacation Days
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. DESCRIPTION Property</span>
This specification modifies the definition of the "DESCRIPTION"
property to allow it to be defined in an iCalendar object. The
following additions are made to the definition of this property,
originally specified in <a href="./rfc5545#section-3.8.1.5">Section 3.8.1.5 of [RFC5545]</a>.
Purpose: This property specifies the description of the calendar.
Conformance: This property can be specified multiple times in an
iCalendar object. However, each property MUST represent the
description of the calendar in a different language.
Description: This property is used to specify a lengthy textual
description of the iCalendar object that can be used by calendar
user agents when describing the nature of the calendar data to a
user. Whilst a calendar only has a single description, multiple
language variants can be specified by including this property
multiple times with different "LANGUAGE" parameter values on each.
<span class="grey">Daboo Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. UID Property</span>
This specification modifies the definition of the "UID" property to
allow it to be defined in an iCalendar object. The following
additions are made to the definition of this property, originally
specified in <a href="./rfc5545#section-3.8.4.7">Section 3.8.4.7 of [RFC5545]</a>.
Purpose: This property specifies the persistent, globally unique
identifier for the iCalendar object. This can be used, for
example, to identify duplicate calendar streams that a client may
have been given access to. It can be used in conjunction with the
"LAST-MODIFIED" property also specified on the "VCALENDAR" object
to identify the most recent version of a calendar.
Conformance: This property can be specified once in an iCalendar
object.
The description of the "UID" property in [<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>] contains some
recommendations on how the value can be constructed. In particular,
it suggests use of host names, IP addresses, and domain names to
construct the value. However, this is no longer considered good
practice, particularly from a security and privacy standpoint, since
use of such values can leak key information about a calendar user or
their client and network environment. This specification updates
[<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>] by stating that "UID" values MUST NOT include any data that
might identify a user, host, domain, or any other security- or
privacy-sensitive information. It is RECOMMENDED that calendar user
agents now generate "UID" values that are hex-encoded random
Universally Unique Identifier (UUID) values as defined in
Sections <a href="#section-4.4">4.4</a> and <a href="#section-4.5">4.5</a> of [<a href="./rfc4122" title=""A Universally Unique IDentifier (UUID) URN Namespace"">RFC4122</a>].
The following is an example of such a property value:
UID:5FC53010-1267-4F8E-BC28-1D7AE55A7C99
Additionally, if calendar user agents choose to use other forms of
opaque identifiers for the "UID" value, they MUST have a length less
than 255 octets and MUST conform to the "iana-token" ABNF syntax
defined in <a href="./rfc5545#section-3.1">Section 3.1 of [RFC5545]</a>.
<span class="grey">Daboo Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. LAST-MODIFIED Property</span>
This specification modifies the definition of the "LAST-MODIFIED"
property to allow it to be defined in an iCalendar object. The
following additions are made to the definition of this property,
originally specified in <a href="./rfc5545#section-3.8.7.3">Section 3.8.7.3 of [RFC5545]</a>.
Purpose: This property specifies the date and time that the
information associated with the calendar was last revised.
Conformance: This property can be specified once in an iCalendar
object.
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. URL Property</span>
This specification modifies the definition of the "URL" property to
allow it to be defined in an iCalendar object. The following
additions are made to the definition of this property, originally
specified in <a href="./rfc5545#section-3.8.4.6">Section 3.8.4.6 of [RFC5545]</a>.
Purpose: This property may be used to convey a location where a more
dynamic rendition of the calendar information can be found.
Conformance: This property can be specified once in an iCalendar
object.
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. CATEGORIES Property</span>
This specification modifies the definition of the "CATEGORIES"
property to allow it to be defined in an iCalendar object. The
following additions are made to the definition of this property,
originally specified in <a href="./rfc5545#section-3.8.1.2">Section 3.8.1.2 of [RFC5545]</a>.
Purpose: This property defines the categories for an entire
calendar.
Conformance: This property can be specified multiple times in an
iCalendar object.
Description: When multiple properties are present, the set of
categories that apply to the iCalendar object are the union of all
the categories listed in each property value.
<span class="grey">Daboo Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
<span class="h3"><a class="selflink" id="section-5.7" href="#section-5.7">5.7</a>. REFRESH-INTERVAL Property</span>
Property Name: REFRESH-INTERVAL
Purpose: This property specifies a suggested minimum interval for
polling for changes of the calendar data from the original source
of that data.
Value Type: DURATION -- no default
Property Parameters: IANA and non-standard property parameters can
be specified on this property.
Conformance: This property can be specified once in an iCalendar
object.
Description: This property specifies a positive duration that gives
a suggested minimum polling interval for checking for updates to
the calendar data. The value of this property SHOULD be used by
calendar user agents to limit the polling interval for calendar
data updates to the minimum interval specified.
Format Definition: This property is defined by the following
notation:
refresh = "REFRESH-INTERVAL" refreshparam
":" dur-value CRLF
;consisting of a positive duration of time.
refreshparam = *(
;
; The following is REQUIRED,
; but MUST NOT occur more than once.
;
(";" "VALUE" "=" "DURATION") /
;
; The following is OPTIONAL,
; and MAY occur more than once.
;
(";" other-param)
;
)
Example: The following is an example of this property:
REFRESH-INTERVAL;VALUE=DURATION:P1W
<span class="grey">Daboo Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
<span class="h3"><a class="selflink" id="section-5.8" href="#section-5.8">5.8</a>. SOURCE Property</span>
Property Name: SOURCE
Purpose: This property identifies a URI where calendar data can be
refreshed from.
Value Type: URI -- no default
Property Parameters: IANA and non-standard property parameters can
be specified on this property.
Conformance: This property can be specified once in an iCalendar
object.
Description: This property identifies a location where a client can
retrieve updated data for the calendar. Clients SHOULD honor any
specified "REFRESH-INTERVAL" value when periodically retrieving
data. Note that this property differs from the "URL" property in
that "URL" is meant to provide an alternative representation of
the calendar data rather than the original location of the data.
Format Definition: This property is defined by the following
notation:
source = "SOURCE" sourceparam ":" uri CRLF
sourceparam = *(";" other-param)
Example: The following is an example of this property:
SOURCE;VALUE=URI:https://example.com/holidays.ics
<span class="h3"><a class="selflink" id="section-5.9" href="#section-5.9">5.9</a>. COLOR Property</span>
Property Name: COLOR
Purpose: This property specifies a color used for displaying the
calendar, event, todo, or journal data.
Value Type: TEXT
Property Parameters: IANA and non-standard property parameters can
be specified on this property.
Conformance: This property can be specified once in an iCalendar
object or in "VEVENT", "VTODO", or "VJOURNAL" calendar components.
<span class="grey">Daboo Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
Description: This property specifies a color that clients MAY use
when presenting the relevant data to a user. Typically, this
would appear as the "background" color of events or tasks. The
value is a case-insensitive color name taken from the CSS3 set of
names, defined in Section 4.3 of [<a href="#ref-W3C.REC-css3-color-20110607">W3C.REC-css3-color-20110607</a>].
Format Definition: This property is defined by the following
notation:
color = "COLOR" colorparam ":" text CRLF
; Value is CSS3 color name
colorparam = *(";" other-param)
Example: The following is an example of this property:
COLOR:turquoise
<span class="h3"><a class="selflink" id="section-5.10" href="#section-5.10">5.10</a>. IMAGE Property</span>
Property Name: IMAGE
Purpose: This property specifies an image associated with the
calendar or a calendar component.
Value Type: URI or BINARY -- no default. The value MUST be data
with a media type of "image" or refer to such data.
Property Parameters: IANA, non-standard, display, inline encoding,
and value data type property parameters can be specified on this
property. The format type parameter can be specified on this
property and is RECOMMENDED for inline binary-encoded content
information.
Conformance: This property can be specified multiple times in an
iCalendar object or in "VEVENT", "VTODO", or "VJOURNAL" calendar
components.
Description: This property specifies an image for an iCalendar
object or a calendar component via a URI or directly with inline
data that can be used by calendar user agents when presenting the
calendar data to a user. Multiple properties MAY be used to
specify alternative sets of images with, for example, varying
media subtypes, resolutions, or sizes. When multiple properties
are present, calendar user agents SHOULD display only one of them,
picking one that provides the most appropriate image quality, or
display none. The "DISPLAY" parameter is used to indicate the
intended display mode for the image. The "ALTREP" parameter,
<span class="grey">Daboo Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
defined in [<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>], can be used to provide a "clickable" image
where the URI in the parameter value can be "launched" by a click
on the image in the calendar user agent.
Format Definition: This property is defined by the following
notation:
image = "IMAGE" imageparam
(
(
";" "VALUE" "=" "URI"
":" uri
) /
(
";" "ENCODING" "=" "BASE64"
";" "VALUE" "=" "BINARY"
":" binary
)
)
CRLF
imageparam = *(
;
; The following is OPTIONAL for a URI value,
; RECOMMENDED for a BINARY value,
; and MUST NOT occur more than once.
;
(";" fmttypeparam) /
;
; The following are OPTIONAL,
; and MUST NOT occur more than once.
;
(";" altrepparam) / (";" displayparam) /
;
; The following is OPTIONAL,
; and MAY occur more than once.
;
(";" other-param)
;
)
Example: The following is an example of this property:
IMAGE;VALUE=URI;DISPLAY=BADGE;FMTTYPE=image/png:h
ttp://example.com/images/party.png
<span class="grey">Daboo Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
<span class="h3"><a class="selflink" id="section-5.11" href="#section-5.11">5.11</a>. CONFERENCE Property</span>
Property Name: CONFERENCE
Purpose: This property specifies information for accessing a
conferencing system.
Value Type: URI -- no default.
Property Parameters: IANA, non-standard, feature, and label property
parameters can be specified on this property.
Conformance: This property can be specified multiple times in a
"VEVENT" or "VTODO" calendar component.
Description: This property specifies information for accessing a
conferencing system for attendees of a meeting or task. This
might be for a telephone-based conference number dial-in with
access codes included (such as a tel: URI [<a href="./rfc3966" title=""The tel URI for Telephone Numbers"">RFC3966</a>] or a sip: or
sips: URI [<a href="./rfc3261" title=""SIP: Session Initiation Protocol"">RFC3261</a>]), for a web-based video chat (such as an http:
or https: URI [<a href="./rfc7230" title=""Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing"">RFC7230</a>]), or for an instant messaging group chat
room (such as an xmpp: URI [<a href="./rfc5122" title=""Internationalized Resource Identifiers (IRIs) and Uniform Resource Identifiers (URIs) for the Extensible Messaging and Presence Protocol (XMPP)"">RFC5122</a>]). If a specific URI for a
conferencing system is not available, a data: URI [<a href="./rfc2397" title=""The "">RFC2397</a>]
containing a text description can be used.
A conference system can be a bidirectional communication channel
or a uni-directional "broadcast feed".
The "FEATURE" property parameter is used to describe the key
capabilities of the conference system to allow a client to choose
the ones that give the required level of interaction from a set of
multiple properties.
The "LABEL" property parameter is used to convey additional
details on the use of the URI. For example, the URIs or access
codes for the moderator and attendee of a teleconference system
could be different, and the "LABEL" property parameter could be
used to "tag" each "CONFERENCE" property to indicate which is
which.
The "LANGUAGE" property parameter can be used to specify the
language used for text values used with this property (as per
<a href="./rfc5545#section-3.2.10">Section 3.2.10 of [RFC5545]</a>).
<span class="grey">Daboo Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
Format Definition: This property is defined by the following
notation:
conference = "CONFERENCE" confparam ":" uri CRLF
confparam = *(
;
; The following is REQUIRED,
; but MUST NOT occur more than once.
;
(";" "VALUE" "=" "URI") /
;
; The following are OPTIONAL,
; and MUST NOT occur more than once.
;
(";" featureparam) / (";" labelparam) /
(";" languageparam ) /
;
; The following is OPTIONAL,
; and MAY occur more than once.
;
(";" other-param)
;
)
Example: The following are examples of this property:
CONFERENCE;VALUE=URI;FEATURE=PHONE,MODERATOR;
LABEL=Moderator dial-in:tel:+1-412-555-0123,,,654321
CONFERENCE;VALUE=URI;FEATURE=PHONE;
LABEL=Attendee dial-in:tel:+1-412-555-0123,,,555123
CONFERENCE;VALUE=URI;FEATURE=PHONE;
LABEL=Attendee dial-in:tel:+1-888-555-0456,,,555123
CONFERENCE;VALUE=URI;FEATURE=CHAT;
LABEL=Chat room:xmpp:chat-123@conference.example.com
CONFERENCE;VALUE=URI;FEATURE=AUDIO,VIDEO;
LABEL=Attendee dial-in:https://chat.example.com/audio?id=123456
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Property Parameters</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. DISPLAY Property Parameter</span>
Parameter Name: DISPLAY
Purpose: To specify different ways in which an image for a calendar
or component can be displayed.
<span class="grey">Daboo Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
Format Definition: This property parameter is defined by the
following notation:
displayparam = "DISPLAY" "=" displayval *("," displayval)
displayval = ("BADGE" / ; image inline with the title of the
; event
"GRAPHIC" / ; a full image replacement for the event
; itself
"FULLSIZE" / ; an image that is used to enhance the
; event
"THUMBNAIL" / ; a smaller variant of "FULLSIZE" to be
; used when space for the image is
; constrained
x-name / ; Experimental type
iana-token) ; Other IANA-registered type
;
; Default is BADGE
Description: This property parameter MAY be specified on "IMAGE"
properties. In the absence of this parameter, the default value
"BADGE" MUST be used. The value determines how a client ought to
present an image supplied in iCalendar data to the user.
Values for this parameter are registered with IANA as per
<a href="#section-9.3.1">Section 9.3.1</a>. New values can be added to this registry following
the procedure outlined in <a href="./rfc5545#section-8.2.1">Section 8.2.1 of [RFC5545]</a>.
Servers and clients MUST handle x-name and iana-token values they
don't recognize by not displaying any image at all.
Example:
IMAGE;VALUE=URI;DISPLAY=BADGE,THUMBNAIL;FMTTYPE=image/png:https://exa
mple.com/images/weather-cloudy.png
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. EMAIL Property Parameter</span>
Parameter Name: EMAIL
Purpose: To specify an email address that is used to identify or
contact an organizer or attendee.
Format Definition: This property parameter is defined by the
following notation:
emailparam = "EMAIL" "=" param-value
<span class="grey">Daboo Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
Description: This property parameter MAY be specified on "ORGANIZER"
or "ATTENDEE" properties. This property can be used in situations
where the calendar user address value of the "ORGANIZER" and
"ATTENDEE" properties is not likely to be an identifier that
recipients of scheduling messages could use to match the calendar
user with, for example, an address book entry. The value of this
property is an email address that can easily be matched by
recipients. Recipients can also use this value as an alternative
means of contacting the calendar user via email. If a recipient's
calendar user agent allows the recipient to save contact
information based on the "ORGANIZER" or "ATTENDEE" properties,
those calendar user agents SHOULD use any "EMAIL" property
parameter value for the email address of the contact over any
mailto: calendar user address specified as the value of the
property. Calendar user agents SHOULD NOT include an "EMAIL"
property parameter when its value matches the calendar user
address specified as the value of the property.
Example:
ATTENDEE;CN=Cyrus Daboo;EMAIL=cyrus@example.com:mailto:opaque-toke
n-1234@example.com
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. FEATURE Property Parameter</span>
Parameter Name: FEATURE
Purpose: To specify a feature or features of a conference or
broadcast system.
Format Definition: This property parameter is defined by the
following notation:
featureparam = "FEATURE" "=" featuretext *("," featuretext)
featuretext = ("AUDIO" / ; Audio capability
"CHAT" / ; Chat or instant messaging
"FEED" / ; Blog or Atom feed
"MODERATOR" / ; Moderator dial-in code
"PHONE" / ; Phone conference
"SCREEN" / ; Screen sharing
"VIDEO" / ; Video capability
x-name / ; Experimental type
iana-token) ; Other IANA-registered type
<span class="grey">Daboo Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
Description: This property parameter MAY be specified on the
"CONFERENCE" property. Multiple values can be specified. The
"MODERATOR" value is used to indicate that the property value is
specific to the owner/initiator of the conference and contains a
URI that "activates" the system (e.g., a "moderator" access code
for a phone conference system that is different from the "regular"
access code).
Example:
CONFERENCE;VALUE=URI;FEATURE=AUDIO:rtsp://audio.example.com/
event
CONFERENCE;VALUE=URI;FEATURE=AUDIO,VIDEO:https://video-chat.exam
ple.com/;group-id=1234
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. LABEL Property Parameter</span>
Parameter Name: LABEL
Purpose: To provide a human-readable label.
Format Definition: This property parameter is defined by the
following notation:
labelparam = "LABEL" "=" param-value
Description: This property parameter MAY be specified on the
"CONFERENCE" property. It is anticipated that other extensions to
iCalendar will reuse this property parameter on new properties
that they define. As a result, clients MUST expect to find this
property parameter present on many different properties. It
provides a human-readable label that can be presented to calendar
users to allow them to discriminate between properties that might
be similar or provide additional information for properties that
are not self-describing. The "LANGUAGE" property parameter can be
used to specify the language of the text in the parameter value
(as per <a href="./rfc5545#section-3.2.10">Section 3.2.10 of [RFC5545]</a>).
Example:
CONFERENCE;VALUE=URI;FEATURE=VIDEO;
LABEL="Web video chat, access code=76543";
:https://video-chat.example.com/;group-id=1234
<span class="grey">Daboo Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
Several of the new properties or parameters defined by this
specification allow reference to "external" URIs. Care MUST be taken
when accessing data at external URIs as malicious content could be
present. Clients SHOULD ensure that suitable permission is granted
by calendar users before such URIs are dereferenced.
The "REFRESH-INTERVAL" property could be used by an attacker to make
a client carry out rapid requests to the server hosting the calendar
by specifying a very short duration (e.g., one second). This could
lead to resource consumption on the client or server and to denial-
of-service attacks against the server. Clients MUST ensure that they
throttle requests to the server to a reasonable rate. In most cases,
updating a public calendar once per day would suffice. If the
"REFRESH-INTERVAL" is any less than that, clients SHOULD warn the
calendar user and allow them to override it with a longer value.
The "CONFERENCE" property can include a "FEATURE" property parameter
with a "MODERATOR" value. In some cases, the access code used by the
owner/initiator of a conference might be private to an individual,
and clients and servers MUST ensure that such properties are not sent
to attendees of a scheduled component.
Both the "COLOR" and "IMAGE" properties are likely to be used by
calendar users to express their own personal view of the calendar
data. In addition, these properties could be used by attackers to
produce a confusing display in a calendar user agent. When such
properties are encountered in calendar data that has come from other
calendar users (e.g., via a scheduling message, "public" calendar
subscription, etc.), it is advisable for the client to give the
receiving calendar user the option to remove (or adjust) these
properties as the data is imported into their calendar system.
This specification changes the recommendations on how "UID" property
values are constructed to minimize leaking any information that might
be security sensitive.
Security considerations in [<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>] and [<a href="./rfc5546" title=""iCalendar Transport-Independent Interoperability Protocol (iTIP)"">RFC5546</a>] MUST also be
adhered to.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Privacy Considerations</span>
Several of the new properties or parameters defined by this
specification allow reference to "external" URIs. Access to those
URIs could be tracked, leading to loss of privacy. Clients SHOULD
ensure that suitable permission is granted by calendar users before
such URIs are dereferenced. In particular, calendar publishers
<span class="grey">Daboo Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
wishing to help protect the privacy of their subscribers MUST use
HTTP with Transport Layer Security [<a href="./rfc7230" title=""Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing"">RFC7230</a>] ("https:" URIs instead
of "http:" URIs) for access to calendar data or ancillary data such
as images.
In general, for their own privacy protection, users have to rely on
the privacy policies of any conferencing system being accessed via
the "CONFERENCE" property. It is entirely possible for such systems
to uniquely identify and log the activity and participation (or lack
thereof) of calendar users in the conference. Calendar user agents
SHOULD track which conferencing systems are used and warn users the
first time a new one is about to be used. This is particularly
important if the client automatically "dials in" to the conference
when the event start time occurs.
By giving different calendar users different values for the "REFRESH-
INTERVAL" property, it is possible for a publisher of calendar data
to uniquely identify each refresh from each calendar users' clients
and thereby track user activity and IP address over time. To address
this, clients SHOULD add or subtract some random amount of time from
the published "REFRESH-INTERVAL" value when doing actual refreshes.
This specification changes the recommendations on how "UID" property
values are constructed to minimize leaking any information that might
be privacy sensitive.
Privacy considerations in [<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>] and [<a href="./rfc5546" title=""iCalendar Transport-Independent Interoperability Protocol (iTIP)"">RFC5546</a>] MUST also be
adhered to.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. IANA Considerations</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Property Registrations</span>
This document defines the following new iCalendar properties. IANA
has registered the new properties in the "Properties" registry
defined in <a href="./rfc5545#section-8.3.2">Section 8.3.2 of [RFC5545]</a>. IANA has also added a
reference to this document where the properties originally defined in
<a href="./rfc5545">RFC 5545</a> have been updated by this document.
<span class="grey">Daboo Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
+------------------+---------+--------------------------------------+
| Property | Status | Reference |
+------------------+---------+--------------------------------------+
| NAME | Current | <a href="./rfc7986#section-5.1">RFC 7986, Section 5.1</a> |
| DESCRIPTION | Current | <a href="./rfc5545#section-3.8.1.5">RFC 5545, Section 3.8.1.5</a>; <a href="./rfc7986">RFC 7986</a>, |
| | | <a href="#section-5.2">Section 5.2</a> |
| UID | Current | <a href="./rfc5545#section-3.8.4.7">RFC 5545, Section 3.8.4.7</a>; <a href="./rfc7986">RFC 7986</a>, |
| | | <a href="#section-5.3">Section 5.3</a> |
| LAST-MODIFIED | Current | <a href="./rfc5545#section-3.8.7.3">RFC 5545, Section 3.8.7.3</a> <a href="./rfc7986">RFC 7986</a>, |
| | | <a href="#section-5.4">Section 5.4</a> |
| URL | Current | <a href="./rfc5545#section-3.8.4.6">RFC 5545, Section 3.8.4.6</a>; <a href="./rfc7986">RFC 7986</a>, |
| | | <a href="#section-5.5">Section 5.5</a> |
| CATEGORIES | Current | <a href="./rfc5545#section-3.8.1.2">RFC 5545, Section 3.8.1.2</a>; <a href="./rfc7986">RFC 7986</a>, |
| | | <a href="#section-5.6">Section 5.6</a> |
| REFRESH-INTERVAL | Current | <a href="./rfc7986#section-5.7">RFC 7986, Section 5.7</a> |
| SOURCE | Current | <a href="./rfc7986#section-5.8">RFC 7986, Section 5.8</a> |
| COLOR | Current | <a href="./rfc7986#section-5.9">RFC 7986, Section 5.9</a> |
| IMAGE | Current | <a href="./rfc7986#section-5.10">RFC 7986, Section 5.10</a> |
| CONFERENCE | Current | <a href="./rfc7986#section-5.11">RFC 7986, Section 5.11</a> |
+------------------+---------+--------------------------------------+
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Parameter Registrations</span>
This document defines the following new iCalendar property
parameters. IANA has registered these in the "Parameters" registry
defined in <a href="./rfc5545#section-8.3.3">Section 8.3.3 of [RFC5545]</a>.
+--------------------+---------+-----------------------+
| Property Parameter | Status | Reference |
+--------------------+---------+-----------------------+
| DISPLAY | Current | <a href="./rfc7986#section-6.1">RFC 7986, Section 6.1</a> |
| EMAIL | Current | <a href="./rfc7986#section-6.2">RFC 7986, Section 6.2</a> |
| FEATURE | Current | <a href="./rfc7986#section-6.3">RFC 7986, Section 6.3</a> |
| LABEL | Current | <a href="./rfc7986#section-6.4">RFC 7986, Section 6.4</a> |
+--------------------+---------+-----------------------+
<span class="h3"><a class="selflink" id="section-9.3" href="#section-9.3">9.3</a>. Property Parameter Value Registries</span>
IANA has created two new registries for iCalendar elements: the
"Display Types" registry and the "Feature Types" registry.
Additional codes MAY be used, provided the process and template
described in Sections <a href="#section-8.2.1">8.2.1</a> and <a href="#section-8.2.6">8.2.6</a> of [<a href="./rfc5545" title=""Internet Calendaring and Scheduling Core Object Specification (iCalendar)"">RFC5545</a>] are used to
register them.
<span class="grey">Daboo Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
<span class="h4"><a class="selflink" id="section-9.3.1" href="#section-9.3.1">9.3.1</a>. Display Types Registry</span>
The following table has been used to initialize the "Display Types"
registry.
+--------------+---------+-----------------------+
| Display Type | Status | Reference |
+--------------+---------+-----------------------+
| BADGE | Current | <a href="./rfc7986#section-6.1">RFC 7986, Section 6.1</a> |
| GRAPHIC | Current | <a href="./rfc7986#section-6.1">RFC 7986, Section 6.1</a> |
| FULLSIZE | Current | <a href="./rfc7986#section-6.1">RFC 7986, Section 6.1</a> |
| THUMBNAIL | Current | <a href="./rfc7986#section-6.1">RFC 7986, Section 6.1</a> |
+--------------+---------+-----------------------+
<span class="h4"><a class="selflink" id="section-9.3.2" href="#section-9.3.2">9.3.2</a>. Feature Types Registry</span>
The following table has been used to initialize the "Feature Types"
registry.
+--------------+---------+-----------------------+
| Feature Type | Status | Reference |
+--------------+---------+-----------------------+
| AUDIO | Current | <a href="./rfc7986#section-6.3">RFC 7986, Section 6.3</a> |
| CHAT | Current | <a href="./rfc7986#section-6.3">RFC 7986, Section 6.3</a> |
| FEED | Current | <a href="./rfc7986#section-6.3">RFC 7986, Section 6.3</a> |
| MODERATOR | Current | <a href="./rfc7986#section-6.3">RFC 7986, Section 6.3</a> |
| PHONE | Current | <a href="./rfc7986#section-6.3">RFC 7986, Section 6.3</a> |
| SCREEN | Current | <a href="./rfc7986#section-6.3">RFC 7986, Section 6.3</a> |
| VIDEO | Current | <a href="./rfc7986#section-6.3">RFC 7986, Section 6.3</a> |
+--------------+---------+-----------------------+
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. References</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>. Normative References</span>
[<a id="ref-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>,
DOI 10.17487/RFC2119, March 1997,
<<a href="http://www.rfc-editor.org/info/rfc2119">http://www.rfc-editor.org/info/rfc2119</a>>.
[<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>,
DOI 10.17487/RFC4122, July 2005,
<<a href="http://www.rfc-editor.org/info/rfc4122">http://www.rfc-editor.org/info/rfc4122</a>>.
<span class="grey">Daboo Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
[<a id="ref-RFC5234">RFC5234</a>] Crocker, D., Ed. and P. Overell, "Augmented BNF for Syntax
Specifications: ABNF", STD 68, <a href="./rfc5234">RFC 5234</a>,
DOI 10.17487/RFC5234, January 2008,
<<a href="http://www.rfc-editor.org/info/rfc5234">http://www.rfc-editor.org/info/rfc5234</a>>.
[<a id="ref-RFC5545">RFC5545</a>] Desruisseaux, B., Ed., "Internet Calendaring and
Scheduling Core Object Specification (iCalendar)",
<a href="./rfc5545">RFC 5545</a>, DOI 10.17487/RFC5545, September 2009,
<<a href="http://www.rfc-editor.org/info/rfc5545">http://www.rfc-editor.org/info/rfc5545</a>>.
[<a id="ref-RFC5546">RFC5546</a>] Daboo, C., Ed., "iCalendar Transport-Independent
Interoperability Protocol (iTIP)", <a href="./rfc5546">RFC 5546</a>,
DOI 10.17487/RFC5546, December 2009,
<<a href="http://www.rfc-editor.org/info/rfc5546">http://www.rfc-editor.org/info/rfc5546</a>>.
[<a id="ref-W3C.REC-css3-color-20110607">W3C.REC-css3-color-20110607</a>]
Celik, T., Lilley, C., and D. Baron, "CSS Color Module
Level 3", World Wide Web Consortium Recommendation
REC-css3-color-20110607, June 2011,
<<a href="https://www.w3.org/TR/2011/REC-css3-color-20110607">https://www.w3.org/TR/2011/REC-css3-color-20110607</a>>.
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>. Informative References</span>
[<a id="ref-RFC2397">RFC2397</a>] Masinter, L., "The "data" URL scheme", <a href="./rfc2397">RFC 2397</a>,
DOI 10.17487/RFC2397, August 1998,
<<a href="http://www.rfc-editor.org/info/rfc2397">http://www.rfc-editor.org/info/rfc2397</a>>.
[<a id="ref-RFC3261">RFC3261</a>] Rosenberg, J., Schulzrinne, H., Camarillo, G., Johnston,
A., Peterson, J., Sparks, R., Handley, M., and E.
Schooler, "SIP: Session Initiation Protocol", <a href="./rfc3261">RFC 3261</a>,
DOI 10.17487/RFC3261, June 2002,
<<a href="http://www.rfc-editor.org/info/rfc3261">http://www.rfc-editor.org/info/rfc3261</a>>.
[<a id="ref-RFC3966">RFC3966</a>] Schulzrinne, H., "The tel URI for Telephone Numbers",
<a href="./rfc3966">RFC 3966</a>, DOI 10.17487/RFC3966, December 2004,
<<a href="http://www.rfc-editor.org/info/rfc3966">http://www.rfc-editor.org/info/rfc3966</a>>.
[<a id="ref-RFC5122">RFC5122</a>] Saint-Andre, P., "Internationalized Resource Identifiers
(IRIs) and Uniform Resource Identifiers (URIs) for the
Extensible Messaging and Presence Protocol (XMPP)",
<a href="./rfc5122">RFC 5122</a>, DOI 10.17487/RFC5122, February 2008,
<<a href="http://www.rfc-editor.org/info/rfc5122">http://www.rfc-editor.org/info/rfc5122</a>>.
[<a id="ref-RFC7230">RFC7230</a>] Fielding, R., Ed. and J. Reschke, Ed., "Hypertext Transfer
Protocol (HTTP/1.1): Message Syntax and Routing",
<a href="./rfc7230">RFC 7230</a>, DOI 10.17487/RFC7230, June 2014,
<<a href="http://www.rfc-editor.org/info/rfc7230">http://www.rfc-editor.org/info/rfc7230</a>>.
<span class="grey">Daboo Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7986">RFC 7986</a> iCalendar Property Extensions October 2016</span>
Acknowledgments
Thanks to the following individuals for feedback: Bernard
Desruisseaux, Mike Douglass, Lucia Fedorova, Ken Murchison, Arnaud
Quillaud, and Dave Thewlis.
This specification came about via discussions at the Calendaring and
Scheduling Consortium.
Author's Address
Cyrus Daboo
Apple Inc.
1 Infinite Loop
Cupertino, CA 95014
United States of America
Email: cyrus@daboo.name
URI: <a href="http://www.apple.com/">http://www.apple.com/</a>
Daboo Standards Track [Page 23]
</pre>
|