<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE rfc [
<!ENTITY nbsp "&#160;">
<!ENTITY zwsp "&#8203;">
<!ENTITY nbhy "&#8209;">
<!ENTITY wj "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt"?>
<?rfc toc="yes"?>
<?rfc tocompact="yes"?>
<?rfc tocdepth="4"?>
<?rfc compact="yes"?>
<?rfc subcompact="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc iprnotified="no"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" category="std" consensus="true" docName="draft-ietf-calext-jscalendarbis-13" obsoletes="8984" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" symRefs="true" sortRefs="true" version="3">
  <front>
    <title abbrev="JSCalendar">JSCalendar: A JSON Representation of Calendar Data</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-calext-jscalendarbis-13"/>
    <author initials="N." surname="Jenkins" fullname="Neil Jenkins">
      <organization showOnFrontPage="true">Fastmail</organization>
      <address>
        <postal>
          <street>P.O. Box 234</street>
          <extaddr>Collins St. West</extaddr>
          <city>Melbourne</city>
          <code>VIC 8007</code>
          <country>Australia</country>
          <region/>
        </postal>
        <phone/>
        <email>neilj@fastmailteam.com</email>
        <uri>https://www.fastmail.com</uri>
      </address>
    </author>
    <author initials="R." surname="Stepanek" fullname="Robert Stepanek">
      <organization showOnFrontPage="true">Fastmail</organization>
      <address>
        <postal>
          <street>P.O. Box 234</street>
          <extaddr>Collins St. West</extaddr>
          <city>Melbourne</city>
          <code>VIC 8007</code>
          <country>Australia</country>
          <region/>
        </postal>
        <email>rsto@fastmailteam.com</email>
        <uri>https://www.fastmail.com</uri>
      </address>
    </author>
    <date day="14" month="January" year="2026"/>
    <area>Applications</area>
    <workgroup>Calendaring extensions</workgroup>
    <keyword>JSON</keyword>
    <keyword>iCalendar</keyword>
    <keyword>calendar</keyword>
    <keyword>events</keyword>
    <keyword>date</keyword>
    <keyword>time</keyword>
    <abstract>
      <t>This specification defines a data model and JSON representation of calendar data that can be used for storage and data exchange in a calendaring and scheduling environment. It aims to be an alternative and, over time, successor to the widely deployed iCalendar data format. It also aims to be unambiguous, extendable, and simple to process. In contrast to the jCal format, which is also based on JSON, JSCalendar is not a direct mapping from iCalendar but defines the data model independently and expands semantics where appropriate. This document obsoletes RFC 8984.</t>
    </abstract>
    <note removeInRFC="true">
      <t>Differences from RFC 8984 are documented in <xref target="differences-from-rfc8984"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>This document defines a data model for calendar event and task objects, or groups of such objects, in electronic calendar applications and systems. The format aims to be unambiguous, extendable, and simple to process. It obsoletes the data model originally defined in <xref target="RFC8984"/> to improve interoperability with systems that also make use of <xref target="RFC5545">iCalendar</xref>. Differences from <xref target="RFC8984"/> are documented in <xref target="differences-from-rfc8984"/>.</t>
      <t>The key design considerations for this data model are as follows:</t>
      <ul>
        <li>The attributes of the calendar entry represented must be described as simple key-value pairs. Simple events are simple to represent; complex events can be modeled accurately.</li>
        <li>Wherever possible, there should be only one way to express the desired semantics, reducing complexity.</li>
        <li>The data model should avoid ambiguities, which often lead to interoperability issues between implementations.</li>
        <li>The data model should be generally compatible with the iCalendar data format <xref target="RFC5545"/> <xref target="RFC7986"/> and extensions, but the specification should add new attributes where the iCalendar format currently lacks expressivity, and drop seldom-used, obsolete, or redundant properties. This means translation with no loss of semantics should be easy with most common iCalendar files.</li>
        <li>Extensions, such as new properties and components, should not require updates to this document.</li>
      </ul>
      <t>The representation of this data model is defined in the Internet JSON (I-JSON) format <xref target="RFC7493"/>, which is a strict subset of the JSON data interchange format <xref target="RFC8259"/>. Using JSON is mostly a pragmatic choice: its widespread use makes JSCalendar easier to adopt and the ready availability of production-ready JSON implementations eliminates a whole category of parser-related interoperability issues, which iCalendar has often suffered from.</t>
      <section anchor="relation-to-icalendar">
        <name>Motivation and Relation to iCalendar and jCal</name>
        <t>The iCalendar data format <xref target="RFC5545"/>, a widely deployed interchange format for calendaring and scheduling data, has served calendaring vendors for a long time but contains some ambiguities and pitfalls that cannot be overcome without backward-incompatible changes.</t>
        <t>Sources of implementation errors include the following:</t>
        <ul>
          <li>iCalendar defines various formats for local times, UTC, and dates.</li>
          <li>iCalendar requires custom time zone definitions within a single calendar component.</li>
          <li>iCalendar's definition of recurrence rules is ambiguous and has resulted in differing interpretations, even between experienced calendar developers.</li>
          <li>The iCalendar format itself causes interoperability issues due to misuse of CRLF-terminated strings, line continuations, and subtle differences among iCalendar parsers.</li>
        </ul>
        <t>In recent years, many new products and services have appeared that wish to use a JSON representation of calendar data within their APIs. The JSON format for iCalendar data, <xref target="RFC7265">jCal</xref>, is a direct mapping between iCalendar and JSON. In its effort to represent full iCalendar semantics, it inherits all the same pitfalls and uses a complicated JSON structure.</t>
        <t>As a consequence, since the standardization of jCal, the majority of implementations and service providers either kept using iCalendar or came up with their own proprietary JSON representations, which are incompatible with each other and often suffer from common pitfalls, such as storing event start times in UTC (which become incorrect if the time zone's rules change in the future). JSCalendar meets the demand for JSON-formatted calendar data that is free of such known problems and provides a standard representation as an alternative to the proprietary formats.</t>
      </section>
      <section anchor="notational-conventions">
        <name>Notational Conventions</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>", "<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals, as shown here.</t>
        <t>The underlying format used for this specification is JSON. Consequently, the terms "object" and "array" as well as the four primitive types (strings, numbers, booleans, and null) are to be interpreted as described in <xref target="RFC8259" section="1"/>.</t>
        <t>Some examples in this document contain "partial" JSON documents used for illustrative purposes. In these examples, an ellipsis "..." is used to indicate a portion of the document that has been removed for compactness.</t>
      </section>
      <section anchor="type-and-prop-notation">
        <name>Type and Property Notation</name>
        <t>This section defines the notation for JSCalendar properties and types.</t>
        <section anchor="type-signatures">
          <name>Type Signatures</name>
          <t>Type signatures are given for all JSON values in this document. The following conventions are used:</t>
          <dl newline="false">
            <dt><tt>*</tt>:</dt>
            <dd>The type is undefined (the value could be any type, although permitted values may be constrained by the context of this value).</dd>
            <dt><tt>String</tt>:</dt>
            <dd>This is the JSON string type.</dd>
            <dt><tt>Number</tt>:</dt>
            <dd>This is the JSON number type.</dd>
            <dt><tt>Boolean</tt>:</dt>
            <dd>This is the JSON boolean type.</dd>
            <dt><tt>A</tt>:</dt>
            <dd>The value is of type <tt>A</tt>.</dd>
            <dt><tt>A[B]</tt>:</dt>
            <dd>The keys are all of type <tt>A</tt> and the values are all of type <tt>B</tt> for a JSON object.</dd>
            <dt><tt>A[]</tt>:</dt>
            <dd>There is an array of values of type <tt>A</tt></dd>
            <dt><tt>A|B</tt>:</dt>
            <dd>The value is either of type <tt>A</tt> or of type <tt>B</tt>.</dd>
          </dl>
          <t>Other types may also be given; their representations are defined elsewhere in this document.</t>
        </section>
        <section anchor="property-attributes" numbered="true" toc="default">
          <name>Property Attributes</name>
          <t>Object properties may also have a set of attributes defined along with the type signature. These have the following meanings:</t>
          <dl spacing="normal">
            <dt><tt>mandatory</tt>:</dt>
            <dd>The property <bcp14>MUST</bcp14> be set for an instance of this object to be valid.</dd>
            <dt><tt>optional</tt>:</dt>
            <dd>The property can, but need not, be set for an instance of this object to be valid.</dd>
            <dt><tt>default</tt>:</dt>
            <dd>This is followed by a JSON value. That value will be used for this property if it is omitted.</dd>
            <dt><tt>defaultType</tt>:</dt>
            <dd>This is followed by the name of a JSCalendar object type. A property value of JSCalendar object type is expected to be of this named type, in case it omits the @type property.</dd>
          </dl>
        </section>
        <section anchor="prop-type" numbered="true" toc="default">
          <name>The @type Property</name>
          <t>Every JSCalendar object has the following JSON object member:</t>
          <dl spacing="normal">
            <dt>
              <strong>@type: String</strong>
            </dt>
            <dd>This is the JSCalendar type of a JSON object. It <bcp14>MUST</bcp14> match the type name of the JSCalendar object of which the JSON object is an instance of.</dd>
          </dl>
          <t>The purpose of the @type property is to help implementations identify which JSCalendar object type a given JSON object represents. Implementations <bcp14>MUST</bcp14> validate that JSON objects with this property conform to the specification of the JSCalendar object type of that name.</t>
          <t>In many cases, the @type property value is implied by where the object occurs in JSCalendar data. Assuming that both <tt>A</tt> and <tt>B</tt> are JSCalendar object types:</t>
          <ul>
            <li>An object that is set as the value for a property with type signature <tt>A</tt> <bcp14>MAY</bcp14> have the @type property set. If the @type property is not set, then its value is implied to be <tt>A</tt>.</li>
            <li>An object that is set as the value for a property with type signature <tt>A|B (defaultType: A)</tt> <bcp14>MAY</bcp14> have the @type property set if it is an instance of <tt>A</tt>. It <bcp14>MUST</bcp14> have the @type property set if it is an instance of <tt>B</tt>. If instead the <tt>defaultType</tt> attribute is not defined, then the @type property <bcp14>MUST</bcp14> also be set for <tt>A</tt>.</li>
            <li>An object that is not the value of a property, such as the topmost object in JSON data (directly or as a member of an array), <bcp14>MUST</bcp14> have the @type property set.</li>
          </ul>
          <t>An object definition <bcp14>MAY</bcp14> require the @type property to be set regardless of the above definitions,  e.g. this document requires the @type property to be set for the Event, Task and Group object types.</t>
        </section>
      </section>
      <section anchor="data-types">
        <name>Data Types</name>
        <t>In addition to the standard JSON data types, the following data types are used in this specification:</t>
        <section anchor="type-Id">
          <name>Id</name>
          <t>Where <tt>Id</tt> is given as a data type, it means a <tt>String</tt> of at least 1 and a maximum of 255 octets in size, and it <bcp14>MUST</bcp14> only contain characters from the "URL and Filename Safe" base64url alphabet, as defined in <xref target="RFC4648" section="5"/>, excluding the pad character (<tt>=</tt>). This means the allowed characters are the ASCII alphanumeric characters (<tt>A-Za-z0-9</tt>), hyphen (<tt>-</tt>), and underscore (<tt>_</tt>).</t>
          <t>In many places in JSCalendar, a JSON map is used where the map keys are of type Id and the map values are all the same type of object. This construction represents an unordered set of objects, with the added advantage that each entry has a name (the corresponding map key). This allows for more concise patching of objects, and, when applicable, for the objects in question to be referenced from other objects within the JSCalendar object.</t>
          <t>Unless otherwise specified for a particular property, there are no uniqueness constraints on an Id value (other than, of course, the requirement that you cannot have two values with the same key within a single JSON map). For example, two Event objects might use the same Ids in their respective <tt>links</tt> properties or, within the same Event object, the same Id could appear in the <tt>participants</tt> and <tt>alerts</tt> properties. These situations do not imply any semantic connections among the objects.</t>
        </section>
        <section anchor="type-Int">
          <name>Int</name>
          <t>Where <tt>Int</tt> is given as a data type, it means an integer in the range -2<sup>53</sup>+1 &lt;= value &lt;= 2<sup>53</sup>-1, the safe range for integers stored in a floating-point double, represented as a JSON <tt>Number</tt>.</t>
        </section>
        <section anchor="type-UnsignedInt">
          <name>UnsignedInt</name>
          <t>Where <tt>UnsignedInt</tt> is given as a data type, it means an integer in the range 0 &lt;= value &lt;= 2<sup>53</sup>-1, represented as a JSON <tt>Number</tt>.</t>
        </section>
        <section anchor="type-UTCDateTime">
          <name>UTCDateTime</name>
          <t>This is a string in the <tt>date-time</tt> <xref target="RFC3339"/> format, with the further restrictions that any letters <bcp14>MUST</bcp14> be in uppercase, and the time offset <bcp14>MUST</bcp14> be the character <tt>Z</tt>. Fractional second values <bcp14>MUST NOT</bcp14> be included.</t>
          <t>For example, <tt>2010-10-10T10:10:10Z</tt> is conformant, but <tt>2010-10-10T10:10:10.0Z</tt> or <tt>2010-10-10T10:10:10.123Z</tt> are invalid.</t>
        </section>
        <section anchor="type-LocalDateTime">
          <name>LocalDateTime</name>
          <t>This is a date-time string with no time zone/offset information. It is otherwise in the same format as UTCDateTime. For example, <tt>2006-01-02T15:04:05</tt> is valid. The time zone to associate with the LocalDateTime comes from the <tt>timeZone</tt> property of the JSCalendar object (see <xref target="prop-timeZone"/>). If no time zone is specified, the LocalDateTime is "floating". Floating date-times are not tied to any specific time zone. Instead, they occur in each time zone at the given wall-clock time (as opposed to the same instant point in time).</t>
          <t>A time zone may have a period of discontinuity, for example, a change from standard time to daylight savings time. When converting local date-times that fall in the discontinuity to UTC, the offset before the transition <bcp14>MUST</bcp14> be used.</t>
          <t>For example, in the <tt>America/Los_Angeles</tt> time zone, the date-time <tt>2020-11-01T01:30:00</tt> occurs twice: before the daylight savings time (DST) transition with a UTC offset of -07:00 and again after the transition with an offset of -08:00. When converting to UTC, we therefore use the offset before the transition (-07:00), so it becomes <tt>2020-11-01T08:30:00Z</tt>.</t>
          <t>Similarly, in the <tt>Australia/Melbourne</tt> time zone, the date-time <tt>2020-10-04T02:30:00</tt> does not exist; the clocks are moved forward one hour for DST on that day at 02:00. However, such a value may appear during calculations (see duration semantics in <xref target="type-Duration"/>) or due to a change in time zone rules (so it was valid when the event was first created). Again, it is interpreted as though the offset before the transition is in effect (+10:00); therefore, when converted to UTC, we get <tt>2020-10-03T16:30:00Z</tt>.</t>
        </section>
        <section anchor="type-Duration">
          <name>Duration</name>
          <t>Where Duration is given as a type, it means a length of time represented by a subset of the ISO 8601 duration format, as specified by the following ABNF <xref target="RFC5234"/>:</t>
          <sourcecode name="" type="abnf">
    dur-second  = 1*DIGIT "S"
    dur-minute  = 1*DIGIT "M" [dur-second]
    dur-hour    = 1*DIGIT "H" [dur-minute]
    dur-time    = "T" (dur-hour / dur-minute / dur-second)
    dur-day     = 1*DIGIT "D"
    dur-week    = 1*DIGIT "W"
    dur-cal     = (dur-week [dur-day] / dur-day)

    duration    = "P" (dur-cal [dur-time] / dur-time)
</sourcecode>
          <t>A duration specifies an abstract number of weeks, days, hours, minutes, and/or seconds. A duration specified using weeks or days does not always correspond to an exact multiple of 24 hours. The number of hours/minutes/seconds may vary if it overlaps a period of discontinuity in the event's time zone, for example, a change from standard time to daylight savings time. Leap seconds <bcp14>MUST NOT</bcp14> be considered when adding or subtracting a duration to/from a LocalDateTime.</t>
          <t>To add a duration to a LocalDateTime:</t>
          <ol>
            <li>Add any week or day components of the duration to the date. A week is always the same as seven days.</li>
            <li>If a time zone applies to the LocalDateTime, convert it to a UTCDateTime following the semantics in <xref target="type-LocalDateTime"/>.</li>
            <li>Add any hour, minute, or second components of the duration (in absolute time).</li>
            <li>Convert the resulting UTCDateTime back to a LocalDateTime in the time zone that applies.</li>
          </ol>
          <t>To subtract a duration from a LocalDateTime, the steps apply in reverse:</t>
          <ol>
            <li>If a time zone applies to the LocalDateTime, convert it to UTC following the semantics in <xref target="type-LocalDateTime"/>.</li>
            <li>Subtract any hour, minute, or second components of the duration (in absolute time).</li>
            <li>Convert the resulting UTCDateTime back to LocalDateTime in the time zone that applies.</li>
            <li>Subtract any week or day components of the duration from the date.</li>
            <li>If the resulting time does not exist on the date due to a discontinuity in the time zone, use the semantics in <xref target="type-LocalDateTime"/> to convert to UTC and back to get a valid LocalDateTime.</li>
          </ol>
          <t>These semantics match the iCalendar DURATION value type (<xref target="RFC5545" sectionFormat="comma" section="3.3.6"/>).</t>
        </section>
        <section anchor="type-SignedDuration">
          <name>SignedDuration</name>
          <t>A SignedDuration represents a length of time that may be positive or negative and is typically used to express the offset of a point in time relative to an associated time. It is represented as a Duration, optionally preceded by a sign character. It is specified by the following ABNF:</t>
          <sourcecode name="" type="abnf">
signed-duration = ["+" / "-"] duration
</sourcecode>
          <t>A negative sign indicates a point in time at or before the associated time; a positive or no sign indicates a time at or after the associated time.</t>
        </section>
        <section anchor="type-TimeZoneId">
          <name>TimeZoneId</name>
          <t>Where <tt>TimeZoneId</tt> is given as a data type, it means a <tt>String</tt> that is a time zone name in the IANA Time Zone Database <xref target="TZDB"/>. The zone rules of the respective IANA time zone records apply.</t>
        </section>
        <section anchor="type-PatchObject">
          <name>PatchObject</name>
          <t>A PatchObject is of type <tt>String[*]</tt> and represents an unordered set of patches on a JSON object. Each key is a path represented in a subset of the JSON Pointer format <xref target="RFC6901"/>. The paths have an implicit leading <tt>/</tt>, so each key is prefixed with <tt>/</tt> before applying the JSON Pointer evaluation algorithm.</t>
          <t>A patch within a PatchObject is only valid if all of the following conditions apply:</t>
          <ol>
            <li>The pointer <bcp14>MUST NOT</bcp14> reference inside an array (i.e., you <bcp14>MUST NOT</bcp14> insert/delete from an array; the array <bcp14>MUST</bcp14> be replaced in its entirety
		        instead).</li>
            <li>All parts prior to the last (i.e., the value after the final slash) <bcp14>MUST</bcp14> already
	        exist on the object being patched.</li>
            <li>There <bcp14>MUST NOT</bcp14> be two patches in the PatchObject where the pointer of one is the
	        prefix of the pointer of the other, e.g., <tt>alerts/1/offset</tt> and <tt>alerts</tt>.</li>
            <li>The value for the patch <bcp14>MUST</bcp14> be valid for the property being set (of the correct
	        type and obeying any other applicable restrictions), or, if null, the property <bcp14>MUST</bcp14> be
		    optional.</li>
          </ol>
          <t>The value associated with each pointer determines how to apply that patch:</t>
          <ul>
            <li>If null, remove the property from the patched object. If the key is not present in the parent, this a no-op.</li>
            <li>If non-null, set the value given as the value for this property
            (this may be a replacement or addition to the object being patched).</li>
          </ul>
          <t>A PatchObject does not define its own <tt>@type</tt> property (see <xref target="prop-type"/>). An <tt>@type</tt> property in a patch <bcp14>MUST</bcp14> be handled as any other patched property value.</t>
          <t>Implementations <bcp14>MUST</bcp14> reject a PatchObject in its entirety if any of its patches are invalid.  Implementations <bcp14>MUST NOT</bcp14> apply partial patches.</t>
          <t>The PatchObject format is used to significantly reduce file size and duplicated content when specifying variations to a common object, such as with recurring events or when translating the data into multiple languages. It can also better preserve semantic intent if only the properties that should differ between the two objects are patched. For example, if one person is not going to a particular instance of a regularly scheduled event, in iCalendar, you would have to duplicate the entire event in the override. In JSCalendar, this is a small patch to show the difference. As only this property is patched, if the location of the event is changed, the occurrence will automatically still inherit this.</t>
        </section>
        <section anchor="type-Relation">
          <name>Relation</name>
          <t>A Relation object defines the relation to other objects, using a possibly empty set of relation types. The object that defines this relation is the linking object, while the other object is the linked object. A Relation object has the following properties:</t>
          <dl newline="true">
            <dt>@type: <tt>String</tt></dt>
            <dd>This specifies the type of this object. This <bcp14>MUST</bcp14> be <tt>Relation</tt>, if set.</dd>
            <dt>relation: <tt>String[Boolean]</tt> (optional, default: empty Object)</dt>
            <dd>
              <t>This describes how the linked object is related to the linking object. The relation is defined as a set of relation types. Keys in the set <bcp14>MUST</bcp14> be one of the following values, specified in the property definition where the Relation object is used, a value registered in the IANA "JSCalendar Enum Values" registry, or a vendor-specific value (see <xref target="custom-properties"/>):</t>
              <dl newline="false">
                <dt><tt>first</tt>:</dt>
                <dd>The linked object is the first in a series the linking object is part of.</dd>
                <dt><tt>next</tt>:</dt>
                <dd>The linked object is next in a series the linking object is part of.</dd>
                <dt><tt>child</tt>:</dt>
                <dd>The linked object is a subpart of the linking object.</dd>
                <dt><tt>parent</tt>:</dt>
                <dd>The linking object is a subpart of the linked object.</dd>
              </dl>
              <t>The value for each key in the map <bcp14>MUST</bcp14> be true.  The empty Object value represents a "parent" relation, unless defined differently for a specific property.</t>
            </dd>
          </dl>
        </section>
        <section anchor="type-Link">
          <name>Link</name>
          <t>A Link object represents an external resource associated with the linking object. It has the following properties:</t>
          <dl newline="true">
            <dt>@type: <tt>String</tt></dt>
            <dd>This specifies the type of this object. This <bcp14>MUST</bcp14> be <tt>Link</tt>, if set.</dd>
            <dt>href: <tt>String</tt> (mandatory)</dt>
            <dd>
              <t>This is a URI<xref target="RFC3986"/> from which the resource may be fetched.</t>
              <t>This <bcp14>MAY</bcp14> be a <tt>data:</tt> URL <xref target="RFC2397"/>, but it is recommended that the file be hosted on a server to avoid embedding arbitrarily large data in JSCalendar object instances.</t>
            </dd>
            <dt>contentType: <tt>String</tt> (optional)</dt>
            <dd>This is the media type <xref target="RFC6838"/> of the resource, if known.</dd>
            <dt>size: <tt>UnsignedInt</tt> (optional)</dt>
            <dd>This is the size, in octets, of the resource when fully decoded (i.e., the number of octets in the file the user would download), if known. Note that this is an informational estimate, and implementations must be prepared to handle the actual size being quite different when the resource is fetched.</dd>
            <dt>rel: <tt>String</tt> (optional)</dt>
            <dd>This identifies the relation of the linked resource to the object. If set, the value <bcp14>MUST</bcp14> be a link relation type as defined in <xref target="RFC8288" section="2.1" sectionFormat="of"/> .</dd>
            <dt>display: <tt>String[Boolean]</tt> (optional)</dt>
            <dd>
              <t>This is a set of intended purposes of a link to an image. The keys <bcp14>MUST</bcp14> be one of the following values, another value registered in the IANA "JSCalendar Enum Values" registry, or a vendor-specific value (see <xref target="custom-properties"/>):</t>
              <dl newline="false">
                <dt><tt>badge</tt>:</dt>
                <dd>an image meant to be displayed alongside the title of the object</dd>
                <dt><tt>graphic</tt>:</dt>
                <dd>a full image replacement for the object itself</dd>
                <dt><tt>fullsize</tt>:</dt>
                <dd>an image that is used to enhance the object</dd>
                <dt><tt>thumbnail</tt>:</dt>
                <dd>a smaller variant of <tt>fullsize</tt> to be used when space for the image is constrained</dd>
              </dl>
              <t>The value for each key in the map <bcp14>MUST</bcp14> be true.</t>
            </dd>
            <dt>title: <tt>String</tt> (optional)</dt>
            <dd>This is a human-readable, plain-text description of the resource.</dd>
          </dl>
        </section>
      </section>
    </section>
    <section anchor="jscalendar-objects">
      <name>JSCalendar Objects</name>
      <t>This section describes the calendar object types specified by JSCalendar.</t>
      <section anchor="jsevent">
        <name>Event</name>
        <t>Media type: <tt>application/jscalendar+json;type=event</tt></t>
        <t>An Event represents a scheduled amount of time on a calendar, typically a meeting, appointment, reminder, or anniversary. It is required to start at a certain point in time and typically has a non-zero duration. Multiple participants may partake in the event.</t>
        <t>The <xref target="prop-type">@type</xref> property is mandatory, it <bcp14>MUST</bcp14> be set to value <tt>Event</tt>.</t>
      </section>
      <section anchor="jstask">
        <name>Task</name>
        <t>Media type: <tt>application/jscalendar+json;type=task</tt></t>
        <t>A Task represents an action item, assignment, to-do item, or work item. It may start and be due at certain points in time, take some estimated time to complete, and recur, none of which is required.</t>
        <t>The <xref target="prop-type">@type</xref> property is mandatory, it <bcp14>MUST</bcp14> be set to value <tt>Task</tt>.</t>
      </section>
      <section anchor="jsgroup">
        <name>Group</name>
        <t>Media type: <tt>application/jscalendar+json;type=group</tt></t>
        <t>A Group is a collection of <xref target="jsevent">Event</xref> and/or <xref target="jstask">Task</xref> objects. Typically, objects are grouped by topic (e.g., by keywords) or calendar membership.</t>
        <t>The <xref target="prop-type">@type</xref> property is mandatory, it <bcp14>MUST</bcp14> be set to value <tt>Group</tt>.</t>
      </section>
    </section>
    <section anchor="structure-of-jscalendar-objects">
      <name>Structure of JSCalendar Objects</name>
      <t>A JSCalendar object is a JSON object <xref target="RFC8259"/>, which <bcp14>MUST</bcp14> be valid I-JSON (a stricter subset of JSON) <xref target="RFC7493"/>. Property names and values are case sensitive.</t>
      <t>The object has a collection of properties, as specified in the following sections. Properties are specified as being either mandatory or optional. Optional properties may have a default value if explicitly specified in the property definition.</t>
      <section anchor="objecttype">
        <name>Object Type</name>
        <t>JSCalendar objects <bcp14>MUST</bcp14> name their type in the <tt>@type</tt> property if not explicitly specified otherwise for the respective object type. A notable exception to this rule is the <xref target="type-PatchObject">PatchObject</xref>.</t>
      </section>
      <section anchor="normalization">
        <name>Normalization and Equivalence</name>
        <t>JSCalendar aims to provide unambiguous definitions for value types and properties but does not define a general normalization or equivalence method for JSCalendar objects and types. This is because the notion of equivalence might range from byte-level equivalence to semantic equivalence, depending on the respective use case. Normalization of JSCalendar objects is hindered because of the following reasons:</t>
        <ul>
          <li>Custom JSCalendar properties may contain arbitrary JSON values, including arrays. However,
	    equivalence of arrays might or might not depend on the order of elements, depending on the respective
	      property definition.</li>
          <li>Several JSCalendar property values are defined as URIs and media types, but normalization of
	    these types is inherently protocol and scheme specific, depending on the use case of the equivalence
	      definition (see <xref target="RFC3986" section="6"/>).</li>
        </ul>
        <t>Considering this, the definition of equivalence and normalization is left to client and server implementations and to be negotiated by a calendar exchange protocol or defined elsewhere.</t>
      </section>
      <section anchor="custom-properties">
        <name>Vendor-Specific Property Extensions, Values, and Types</name>
        <t>Vendors <bcp14>MAY</bcp14> add additional properties to the calendar object to support their custom features. To avoid conflict, the names of these properties <bcp14>MUST</bcp14> be prefixed by a domain name controlled by the vendor followed by a colon, e.g., <tt>example.com:customprop</tt>. If the value is a new JSCalendar object, it either <bcp14>MUST</bcp14> include an <tt>@type</tt> property, or it <bcp14>MUST</bcp14> explicitly be specified to not require a type designator. The type name <bcp14>MUST</bcp14> be prefixed with a domain name controlled by the vendor.</t>
        <t>Some JSCalendar properties allow vendor-specific value extensions. Such vendor-specific values <bcp14>MUST</bcp14> be prefixed by a domain name controlled by the vendor followed by a colon, e.g., <tt>example.com:customrel</tt>.</t>
        <t>Vendors are strongly encouraged to register any new property values or extensions that are useful to other systems as well, rather than use a vendor-specific prefix.</t>
      </section>
    </section>
    <section anchor="jscalendar-props">
      <name>Common JSCalendar Properties</name>
      <t>This section describes the properties that are common to the various JSCalendar object types. Specific JSCalendar object types may only support a subset of these properties. The object type definitions in <xref target="jscalendar-object-props"/> describe the set of supported properties per type.</t>
      <section anchor="metadata-properties">
        <name>Metadata Properties</name>
        <section anchor="prop-uid">
          <name>uid</name>
          <t>Type: <tt>String</tt> (mandatory)</t>
          <t>This is a globally unique identifier used to associate objects representing the same event, task, group, or other object across different systems, calendars, and views. For recurring events and tasks, the UID is associated with the base object and therefore is the same for all occurrences; the combination of the UID with a <tt>recurrenceId</tt> identifies a particular instance.</t>
          <t>The generator of the identifier <bcp14>MUST</bcp14> guarantee that the identifier is unique. <xref target="RFC9562"/> describes a range of established algorithms to generate universally unique identifiers (UUIDs). UUID version 4, described in <xref target="RFC9562" section="4.4"/>, is <bcp14>RECOMMENDED</bcp14>.</t>
          <t>For compatibility with  UIDs <xref target="RFC5545"/>, implementations <bcp14>MUST</bcp14> be able to receive and persist values of at least 255 octets for this property, but they <bcp14>MUST NOT</bcp14> truncate values in the middle of a UTF-8 multi-octet sequence.</t>
        </section>
        <section anchor="prop-relatedTo">
          <name>relatedTo</name>
          <t>Type: <tt>String[Relation]</tt> (optional)</t>
          <t>This relates the object to other JSCalendar objects. Each key in the map is the <tt>uid</tt> property value of a related object. The value defines the type of the relation.</t>
          <t>If an object is split to make a "this and future" change to a recurrence, the original object <bcp14>MUST</bcp14> be truncated to end at the previous occurrence before this split, and a new object is created to represent all the occurrences after the split. A <tt>next</tt> relation <bcp14>MUST</bcp14> be set on the original object's <tt>relatedTo</tt> property, keyed by the uid of the new object. A <tt>first</tt> relation  <bcp14>MUST</bcp14> be set on the new object, keyed by the uid of the first object in the series. Clients can then follow these uid keys to get the complete set of objects if the user wishes to modify them all at once.</t>
        </section>
        <section anchor="prop-prodId">
          <name>prodId</name>
          <t>Type: <tt>String</tt> (optional)</t>
          <t>This is the identifier for the product that last updated the JSCalendar object. This should be set whenever the data in the object is modified (i.e., whenever the <tt>updated</tt> property is set).</t>
          <t>The vendor of the implementation <bcp14>MUST</bcp14> ensure that this is a globally unique identifier, using some technique such as a Formal Public Identifier (FPI) value, as defined in <xref target="ISO.9070.1991"/>.</t>
          <t>This property <bcp14>SHOULD NOT</bcp14> be used to alter the interpretation of a JSCalendar object beyond the semantics specified in this document. For example, it is not to be used to further the understanding of nonstandard properties, a practice that is known to cause long-term interoperability problems.</t>
        </section>
        <section anchor="prop-created">
          <name>created</name>
          <t>Type: <tt>UTCDateTime</tt> (optional)</t>
          <t>This is the date and time this object was initially created.</t>
        </section>
        <section anchor="prop-updated">
          <name>updated</name>
          <t>Type: <tt>UTCDateTime</tt> (mandatory)</t>
          <t>This is the date and time the data in this object was last modified (or its creation date/time if not modified since).</t>
        </section>
        <section anchor="prop-sequence">
          <name>sequence</name>
          <t>Type: <tt>UnsignedInt</tt> (optional, default: 0)</t>
          <t>This property indicates the revision of the calendar object. For scheduled calendar objects, its value must be incremented according to the rules of the scheduling protocol, e.g. <xref target="jmap-calendars"/> or <xref target="RFC5546"/>.</t>
        </section>
        <section anchor="prop-method">
          <name>method</name>
          <t>Type: <tt>String</tt> (optional)</t>
          <t>This is the iTIP <xref target="RFC5546"/> method, in lowercase. This <bcp14>MUST</bcp14> only be present if the JSCalendar object represents an iTIP scheduling message.</t>
        </section>
      </section>
      <section anchor="whatwhere-properties">
        <name>What and Where Properties</name>
        <section anchor="prop-title">
          <name>title</name>
          <t>Type: <tt>String</tt> (optional, default: empty String)</t>
          <t>This is a short summary of the object.</t>
        </section>
        <section anchor="prop-description">
          <name>description</name>
          <t>Type: <tt>String</tt> (optional, default: empty String)</t>
          <t>This is a longer-form text description of the object. The content is formatted according to the <tt>descriptionContentType</tt> property.</t>
        </section>
        <section anchor="prop-descriptionContentType">
          <name>descriptionContentType</name>
          <t>Type: <tt>String</tt> (optional, default: <tt>text/plain</tt>)</t>
          <t>This describes the media type <xref target="RFC6838"/> of the contents of the <tt>description</tt> property. Media types <bcp14>MUST</bcp14> be subtypes of type <tt>text</tt> and <bcp14>SHOULD</bcp14> be <tt>text/plain</tt> or <tt>text/html</tt> <xref target="MEDIATYPES"/>. They <bcp14>MAY</bcp14> include parameters, and the <tt>charset</tt> parameter value <bcp14>MUST</bcp14> be <tt>utf-8</tt>, if specified.</t>
        </section>
        <section anchor="prop-showWithoutTime">
          <name>showWithoutTime</name>
          <t>Type: <tt>Boolean</tt> (optional, default: false)</t>
          <t>This indicates that the time is not important to display to the user when rendering this calendar object. An example of this is an event that conceptually occurs all day or across multiple days, such as "New Year's Day" or "Italy Vacation". While the time component is important for free-busy calculations and checking for scheduling clashes, calendars may choose to omit displaying it and/or display the object separately to other objects to enhance the user's view of their schedule.</t>
          <t>Such events are also commonly known as "all-day" events.</t>
        </section>
        <section anchor="prop-locations">
          <name>locations</name>
          <t>Type: <tt>Id[Location]</tt> (optional)</t>
          <t>This is a map of location ids to Location objects, representing locations associated with the object.</t>
          <t>A Location object has the following properties. It <bcp14>MUST</bcp14> have at least one property other than the <tt>@type</tt> property.</t>
          <dl newline="true">
            <dt>@type: <tt>String</tt></dt>
            <dd>This specifies the type of this object. This <bcp14>MUST</bcp14> be <tt>Location</tt>, if set.</dd>
            <dt>name: <tt>String</tt> (optional)</dt>
            <dd>This is the human-readable name or short description of the location, such as an address.</dd>
            <dt>locationTypes: <tt>String[Boolean]</tt> (optional)</dt>
            <dd>This is a set of one or more location types that describe this location. All types <bcp14>MUST</bcp14> be from the "Location Types Registry" <xref target="LOCATIONTYPES"/>, as defined in <xref target="RFC4589"/> . The set is represented as a map, with the keys being the location types. The value for each key in the map <bcp14>MUST</bcp14> be true.</dd>
            <dt>coordinates: <tt>String</tt> (optional)</dt>
            <dd>This is a <tt>geo:</tt> URI <xref target="RFC5870"/> for the location.</dd>
            <dt>links: <tt>Id[Link]</tt> (optional)</dt>
            <dd>This is a map of link ids to Link objects, representing external resources associated with this location, for example, a vCard or image. If there are no links, this <bcp14>MUST</bcp14> be omitted (rather than specified as an empty set).</dd>
          </dl>
        </section>
        <section anchor="prop-mainLocationId">
          <name>mainLocationId</name>
          <t>Type: <tt>String</tt> (optional)</t>
          <t>This indicates which of the multiple entries in the <tt>locations</tt> property can be considered the main location for the event or task. A client implementation <bcp14>MAY</bcp14> choose to display this location more prominently. The main location is undefined if this property is not set. If this property is set, then its value <bcp14>MUST</bcp14> match a key in the <tt>locations</tt> property and the <tt>name</tt> property of that main Location object <bcp14>MUST</bcp14> be set.</t>
        </section>
        <section anchor="prop-virtualLocations">
          <name>virtualLocations</name>
          <t>Type: <tt>Id[VirtualLocation]</tt> (optional)</t>
          <t>This is a map of virtual location ids to VirtualLocation objects, representing virtual locations, such as video conferences or chat rooms, associated with the object.</t>
          <t>A VirtualLocation object has the following properties.</t>
          <dl newline="true">
            <dt>@type: <tt>String</tt></dt>
            <dd>This specifies the type of this object. This <bcp14>MUST</bcp14> be <tt>VirtualLocation</tt>, if set.</dd>
            <dt>name: <tt>String</tt> (optional, default: empty String)</dt>
            <dd>This is the human-readable name or short description of the virtual location, such as an access code.</dd>
            <dt>uri: <tt>String</tt> (mandatory)</dt>
            <dd>
              <t>This is a URI<xref target="RFC3986"/> that represents how to connect to this virtual location.</t>
              <t>This may be a telephone number (represented using the <tt>tel:</tt> scheme, e.g., <tt>tel:+1-555-555-5555</tt>) for a teleconference, a web address for online chat, or any custom URI.</t>
            </dd>
            <dt>features: <tt>String[Boolean]</tt> (optional)</dt>
            <dd>
              <t>A set of features supported by this virtual location. The set is represented as a map, with the keys being the feature. The value for each key in the map <bcp14>MUST</bcp14> be true.</t>
              <t>The feature <bcp14>MUST</bcp14> be one of the following values, another value registered in the IANA "JSCalendar Enum Values" registry, or a vendor-specific value (see <xref target="custom-properties"/>). Any value the client or server doesn't understand should be treated the same as if this feature is omitted.</t>
              <dl newline="false">
                <dt>audio:</dt>
                <dd>Audio conferencing</dd>
                <dt>chat:</dt>
                <dd>Chat or instant messaging</dd>
                <dt>feed:</dt>
                <dd>Blog or atom feed</dd>
                <dt>moderator:</dt>
                <dd>Provides moderator-specific features</dd>
                <dt>phone:</dt>
                <dd>Phone conferencing</dd>
                <dt>screen:</dt>
                <dd>Screen sharing</dd>
                <dt>video:</dt>
                <dd>Video conferencing</dd>
              </dl>
            </dd>
          </dl>
        </section>
        <section anchor="prop-links">
          <name>links</name>
          <t>Type: <tt>Id[Link]</tt> (optional)</t>
          <t>This is a map of link ids to Link objects, representing external resources associated with the object.</t>
          <t>Links with a rel of <tt>enclosure</tt> <bcp14>MUST</bcp14> be considered by the client to be attachments for download.</t>
          <t>Links with a rel of <tt>describedby</tt> <bcp14>MUST</bcp14> be considered by the client to be alternative representations of the description.</t>
          <t>Links with a rel of <tt>icon</tt> <bcp14>MUST</bcp14> be considered by the client to be images that it may use when presenting the calendar data to a user. The <tt>display</tt> property may be set to indicate the purpose of this image.</t>
        </section>
        <section anchor="prop-locale">
          <name>locale</name>
          <t>Type: <tt>String</tt> (optional)</t>
          <t>This is the language tag, as defined in <xref target="RFC5646"/>, that best describes the locale used for the text in the calendar object, if known.</t>
        </section>
        <section anchor="prop-keywords">
          <name>keywords</name>
          <t>Type: <tt>String[Boolean]</tt> (optional)</t>
          <t>This is a set of keywords or tags that relate to the object. The set is represented as a map, with the keys being the keywords. The value for each key in the map <bcp14>MUST</bcp14> be true.</t>
        </section>
        <section anchor="prop-categories">
          <name>categories</name>
          <t>Type: <tt>String[Boolean]</tt> (optional)</t>
          <t>This is a set of categories that relate to the calendar object. The set is represented as a map, with the keys being the categories specified as URIs. The value for each key in the map <bcp14>MUST</bcp14> be true.</t>
          <t>In contrast to keywords, categories are typically structured. For example, a vendor owning the domain <tt>example.com</tt> might define the categories <tt>http://example.com/categories/sports/american-football</tt> and <tt>http://example.com/categories/music/r-b</tt>.</t>
        </section>
        <section anchor="prop-color">
          <name>color</name>
          <t>Type: <tt>String</tt> (optional)</t>
          <t>This is a color clients <bcp14>MAY</bcp14> use when displaying this calendar object. The value is a color name taken from the set of names defined in <xref target="CSS3" section="4.3" relative="#svg-color"/> or an RGB value in six-digit hexadecimal notation, as defined in <xref target="CSS3" section="4.2.1" relative="#rgb-color"/>. Values are case-insensitive.</t>
        </section>
      </section>
      <section anchor="recurrence-props">
        <name>Recurrence Properties</name>
        <t>Some events and tasks occur at regular or irregular intervals. Rather than having to copy the data for every occurrence, there can be a base event with a rule to generate recurrences and/or overrides that add extra dates or exceptions to the rule.</t>
        <t>The recurrence set is the complete set of instances for an object. It is generated by considering the following properties in order, all of which are optional:</t>
        <ol>
          <li>The <tt>recurrenceRule</tt> property (<xref target="prop-recurrenceRule"/>) generates a set of extra date-times on which the object occurs.</li>
          <li>The <tt>recurrenceOverrides</tt> property (<xref target="prop-recurrenceOverrides"/>) defines date-times that are added or excluded to form the final set. (This property may also contain changes to the object to apply to particular instances.)</li>
        </ol>
        <section anchor="prop-recurrenceId">
          <name>recurrenceId</name>
          <t>Type: <tt>LocalDateTime</tt> (optional)</t>
          <t>If present, this JSCalendar object represents one occurrence of a recurring JSCalendar object. If present, the <tt>recurrenceRule</tt> and <tt>recurrenceOverrides</tt> properties <bcp14>MUST NOT</bcp14> be present.</t>
          <t>The value is a date-time either produced by the <tt>recurrenceRule</tt> of the base event or added as a key to the <tt>recurrenceOverrides</tt> property of the base event.</t>
        </section>
        <section anchor="prop-recurrenceIdTimeZone">
          <name>recurrenceIdTimeZone</name>
          <t>Type: <tt>TimeZoneId|null</tt> (optional, default: null)</t>
          <t>Identifies the time zone of the main JSCalendar object, of which this JSCalendar object is a recurrence instance. It <bcp14>MUST NOT</bcp14> be set if the <tt>recurrenceId</tt> property is not set.</t>
        </section>
        <section anchor="prop-recurrenceRule">
          <name>recurrenceRule</name>
          <t>Type: <tt>RecurrenceRule</tt> (optional)</t>
          <t>This a recurrence rule (a repeating pattern) for recurring calendar objects.</t>
          <t>An Event recurs by applying the recurrence rule to the <tt>start</tt> date-time.</t>
          <t>A Task recurs by applying the recurrence rule to the <tt>start</tt> date-time, if defined; otherwise, it recurs by the <tt>due</tt> date-time, if defined. If the task defines neither a <tt>start</tt> nor <tt>due</tt> date-time, it <bcp14>MUST NOT</bcp14> define a <tt>recurrenceRule</tt> property.</t>
          <t>A RecurrenceRule object is a JSON object mapping of a RECUR value type in iCalendar <xref target="RFC5545"/> <xref target="RFC7529"/> and has the same semantics. It has the following properties:</t>
          <dl newline="true">
            <dt>@type: <tt>String</tt></dt>
            <dd>This specifies the type of this object. This <bcp14>MUST</bcp14> be <tt>RecurrenceRule</tt>, if set.</dd>
            <dt>frequency: <tt>String</tt> (mandatory)</dt>
            <dd>
              <t>This is the time span covered by each iteration of this recurrence rule (see <xref target="recurrence-semantics"/> for full semantics). This <bcp14>MUST</bcp14> be one of the following values:</t>
              <ul>
                <li>
                  <tt>yearly</tt>
                </li>
                <li>
                  <tt>monthly</tt>
                </li>
                <li>
                  <tt>weekly</tt>
                </li>
                <li>
                  <tt>daily</tt>
                </li>
                <li>
                  <tt>hourly</tt>
                </li>
                <li>
                  <tt>minutely</tt>
                </li>
                <li>
                  <tt>secondly</tt>
                </li>
              </ul>
              <t>This is the FREQ part from iCalendar, converted to lowercase.</t>
            </dd>
            <dt>interval: <tt>UnsignedInt</tt> (optional, default: 1)</dt>
            <dd>
              <t>This is the interval of iteration periods at which the recurrence repeats. If included, it <bcp14>MUST</bcp14> be an integer &gt;= 1.</t>
              <t>This is the INTERVAL part from iCalendar.</t>
            </dd>
            <dt>rscale: <tt>String</tt> (optional, default: "gregorian")</dt>
            <dd>
              <t>This is the calendar system in which this recurrence rule operates, in lowercase. This <bcp14>MUST</bcp14> be either a CLDR-registered calendar system name <xref target="CLDR"/> or a vendor-specific value (see <xref target="custom-properties"/>).</t>
              <t>This is the RSCALE part from iCalendar <xref target="RFC7529">RSCALE</xref>, converted to lowercase.</t>
            </dd>
            <dt>skip: <tt>String</tt> (optional, default: "omit")</dt>
            <dd>
              <t>This is the behavior to use when the expansion of the recurrence produces invalid dates. This property only has an effect if the frequency is "yearly" or "monthly". It <bcp14>MUST</bcp14> be one of the following values:</t>
              <ul>
                <li>
                  <tt>omit</tt>
                </li>
                <li>
                  <tt>backward</tt>
                </li>
                <li>
                  <tt>forward</tt>
                </li>
              </ul>
              <t>This is the SKIP part from iCalendar <xref target="RFC7529">RSCALE</xref>, converted to lowercase.</t>
            </dd>
            <dt>firstDayOfWeek: <tt>String</tt> (optional, default: "mo")</dt>
            <dd>
              <t>This is the day on which the week is considered to start, represented as a lowercase, abbreviated, and two-letter English day of the week. If included, it <bcp14>MUST</bcp14> be one of the following values:</t>
              <ul>
                <li>
                  <tt>mo</tt>
                </li>
                <li>
                  <tt>tu</tt>
                </li>
                <li>
                  <tt>we</tt>
                </li>
                <li>
                  <tt>th</tt>
                </li>
                <li>
                  <tt>fr</tt>
                </li>
                <li>
                  <tt>sa</tt>
                </li>
                <li>
                  <tt>su</tt>
                </li>
              </ul>
              <t>This is the WKST part from iCalendar.</t>
            </dd>
            <dt>byDay: <tt>NDay[]</tt> (optional)</dt>
            <dd>
              <t>These are days of the week on which to repeat. An <tt>NDay</tt> object has the following properties:</t>
              <dl newline="true">
                <dt>@type: <tt>String</tt></dt>
                <dd>This specifies the type of this object. This <bcp14>MUST</bcp14> be <tt>NDay</tt>, if set.</dd>
                <dt>day: <tt>String</tt> (mandatory)</dt>
                <dd>
                  <t>This is a day of the week on which to repeat; the allowed values are the same as for the <tt>firstDayOfWeek</tt> recurrenceRule property.</t>
                  <t>This is the day of the week of the BYDAY part in iCalendar, converted to lowercase.</t>
                </dd>
                <dt>nthOfPeriod: <tt>Int</tt> (optional)</dt>
                <dd>
                  <t>If present, rather than representing every occurrence of the weekday defined in the <tt>day</tt> property, it represents only a specific instance within the recurrence period. The value can be positive or negative but <bcp14>MUST NOT</bcp14> be zero. A negative integer means the nth-last occurrence within that period (i.e., -1 is the last occurrence, -2 the one before that, etc.).</t>
                  <t>This is the ordinal part of the BYDAY value in iCalendar (e.g., 1 or -3).</t>
                </dd>
              </dl>
            </dd>
            <dt>byMonthDay: <tt>Int[]</tt> (optional)</dt>
            <dd>
              <t>These are the days of the month on which to repeat. Valid values are between 1 and the maximum number of days any month may have in the calendar given by the <tt>rscale</tt> property and the negative values of these numbers. For example, in the Gregorian calendar, valid values are 1 to 31 and -31 to -1. Negative values offset from the end of the month. The array <bcp14>MUST</bcp14> have at least one entry if included.</t>
              <t>This is the BYMONTHDAY part in iCalendar.</t>
            </dd>
            <dt>byMonth: <tt>String[]</tt> (optional)</dt>
            <dd>
              <t>These are the months in which to repeat. Each entry is a string representation of a number, starting from "1" for the first month in the calendar (e.g., "1" means January with the Gregorian calendar), with an optional "L" suffix (see <xref target="RFC7529"/>) for leap months (this <bcp14>MUST</bcp14> be uppercase, e.g., "3L"). The array <bcp14>MUST</bcp14> have at least one entry if included.</t>
              <t>This is the BYMONTH part from iCalendar.</t>
            </dd>
            <dt>byYearDay: <tt>Int[]</tt> (optional)</dt>
            <dd>
              <t>These are the days of the year on which to repeat. Valid values are between 1 and the maximum number of days any year may have in the calendar given by the <tt>rscale</tt> property and the negative values of these numbers. For example, in the Gregorian calendar, valid values are 1 to 366 and -366 to -1. Negative values offset from the end of the year. The array <bcp14>MUST</bcp14> have at least one entry if included.</t>
              <t>This is the BYYEARDAY part from iCalendar.</t>
            </dd>
            <dt>byWeekNo: <tt>Int[]</tt> (optional)</dt>
            <dd>
              <t>These are the weeks of the year in which to repeat. Valid values are between 1 and the maximum number of weeks any year may have in the calendar given by the <tt>rscale</tt> property and the negative values of these numbers. For example, in the Gregorian calendar, valid values are 1 to 53 and -53 to -1. The array <bcp14>MUST</bcp14> have at least one entry if included.</t>
              <t>This is the BYWEEKNO part from iCalendar.</t>
            </dd>
            <dt>byHour: <tt>UnsignedInt[]</tt> (optional)</dt>
            <dd>
              <t>These are the hours of the day in which to repeat. Valid values are 0 to 23. The array <bcp14>MUST</bcp14> have at least one entry if included. This is the BYHOUR part from iCalendar.</t>
            </dd>
            <dt>byMinute: <tt>UnsignedInt[]</tt> (optional)</dt>
            <dd>
              <t>These are the minutes of the hour in which to repeat. Valid values are 0 to 59. The array <bcp14>MUST</bcp14> have at least one entry if included.</t>
              <t>This is the BYMINUTE part from iCalendar.</t>
            </dd>
            <dt>bySecond: <tt>UnsignedInt[]</tt> (optional)</dt>
            <dd>
              <t>These are the seconds of the minute in which to repeat. Valid values are 0 to 60. The array <bcp14>MUST</bcp14> have at least one entry if included.</t>
              <t>This is the BYSECOND part from iCalendar.</t>
            </dd>
            <dt>bySetPosition: <tt>Int[]</tt> (optional)</dt>
            <dd>These are the occurrences within the recurrence interval to include in the final results. Negative values offset from the end of the list of occurrences. The array <bcp14>MUST</bcp14> have at least one entry if included. This is the BYSETPOS part from iCalendar.</dd>
            <dt>count: <tt>UnsignedInt</tt> (optional)</dt>
            <dd>
              <t>These are the number of occurrences at which to range-bound the recurrence. This <bcp14>MUST NOT</bcp14> be included if an <tt>until</tt> property is specified.</t>
              <t>This is the COUNT part from iCalendar.</t>
            </dd>
            <dt>until: <tt>LocalDateTime</tt> (optional)</dt>
            <dd>
              <t>These are the date-time at which to finish recurring. The last occurrence is on or before this date-time. This <bcp14>MUST NOT</bcp14> be included if a <tt>count</tt> property is specified. Note that if not specified otherwise for a specific JSCalendar object, this date is to be interpreted in the time zone specified in the JSCalendar object's <tt>timeZone</tt> property.</t>
              <t>This is the UNTIL part from iCalendar.</t>
            </dd>
          </dl>
          <section anchor="recurrence-semantics" toc="exclude">
            <name>Interpreting Recurrence Rules</name>
            <t>A recurrence rule specifies a set of date-times for recurring calendar objects. A recurrence rule has the following semantics. Note that wherever "year", "month", or "day of month" is used, this is within the calendar system given by the <tt>rscale</tt> property, which defaults to "gregorian" if omitted.</t>
            <ol>
              <li>
                <t>A set of candidates is generated. This is every second within a period defined by the <tt>frequency</tt> property value:</t>
                <dl newline="false">
                  <dt><tt>yearly</tt>:</dt>
                  <dd>
                    <t>every second from midnight on the first day of a year (inclusive) to midnight the first day of the following year (exclusive).</t>
                    <t>If skip is not "omit", the calendar system has leap months, and there is a <tt>byMonth</tt> property, generate candidates for the leap months, even if they don't occur in this year.</t>
                    <t>If skip is not "omit" and there is a <tt>byMonthDay</tt> property, presume each month has the maximum number of days any month may have in this calendar system when generating candidates, even if it's more than this month actually has.</t>
                  </dd>
                  <dt><tt>monthly</tt>:</dt>
                  <dd>
                    <t>every second from midnight on the first day of a month (inclusive) to midnight on the first of the following month (exclusive).</t>
                    <t>If skip is not "omit" and there is a <tt>byMonthDay</tt> property, presume the month has the maximum number of days any month may have in this calendar system when generating candidates, even if it's more than this month actually has.</t>
                  </dd>
                  <dt><tt>weekly</tt>:</dt>
                  <dd>every second from midnight (inclusive) on the first day of the week (as defined by the <tt>firstDayOfWeek</tt> property or Monday if omitted) to midnight seven days later (exclusive).</dd>
                  <dt><tt>daily</tt>:</dt>
                  <dd>every second from midnight at the start of the day (inclusive) to midnight at the end of the day (exclusive).</dd>
                  <dt><tt>hourly</tt>:</dt>
                  <dd>every second from the beginning of the hour (inclusive) to the beginning of the next hour (exclusive).</dd>
                  <dt><tt>minutely</tt>:</dt>
                  <dd>every second from the beginning of the minute (inclusive) to the beginning of the next minute (exclusive).</dd>
                  <dt><tt>secondly</tt>:</dt>
                  <dd>only the second itself.</dd>
                </dl>
              </li>
              <li>
                <t>Each date-time candidate is compared against all of the byX properties of the rule except bySetPosition. If any property in the rule does not match the date-time, the date-time is eliminated. Each byX property is an array; the date-time matches the property if it matches any of the values in the array. The properties have the following semantics:</t>
                <dl newline="false">
                  <dt>byMonth:</dt>
                  <dd>The date-time is in the given month.</dd>
                  <dt>byWeekNo:</dt>
                  <dd>
                    <t>The date-time is in the nth week of the year. Negative numbers mean the nth last week of the year. This corresponds to weeks according to week numbering, as defined in ISO.8601.2004, with a week defined as a seven-day period, starting on the <tt>firstDayOfWeek</tt> property value or Monday if omitted. Week number one of the calendar year is the first week that contains at least four days in that calendar year.</t>
                    <t>If the date-time is not valid (this may happen when generating candidates with a <tt>skip</tt> property in effect), it is always eliminated by this property.</t>
                  </dd>
                  <dt>byYearDay:</dt>
                  <dd>
                    <t>The date-time is on the nth day of year. Negative numbers mean the nth last day of the year.</t>
                    <t>If the date-time is not valid (this may happen when generating candidates with a <tt>skip</tt> property in effect), it is always eliminated by this property.</t>
                  </dd>
                  <dt>byMonthDay:</dt>
                  <dd>The date-time is on the given day of the month. Negative numbers mean the nth last day of the month.</dd>
                  <dt>byDay:</dt>
                  <dd>The date-time is on the given day of the week. If the day is prefixed by a number, it is the nth occurrence of that day of the week within the month (if frequency is monthly) or year (if frequency is yearly). Negative numbers mean the nth last occurrence within that period.</dd>
                  <dt>byHour:</dt>
                  <dd>The date-time has the given hour value.</dd>
                  <dt>byMinute:</dt>
                  <dd>The date-time has the given minute value.</dd>
                  <dt>bySecond:</dt>
                  <dd>The date-time has the given second value.</dd>
                </dl>
                <t>If a <tt>skip</tt> property is defined and is not "omit", there may be candidates that do not correspond to valid dates (e.g., February 31st in the Gregorian calendar). In this case, the properties <bcp14>MUST</bcp14> be considered in the order above, and:</t>
                <ol>
                  <li>After applying the byMonth filter, if the candidate's month is invalid for the given year, increment it (if skip is "forward") or decrement it (if skip is "backward") until a valid month is found, incrementing/decrementing the year as well if passing through the beginning/end of the year. This only applies to calendar systems with leap months.</li>
                  <li>After applying the byMonthDay filter, if the day of the month is invalid for the given month and year, change the date to the first day of the next month (if skip is "forward") or the last day of the current month (if skip is "backward").</li>
                  <li>If any valid date produced after applying the skip is already a candidate, eliminate the duplicate. (For example, after adjusting, February 30th and February 31st would both become the same "real" date, so one is eliminated as a duplicate.)</li>
                </ol>
              </li>
              <li>If a <tt>bySetPosition</tt> property is included, this is now applied to the ordered list of remaining dates. This property specifies the indexes of date-times to keep; all others should be eliminated. Negative numbers are indexed from the end of the list, with -1 being the last item, -2 the second from last, etc.</li>
              <li>Any date-times before the start date of the event are eliminated (see below for why this might be needed).</li>
              <li>If a <tt>skip</tt> property is included and is not "omit", eliminate any date-times that have already been produced by previous iterations of the algorithm. (This is not possible if skip is "omit".)</li>
              <li>If further dates are required (we have not reached the until date or count limit), skip the next (interval - 1) sets of candidates, then continue from step 1.</li>
            </ol>
            <t>When determining the set of occurrence dates for an event or task, the following extra rules must be applied:</t>
            <ol>
              <li>The initial date-time to which the rule is applied (the <tt>start</tt> date-time for events
		          or the <tt>start</tt> or <tt>due</tt> date-time for tasks) is always the first occurrence in the
			        expansion (and is counted if the recurrence is limited by a <tt>count</tt> property), even if it would
				      normally not match the rule.</li>
              <li>The first set of candidates to consider is that which would contain the initial date-time.


	            This means the first set may include candidates before the initial date-time; such candidates are
		          eliminated from the results in step 4 of the list above.</li>
              <li>
                <t>The following properties <bcp14>MUST</bcp14> be implicitly added to the rule under the given conditions:</t>
                <ul>
                  <li>If frequency is not <tt>secondly</tt> and there is no <tt>bySecond</tt> property, add a <tt>bySecond</tt>
		    property with the sole value being the seconds value of the initial date-time.</li>
                  <li>If frequency is not <tt>secondly</tt> or <tt>minutely</tt> and there is no <tt>byMinute</tt>
		    property, add a <tt>byMinute</tt> property with the sole value being the minutes value of the initial
		      date-time.</li>
                  <li>If frequency is not <tt>secondly</tt>, <tt>minutely</tt>, or <tt>hourly</tt> and there is
		    no <tt>byHour</tt> property, add a <tt>byHour</tt> property with the sole value being the hours value of the
		      initial date-time.</li>
                  <li>If frequency is <tt>weekly</tt> and there is no <tt>byDay</tt> property, add a <tt>byDay</tt> property with
		    the sole value being the day of the week of the initial date-time.</li>
                  <li>If frequency is <tt>monthly</tt> and there is no <tt>byDay</tt> property and no <tt>byMonthDay</tt>
		    property, add a <tt>byMonthDay</tt> property with the sole value being the day of the month of the
		      initial date-time.</li>
                  <li>
                    <t>If frequency is <tt>yearly</tt> and there is no <tt>byYearDay</tt> property:</t>
                    <ul>
                      <li>If there are no <tt>byMonth</tt> or <tt>byWeekNo</tt> properties, and either there is a <tt>byMonthDay</tt> property or there is no <tt>byDay</tt> property, add a <tt>byMonth</tt> property with the sole value being the month of the initial date-time.</li>
                      <li>If there are no <tt>byMonthDay</tt>, <tt>byWeekNo</tt>, or <tt>byDay</tt> properties, add a <tt>byMonthDay</tt> property with the sole value being the day of the month of the initial date-time.</li>
                      <li>If there is a <tt>byWeekNo</tt> property and no <tt>byMonthDay</tt> or <tt>byDay</tt> properties, add a <tt>byDay</tt> property with the sole value being the day of the week of the initial date-time.</li>
                    </ul>
                  </li>
                </ul>
              </li>
            </ol>
          </section>
        </section>
        <section anchor="prop-recurrenceOverrides">
          <name>recurrenceOverrides</name>
          <t>Type: <tt>LocalDateTime[PatchObject]</tt> (optional)</t>
          <t>Maps recurrence ids (the date-time produced by the recurrence rule) to the overridden properties of the recurrence instance.</t>
          <t>If the recurrence id does not match a date-time from the recurrence rule (or no rule is specified), it is to be treated as an additional occurrence (like an RDATE from iCalendar). The patch object may often be empty in this case.</t>
          <t>If the occurrence generated by the recurrence id shall be omitted from the final set of recurrences (like an EXDATE from iCalendar), then the patch object <bcp14>MUST</bcp14> be a JSON object with a single member. The member name <bcp14>MUST</bcp14> be "excluded", the member value <bcp14>MUST</bcp14> be true. The JSON object <bcp14>MUST NOT</bcp14> contain any other members.</t>
          <t>By default, an occurrence inherits all properties from the main object except the start (or due) date-time, which is shifted to match the recurrence id LocalDateTime. However, individual properties of the occurrence can be modified by a patch or multiple patches. It is valid to patch the <tt>start</tt> property value, and this patch takes precedence over the value generated from the recurrence id. Both the recurrence id as well as the patched <tt>start</tt> date-time may occur before the original JSCalendar object's <tt>start</tt> or <tt>due</tt> date.</t>
          <t>A pointer in the PatchObject <bcp14>MUST</bcp14> be ignored if it starts with one of the following prefixes:</t>
          <ul>
            <li>@type</li>
            <li>method</li>
            <li>organizerCalendarAddress</li>
            <li>participants/*/calendarAddress</li>
            <li>privacy</li>
            <li>prodId</li>
            <li>recurrenceId</li>
            <li>recurrenceIdTimeZone</li>
            <li>recurrenceOverrides</li>
            <li>recurrenceRule</li>
            <li>relatedTo</li>
            <li>uid</li>
          </ul>
        </section>
      </section>
      <section anchor="sharing-scheduling-properties">
        <name>Sharing and Scheduling Properties</name>
        <section anchor="prop-priority">
          <name>priority</name>
          <t>Type: <tt>Int</tt> (optional, default: 0)</t>
          <t>This specifies a priority for the calendar object. This may be used as part of scheduling systems to help resolve conflicts for a time period.</t>
          <t>The priority is specified as an integer in the range 0 to 9. A value of 0 specifies an undefined priority, for which the treatment will vary by situation. A value of 1 is the highest priority. A value of 2 is the second highest priority. Subsequent numbers specify a decreasing ordinal priority. A value of 9 is the lowest priority. Other integer values are reserved for future use.</t>
        </section>
        <section anchor="prop-freeBusyStatus">
          <name>freeBusyStatus</name>
          <t>Type: <tt>String</tt> (optional, default: <tt>busy</tt>)</t>
          <t>This specifies how this calendar object should be treated when calculating free-busy state. This <bcp14>MUST</bcp14> be one of the following values, another value registered in the IANA "JSCalendar Enum Values" registry, or a vendor-specific value (see <xref target="custom-properties"/>):</t>
          <dl newline="false">
            <dt><tt>free</tt>:</dt>
            <dd>The object should be ignored when calculating whether the user is busy.</dd>
            <dt><tt>busy</tt>:</dt>
            <dd>The object should be included when calculating whether the user is busy.</dd>
          </dl>
        </section>
        <section anchor="prop-privacy">
          <name>privacy</name>
          <t>Type: <tt>String</tt> (optional, default: <tt>public</tt>)</t>
          <t>Calendar objects are normally collected together and may be shared with other users. The privacy property allows the object owner to indicate that it should not be shared or should only have the time information shared but the details withheld. Enforcement of the restrictions indicated by this property is up to the API via which this object is accessed.</t>
          <t>This property <bcp14>MUST NOT</bcp14> affect the information sent to scheduled participants; it is only interpreted by protocols that share the calendar objects belonging to one user with other users.</t>
          <t>The value <bcp14>MUST</bcp14> be one of the following values, another value registered in the IANA "JSCalendar Enum Values" registry, or a vendor-specific value (see <xref target="custom-properties"/>). Any value the client or server doesn't understand should be preserved but treated as equivalent to <tt>private</tt>.</t>
          <dl newline="false">
            <dt><tt>public</tt>:</dt>
            <dd>The full details of the object are visible to those whom the object's calendar is shared with.</dd>
            <dt><tt>private</tt>:</dt>
            <dd>
              <t>The details of the object are hidden; only the basic time and metadata are shared. The following properties <bcp14>MAY</bcp14> be shared; any other properties <bcp14>MUST NOT</bcp14> be shared:</t>
              <ul>
                <li>@type</li>
                <li>created</li>
                <li>due</li>
                <li>duration</li>
                <li>estimatedDuration</li>
                <li>freeBusyStatus</li>
                <li>privacy</li>
                <li>recurrenceId</li>
                <li>recurrenceIdTimeZone</li>
                <li>recurrenceOverrides (Only patches that apply to another permissible property are allowed to be shared.)</li>
                <li>recurrenceRule</li>
                <li>sequence</li>
                <li>showWithoutTime</li>
                <li>start</li>
                <li>timeZone</li>
                <li>uid</li>
                <li>updated</li>
              </ul>
            </dd>
            <dt><tt>secret</tt>:</dt>
            <dd>The object is hidden completely (as though it did not exist) when the calendar this object is in is shared.</dd>
          </dl>
        </section>
        <section anchor="prop-organizerCalendarAddress">
          <name>organizerCalendarAddress</name>
          <t>Type: <tt>String</tt> (optional)</t>
          <t>This is a URI as defined by <xref target="RFC3986"/> or any other IANA-registered form for a URI. It is the same as the CAL-ADDRESS value of an iCalendar <xref target="RFC5545" section="3.8.4.3" sectionFormat="parens">ORGANIZER property</xref> — it globally identifies a particular organizer, even across different calendaring objects.</t>
        </section>
        <section anchor="prop-participants">
          <name>participants</name>
          <t>Type: <tt>Id[Participant]</tt> (optional)</t>
          <t>This is a map of participant ids to participants, describing their participation in the calendar object.</t>
          <t>If this property is set and any participant has a <tt>calendarAddress</tt> property set, then the <tt>organizerCalendarAddress</tt> property of this calendar object <bcp14>MUST</bcp14> be set.</t>
          <t>A Participant object has the following properties:</t>
          <dl newline="true">
            <dt>@type: <tt>String</tt></dt>
            <dd>This specifies the type of this object. This <bcp14>MUST</bcp14> be <tt>Participant</tt>, if set.</dd>
            <dt>name: <tt>String</tt> (optional)</dt>
            <dd>This is the display name of the participant (e.g., "Joe Bloggs").</dd>
            <dt>email: <tt>String</tt> (optional)</dt>
            <dd>This is the email address to use to contact the participant or, for example, match with an address book entry. If set, the value <bcp14>MUST</bcp14> be a valid <tt>addr-spec</tt> value as defined in Section 3.4.1 of <xref target="RFC5322"/> .</dd>
            <dt>description: <tt>String</tt> (optional)</dt>
            <dd>This is a description of this participant. For example, this may include more information about their role in the event or how best to contact them.</dd>
            <dt>descriptionContentType: <tt>String</tt> (optional)</dt>
            <dd>This describes the media type of the contents of the <tt>description</tt> property. Its requirements are specified in <xref target="prop-descriptionContentType"/>. If this property is set, then the description property <bcp14>MUST</bcp14> be set.</dd>
            <dt>calendarAddress: <tt>String</tt> (optional)</dt>
            <dd>This is a URI as defined by <xref target="RFC3986"/> or any other IANA-registered form for a URI. It is the same as the CAL-ADDRESS value of an iCalendar <xref target="RFC5545" section="3.8.4.1" sectionFormat="parens">ATTENDEE property</xref> or <xref target="RFC5545" section="3.8.4.3" sectionFormat="parens">ORGANIZER property</xref> — it globally identifies a particular participant, even across different calendaring objects.</dd>
            <dt>kind: <tt>String</tt> (optional)</dt>
            <dd>
              <t>This is what kind of entity this participant is, if known. If this property is set, then the calendarAddress property <bcp14>MUST</bcp14> be set. The value <bcp14>MUST</bcp14> be one of the following values, another value registered in the IANA "JSCalendar Enum Values" registry, or a vendor-specific value (see <xref target="custom-properties"/>). Any value the client or server doesn't understand should be treated the same as if this property is omitted.</t>
              <dl newline="false">
                <dt><tt>individual</tt>:</dt>
                <dd>a single person</dd>
                <dt><tt>group</tt>:</dt>
                <dd>a collection of people invited as a whole</dd>
                <dt><tt>location</tt>:</dt>
                <dd>a physical location that needs to be scheduled, e.g., a conference room</dd>
                <dt><tt>resource</tt>:</dt>
                <dd>a non-human resource other than a location, such as a projector</dd>
              </dl>
            </dd>
            <dt>roles: <tt>String[Boolean]</tt> (optional)</dt>
            <dd>
              <t>This is a set of roles that this participant fulfills. If this property is set, then the calendarAddress property <bcp14>MUST</bcp14> be set and at least one role <bcp14>MUST</bcp14> be specified for the participant. The keys in the set <bcp14>MUST</bcp14> be one of the following values, another value registered in the IANA "JSCalendar Enum Values" registry, or a vendor-specific value (see <xref target="custom-properties"/>):</t>
              <dl newline="false">
                <dt><tt>owner</tt>:</dt>
                <dd>The participant is an owner of the calendar object. This signifies they can make changes that affect all participants (for example, rescheduling the calendar object, adding and removing participants and roles). The presence of this role only is indicative, its semantics are subject to the calendaring exchange protocol being used. See <xref target="jmap-calendars"/> for an example for making use of this role.</dd>
                <dt><tt>optional</tt>:</dt>
                <dd>The participant's involvement with the event is optional.</dd>
                <dt><tt>informational</tt>:</dt>
                <dd>The participant is copied for informational reasons and is not expected to attend.</dd>
                <dt><tt>chair</tt>:</dt>
                <dd>The participant is in charge of the event/task when it occurs.</dd>
                <dt><tt>required</tt>:</dt>
                <dd>The participant is required to be present at the event.</dd>
              </dl>
              <t>The value for each key in the map <bcp14>MUST</bcp14> be true. It is expected that no more than one of the roles "required", "optional", "informational" and "chair" be present; if more than one are given, they take precedence as follows: "chair" over "required", either of them over "optional", all of them over "informational". Roles that are unknown to the implementation <bcp14>MUST</bcp14> be preserved.</t>
            </dd>
            <dt>participationStatus: <tt>String</tt> (optional, default: <tt>needs-action</tt> )</dt>
            <dd>
              <t>This is the participation status, if any, of this participant. If this property is set, then the calendarAddress property <bcp14>MUST</bcp14> be set.</t>
              <t>The value <bcp14>MUST</bcp14> be one of the following values, another value registered in the IANA "JSCalendar Enum Values" registry, or a vendor-specific value (see <xref target="custom-properties"/>):</t>
              <dl newline="false">
                <dt><tt>needs-action</tt>:</dt>
                <dd>No status has yet been set by the participant.</dd>
                <dt><tt>accepted</tt>:</dt>
                <dd>The invited participant will participate.</dd>
                <dt><tt>declined</tt>:</dt>
                <dd>The invited participant will not participate.</dd>
                <dt><tt>tentative</tt>:</dt>
                <dd>The invited participant may participate.</dd>
                <dt><tt>delegated</tt>:</dt>
                <dd>The invited participant has delegated their attendance to another participant, as specified in the <tt>delegatedTo</tt> property.</dd>
              </dl>
            </dd>
            <dt>expectReply: <tt>Boolean</tt> (optional, default: false)</dt>
            <dd>If true, the organizer is expecting the participant to notify them of their participation status. If this property is set, then the calendarAddress property <bcp14>MUST</bcp14> be set.</dd>
            <dt>sentBy: <tt>String</tt> (optional)</dt>
            <dd>
              <t>This is the email address in the "From" header of the email that last updated this participant via iMIP. If this property is set, then the calendarAddress property <bcp14>MUST</bcp14> be set. This <bcp14>SHOULD</bcp14> only be set if the email address is different to that in the mailto URI of this participant's <tt>calendarAddress</tt> property (i.e., the response was received from a different address to that which the invitation was sent to). If set, the value <bcp14>MUST</bcp14> be a valid <tt>addr-spec</tt> value as defined in Section 3.4.1 of <xref target="RFC5322"/> .</t>
            </dd>
            <dt>delegatedTo: <tt>String[Boolean]</tt> (optional)</dt>
            <dd>This is the set of participants that this participant has delegated their participation to. If this property is set, then the calendarAddress property <bcp14>MUST</bcp14> be set. Each key in the set <bcp14>MUST</bcp14> be a URI according to the definition of the calendarAddress property. The value for each key in the map <bcp14>MUST</bcp14> be true. If there are no delegates, this <bcp14>MUST</bcp14> be omitted (rather than specified as an empty set).</dd>
            <dt>delegatedFrom: <tt>String[Boolean]</tt> (optional)</dt>
            <dd>This is a set of participants that this participant is acting as a delegate for. If this property is set, then the calendarAddress property <bcp14>MUST</bcp14> be set. Each key in the set <bcp14>MUST</bcp14> be a URI according to the definition of the calendarAddress property. The value for each key in the map <bcp14>MUST</bcp14> be true. If there are no delegators, this <bcp14>MUST</bcp14> be omitted (rather than specified as an empty set).</dd>
            <dt>memberOf: <tt>Id[Boolean]</tt> (optional)</dt>
            <dd>This is a set of group participants that were invited to this calendar object, which caused this participant to be invited due to their membership in the group(s). If this property is set, then the calendarAddress property <bcp14>MUST</bcp14> be set. Each key in the set <bcp14>MUST</bcp14> be a URI according to the definition of the calendarAddress property. The value for each key in the map <bcp14>MUST</bcp14> be true. If there are no groups, this <bcp14>MUST</bcp14> be omitted (rather than specified as an empty set).</dd>
            <dt>links: <tt>Id[Link]</tt> (optional)</dt>
            <dd>This is a map of link ids to Link objects, representing external resources associated with this participant, for example, a vCard or image. If there are no links, this <bcp14>MUST</bcp14> be omitted (rather than specified as an empty set).</dd>
            <dt>progress: <tt>String</tt> (optional; only allowed for participants of a Task)</dt>
            <dd>
              <t>This represents the progress of the participant for this task. If this property is set, then the calendarAddress property <bcp14>MUST</bcp14> be set and the <tt>participationStatus</tt> of this participant <bcp14>MUST</bcp14> be <tt>accepted</tt>. The property value <bcp14>MUST</bcp14> be one of the following values, another value registered in the IANA "JSCalendar Enum Values" registry, or a vendor-specific value (see <xref target="custom-properties"/>):</t>
              <dl newline="false">
                <dt><tt>in-process</tt>:</dt>
                <dd>The participant is in process of contributing to the task.</dd>
                <dt><tt>completed</tt>:</dt>
                <dd>The participant successfully completed contributing to the task.</dd>
                <dt><tt>failed</tt>:</dt>
                <dd>The participant could not complete their contribution to the task.</dd>
              </dl>
            </dd>
            <dt>percentComplete: <tt>UnsignedInt</tt> (optional; only allowed for participants of a Task)</dt>
            <dd>This represents the percent completion of the participant for this task. The property value <bcp14>MUST</bcp14> be a positive integer between 0 and 100.</dd>
          </dl>
        </section>
      </section>
      <section anchor="alerts-properties">
        <name>Alerts Properties</name>
        <section anchor="prop-alerts">
          <name>alerts</name>
          <t>Type: <tt>Id[Alert]</tt> (optional)</t>
          <t>This is a map of alert ids to Alert objects, representing alerts/reminders to display or send to the user for this calendar object.</t>
          <t>An Alert object has the following properties:</t>
          <dl newline="true">
            <dt>@type: <tt>String</tt></dt>
            <dd>This specifies the type of this object. This <bcp14>MUST</bcp14> be <tt>Alert</tt>, if set.</dd>
            <dt>trigger: <tt>OffsetTrigger|AbsoluteTrigger|UnknownTrigger</tt> (mandatory, defaultType: <tt>OffsetTrigger</tt>)</dt>
            <dd>
              <t>This defines when to trigger the alert. New types may be defined in future documents.</t>
              <t>An <tt>OffsetTrigger</tt> object has the following properties:</t>
              <dl newline="true">
                <dt>@type: <tt>String</tt></dt>
                <dd>This specifies the type of this object. This <bcp14>MUST</bcp14> be <tt>OffsetTrigger</tt>, if set.</dd>
                <dt>offset: <tt>SignedDuration</tt> (mandatory)</dt>
                <dd>This defines the offset at which to trigger the alert relative to the time property defined in the <tt>relativeTo</tt> property of the alert. Negative durations signify alerts before the time property; positive durations signify alerts after the time property.</dd>
                <dt>relativeTo: <tt>String</tt> (optional, default: <tt>start</tt> )</dt>
                <dd>
                  <t>This specifies the time property that the alert offset is relative to. The value <bcp14>MUST</bcp14> be one of the following:</t>
                  <dl newline="false">
                    <dt><tt>start</tt>:</dt>
                    <dd>triggers the alert relative to the start of the calendar object</dd>
                    <dt><tt>end</tt>:</dt>
                    <dd>triggers the alert relative to the end/due time of the calendar object</dd>
                  </dl>
                </dd>
              </dl>
              <t>An <tt>AbsoluteTrigger</tt> object has the following properties:</t>
              <dl newline="true">
                <dt>@type: <tt>String</tt></dt>
                <dd>This specifies the type of this object. This <bcp14>MUST</bcp14> be <tt>AbsoluteTrigger</tt>.</dd>
                <dt>when: <tt>UTCDateTime</tt> (mandatory)</dt>
                <dd>This defines a specific UTC date-time when the alert is triggered.</dd>
              </dl>
              <t>An <tt>UnknownTrigger</tt> object is an object that contains an <tt>@type</tt> property whose value is not recognized (i.e., not <tt>OffsetTrigger</tt> or <tt>AbsoluteTrigger</tt> ) plus zero or more other properties. This is for compatibility with client extensions and future specifications. Implementations <bcp14>SHOULD NOT</bcp14> trigger for trigger types they do not understand but <bcp14>MUST</bcp14> preserve them.</t>
            </dd>
            <dt>acknowledged: <tt>UTCDateTime</tt> (optional)</dt>
            <dd>
              <t>This records when an alert was last acknowledged. This is set when the user has dismissed the alert; other clients that sync this property <bcp14>SHOULD</bcp14> automatically dismiss or suppress duplicate alerts (alerts with the same alert id that triggered on or before this date-time).</t>
              <t>For a recurring calendar object, setting the <tt>acknowledged</tt> property <bcp14>MUST NOT</bcp14> add a new override to the <tt>recurrenceOverrides</tt> property. If the alert is not already overridden, the <tt>acknowledged</tt> property <bcp14>MUST</bcp14> be set on the alert in the base event/task.</t>
              <t>Certain kinds of alert action may not provide feedback as to when the user sees them, for example, email-based alerts. For those kinds of alerts, this property <bcp14>MUST</bcp14> be set immediately when the alert is triggered and the action is successfully carried out.</t>
            </dd>
            <dt>relatedTo: <tt>String[Relation]</tt> (optional)</dt>
            <dd>
              <t>This relates this alert to other alerts in the same JSCalendar object. Each key in the map is the key of an Alert object in the <tt>alerts</tt> property. The value defines the type of the relation. In addition to the relation values defined in <xref target="type-Relation"/>, the following key is allowed:</t>
              <dl newline="false">
                <dt><tt>snooze</tt>:</dt>
                <dd>The linked alert is snoozed by this alert.</dd>
              </dl>
              <t>If the user wishes to snooze an alert, the application <bcp14>MUST</bcp14> create an alert to trigger after snoozing. This new snooze alert <bcp14>MUST</bcp14> set a "snooze" relation to the identifier of the original alert.</t>
            </dd>
            <dt>action: <tt>String</tt> (optional, default: <tt>display</tt> )</dt>
            <dd>
              <t>This describes how to alert the user.</t>
              <t>The value <bcp14>MUST</bcp14> be at most one of the following values, a value registered in the IANA "JSCalendar Enum Values" registry, or a vendor-specific value (see <xref target="custom-properties"/>):</t>
              <dl newline="false">
                <dt><tt>display</tt>:</dt>
                <dd>The alert should be displayed as appropriate for the current device and user context.</dd>
                <dt><tt>email</tt>:</dt>
                <dd>The alert should trigger an email sent out to the user, notifying them of the alert. This action is typically only appropriate for server implementations.</dd>
              </dl>
            </dd>
          </dl>
        </section>
      </section>
      <section anchor="timezone-props">
        <name>Time Zone Properties</name>
        <section anchor="prop-timeZone">
          <name>timeZone</name>
          <t>Type: <tt>TimeZoneId|null</tt> (optional, default: null)</t>
          <t>This identifies the time zone the object is scheduled in or is null for floating time. If omitted, this <bcp14>MUST</bcp14> be presumed to be null (i.e., floating time).</t>
        </section>
      </section>
    </section>
    <section anchor="jscalendar-object-props">
      <name>Type-Specific JSCalendar Properties</name>
      <section anchor="jsevent-props">
        <name>Event Properties</name>
        <t>In addition to the common JSCalendar object <xref target="jscalendar-props">properties</xref>, an Event has the following properties:</t>
        <section anchor="prop-start-jsevent">
          <name>start</name>
          <t>Type: <tt>LocalDateTime</tt> (mandatory)</t>
          <t>This is the date/time the event starts in the event's time zone (as specified in the <tt>timeZone</tt> property, see <xref target="prop-timeZone"/>).</t>
        </section>
        <section anchor="prop-duration">
          <name>duration</name>
          <t>Type: <tt>Duration</tt> (optional, default: <tt>PT0S</tt>)</t>
          <t>This is the zero or positive duration of the event in the event's start time zone. The end time of an event can be found by adding the duration to the event's start time.</t>
        </section>
        <section anchor="prop-endTimeZone">
          <name>endTimeZone</name>
          <t>Type: <tt>TimeZoneId</tt> (optional)</t>
          <t>This identifies the time zone in which this event ends, for cases where the start and time zones of the event differ (e.g., a transcontinental flight). If this property is not set, then the event starts and ends in the same time zone. This property <bcp14>MUST NOT</bcp14> be set if the <tt>timeZone</tt> property value is null or not set.</t>
        </section>
        <section anchor="prop-status-jsevent">
          <name>status</name>
          <t>Type: <tt>String</tt> (optional, default: <tt>confirmed</tt>)</t>
          <t>This is the scheduling status ( <xref target="sharing-scheduling-properties"/>) of an Event. If set, it <bcp14>MUST</bcp14> be one of the following values, another value registered in the IANA "JSCalendar Enum Values" registry, or a vendor-specific value (see <xref target="custom-properties"/>):</t>
          <dl newline="false">
            <dt><tt>confirmed</tt>:</dt>
            <dd>indicates the event is definitely happening</dd>
            <dt><tt>cancelled</tt>:</dt>
            <dd>indicates the event has been cancelled</dd>
            <dt><tt>tentative</tt>:</dt>
            <dd>indicates the event may happen</dd>
          </dl>
        </section>
      </section>
      <section anchor="jstask-props">
        <name>Task Properties</name>
        <t>In addition to the common JSCalendar object <xref target="jscalendar-props">properties</xref>, a Task has the following properties.</t>
        <t>If the <tt>timeZone</tt> property value is not null or the <tt>showWithoutTime</tt> property value is "true", then at least one of the <tt>due</tt> and <tt>start</tt> properties <bcp14>MUST</bcp14> be set.</t>
        <section anchor="prop-due">
          <name>due</name>
          <t>Type: <tt>LocalDateTime</tt> (optional)</t>
          <t>This is the date/time the task is due in the task's time zone.</t>
        </section>
        <section anchor="prop-start-jstask">
          <name>start</name>
          <t>Type: <tt>LocalDateTime</tt> (optional)</t>
          <t>This the date/time the task should start in the task's time zone. This <bcp14>MUST</bcp14> be set if the <tt>recurrenceRule</tt> or <tt>recurrenceId</tt> properties are set.</t>
        </section>
        <section anchor="prop-estimatedDuration">
          <name>estimatedDuration</name>
          <t>Type: <tt>Duration</tt> (optional)</t>
          <t>This specifies the estimated positive duration of time the task takes to complete.</t>
        </section>
        <section anchor="prop-percentComplete">
          <name>percentComplete</name>
          <t>Type: <tt>UnsignedInt</tt> (optional)</t>
          <t>This represents the percent completion of the task overall. The property value <bcp14>MUST</bcp14> be a positive integer between 0 and 100.</t>
        </section>
        <section anchor="prop-progress">
          <name>progress</name>
          <t>Type: <tt>String</tt> (optional)</t>
          <t>This defines the progress of this task. If omitted, the default progress ( <xref target="sharing-scheduling-properties"/>) of a Task is defined as follows (in order of evaluation):</t>
          <dl newline="false">
            <dt><tt>completed</tt>:</dt>
            <dd>if the <tt>progress</tt> property value of all participants is <tt>completed</tt></dd>
            <dt><tt>failed</tt>:</dt>
            <dd>if at least one <tt>progress</tt> property value of a participant is <tt>failed</tt></dd>
            <dt><tt>in-process</tt>:</dt>
            <dd>if at least one <tt>progress</tt> property value of a participant is <tt>in-process</tt></dd>
            <dt><tt>needs-action</tt>:</dt>
            <dd>if none of the other criteria match</dd>
          </dl>
          <t>If set, it <bcp14>MUST</bcp14> be one of the following values, another value registered in the IANA "JSCalendar Enum Values" registry, or a vendor-specific value (see <xref target="custom-properties"/>):</t>
          <dl newline="false">
            <dt><tt>needs-action</tt>:</dt>
            <dd>indicates the task needs action</dd>
            <dt><tt>in-process</tt>:</dt>
            <dd>indicates the task is in process</dd>
            <dt><tt>completed</tt>:</dt>
            <dd>indicates the task is completed</dd>
            <dt><tt>failed</tt>:</dt>
            <dd>indicates the task failed</dd>
            <dt><tt>cancelled</tt>:</dt>
            <dd>indicates the task was cancelled</dd>
          </dl>
        </section>
      </section>
      <section anchor="jsgroup-props">
        <name>Group Properties</name>
        <t>Group supports the following common <xref target="jscalendar-props">JSCalendar properties</xref> :</t>
        <ul>
          <li>@type</li>
          <li>uid</li>
          <li>prodId</li>
          <li>created</li>
          <li>updated</li>
          <li>title</li>
          <li>description</li>
          <li>descriptionContentType</li>
          <li>links</li>
          <li>locale</li>
          <li>keywords</li>
          <li>categories</li>
          <li>color</li>
        </ul>
        <t>In addition, the following Group-specific properties are supported:</t>
        <section anchor="prop-entries">
          <name>entries</name>
          <t>Type: <tt>(Task|Event)[]</tt> (mandatory)</t>
          <t>This is a collection of group members. Implementations <bcp14>MUST</bcp14> ignore entries of unknown type.</t>
        </section>
        <section anchor="prop-source">
          <name>source</name>
          <t>Type: <tt>String</tt> (optional)</t>
          <t>This is the source from which updated versions of this group may be retrieved. The value <bcp14>MUST</bcp14> be a URI.</t>
        </section>
      </section>
    </section>
    <section anchor="examples">
      <name>Examples</name>
      <t>The following examples illustrate several aspects of the JSCalendar data model and format. The examples may omit mandatory or additional properties, which is indicated by a placeholder property with key <tt>...</tt>. While most of the examples use calendar event objects, they are also illustrative for tasks.</t>
      <section anchor="example-simple-event">
        <name>Simple Event</name>
        <t>This example illustrates a simple one-time event. It specifies a one-time event that begins on January 15, 2020 at 1 pm New York local time and ends after 1 hour.</t>
        <sourcecode name="" type="json">
{
  "@type": "Event",
  "uid": "a8df6573-0474-496d-8496-033ad45d7fea",
  "updated": "2020-01-02T18:23:04Z",
  "title": "Some event",
  "start": "2020-01-15T13:00:00",
  "timeZone": "America/New_York",
  "duration": "PT1H"
}
</sourcecode>
      </section>
      <section anchor="example-simple-task">
        <name>Simple Task</name>
        <t>This example illustrates a simple task for a plain to-do item.</t>
        <sourcecode name="" type="json">
{
  "@type": "Task",
  "uid": "2a358cee-6489-4f14-a57f-c104db4dc2f2",
  "updated": "2020-01-09T14:32:01Z",
  "title": "Do something"
}
</sourcecode>
      </section>
      <section anchor="example-simple-group">
        <name>Simple Group</name>
        <t>This example illustrates a simple calendar object group that contains an event and a task.</t>
        <sourcecode name="" type="json">
{
  "@type": "Group",
  "uid": "bf0ac22b-4989-4caf-9ebd-54301b4ee51a",
  "updated": "2020-01-15T18:00:00Z",
  "title": "A simple group",
  "entries": [{
    "@type": "Event",
    "uid": "a8df6573-0474-496d-8496-033ad45d7fea",
    "updated": "2020-01-02T18:23:04Z",
    "title": "Some event",
    "start": "2020-01-15T13:00:00",
    "timeZone": "America/New_York",
    "duration": "PT1H"
  },
  {
    "@type": "Task",
    "uid": "2a358cee-6489-4f14-a57f-c104db4dc2f2",
    "updated": "2020-01-09T14:32:01Z",
    "title": "Do something"
  }]
}
</sourcecode>
      </section>
      <section anchor="example-all-day-event">
        <name>All-Day Event</name>
        <t>This example illustrates an event for an international holiday. It specifies an all-day event on April 1 that occurs every year since the year 1900.</t>
        <sourcecode name="" type="json">
{
  "...": "",
  "title": "April Fool's Day",
  "showWithoutTime": true,
  "start": "1900-04-01T00:00:00",
  "duration": "P1D",
  "recurrenceRule": {
    "frequency": "yearly"
  }
}
</sourcecode>
      </section>
      <section anchor="example-due-task">
        <name>Task with a Due Date</name>
        <t>This example illustrates a task with a due date. It is a reminder to buy groceries before 6 pm Vienna local time on January 19, 2020. The calendar user expects to need 1 hour for shopping.</t>
        <sourcecode name="" type="json">
{
  "...": "",
  "title": "Buy groceries",
  "due": "2020-01-19T18:00:00",
  "timeZone": "Europe/Vienna",
  "estimatedDuration": "PT1H"
}
</sourcecode>
      </section>
      <section anchor="example-zoned-event-endtz">
        <name>Event with End Time Zone</name>
        <t>This example illustrates the use of end time zones by use of an international flight. The flight starts on April 1, 2020 at 9 am in Berlin local time. The duration of the flight is scheduled at 10 hours 30 minutes. The time at the flight's destination is in the same time zone as Tokyo. Calendar clients could use the end time zone to display the arrival time in Tokyo local time and highlight the time zone difference of the flight. The location names can serve as input for navigation systems. The mainLocationId property indicates the start location.</t>
        <sourcecode name="" type="json">
{
  "...": "",
  "title": "Flight XY51 to Tokyo",
  "start": "2020-04-01T09:00:00",
  "timeZone": "Europe/Berlin",
  "endTimeZone": "Asia/Tokyo",
  "duration": "PT10H30M",
  "mainLocationId": "1",
  "locations": {
    "1": {
      "name": "Frankfurt Airport (FRA)"
    },
    "2": {
      "name": "Narita International Airport (NRT)"
    }
  }
}
</sourcecode>
      </section>
      <section anchor="example-floating-event">
        <name>Floating-Time Event (with Recurrence)</name>
        <t>This example illustrates the use of floating time. Since January 1, 2020, a calendar user blocks 30 minutes every day to practice yoga at 7 am local time in whatever time zone the user is located on that date.</t>
        <sourcecode name="" type="json">
{
  "...": "",
  "title": "Yoga",
  "start": "2020-01-01T07:00:00",
  "duration": "PT30M",
  "recurrenceRule": {
    "frequency": "daily"
  }
}
</sourcecode>
      </section>
      <section anchor="example-multi-location-event">
        <name>Event with Physical and Virtual Location</name>
        <t>This example illustrates an event that happens at both a physical and a virtual location. Fans can see a live concert on premises or online. In addition to the main event location, the event contains an additional location for a nearby parking garage.</t>
        <sourcecode name="" type="json">
{
  "...": "",
  "title": "Live from Music Bowl: The Band",
  "description": "Go see the biggest music event ever!",
  "locale": "en",
  "start": "2020-07-04T17:00:00",
  "timeZone": "America/New_York",
  "duration": "PT3H",
  "mainLocationId": "c0503d30-8c50-4372-87b5-7657e8e0fedd",
  "locations": {
    "c0503d30-8c50-4372-87b5-7657e8e0fedd": {
      "name": "The Music Bowl",
      "description": "Music Bowl, Central Park, New York",
      "coordinates": "geo:40.7829,-73.9654"
    },
    "ee42e41e-1046-4489-9760-c0b85f0dc176": {
      "name": "BAZ Parking, 9 West 57th Street, New York",
      "coordinates": "geo:40.7637,-73.9748",
      "locationTypes": {
        "parking": true
      }
    }
  },
  "virtualLocations": {
    "vloc1": {
      "name": "Free live Stream from Music Bowl",
      "uri": "https://stream.example.com/the_band_2020"
    }
  }
}
</sourcecode>
      </section>
      <section anchor="example-recurring-overrides">
        <name>Recurring Event with Overrides</name>
        <t>This example illustrates the use of recurrence overrides. A math course at a university is held for the first time on January 8, 2020 at 9 am London time and occurs every week until June 24, 2020. Each lecture lasts for one hour and 30 minutes and is located at the Mathematics department. This event has exceptional occurrences: at the last occurrence of the course is an exam, which lasts for 2 hours and starts at 10 am. Also, the location of the exam differs from the usual location. On April 1, no course is held. On January 7 at 2 pm, there is an optional introduction course, which occurs before the first regular lecture.</t>
        <sourcecode name="" type="json">
{
  "...": "",
  "title": "Calculus I",
  "start": "2020-01-08T09:00:00",
  "timeZone": "Europe/London",
  "duration": "PT1H30M",
  "locations": {
    "mlab": {
      "name": "Math lab room 1",
      "description": "Math Lab I, Department of Mathematics"
    }
  },
  "recurrenceRule": {
    "frequency": "weekly",
    "until": "2020-06-24T09:00:00"
  },
  "recurrenceOverrides": {
    "2020-01-07T14:00:00": {
      "title": "Introduction to Calculus I (optional)"
    },
    "2020-04-01T09:00:00": {
      "excluded": true
    },
    "2020-06-25T09:00:00": {
      "title": "Calculus I Exam",
      "start": "2020-06-25T10:00:00",
      "duration": "PT2H",
      "locations": {
        "auditorium": {
          "name": "Big Auditorium",
          "description": "Big Auditorium, Other Road"
        }
      }
    }
  }
}
</sourcecode>
      </section>
      <section anchor="example-this-and-future">
        <name>Making a "This and Future" Change</name>
        <t>Sometimes, you may want to make a change to a recurring event that applies from a specific instance onwards. This cannot be represented as a single JSCalendar object. Instead, you must duplicate the event, modifying the recurrence rule of the original so it finishes before the split point, and the duplicate so it starts at the split point. A "next" and "first" relation must be set on the new objects respectively, as per <xref target="prop-relatedTo"/>.</t>
        <t>This example shows two JSCalendar objects, representing an event that used to happen at 2pm on a Tuesday in Room 101, but moved in March to 3pm on a Wednesday in Room 202.</t>
        <sourcecode name="" type="json">
{
  "...": "",
  "uid": "715ed4c5-3cf5-427f-927c-db40cdd63894",
  "relatedTo": {
    "32859916-af7a-4599-82ed-32a4315b4fe7": {
      "relation": {
        "next": true
      }
    }
  },
  "title": "Departmental meeting",
  "start": "2025-01-07T14:00:00",
  "timeZone": "Australia/Melbourne",
  "duration": "PT1H",
  "locations": {
    "room": {
      "name": "Room 101"
    }
  },
  "recurrenceRule": {
    "frequency": "weekly",
    "until": "2025-02-25T14:00:00"
  }
}
{
  "...": "",
  "uid": "32859916-af7a-4599-82ed-32a4315b4fe7",
  "relatedTo": {
    "715ed4c5-3cf5-427f-927c-db40cdd63894": : {
      "relation": {
        "first": true
      }
    }
  },
  "title": "Departmental meeting",
  "start": "2025-03-05T15:00:00",
  "timeZone": "Australia/Melbourne",
  "duration": "PT1H",
  "locations": {
    "room": {
      "name": "Room 202"
    }
  },
  "recurrenceRule": {
    "frequency": "weekly"
  }
}
</sourcecode>
      </section>
      <section anchor="example-recurring-participants">
        <name>Recurring Event with Participants</name>
        <t>This example illustrates scheduled events. A team meeting occurs every week since January 8, 2020 at 9 am Johannesburg time. The event owner also chairs the event. Participants meet in a virtual meeting room. A participant has accepted the invitation, but, on March 4, 2020, they are unavailable and declined participation for this occurrence.</t>
        <sourcecode name="" type="json">
{
  "...": "",
  "title": "FooBar team meeting",
  "start": "2020-01-08T09:00:00",
  "timeZone": "Africa/Johannesburg",
  "duration": "PT1H",
  "virtualLocations": {
    "0": {
      "name": "ChatMe meeting room",
      "uri": "https://chatme.example.com?id=1234567&amp;pw=a8a24627b63d"
    }
  },
  "recurrenceRule": {
    "frequency": "weekly"
  },
  "organizerCalendarAddress":
    "mailto:f245f875-7f63-4a5e-a2c8@schedule.example.com",
  "participants": {
    "dG9tQGZvb2Jhci5xlLmNvbQ": {
      "name": "Tom Tool",
      "email": "tom@foobar.example.com",
      "calendarAddress": "mailto:tom@calendar.example.com",
      "participationStatus": "accepted",
    },
    "em9lQGZvb2GFtcGxlLmNvbQ": {
      "name": "Zoe Zelda",
      "calendarAddress": "mailto:zoe@foobar.example.com",
      "participationStatus": "accepted",
      "roles": {
        "owner": true,
        "chair": true
      }
    }
  },
  "recurrenceOverrides": {
    "2020-03-04T09:00:00": {
      "participants/dG9tQGZvb2Jhci5xlLmNvbQ/participationStatus":
                                                          "declined"
    }
  }
}
</sourcecode>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Calendaring and scheduling information is very privacy sensitive.  It can reveal the social network of a user, location information of this user and those in their social network, identity and credentials information, and patterns of behavior of the user in both the physical and cyber realm. Additionally, calendar events and tasks can influence the physical location of a user or their cyber behavior within a known time window.  Its transmission and storage must be done carefully to protect it from possible threats, such as eavesdropping, replay, message insertion, deletion, modification, and on-path attacks.</t>
      <t>The data being stored and transmitted may be used in systems with real-world consequences. For example, a home automation system may turn an alarm on and off  or a coworking space may charge money to the organizer of an event that books one of their meeting rooms. Such systems must be careful to authenticate all data they receive to prevent them from being subverted and ensure the change comes from an authorized entity.</t>
      <t>This document only defines the data format; such considerations are primarily the concern of the API or method of storage and transmission of such files.</t>
      <section anchor="sec-recurrences">
        <name>Expanding Recurrences</name>
        <t>A recurrence rule may produce infinite occurrences of an event. Implementations <bcp14>MUST</bcp14> handle expansions carefully to prevent accidental or deliberate resource exhaustion.</t>
        <t>Conversely, a recurrence rule may be specified that does not expand to anything. It is not always possible to tell this through static analysis of the rule, so implementations <bcp14>MUST</bcp14> be careful to avoid getting stuck in infinite loops or otherwise exhausting resources while searching for the next occurrence.</t>
        <t>Events recur in the event's time zone. If the user is in a different time zone, daylight saving transitions may cause an event that normally occurs at, for example, 9 am to suddenly shift an hour earlier. This may be used in an attempt to cause a participant to miss an important meeting. User agents must be careful to translate date-times correctly between time zones and may wish to call out unexpected changes in the time of a recurring event.</t>
      </section>
      <section anchor="json-parsing">
        <name>JSON Parsing</name>
        <t>The security considerations of <xref target="RFC8259"/> apply to the use of JSON as the data interchange format.</t>
        <t>As for any serialization format, parsers need to thoroughly check the syntax of the supplied data. JSON uses opening and closing tags for several types and structures, and it is possible that the end of the supplied data will be reached when scanning for a matching closing tag; this is an error condition, and implementations need to stop scanning at the end of the supplied data.</t>
        <t>JSON also uses a string encoding with some escape sequences to encode special characters within a string. Care is needed when processing these escape sequences to ensure that they are fully formed before the special processing is triggered, with special care taken when the escape sequences appear adjacent to other (non-escaped) special characters or adjacent to the end of data (as in the previous paragraph).</t>
        <t>If parsing JSON into a non-textual structured data format, implementations may need to allocate storage to hold JSON string elements.  Since JSON does not use explicit string lengths, the risk of denial of service due to resource exhaustion is small, but implementations may still wish to place limits on the size of allocations they are willing to make in any given context, to avoid untrusted data causing excessive memory allocation.</t>
      </section>
      <section anchor="uri-values">
        <name>URI Values</name>
        <t>Several JSCalendar properties contain URIs as values, and processing these properties requires extra care. <xref target="RFC3986" section="7"/> discusses security risks related to URIs.</t>
        <t>Fetching remote resources carries inherent risks. Connections must only be allowed on well-known ports, using allowed protocols (generally, just HTTP/HTTPS on their default ports). The URL must be resolved externally and not allowed to access internal resources. Connecting to an external source reveals IP (and therefore often location) information.</t>
        <t>A maliciously constructed JSCalendar object may contain a very large number of URIs. In the case of published calendars with a large number of subscribers, such objects could be widely distributed. Implementations should be careful to limit the automatic fetching of linked resources to reduce the risk of this being an amplification vector for a denial-of-service attack.</t>
      </section>
      <section anchor="spam">
        <name>Spam</name>
        <t>Calendar systems may receive JSCalendar files from untrusted sources, in particular, as attachments to emails. This can be a vector for an attacker to inject spam into a user's calendar. This may confuse, annoy, and mislead users or overwhelm their calendar with bogus events, preventing them from seeing legitimate ones.</t>
        <t>Heuristic, statistical, or machine-learning-based filters can be effective in filtering out spam. Authentication mechanisms, such as DomainKeys Identified Mail (DKIM) <xref target="RFC6376"/>, can help establish the source of messages and associate the data with existing relationships (such as an address book contact). However, misclassifications are always possible and providing a mechanism for users to quickly correct this is advised.</t>
        <t>Confusable unicode characters may be used to trick a user into trusting a JSCalendar file that appears to come from a known contact but is actually from a similar-looking source controlled by an attacker.</t>
      </section>
      <section anchor="duplication">
        <name>Duplication</name>
        <t>It is important for calendar systems to maintain the UID of an event when updating it to avoid an unexpected duplication of events. Consumers of the data may not remove the previous version of the event if it has a different UID. This can lead to a confusing situation for the user, with many variations of the event and no indication of which one is correct. Care must be taken by consumers of the data to remove old events where possible to avoid an accidental denial-of-service attack due to the volume of data.</t>
      </section>
      <section anchor="timezonesec">
        <name>Time Zones</name>
        <t>Events recur in a particular time zone. When this differs from the user's current time zone, it may unexpectedly cause an occurrence to shift in time for that user due to a daylight savings change in the event's time zone. A maliciously crafted event could attempt to confuse users with such an event to ensure a meeting is missed.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>IANA has created the "JSCalendar Properties", "JSCalendar Types" and "JSCalendar Enum Values" registries, originally defined in <xref target="RFC8984"/>. This document updates some of the registry definitions and registry contents. The following sections redefine all IANA considerations, even if they are unchanged.</t>
      <section anchor="iana-mime-type" numbered="true" toc="default">
        <name>Media Type Registration</name>
        <t><xref target="RFC8984"/> defined a media type for use with JSCalendar data formatted in JSON. This section restates the original definition unchanged.</t>
        <dl newline="false" spacing="normal">
          <dt>Type name:</dt>
          <dd>application</dd>
          <dt>Subtype name:</dt>
          <dd>jscalendar+json</dd>
          <dt>Required parameters:</dt>
          <dd>
            <t>type</t>
            <t>The <tt>type</tt> parameter conveys the type of the JSCalendar data in the body part. The
          allowed parameter values correspond to the <tt>@type</tt> property of the JSON-formatted
        JSCalendar object in the body:</t>
            <dl newline="false" spacing="normal">
              <dt><tt>event</tt>:</dt>
              <dd>The <tt>@type</tt> property value <bcp14>MUST</bcp14> be
              <tt>Event</tt>.</dd>
              <dt><tt>task</tt>:</dt>
              <dd>The <tt>@type</tt> property value <bcp14>MUST</bcp14> be <tt>Task</tt>.</dd>
              <dt><tt>group</tt>:</dt>
              <dd>The <tt>@type</tt> property value <bcp14>MUST</bcp14> be <tt>Group</tt>.</dd>
            </dl>
            <t>No other parameter values are allowed. The parameter <bcp14>MUST NOT</bcp14> occur more than
          once.</t>
          </dd>
          <dt>Optional parameters:</dt>
          <dd>none</dd>
          <dt>Encoding considerations:</dt>
          <dd>This is the same as the encoding considerations of application/json, as specified in <xref target="RFC8259" sectionFormat="of" section="11"/>.</dd>
          <dt>Security considerations:</dt>
          <dd> See <xref target="security-considerations" format="default"/> of this document.</dd>
          <dt>Interoperability considerations:</dt>
          <dd>While JSCalendar is designed to avoid ambiguities as much as possible, when converting objects from other calendar formats to/from JSCalendar, it is possible that differing representations for the same logical data or ambiguities in interpretation might arise. The semantic equivalence of two JSCalendar objects may be determined differently by different applications, for example, where URL values differ in case between the two objects.</dd>
          <dt>Published specification:</dt>
          <dd>draft-ietf-calext-jscalendarbis</dd>
          <dt>Applications that use this media type:</dt>
          <dd>Applications that currently make use of the text/calendar and application/calendar+json media types can use this as an alternative. Similarly, applications that use the application/json media type to transfer calendaring data can use this to further specify the content.</dd>
          <dt>Fragment identifier considerations:</dt>
          <dd>A JSON Pointer fragment identifier may be used, as defined in <xref target="RFC6901" sectionFormat="comma" section="6"/>.</dd>
          <dt>Additional information:</dt>
          <dd>
            <dl newline="false" spacing="normal">
              <dt>Magic number(s):</dt>
              <dd>N/A</dd>
              <dt>File extensions(s):</dt>
              <dd>N/A</dd>
              <dt>Macintosh file type code(s):</dt>
              <dd>N/A</dd>
            </dl>
          </dd>
          <dt>Person &amp; email address to contact for further information:</dt>
          <dd>calsify@ietf.org</dd>
          <dt>Intended usage:</dt>
          <dd>COMMON</dd>
          <dt>Restrictions on usage:</dt>
          <dd>N/A</dd>
          <dt>Author:</dt>
          <dd>See the "Author's Address" section of this document.</dd>
          <dt>Change controller:</dt>
          <dd>IETF</dd>
        </dl>
      </section>
      <section anchor="iana-property-registry" numbered="true" toc="default">
        <name>"JSCalendar Properties" Registry</name>
        <t>IANA has created the "JSCalendar Properties" registry to allow interoperability of extensions to JSCalendar objects. IANA will set the Reference of the registry to this document, rather than obsoleted <xref target="RFC8984"/>.</t>
        <section anchor="iana-property-registry-policy">
          <name>Registry Policy and Change Procedures</name>
          <t><em>Note for IANA</em>:  This section leaves the original definition of <xref target="RFC8984"/> unchanged.</t>
          <t>This registry follows the Expert Review process (<xref target="RFC8126" sectionFormat="comma" section="4.5"/>). If the "Intended Usage" field is <tt>common</tt>, sufficient documentation is required to enable interoperability. Preliminary community review for this registry is optional but strongly encouraged.</t>
          <t>A registration can have an intended usage of <tt>common</tt>, <tt>reserved</tt>, or <tt>obsolete</tt>. IANA will list registrations with a common usage designation prominently and separately from those with other intended usage values.</t>
          <t>A <tt>reserved</tt> registration reserves a property name without assigning semantics to avoid name collisions with future extensions or protocol use.</t>
          <t>An <tt>obsolete</tt> registration denotes a property that is no longer expected to be added by up-to-date systems. A new property has probably been defined covering the obsolete property's semantics.</t>
          <t>The JSCalendar property registration procedure is not a formal standards process but rather an administrative procedure intended to allow community comment and check it is coherent without excessive time delay. It is designed to encourage vendors to document and register new properties they add for use cases not covered by the original specification, leading to increased interoperability.</t>
          <section anchor="iana-property-registry-preliminary-community-review" numbered="true" toc="default">
            <name>Preliminary Community Review</name>
            <t>Notice of a potential new registration <bcp14>SHOULD</bcp14> be sent to the Calext mailing list
      &lt;calsify@ietf.org&gt; for review. This mailing list is appropriate to solicit community feedback
        on a proposed new property.</t>
            <t>Property registrations must be marked with their intended use: "common", "reserved", or
      "obsolete".</t>
            <t>The intent of the public posting to this list is to solicit comments and feedback on the choice of
      the property name, the unambiguity of the specification document, and a review of any
        interoperability or security considerations. The submitter may submit a revised registration proposal
          or abandon the registration completely at any time.</t>
          </section>
          <section anchor="iana-property-registry-submit-request-to-iana" numbered="true" toc="default">
            <name>Submit Request to IANA</name>
            <t>Registration requests can be sent to &lt;iana@iana.org&gt;.</t>
          </section>
          <section anchor="iana-property-registry-designated-expert-review" numbered="true" toc="default">
            <name>Designated Expert Review</name>
            <t>The primary concern of the designated expert (DE) is preventing name collisions and encouraging
      the submitter to document security and privacy considerations. For a common-use registration, the DE
        is expected to confirm that suitable documentation, as described in <xref target="RFC8126" sectionFormat="of" section="4.6"/>, is available to ensure interoperability. That documentation will
          usually be in an RFC, but simple definitions are likely to use a web/wiki page, and if a sentence or
      two is deemed sufficient, it could be described in the registry itself. The DE should also verify that
        the property name does not conflict with work that is active or already published within the IETF. A
          published specification is not required for reserved or obsolete registrations.</t>
            <t>The DE will either approve or deny the registration request and publish a notice of the decision
      to the Calext WG mailing list or its successor, as well as inform IANA. A denial notice must be
        justified by an explanation, and, in the cases where it is possible, concrete suggestions on how the
          request can be modified so as to become acceptable should be provided.</t>
          </section>
          <section anchor="iana-property-registry-change-procedures" numbered="true" toc="default">
            <name>Change Procedures</name>
            <t>Once a JSCalendar property has been published by IANA, the change controller may request a
      change to its definition. The same procedure that would be appropriate for the original registration
        request is used to process a change request.</t>
            <t>JSCalendar property registrations may not be deleted; properties that are no longer believed appropriate for use can be declared obsolete by a change to their "intended usage" field; such properties will be clearly marked in the IANA registry.</t>
            <t>Significant changes to a JSCalendar property's definition should be requested only when there are
      serious omissions or errors in the published specification, as such changes may cause
        interoperability issues. When review is required, a change request may be denied if it renders
          entities that were valid under the previous definition invalid under the new definition.</t>
            <t>The owner of a JSCalendar property may pass responsibility to another person or agency by
      informing IANA; this can be done without discussion or review.</t>
          </section>
        </section>
        <section anchor="iana-property-registry-template" numbered="true" toc="default">
          <name>"JSCalendar Properties" Registry Template</name>
          <t><em>Note for IANA</em>:  This section leaves the original definition of <xref target="RFC8984"/> unchanged.</t>
          <dl newline="false">
            <dt>Property Name:</dt>
            <dd>This is the name of the property. The property name <bcp14>MUST NOT</bcp14> already be
        registered for
            any of the object types listed in the "Property Context" field of this registration. Other object
          types <bcp14>MAY</bcp14> already have registered a different property with the same name; however,
              the same name <bcp14>SHOULD</bcp14> only be used when the semantics are analogous.</dd>
            <dt>Property Type:</dt>
            <dd> This is the type of this property, using type signatures, as specified in <xref target="type-signatures" format="default"/>.
        The property type <bcp14>MUST</bcp14> be registered in the "JSCalendar Types" registry.</dd>
            <dt>Property Context:</dt>
            <dd>This is a comma-separated list of JSCalendar object types this property is allowed on.</dd>
            <dt>Reference or Description:</dt>
            <dd>This is a brief description or RFC number and section reference where the property is specified (omitted for "reserved" property names).</dd>
            <dt>Intended Usage:</dt>
            <dd>This may be "common", "reserved", or "obsolete".</dd>
            <dt>Change Controller:</dt>
            <dd>This is who may request a change to this entry's definition (<tt>IETF</tt> for RFCs from the IETF stream).</dd>
          </dl>
        </section>
        <section anchor="iana-property-registry-updated-contents">
          <name>Changes to the JSCalendar Properties Registry contents</name>
          <section>
            <name>Obsoleted Properties</name>
            <t>IANA will change the Intended Status from "common" to "obsolete" for the following entries in the JSCalendar Properties Registry. For each entry, the Reference/Description column will refer to <xref target="appendix-obsolete-properties"/> of this document.</t>
            <ul>
              <li>aliases</li>
              <li>cid</li>
              <li>comments</li>
              <li>daylight</li>
              <li>excludedRecurrenceRules</li>
              <li>language</li>
              <li>locationId</li>
              <li>names</li>
              <li>offsetFrom</li>
              <li>offsetTo</li>
              <li>progressUpdated</li>
              <li>recurrenceRules</li>
              <li>standard</li>
              <li>timeZones</li>
              <li>tzId</li>
              <li>url</li>
              <li>validUntil</li>
            </ul>
          </section>
          <section>
            <name>Reserved Properties</name>
            <t>IANA will change the Intended Status from "common" to "reserved" for the following entries in the JSCalendar Properties Registry. For each entry, the Reference/Description column will refer to <xref target="appendix-reserved-properties"/> of this document.</t>
            <ul>
              <li>excluded</li>
              <li>invitedBy</li>
              <li>localizations</li>
              <li>participationComment</li>
              <li>replyTo</li>
              <li>requestStatus</li>
              <li>scheduleAgent</li>
              <li>scheduleForceSend</li>
              <li>scheduleSequence</li>
              <li>scheduleStatus</li>
              <li>scheduleUpdated</li>
              <li>sendTo</li>
              <li>useDefaultAlerts</li>
            </ul>
          </section>
          <section>
            <name>Removed Properties</name>
            <t>IANA will remove the entry having Property Name "start" and Property Context "TimeZoneRule".</t>
          </section>
          <section>
            <name>Updated Properties</name>
            <t>IANA will update the following entries in the JSCalendar Properties Registry. For each entry, the Property Name and its changed fields are listed. Unchanged fields are omitted. Referenced section numbers refer to this document, unless otherwise noted.</t>
            <!-- @type -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>@type</dd>
              <dt>Property Context</dt>
              <dd>Event, Task, Group, AbsoluteTrigger, Alert, Link, Location, NDay, OffsetTrigger, Participant, RecurrenceRule, Relation, VirtualLocation</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-type"/>
              </dd>
            </dl>
            <!-- acknowledged -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>acknowledged</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-alerts"/>
              </dd>
            </dl>
            <!-- action -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>action</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-alerts"/>
              </dd>
            </dl>
            <!-- alerts -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>alerts</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-alerts"/>
              </dd>
            </dl>
            <!-- byDay -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>byDay</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- byHour -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>byHour</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- byMinute -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>byMinute</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- byMonth -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>byMonth</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- byMonthDay -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>byMonthDay</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- bySecond -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>bySecond</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- bySetPosition -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>bySetPosition</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- byWeekNo -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>byWeekNo</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- byYearDay -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>byYearDay</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- calendarAddress -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>calendarAddress</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
            </dl>
            <!-- categories -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>categories</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-categories"/>
              </dd>
            </dl>
            <!-- color -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>color</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-color"/>
              </dd>
            </dl>
            <!-- contentType -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>contentType</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-Link"/>
              </dd>
            </dl>
            <!-- coordinates -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>coordinates</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-locations"/>
              </dd>
            </dl>
            <!-- count -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>count</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- created -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>created</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-created"/>
              </dd>
            </dl>
            <!-- day -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>day</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- delegatedFrom -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>delegatedFrom</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
            </dl>
            <!-- delegatedTo -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>delegatedTo</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
            </dl>
            <!-- description -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>description</dd>
              <dt>Property Context</dt>
              <dd>Event, Task, Participant</dd>
              <dt>Reference/Description</dt>
              <dd><xref target="prop-description"/>, <xref target="prop-participants"/></dd>
            </dl>
            <!-- descriptionContentType -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>descriptionContentType</dd>
              <dt>Property Context</dt>
              <dd>Event, Task, Participant</dd>
              <dt>Reference/Description</dt>
              <dd><xref target="prop-description"/>, <xref target="prop-participants"/></dd>
            </dl>
            <!-- display -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>display</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-Link"/>
              </dd>
            </dl>
            <!-- due -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>due</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-due"/>
              </dd>
            </dl>
            <!-- duration -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>duration</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-duration"/>
              </dd>
            </dl>
            <!-- email -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>email</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
            </dl>
            <!-- entries -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>entries</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-entries"/>
              </dd>
            </dl>
            <!-- estimatedDuration -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>estimatedDuration</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-estimatedDuration"/>
              </dd>
            </dl>
            <!-- expectReply -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>expectReply</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
            </dl>
            <!-- features -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>features</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-virtualLocations"/>
              </dd>
            </dl>
            <!-- firstDayOfWeek -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>firstDayOfWeek</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- freeBusyStatus -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>freeBusyStatus</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-freeBusyStatus"/>
              </dd>
            </dl>
            <!-- frequency -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>frequency</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- href -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>href</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-Link"/>
              </dd>
            </dl>
            <!-- interval -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>interval</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- keywords -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>keywords</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-keywords"/>
              </dd>
            </dl>
            <!-- kind -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>kind</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
            </dl>
            <!-- links -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>links</dd>
              <dt>Reference/Description</dt>
              <dd><xref target="prop-links"/>, <xref target="prop-locations"/>, <xref target="prop-participants"/></dd>
            </dl>
            <!-- locale -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>locale</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-locale"/>
              </dd>
            </dl>
            <!-- locationTypes -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>locationTypes</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-locations"/>
              </dd>
            </dl>
            <!-- locations -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>locations</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-locations"/>
              </dd>
            </dl>
            <!-- memberOf -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>memberOf</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
            </dl>
            <!-- method -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>method</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-method"/>
              </dd>
            </dl>
            <!-- name -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>name</dd>
              <dt>Reference/Description</dt>
              <dd><xref target="prop-locations"/>, <xref target="prop-virtualLocations"/>, <xref target="prop-participants"/></dd>
            </dl>
            <!-- nthOfPeriod -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>nthOfPeriod</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- offset -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>offset</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-alerts"/>
              </dd>
            </dl>
            <!-- participants -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>participants</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
            </dl>
            <!-- participationStatus -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>participationStatus</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
            </dl>
            <!-- percentComplete -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>percentComplete</dd>
              <dt>Reference/Description</dt>
              <dd><xref target="prop-percentComplete"/>, <xref target="prop-participants"/></dd>
            </dl>
            <!-- priority -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>priority</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-priority"/>
              </dd>
            </dl>
            <!-- privacy -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>privacy</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-privacy"/>
              </dd>
            </dl>
            <!-- prodId -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>prodId</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-prodId"/>
              </dd>
            </dl>
            <!-- progress -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>progress</dd>
              <dt>Reference/Description</dt>
              <dd><xref target="prop-progress"/>, <xref target="prop-participants"/></dd>
            </dl>
            <!-- recurrenceId -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>recurrenceId</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceId"/>
              </dd>
            </dl>
            <!-- recurrenceIdTimeZone -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>recurrenceIdTimeZone</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceIdTimeZone"/>
              </dd>
            </dl>
            <!-- recurrenceOverrides -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>recurrenceOverrides</dd>
              <dt>Property Content</dt>
              <dd>Event, Task</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceOverrides"/>
              </dd>
            </dl>
            <!-- rel -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>rel</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-Link"/>
              </dd>
            </dl>
            <!-- relatedTo -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>relatedTo</dd>
              <dt>Reference/Description</dt>
              <dd><xref target="prop-relatedTo"/>, <xref target="prop-alerts"/></dd>
            </dl>
            <!-- relation -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>relation</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-Relation"/>
              </dd>
            </dl>
            <!-- relativeTo -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>relativeTo</dd>
              <dt>Property Context</dt>
              <dd>OffsetTrigger</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-alerts"/>
              </dd>
            </dl>
            <!-- roles -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>roles</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
            </dl>
            <!-- rscale -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>rscale</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- sentBy -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>sentBy</dd>
              <dt>Property Context</dt>
              <dd>Participant</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
            </dl>
            <!-- sequence -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>sequence</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-sequence"/>
              </dd>
            </dl>
            <!-- showWithoutTime -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>showWithoutTime</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-showWithoutTime"/>
              </dd>
            </dl>
            <!-- size -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>size</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-Link"/>
              </dd>
            </dl>
            <!-- skip -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>skip</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- source -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>source</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-source"/>
              </dd>
            </dl>
            <!-- start -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>start</dd>
              <dt>Reference/Description</dt>
              <dd><xref target="prop-start-jsevent"/>, <xref target="prop-start-jstask"/></dd>
            </dl>
            <!-- status -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>status</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-status-jsevent"/>
              </dd>
            </dl>
            <!-- timeZone -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>timeZone</dd>
              <dt>Property Context</dt>
              <dd>Event, Task</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-timeZone"/>
              </dd>
            </dl>
            <!-- title -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>title</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-title"/>
              </dd>
            </dl>
            <!-- trigger -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>trigger</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-alerts"/>
              </dd>
            </dl>
            <!-- uid -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>uid</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-uid"/>
              </dd>
            </dl>
            <!-- until -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>until</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- updated -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>updated</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-updated"/>
              </dd>
            </dl>
            <!-- uri -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>uri</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-virtualLocations"/>
              </dd>
            </dl>
            <!-- virtualLocations -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>virtualLocations</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-virtualLocations"/>
              </dd>
            </dl>
            <!-- when -->
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>when</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-alerts"/>
              </dd>
            </dl>
          </section>
          <section>
            <name>Added Properties</name>
            <t>IANA will add the following entries in the JSCalendar Properties Registry. Referenced section numbers refer to this document, unless otherwise noted.</t>
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>calendarAddress</dd>
              <dt>Property Type</dt>
              <dd>String</dd>
              <dt>Property Context</dt>
              <dd>Participant</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>common</dd>
              <dt>Is Per-User</dt>
              <dd>No</dd>
            </dl>
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>description</dd>
              <dt>Property Type</dt>
              <dd>Not applicable</dd>
              <dt>Property Context</dt>
              <dd>Location, VirtualLocation</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="appendix-reserved-properties"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>reserved</dd>
              <dt>Is Per-User</dt>
              <dd>No</dd>
            </dl>
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>endTimeZone</dd>
              <dt>Property Type</dt>
              <dd>String</dd>
              <dt>Property Context</dt>
              <dd>Event</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-endTimeZone"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>common</dd>
              <dt>Is Per-User</dt>
              <dd>No</dd>
            </dl>
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>mainLocationId</dd>
              <dt>Property Type</dt>
              <dd>String</dd>
              <dt>Property Context</dt>
              <dd>Event, Task</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-mainLocationId"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>common</dd>
              <dt>Is Per-User</dt>
              <dd>No</dd>
            </dl>
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>organizerCalendarAddress</dd>
              <dt>Property Type</dt>
              <dd>String</dd>
              <dt>Property Context</dt>
              <dd>Event, Task</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-organizerCalendarAddress"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>common</dd>
              <dt>Is Per-User</dt>
              <dd>No</dd>
            </dl>
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>recurrenceRule</dd>
              <dt>Property Type</dt>
              <dd>RecurrenceRule</dd>
              <dt>Property Context</dt>
              <dd>Event, Task</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>common</dd>
              <dt>Is Per-User</dt>
              <dd>No</dd>
            </dl>
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>relativeTo</dd>
              <dt>Property Context</dt>
              <dd>Location</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="appendix-obsolete-properties"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>obsolete</dd>
              <dt>Is Per-User</dt>
              <dd>No</dd>
            </dl>
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>sentBy</dd>
              <dt>Property Type</dt>
              <dd>Not applicable</dd>
              <dt>Property Context</dt>
              <dd>Event, Task</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="appendix-reserved-properties"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>reserved</dd>
              <dt>Is Per-User</dt>
              <dd>No</dd>
            </dl>
            <dl spacing="compact">
              <dt>Property Name</dt>
              <dd>timeZone</dd>
              <dt>Property Context</dt>
              <dd>Location</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="appendix-obsolete-properties"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>obsolete</dd>
              <dt>Is Per-User</dt>
              <dd>No</dd>
            </dl>
          </section>
        </section>
      </section>
      <section anchor="iana-type-registry" numbered="true" toc="default">
        <name>"JSCalendar Types" Registry</name>
        <t>IANA has created the "JSCalendar Types" registry to avoid name collisions and provide a complete reference for all data types used for JSCalendar property values. IANA will set the Reference of the registry to this document, rather than obsoleted <xref target="RFC8984"/>.</t>
        <t>The registration process is the same as for the "JSCalendar Properties" registry, as defined in <xref target="iana-property-registry-policy" format="default"/>.</t>
        <section anchor="iana-type-registry-template" numbered="true" toc="default">
          <name>"JSCalendar Types" Registry Template</name>
          <t><em>Note for IANA</em>:  This section leaves the original definition of <xref target="RFC8984"/> unchanged.</t>
          <dl newline="false">
            <dt>Type Name:</dt>
            <dd>This is the name of the type.</dd>
            <dt>Reference or Description:</dt>
            <dd>This is a brief description or RFC number and section reference where the Type is specified (may be omitted for "reserved" type names).</dd>
            <dt>Intended Use:</dt>
            <dd>This may be "common", "reserved", or "obsolete".</dd>
            <dt>Change Controller:</dt>
            <dd>This is who may request a change to this entry's definition (<tt>IETF</tt> for RFCs from the IETF stream)</dd>
          </dl>
        </section>
        <section anchor="iana-type-registry-updated-contents">
          <name>Changes to the JSCalendar Types Registry contents</name>
          <section>
            <name>Obsoleted Types</name>
            <t>IANA will change the Intended Status from "common" to "obsolete" for the following entries in the JSCalendar Types Registry. For each entry, the Reference/Description column will refer to <xref target="appendix-obsolete-types"/> of this document.</t>
            <ul>
              <li>TimeZone</li>
              <li>TimeZoneRule</li>
            </ul>
          </section>
          <section>
            <name>Updated Types</name>
            <t>IANA will update the following entries in the JSCalendar Types Registry. For each entry, the Type Name and its changed fields are listed. Unchanged fields are omitted. Referenced section numbers refer to this document, unless otherwise noted.</t>
            <!-- Alert -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Alert</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-alerts"/>
              </dd>
            </dl>
            <!-- Boolean -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Boolean</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-signatures"/>
              </dd>
            </dl>
            <!-- Duration -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Duration</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-Duration"/>
              </dd>
            </dl>
            <!-- Id -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Id</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-Id"/>
              </dd>
            </dl>
            <!-- Int -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Int</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-Int"/>
              </dd>
            </dl>
            <!-- LocalDateTime -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>LocalDateTime</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-LocalDateTime"/>
              </dd>
            </dl>
            <!-- Link -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Link</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-Link"/>
              </dd>
            </dl>
            <!-- Location -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Location</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-locations"/>
              </dd>
            </dl>
            <!-- NDay -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>NDay</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- Number -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Number</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-signatures"/>
              </dd>
            </dl>
            <!-- Participant -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Participant</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-participants"/>
              </dd>
            </dl>
            <!-- PatchObject -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>PatchObject</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-PatchObject"/>
              </dd>
            </dl>
            <!-- RecurrenceRule -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>RecurrenceRule</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-recurrenceRule"/>
              </dd>
            </dl>
            <!-- Relation -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Relation</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-Relation"/>
              </dd>
            </dl>
            <!-- SignedDuration -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>SignedDuration</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-SignedDuration"/>
              </dd>
            </dl>
            <!-- String -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>String</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-signatures"/>
              </dd>
            </dl>
            <!-- TimeZoneId -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>TimeZoneId</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-TimeZoneId"/>
              </dd>
            </dl>
            <!-- UnsignedInt -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>UnsignedInt</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-UnsignedInt"/>
              </dd>
            </dl>
            <!-- UTCDateTime -->
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>UTCDateTime</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="type-UTCDateTime"/>
              </dd>
            </dl>
          </section>
          <section>
            <name>Added Types</name>
            <t>IANA will add the following entries in the JSCalendar Types Registry. Referenced section numbers refer to this document, unless otherwise noted.</t>
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Event</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="jsevent"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>common</dd>
              <dt>Change Controller</dt>
              <dd>IETF</dd>
            </dl>
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Group</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="jsgroup"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>common</dd>
              <dt>Change Controller</dt>
              <dd>IETF</dd>
            </dl>
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>Task</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="jstask"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>common</dd>
              <dt>Change Controller</dt>
              <dd>IETF</dd>
            </dl>
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>OffsetTrigger</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-alerts"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>common</dd>
              <dt>Change Controller</dt>
              <dd>IETF</dd>
            </dl>
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>AbsoluteTrigger</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-alerts"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>common</dd>
              <dt>Change Controller</dt>
              <dd>IETF</dd>
            </dl>
            <dl spacing="compact">
              <dt>Type Name</dt>
              <dd>UnknownTrigger</dd>
              <dt>Reference/Description</dt>
              <dd>
                <xref target="prop-alerts"/>
              </dd>
              <dt>Intended Usage</dt>
              <dd>common</dd>
              <dt>Change Controller</dt>
              <dd>IETF</dd>
            </dl>
          </section>
        </section>
      </section>
      <section anchor="iana-enum-registry" numbered="true" toc="default">
        <name>"JSCalendar Enum Values" Registry</name>
        <t>IANA has created the "JSCalendar Enum Values" registry to allow interoperable extension of semantics for properties with enumerable values. Each such property has a subregistry of allowed values. IANA will set the Reference of the registry to this document, rather than obsoleted <xref target="RFC8984"/>.</t>
        <t>The registration process for a new enum value or adding a new enumerable property is the same as for the "JSCalendar Properties" registry, as defined in <xref target="iana-property-registry-policy" format="default"/>.</t>
        <section anchor="iana-enum-registry-registry-template" numbered="true" toc="default">
          <name>"JSCalendar Enum Values" Registry Property Template</name>
          <t><em>Note for IANA</em>:  This section leaves the original definition of <xref target="RFC8984"/> unchanged.</t>
          <t>This template is for adding a subregistry for a new enumerable property to the "JSCalendar Enum" registry.</t>
          <dl newline="false">
            <dt>Property Name:</dt>
            <dd>These are the name(s) of the property or properties where these values may be used. This <bcp14>MUST</bcp14> be registered in the "JSCalendar Properties" registry.</dd>
            <dt>Context:</dt>
            <dd>This is the list of allowed object types where the property or properties may appear, as registered in the "JSCalendar Properties" registry. This disambiguates where there may be two distinct properties with the same name in different contexts.</dd>
            <dt>Change Controller:</dt>
            <dd> (<tt>IETF</tt> for properties defined in RFCs from the IETF stream).</dd>
            <dt>Initial Contents:</dt>
            <dd>This is the initial list of defined values for this enum, using the template defined in <xref target="iana-enum-registry-value-template" format="default"/>. A subregistry will be created with these values for this property name/context tuple.</dd>
          </dl>
        </section>
        <section anchor="iana-enum-registry-value-template" numbered="true" toc="default">
          <name>"JSCalendar Enum Values" Registry Value Template</name>
          <t><em>Note for IANA</em>:  This section adds the "Intended Use" column to the template.</t>
          <t>This template is for adding a new enum value to a subregistry in the JSCalendar Enum registry.</t>
          <dl newline="false">
            <dt>Enum Value:</dt>
            <dd>This is the verbatim value of the enum.</dd>
            <dt>Reference or Description:</dt>
            <dd>This is a brief description or RFC number and section reference for the semantics of this value.</dd>
            <dt>Intended Use:</dt>
            <dd>This may be "common", "reserved", or "obsolete".</dd>
          </dl>
        </section>
        <section anchor="iana-enum-registry-updated-contents">
          <name>Changes to the JSCalendar Enum Values Registry contents</name>
          <section>
            <name>Updated References</name>
            <t>This document adds the "Intended Use" column to the <xref target="iana-enum-registry-value-template">registry template</xref>. IANA will set the value for each existing entry to "common", except for the special case of the "attendee" roles enum described in <xref target="iana-enum-registry-updated-contents-enum-roles"/>.</t>
            <t>IANA will set the Reference of the registry and its sub-registries to a reference to this document. It will set the Reference column of the property names to a reference to this document.</t>
            <t>IANA will set the Reference columns of the Enum Values sub-registries as follows:</t>
            <table>
              <name>Updates references of the "JSCalendar Enum Values" registry"</name>
              <thead>
                <tr>
                  <th>Registry Name</th>
                  <th>Reference</th>
                </tr>
              </thead>
              <tbody>
                <tr>
                  <td>JSCalendar Enum Values for action (Context: Alert)</td>
                  <td>
                    <xref target="prop-alerts"/>
                  </td>
                </tr>
                <tr>
                  <td>JSCalendar Enum Values for display (Context: Link)</td>
                  <td>
                    <xref target="type-Link"/>
                  </td>
                </tr>
                <tr>
                  <td>JSCalendar Enum Values for features (Context: VirtualLocation)</td>
                  <td>
                    <xref target="prop-virtualLocations"/>
                  </td>
                </tr>
                <tr>
                  <td>JSCalendar Enum Values for freeBusyStatus (Context: Event, Task)</td>
                  <td>
                    <xref target="prop-freeBusyStatus"/>
                  </td>
                </tr>
                <tr>
                  <td>JSCalendar Enum Values for kind (Context: Participant)</td>
                  <td>
                    <xref target="prop-participants"/>
                  </td>
                </tr>
                <tr>
                  <td>JSCalendar Enum Values for participationStatus (Context: Participant)</td>
                  <td>
                    <xref target="prop-participants"/>
                  </td>
                </tr>
                <tr>
                  <td>JSCalendar Enum Values for privacy (Context: Event, Task)</td>
                  <td>
                    <xref target="prop-privacy"/>
                  </td>
                </tr>
                <tr>
                  <td>JSCalendar Enum Values for roles (Context: Participant)</td>
                  <td>
                    <xref target="prop-participants"/>
                  </td>
                </tr>
                <tr>
                  <td>JSCalendar Enum Values for status (Context: Event)</td>
                  <td>
                    <xref target="prop-status-jsevent"/>
                  </td>
                </tr>
              </tbody>
            </table>
          </section>
          <section>
            <name>Removed Registries</name>
            <t>IANA will remove the sub-registry "JSCalendar Enum Values for scheduleAgent (Context: Participant)".</t>
          </section>
          <section>
            <name>Updated Registries</name>
            <section>
              <name>JSCalendar Enum Values for progress (Context: Task, Participant)</name>
              <t>IANA will rename the sub-registry to "JSCalendar Enum Values for progress (Context: Task)". It will set the Reference column of the enum values to a reference to <xref target="prop-progress"/> of this document.</t>
            </section>
            <section>
              <name>JSCalendar Enum Values for relativeTo (Context: OffsetTrigger, Location)</name>
              <t>IANA will rename the sub-registry to "JSCalendar Enum Values for relativeTo (Context: OffsetTrigger)". It will set the Reference column of the enum values to a reference to <xref target="prop-alerts"/> of this document.</t>
            </section>
            <section>
              <name>JSCalendar Enum Values for relation (Context: Relation)</name>
              <t>IANA will set the Reference column of the enum values to a reference to <xref target="type-Relation"/> of this document.</t>
              <t>It will add the following Enum Value entry:</t>
              <dl spacing="compact">
                <dt>Enum Value</dt>
                <dd>snooze</dd>
                <dt>Reference/Description</dt>
                <dd>
                  <xref target="prop-alerts"/>
                </dd>
                <dt>Change Controller</dt>
                <dd>IETF</dd>
              </dl>
            </section>
            <section anchor="iana-enum-registry-updated-contents-enum-roles">
              <name>JSCalendar Enum Values for roles (Context: Context: Participant)</name>
              <t>IANA will set "Intended Use" column of the "attendee" value to "obsolete".</t>
            </section>
          </section>
          <section>
            <name>Added Registries</name>
            <t>IANA will add the following sub-registries to the "JSCalendar Enum Values" registry.</t>
            <section>
              <name>JSCalendar Enum Values for progress (Context: Participant)</name>
              <dl spacing="compact" newline="false" indent="20">
                <dt>Property Name:</dt>
                <dd>progress</dd>
                <dt>Context:</dt>
                <dd>Participant</dd>
                <dt>Change Controller:</dt>
                <dd>IETF</dd>
                <dt>Initial Contents:</dt>
                <dd>
                  <table anchor="tab-iana-enum-progress-participant" align="left">
                    <name>JSCalendar Enum Values for progress (Context: Participant)</name>
                    <thead>
                      <tr>
                        <th align="left">Enum Value</th>
                        <th align="left">Reference or Description</th>
                      </tr>
                    </thead>
                    <tbody>
                      <tr>
                        <td align="left">in-process</td>
                        <td align="left">
                          <xref target="prop-participants" format="default"/>
                        </td>
                      </tr>
                      <tr>
                        <td align="left">completed</td>
                        <td align="left">
                          <xref target="prop-participants" format="default"/>
                        </td>
                      </tr>
                      <tr>
                        <td align="left">failed</td>
                        <td align="left">
                          <xref target="prop-participants" format="default"/>
                        </td>
                      </tr>
                    </tbody>
                  </table>
                </dd>
              </dl>
            </section>
          </section>
        </section>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="CLDR" target="http://cldr.unicode.org/" quoteTitle="true" derivedAnchor="CLDR">
          <front>
            <title>Unicode Common Locale Data Repository</title>
            <author/>
            <date/>
          </front>
        </reference>
        <reference anchor="CSS3" target="https://www.w3.org/TR/css-color-3/" quoteTitle="true" derivedAnchor="CSS3">
          <front>
            <title>CSS Color Module Level 3</title>
            <author initials="T" surname="Çelik" fullname="Tantek Çelik">
              <organization showOnFrontPage="true"/>
            </author>
            <author initials="C" surname="Lilley" fullname="Chris Lilley">
              <organization showOnFrontPage="true"/>
            </author>
            <author initials="L" surname="Baron" fullname="L. David Baron">
              <organization showOnFrontPage="true"/>
            </author>
            <date month="January" year="2022"/>
          </front>
          <refcontent>W3C Recommendation</refcontent>
        </reference>
        <reference anchor="TZDB" target="https://www.iana.org/time-zones" quoteTitle="true" derivedAnchor="TZDB">
          <front>
            <title>Time Zone Database</title>
            <author>
              <organization showOnFrontPage="true">IANA</organization>
            </author>
            <date/>
          </front>
        </reference>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.2397.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.2445.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.3339.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.3986.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.9562.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.4589.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.4648.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5234.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5322.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5545.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5546.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5646.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5870.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6638.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6838.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6901.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7493.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7529.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7809.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.8126.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.8259.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.8288.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.8984.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.9073.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.9074.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.9253.xml"/>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="ISO.9070.1991" target="https://www.iso.org/standard/16645.html" quoteTitle="true" derivedAnchor="ISO.9070.1991">
          <front>
            <title>Information technology -- SGML support facilities -- Registration procedures for public text owner identifiers</title>
            <author>
              <organization showOnFrontPage="true">ISO/IEC</organization>
            </author>
            <date month="April" year="1991"/>
          </front>
          <seriesInfo name="ISO/IEC" value="9070:1991"/>
          <refcontent>Edition 2</refcontent>
        </reference>
        <reference anchor="LOCATIONTYPES" target="https://www.iana.org/assignments/location-type-registry" quoteTitle="true" derivedAnchor="LOCATIONTYPES">
          <front>
            <title>Location Types Registry</title>
            <author>
              <organization showOnFrontPage="true">IANA</organization>
            </author>
          </front>
        </reference>
        <reference anchor="MEDIATYPES" target="https://www.iana.org/assignments/media-types" quoteTitle="true" derivedAnchor="MEDIATYPES">
          <front>
            <title>Media Types</title>
            <author>
              <organization showOnFrontPage="true">IANA</organization>
            </author>
          </front>
        </reference>
        <reference anchor="jmap-calendars" target="https://datatracker.ietf.org/doc/draft-ietf-jmap-calendars/">
          <front>
            <title>JMAP for Calendars</title>
            <author fullname="Neil Jenkins" initials="N.M." surname="Jenkins">
              <organization>Fastmail</organization>
            </author>
            <author fullname="Michael Douglass" initials="M." surname="Douglass">
              <organization>Spherical Cow Group</organization>
            </author>
            <date day="8" month="October" year="2025"/>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-jmap-calendars"/>
        </reference>
        <reference anchor="ical-tasks" target="https://datatracker.ietf.org/doc/draft-ietf-calext-ical-tasks">
          <front>
            <title>Task Extensions to iCalendar</title>
            <author fullname="Michael Douglass" initials="M." surname="Douglass">
              <organization>Bedework Commercial Services</organization>
            </author>
            <author fullname="Adrian Apthorp" initials="A." surname="Apthorp">
              <organization>DHL Express</organization>
            </author>
            <date day="7" month="July" year="2025"/>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-calext-ical-tasks"/>
        </reference>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6376.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7265.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7986.xml"/>
        <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.8607.xml"/>
      </references>
    </references>
    <section anchor="differences-from-rfc8984">
      <name>Differences from RFC 8984</name>
      <t>This section documents all significant differences from RFC 8984. Insignificant differences, such as formatting, grammar or typos are not documented.</t>
      <section>
        <name>Applied Errata</name>
        <t>All verified errata of RFC 8984 was applied to this document:</t>
        <ul>
          <li>
            <eref target="https://www.rfc-editor.org/errata/eid6872">Errata 6872</eref>
          </li>
          <li>
            <eref target="https://www.rfc-editor.org/errata/eid6873">Errata 6873</eref>
          </li>
          <li>
            <eref target="https://www.rfc-editor.org/errata/eid8028">Errata 8028</eref>
          </li>
        </ul>
      </section>
      <section anchor="appendix-obsolete-properties">
        <name>Obsolete Properties</name>
        <t>The following properties became obsolete:</t>
        <!-- excludedRecurrenceRules -->
        <dl newline="true" spacing="normal">
          <dt><strong>excludedRecurrenceRules</strong>:</dt>
          <dd>
            <t>This is incompatible with iCalendar, which deprecated the <xref target="RFC2445" section="4.8.5.2" sectionFormat="parens">EXRULE property</xref> in <xref target="RFC5545"/>.</t>
            <t>See <xref target="RFC8984" section="4.3.4" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- recurrenceRules -->
        <dl newline="true" spacing="normal">
          <dt><strong>recurrenceRules</strong>:</dt>
          <dd>
            <t>This is incompatible with the following definitions of the iCalendar <xref target="RFC5545" section="3.8.5.3" sectionFormat="parens">RRULE property</xref>:</t>
            <ul>
              <li>The RRULE property <bcp14>SHOULD NOT</bcp14> be specified more than once.</li>
              <li>The recurrence set generated with multiple RRULE properties is undefined.</li>
            </ul>
            <t>The newly defined single-valued <xref target="prop-recurrenceRule">recurrenceRule property</xref> replaces it.</t>
            <t>See <xref target="RFC8984" section="4.3.3" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- timeZones -->
        <dl newline="true" spacing="normal">
          <dt><strong>timeZones</strong>:</dt>
          <dd>
            <t>This property was obsoleted for the following reasons:</t>
            <ul>
              <li>Custom time zones in calendaring data increase implementation complexity, introduce inefficiencies and are error-prone, as described for CalDAV and iCalendar in <xref target="RFC7809"/>.</li>
              <li>In practice, the only non-IANA time zone identifiers are Microsoft time zone names. These can be converted to IANA time zones, e.g. using the <eref target="https://icu.unicode.org/">International Components for Unicode</eref> software library.</li>
              <li>The property contradicts the stated goal of JSCalendar to avoid ambiguities and pitfalls of iCalendar, defined in <xref target="RFC8984" section="1.1" sectionFormat="of"/>.</li>
            </ul>
            <t>See <xref target="RFC8984" section="4.7.2" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Link.cid -->
        <dl newline="true" spacing="normal">
          <dt><strong>Link.cid</strong>:</dt>
          <dd>
            <t>This property was obsoleted for the following reasons:</t>
            <ul>
              <li>It only is relevant for rich-text descriptions, but the related iCalendar <xref target="RFC9073" section="6.5" sectionFormat="parens">STYLED-DESCRIPTION property</xref> does not support referring to attached media. </li>
              <li>It only is applicable for Link objects having a "data:" URI as href property value. But even the definition of the Link object recommends not to use "data:" URIs as values in the href property.</li>
              <li>A Link with "data:" URI converts to an iCalendar <xref target="RFC5545" section="3.3.1" sectionFormat="parens">BINARY value</xref>. But these are marginally supported by CalDAV clients, which tend to prefer using WebDAV managed attachments <xref target="RFC8607"/>.</li>
            </ul>
            <t>See <xref target="RFC8984" section="1.4.11" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Location.relativeTo, Location.timeZone -->
        <dl newline="true" spacing="normal">
          <dt><strong>Location.{relativeTo|timeZone}</strong>:</dt>
          <dd>
            <t>These got replaced with the newly defined <xref target="prop-endTimeZone">Event.endTimeZone property</xref>:</t>
            <ul>
              <li>They were meant to be equivalent to the iCalendar <xref target="RFC5545" section="3.8.2.2" sectionFormat="parens">DTEND property</xref>. But the semantics were undefined if multiple Location objects had "relativeTo=end" and the "timeZone" property set.</li>
              <li>Their semantics were undefined for Task objects.</li>
              <li>They were incompatible with the iCalendar <xref target="RFC9073" section="7.2" sectionFormat="parens">VLOCATION component</xref>, which neither defines how to set a time zone identifier or how the VLOCATION relates to start and end.</li>
            </ul>
            <t>See <xref target="RFC8984" section="4.2.5" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Participant.locationId -->
        <dl newline="true" spacing="normal">
          <dt><strong>Participant.locationId</strong>:</dt>
          <dd>
            <t>This is incompatible with the iCalendar <xref target="RFC9073" section="7.1" sectionFormat="parens">PARTICIPANT component</xref>:</t>
            <ul>
              <li>The PARTICIPANT component may contain multiple VLOCATION components and LOCATION properties.</li>
              <li>The PARTICIPANT component does not support referring to other VLOCATION components or LOCATION properties</li>
            </ul>
            <t>The description of the Event object type in <xref target="jsevent"/> reflects this:</t>
            <ul>
              <li>It stated: "Multiple participants may partake in the event at multiple locations."</li>
              <li>It now states: "Multiple participants may partake in the event."</li>
            </ul>
            <t>See <xref target="RFC8984" section="4.4.6" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Participant.language -->
        <dl newline="true" spacing="normal">
          <dt><strong>Participant.language</strong>:</dt>
          <dd>
            <t>No equivalent element exists in iCalendar and its current single-valued definition is likely to conflict with any related future extension of the <xref target="RFC9073" section="7.1" sectionFormat="parens">PARTICIPANT component</xref>.</t>
            <t>See <xref target="RFC8984" section="4.4.6"/>.</t>
          </dd>
        </dl>
        <!-- Participant.progressUpdated, Task.progressUpated -->
        <dl newline="true" spacing="normal">
          <dt><strong>{Participant|Task}.progressUpdated</strong>:</dt>
          <dd>
            <t>This became obsolete for the following reasons:</t>
            <ul>
              <li>It is incompatible with the newly introduced iCalendar <xref target="ical-tasks" section="12.1" sectionFormat="parens">VSTATUS component</xref>, which may occur multiple times in the PARTICIPANT and VTODO components.</li>
              <li>The VSTATUS component introduces new semantics to a task's progress and status, which better be defined by a future JSCalendar extension for tasks.</li>
            </ul>
            <t>See <xref target="RFC8984" section="4.4.6"/> and <xref target="RFC8984" section="5.2.6"/>.</t>
          </dd>
        </dl>
        <!-- TimeZone.*, TimeZoneRule.* -->
        <dl newline="true" spacing="normal">
          <dt><strong>{TimeZone|TimeZoneRule}.*</strong>:</dt>
          <dd>
            <t>All properties defined solely for the TimeZone and TimeZoneRule object types became obsolete, because the "timeZones" property became obsolete.</t>
            <t>See <xref target="RFC8984" section="4.7.2" sectionFormat="of"/>.</t>
          </dd>
        </dl>
      </section>
      <section anchor="appendix-reserved-properties">
        <name>Reserved Properties</name>
        <section toc="exclude">
          <name>JMAP for Calendars</name>
          <t>The following common use properties became reserved for <xref target="jmap-calendars">JMAP for Calendars</xref>:</t>
          <!-- useDefaultAlerts -->
          <dl newline="true" spacing="normal">
            <dt><strong>useDefaultAlerts</strong>:</dt>
            <dd>
              <t>No equivalent element exists in iCalendar and no consensus for default alarms in CalDAV and iCalendar was found at IETF as part of <xref target="RFC9074"/>.</t>
              <t>See <xref target="RFC8984" section="4.4.1" sectionFormat="of"/>.</t>
            </dd>
          </dl>
          <!-- Participant.scheduleSequence -->
          <dl newline="true" spacing="normal">
            <dt><strong>Participant.scheduleSequence</strong>:</dt>
            <dd>
              <t>This requires further work by IETF to update <xref target="RFC5546">iTIP</xref> with the PARTICIPANT component and JSCalendar. This property may later be redefined for common use.</t>
              <t>See <xref target="RFC8984" section="4.4.6" sectionFormat="of"/>.</t>
            </dd>
          </dl>
          <!-- Participant.scheduleUpdated -->
          <dl newline="true" spacing="normal">
            <dt><strong>Participant.scheduleUpdated</strong>:</dt>
            <dd>
              <t>This requires further work by IETF to update <xref target="RFC5546">iTIP</xref> with the PARTICIPANT component and JSCalendar. This property may later be redefined for common use.</t>
              <t>See <xref target="RFC8984" section="4.4.6" sectionFormat="of"/>.</t>
            </dd>
          </dl>
        </section>
        <section toc="exclude">
          <name>Scheduling Extensions for CalDAV and iTIP</name>
          <t>The following common use properties became reserved for future JSCalendar extensions of <xref target="RFC6638">Scheduling Extensions for CalDAV</xref> and <xref target="RFC5546">iTIP</xref>:</t>
          <!-- replyTo -->
          <dl newline="true" spacing="normal">
            <dt><strong>replyTo</strong>:</dt>
            <dd>
              <t>This requires further work by IETF. For compatibility with iCalendar, the newly introduced <xref target="prop-organizerCalendarAddress">organizerCalendarAddress property</xref> replaces it.</t>
              <t>See <xref target="RFC8984" section="4.4.4" sectionFormat="of"/>.</t>
            </dd>
          </dl>
          <!-- requestStatus -->
          <dl newline="true" spacing="normal">
            <dt><strong>requestStatus</strong>:</dt>
            <dd>
              <t>This mainly is applicable in scheduling over CalDAV.</t>
              <t>See <xref target="RFC8984" section="4.4.7" sectionFormat="of"/>.</t>
            </dd>
          </dl>
          <!-- {Event|Task}.sentBy -->
          <dl newline="true" spacing="normal">
            <dt><strong>{Event|Task}.sentBy</strong>:</dt>
            <dd>
              <t>No equivalent element exists in iCalendar and this property mainly is relevant in context of a combined calendaring and mail service. Note that the Participant.sentBy property does <em>not</em> become reserved: it is equivalent to the iCalendar <xref target="RFC5545" section="3.2.18" sectionFormat="parens">SENT-BY</xref> parameter.</t>
              <t>See <xref target="RFC8984" section="4.4.5" sectionFormat="of"/>.</t>
            </dd>
          </dl>
          <!-- Participant.invitedBy -->
          <dl newline="true" spacing="normal">
            <dt><strong>Participant.invitedBy</strong>:</dt>
            <dd>
              <t>This requires further work by IETF. Specifically, the iTIP definitions of the <xref target="RFC5546" section="3.2.3" sectionFormat="parens">REPLY method</xref> and how to forward invitation requests (<xref target="RFC5546" section="4.2.8"/>) must be updated.</t>
              <t>See <xref target="RFC8984" section="4.4.6" sectionFormat="of"/>.</t>
            </dd>
          </dl>
          <!-- Participant.participationComment -->
          <dl newline="true" spacing="normal">
            <dt><strong>Participant.participationComment</strong>:</dt>
            <dd>
              <t>This requires further work by IETF to update <xref target="RFC5546">iTIP</xref> with the PARTICIPANT component or JSCalendar. This property may later be redefined for common use.</t>
              <t>See <xref target="RFC8984" section="4.4.6"/>.</t>
            </dd>
          </dl>
          <!-- Participant.scheduleAgent -->
          <dl newline="true" spacing="normal">
            <dt><strong>Participant.scheduleAgent</strong>:</dt>
            <dd>
              <t>This only is applicable in scheduling over CalDAV.</t>
              <t>See <xref target="RFC8984" section="4.4.6" sectionFormat="of"/>.</t>
            </dd>
          </dl>
          <!-- Participant.scheduleForceSend -->
          <dl newline="true" spacing="normal">
            <dt><strong>Participant.scheduleForceSend</strong>:</dt>
            <dd>
              <t>This only is applicable in scheduling over CalDAV.</t>
              <t>See <xref target="RFC8984" section="4.4.6" sectionFormat="of"/>.</t>
            </dd>
          </dl>
          <!-- Participant.scheduleStatus -->
          <dl newline="true" spacing="normal">
            <dt><strong>Participant.scheduleStatus</strong>:</dt>
            <dd>
              <t>This only is applicable in scheduling over CalDAV.</t>
              <t>See <xref target="RFC8984" section="4.4.6" sectionFormat="of"/>.</t>
            </dd>
          </dl>
          <!-- Participant.sendTo -->
          <dl newline="true" spacing="normal">
            <dt><strong>Participant.sendTo</strong>:</dt>
            <dd>
              <t>This requires further work by IETF. For compatibility with iCalendar, the newly introduced <xref target="prop-participants">Participant.calendarAddress property</xref> replaces it.</t>
              <t>See <xref target="RFC8984" section="4.4.6" sectionFormat="of"/>.</t>
            </dd>
          </dl>
        </section>
        <section toc="exclude">
          <name>Localization Extensions for iCalendar and JSCalendar</name>
          <t>The following properties became reserved for future JSCalendar and iCalendar extensions for multi-lingual calendar data:</t>
          <!-- localizations -->
          <dl newline="true" spacing="normal">
            <dt><strong>localizations</strong>:</dt>
            <dd>
              <t>This requires further work by IETF. The "localizations" property primarily was introduced in JSCalendar for event publishing, but neither the <xref target="RFC9073">Event Publishing extensions for iCalendar</xref> nor other iCalendar extensions define how to localize iCalendar data. This property may later be redefined for common use.</t>
              <t>See <xref target="RFC8984" section="4.6.1" sectionFormat="of"/>.</t>
            </dd>
          </dl>
        </section>
        <section toc="exclude">
          <name>Reserved for Future RFCs</name>
          <t>The following properties became reserved for some future JSCalendar extension RFCs:</t>
          <!-- Location.description, VirtualLocation.description -->
          <dl newline="true" spacing="normal">
            <dt><strong>Location.description, VirtualLocation.description</strong>:</dt>
            <dd>
              <t>This requires further work by IETF. The VirtualLocation "description" property does not convert to any parameter of the CONFERENCE property. It would require to define a new parameter or to introduce a new component to augment the CONFERENCE property with a DESCRIPTION or STYLED-DESCRIPTION property. For consistency, the Location "description" property became reserved, too.</t>
              <t>See <xref target="RFC8984" section="4.2.5" sectionFormat="of"/> and <xref target="RFC8984" section="4.2.6" sectionFormat="of"/>.</t>
            </dd>
          </dl>
        </section>
        <section toc="exclude">
          <name>Reserved for Internal Use</name>
          <t>The following properties became reserved for internal use by JSCalendar:</t>
          <!-- excluded -->
          <dl newline="true" spacing="normal">
            <dt><strong>excluded</strong>:</dt>
            <dd>
              <t>This property name already was defined for internal use only in the recurrenceOverrides property, but registering it for common use had made it appear as being a regular property. Making this a reserved property is to help clarify its purpose. <xref target="prop-recurrenceOverrides"/> has been updated accordingly.</t>
              <t>See <xref target="RFC8984" section="4.3.4" sectionFormat="of"/>.</t>
            </dd>
          </dl>
        </section>
      </section>
      <section anchor="appendix-updated-properties">
        <name>Updated Properties</name>
        <t>The following property definitions were updated:</t>
        <!-- @type -->
        <dl newline="true" spacing="normal">
          <dt><strong>@type</strong>:</dt>
          <dd>
            <t>The original definition required this property be set on every object type. The type and property notation in <xref target="type-and-prop-notation"/> now matches the one in JSContact, and the @type property is optional in the majority of cases.</t>
          </dd>
        </dl>
        <!-- Alert.relatedTo -->
        <dl newline="true" spacing="normal">
          <dt><strong>Alert.relatedTo</strong>:</dt>
          <dd>
            <t>The original definition instructed to set the "parent" relation on a snooze alert. It now instructs to set the newly defined "snooze" relation, for compatibility with the VALARM "SNOOZE" relationship type (<xref target="RFC9074" section="7" sectionFormat="of"/>.</t>
            <t>The original definition did not define that the map keys represent keys of Alert objects in the "alerts" property.</t>
            <t>See <xref target="prop-alerts" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Alert.trigger -->
        <dl newline="true" spacing="normal">
          <dt><strong>Alert.trigger</strong>:</dt>
          <dd>
            <t>JSCalendar now supports default types for properties of type <tt>A|B</tt>. The default type of this property now is <tt>OffsetTrigger</tt>.</t>
            <t>See <xref target="prop-alerts" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- {Event|Task|Group}.color -->
        <dl newline="true" spacing="normal">
          <dt><strong>{Event|Task|Group}.color</strong>:</dt>
          <dd>
            <t>The original definition allowed hexadecimal RGB values, which CSS3 specifies to be either in three-digit or six-digit form. The updated definition only allows them in six-digit form to match the proposed update of the iCalendar COLOR property. It also explicitly defines that values are case-insensitive.</t>
            <t>See <xref target="prop-color" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Link.display -->
        <dl newline="true" spacing="normal">
          <dt><strong>Link.display</strong>:</dt>
          <dd>
            <t>The original definition only allowed one purpose to be set, which is incompatible with the multi-valued iCalendar <xref target="RFC7986" section="6.1" sectionFormat="parens">DISPLAY parameter</xref>. It now supports setting multiple purposes.</t>
            <t>Setting this property does not anymore require the "rel" property of the Link object be set to "icon".</t>
            <t>See <xref target="type-Link" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Link.rel -->
        <dl newline="true" spacing="normal">
          <dt><strong>Link.rel</strong>:</dt>
          <dd>
            <t>The original definition restricted the value of this property to registered link types. It now also allows extension relation types for compatibility with the <xref target="RFC9253" section="6.1" sectionFormat="parens">LINKREL parameter</xref>.</t>
            <t>See <xref target="type-Link" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- misc Participant -->
        <dl newline="true" spacing="normal">
          <dt><strong>Participant.delegatedFrom</strong>,
            <strong>Participant.delegatedTo</strong>,
            <strong>Participant.memberOf</strong>,
          </dt>
          <dd>
            <t>The original definitions required their values to identify Participant objects. This was incompatible with iCalendar when the DELEGATED-TO, DELEGATED-FROM or MEMBER parameters contained a calendar address but no ATTENDEE property with that same calendar address. The new definition now requires the property values to be calendar addresses.</t>
            <t>Also, they now require the calendarAddress property to be set.</t>
            <t>See <xref target="prop-participants" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- misc Participant -->
        <dl newline="true" spacing="normal">
          <dt><strong>Participant.expectReply</strong>,
            <strong>Participant.invitedBy</strong>,
            <strong>Participant.kind</strong>,
            <strong>Participant.participationStatus</strong>,
            <strong>Participant.progress</strong>,
            <strong>Participant.sentBy</strong>:
          </dt>
          <dd>
            <t>The original definitions were incompatible with iCalendar: they did not require the (now reserved) sendTo property to be set, but their equivalent iCalendar parameters require an ATTENDEE property. They now require the calendarAddress property to be set.</t>
            <t>See <xref target="prop-participants" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Participant.progress -->
        <dl newline="true" spacing="normal">
          <dt><strong>Participant.progress</strong>:</dt>
          <dd>
            <t>The original definition was incompatible with iCalendar. It allowed the progress value to be "cancelled", but this is not a supported PARTSTAT parameter value of an ATTENDEE property in a VTODO component. The new definition only supports the progress property values "in-process", "completed" and "failed".</t>
            <t>See <xref target="prop-participants" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Participant.roles -->
        <dl newline="true" spacing="normal">
          <dt><strong>Participant.roles</strong>:</dt>
          <dd>
            <t>The original definition was incompatible with iCalendar:</t>
            <ul>
              <li>It did not cover the "REQ-PARTICIPANT" value of the <xref target="RFC5545" section="3.2.16" sectionFormat="parens">ROLE parameter</xref>. It now defines the new "required" role.</li>
              <li>The "roles" property is multi-valued but the ROLE parameter is single-valued and only allowed to be set once on an ATTENDEE. For compatibility, a precendence of Participant roles got defined for converting roles to iCalendar.</li>
              <li>It was mandatory for a Participant, but the (now reserved) sendTo property was not. This was incompatible with iCalendar, which required an ATTENDEE property to set the ROLE parameter. It now is optional, but requires the calendarAddress property to be set.</li>
              <li>It defined a "contact" role, but this role later got redefined as an enumerated value of the <xref target="RFC9073" section="6.2" sectionFormat="parens">PARTICIPANT-TYPE property</xref>. It now removed this role and leaves defining participant types to a future JSCalendar extension.</li>
              <li>The "attendee" role got removed. There is no equivalent ROLE value in iCalendar and any Participant with a calendarAddress by definition is an ATTENDEE in iCalendar.</li>
              <li>The "owner" role got redefined. It now makes clear that the semantics of the role depend on the calendaring exchange protocol.</li>
            </ul>
            <t>See <xref target="prop-participants" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Relation.relation -->
        <dl newline="true" spacing="normal">
          <dt><strong>Relation.relation</strong>:</dt>
          <dd>
            <t>The original definition specified the empty relation to represent an unspecified relationship. It now defines the empty relation to default to "parent", unless overridden, for compatibility with the <xref target="RFC5545" section="3.8.4.5" sectionFormat="parens">RELATED-TO property</xref>.</t>
            <t>See <xref target="type-Relation" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Task.{due|start} -->
        <dl newline="true" spacing="normal">
          <dt><strong>Task.{due|start}</strong>:</dt>
          <dd>
            <t>The original definition defined these as optional, but this is incompatible with iCalendar: if the Task object's timeZone property is set, then it requires the <xref target="RFC5545" section="3.8.2.3" sectionFormat="parens">DUE property</xref> or <xref target="RFC5545" section="3.8.2.4" sectionFormat="parens">DTSTART property</xref> be set in the VTODO component. It now requires at least one of the "due" or "start" properties be set, if the "timeZone" property is set.</t>
            <t>The original definition did not require the "start" property be set if the "recurrenceRule" property is set. But this is incompatible with the <xref target="RFC5545" section="3.8.5.3" sectionFormat="parens">RRULE property</xref>, which requires the DTSTART property be set in the VTODO component. The "start" property now is required if the "recurrenceRule" or "recurrenceId" properties are set.</t>
            <t>The "showWithoutTime" property having value "true" now requires at least one of the "due" or "start" properties be set.</t>
            <t>See <xref target="jstask-props" sectionFormat="of"/>.</t>
          </dd>
        </dl>
      </section>
      <section anchor="appendix-new-properties">
        <name>New Properties</name>
        <t>The following new properties were defined:</t>
        <!-- mainLocationId -->
        <dl newline="true" spacing="normal">
          <dt><strong>mainLocationId</strong>:</dt>
          <dd>
            <t>This got introduced for better interoperatibility with iCalendar, where the VEVENT and VTODO components allow at most one LOCATION property to be present. While <xref target="RFC9073" section="7.2" sectionFormat="parens">VLOCATION components</xref> may occur multiple times, implementations need to know which Location to choose for the LOCATION property.</t>
            <t>See <xref target="prop-mainLocationId" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- organizerCalendarAddress -->
        <dl newline="true" spacing="normal">
          <dt><strong>organizerCalendarAddress</strong>:</dt>
          <dd>
            <t>This replaces the reserved replyTo property.</t>
            <t>See <xref target="prop-organizerCalendarAddress" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- recurrenceRule -->
        <dl newline="true" spacing="normal">
          <dt><strong>recurrenceRule</strong>:</dt>
          <dd>
            <t>This replaces the obsoleted recurrenceRules property.</t>
            <t>See <xref target="prop-recurrenceRule" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Event.endTimeZone -->
        <dl newline="true" spacing="normal">
          <dt><strong>Event.endTimeZone</strong>:</dt>
          <dd>
            <t>This replaces the obsoleted Location.relativeTo and Location.timeZone properties.</t>
            <t>See <xref target="prop-endTimeZone" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Location.descriptionContentType -->
        <dl newline="true" spacing="normal">
          <dt><strong>Location.descriptionContentType</strong>:</dt>
          <dd>
            <t>This is for compatibility with the iCalendar <xref target="RFC9073" section="6.5" sectionFormat="parens">STYLED-DESCRIPTION property</xref> of the VLOCATION component.</t>
            <t>See <xref target="prop-locations" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Participant.calendarAddress -->
        <dl newline="true" spacing="normal">
          <dt><strong>Participant.calendarAddress</strong>:</dt>
          <dd>
            <t>This replaces the reserved Participant.sendTo property.</t>
            <t>See <xref target="prop-participants" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- Participant.descriptionContentType -->
        <dl newline="true" spacing="normal">
          <dt><strong>Participant.descriptionContentType</strong>:</dt>
          <dd>
            <t>This is for compatibility with the iCalendar <xref target="RFC9073" section="6.5" sectionFormat="parens">STYLED-DESCRIPTION property</xref> of the PARTICIPANT component.</t>
            <t>See <xref target="prop-locations" sectionFormat="of"/>.</t>
          </dd>
        </dl>
        <!-- VirtualLocation.descriptionContentType -->
        <dl newline="true" spacing="normal">
          <dt><strong>VirtualLocation.descriptionContentType</strong>:</dt>
          <dd>
            <t>This is for consistency with the definition of the Location object type. The newly defined VCONFERENCE component will be allowed to contain the <xref target="RFC9073" section="6.5" sectionFormat="parens">STYLED-DESCRIPTION property</xref>.</t>
            <t>See <xref target="prop-virtualLocations" sectionFormat="of"/>.</t>
          </dd>
        </dl>
      </section>
      <section anchor="appendix-obsolete-types">
        <name>Obsolete Types</name>
        <t>The following type definitions became obsolete:</t>
        <!-- TimeZone, TimeZoneRule -->
        <dl newline="true" spacing="normal">
          <dt><strong>TimeZone, TimeZoneRule</strong>:</dt>
          <dd>
            <t>The "timeZones" property became obsolete.</t>
            <t>See <xref target="RFC8984" section="4.7.2" sectionFormat="of"/>.</t>
          </dd>
        </dl>
      </section>
      <section anchor="appendix-updated-types">
        <name>Updated Types</name>
        <t>The following type definitions were updated:</t>
        <!-- Duration, LocalDateTime, UTCDateTime -->
        <dl newline="true" spacing="normal">
          <dt><strong>Duration, LocalDateTime, UTCDateTime</strong>:</dt>
          <dd>
            <t>The original definitions supported fractional seconds. This is incompatible with the iCalendar DATE-TIME and DURATION types defined in <xref target="RFC5545" section="3.3.5"/> and <xref target="RFC5545" section="3.3.6"/>.</t>
          </dd>
        </dl>
      </section>
    </section>
    <section anchor="acknowledgments" numbered="false">
      <name>Acknowledgments</name>
      <t>The authors would like to thank the members of CalConnect for their valuable contributions. This specification originated from the work of the API technical committee of CalConnect: The Calendaring and Scheduling Consortium.</t>
    </section>
  </back>
</rfc>
