<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.34 (Ruby 3.3.8) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-ietf-jmap-refplus-02" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="JMAP Enhanced Result References">JMAP Enhanced Result References</title>

    <author initials="M." surname="De Gennaro" fullname="Mauro De Gennaro">
      <organization abbrev="Stalwart Labs">Stalwart Labs LLC</organization>
      <address>
        <postal>
          <street>1309 Coffeen Avenue, Suite 1200</street>
          <city>Sheridan</city>
          <region>WY</region>
          <code>82801</code>
          <country>USA</country>
        </postal>
        <email>mauro@stalw.art</email>
        <uri>https://stalw.art</uri>
      </address>
    </author>

    <date year="2026" month="June" day="21"/>

    
    <workgroup>JMAP</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<?line 40?>

<t>This document specifies an extension to the JSON Meta Application Protocol (JMAP) that enhances the result reference mechanism defined in <xref target="RFC8620"/>. The extension allows result references to be used in additional contexts beyond method call arguments, specifically within object properties during JMAP /set operations and within FilterCondition objects used in /query operations. Additionally, this specification extends result references to support JSON Path expressions (<xref target="RFC9535"/>) as an alternative to JSON Pointer (<xref target="RFC6901"/>), providing more expressive query capabilities for extracting values from previous method call results. These enhancements enable more efficient data reuse patterns across JMAP method calls, reducing the need for multiple round trips between client and server.</t>



    </abstract>



  </front>

  <middle>


<?line 44?>

<section anchor="introduction"><name>Introduction</name>

<t>JMAP (<xref target="RFC8620"/> — JSON Meta Application Protocol) is a generic protocol for synchronizing data, such as mail, calendars or contacts, between a client and a server. It is optimized for mobile and web environments, and aims to provide a consistent interface to different data types.</t>

<t>One of JMAP's core design principles is its ability to build efficient request chains that minimize the number of round trips between client and server. This is achieved through the result reference mechanism defined in <xref section="3.7" sectionFormat="of" target="RFC8620"/>, which allows method call arguments to reference the results of previous method calls within the same request. When processing a request, the server executes method calls sequentially, and any argument prefixed with "#" (an octothorpe) is resolved by extracting the specified value from a previous method call's result before the current method is executed.</t>

<t>Since the publication of JMAP Core (<xref target="RFC8620"/>) and JMAP for Mail (<xref target="RFC8621"/>), the JMAP ecosystem has expanded significantly with the definition of multiple additional data types and extensions, including JMAP for Calendars (<xref target="I-D.ietf-jmap-calendars"/>), JMAP for Contacts (<xref target="RFC9610"/>), and others. This growth has revealed practical limitations in the current result reference mechanism. Many real-world use cases require creating JMAP objects that incorporate data from other JMAP objects. For example, when creating a CalendarEvent, it is often necessary to copy "Participant" or "Location" objects from an existing event. Similarly, when creating Email objects, reusing attachment information or recipient lists from other messages would be beneficial.</t>

<t>The current result reference mechanism, however, is limited to method call arguments. This restriction prevents result references from being used within the object structures passed to /set methods for creating or updating records, or within FilterCondition objects used in /query methods. These limitations force clients to either make additional round trips to fetch intermediate data or to duplicate data within the request, both of which reduce efficiency.</t>

<t>Furthermore, JMAP Core exclusively uses JSON Pointer (<xref target="RFC6901"/>) syntax for navigating result structures. While JSON Pointer is simple and efficient, it has limited expressive power for certain selection patterns. JSON Path (<xref target="RFC9535"/>), a more recent standard, provides a richer query language for extracting values from JSON structures, including support for filters, array slicing, and more sophisticated selection patterns.</t>

<t>Therefore, this document aims to extend the result references defined in <xref target="RFC8620"/> to be usable in multiple additional contexts, specifically within JMAP /set method calls for object property values and within FilterCondition objects used in /query methods. Additionally, this specification defines support for JSON Path (<xref target="RFC9535"/>) expressions as an optional alternative to JSON Pointer, enabling more powerful value extraction capabilities while maintaining backward compatibility with existing implementations.</t>

<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>

<?line -18?>

</section>
<section anchor="addition-to-the-capabilities-object"><name>Addition to the Capabilities Object</name>

<t>The capabilities object is returned as part of the JMAP Session object; see <xref section="2" sectionFormat="of" target="RFC8620"/>. This document defines one additional capability URI.</t>

<section anchor="urnietfparamsjmaprefplus"><name>urn:ietf:params:jmap:refplus</name>

<t>This capability indicates that the server supports enhanced result references as defined in this specification. When this capability is present, clients may use result references within /set method object properties and FilterCondition objects, in addition to the standard method call argument usage defined in <xref target="RFC8620"/>.</t>

<t>The value of this property in an account's "capabilities" property is an object that <bcp14>MUST</bcp14> contain the following information on server capabilities and permissions for that account:</t>

<dl newline="true">
  <dt><strong>jsonPath</strong>: <spanx style="verb">Boolean</spanx></dt>
  <dd>
    <t>Whether the server supports JSON Path expressions in result references. If true, result references may use JSON Path (<xref target="RFC9535"/>) syntax in addition to JSON Pointer (<xref target="RFC6901"/>) syntax. If false or absent, only JSON Pointer syntax is supported.</t>
  </dd>
</dl>

<t>The value of this property in the JMAP Session "accountCapabilities" property is an empty object.</t>

</section>
</section>
</section>
<section anchor="enhanced-result-references"><name>Enhanced Result References</name>

<t>Enhanced result references extend the existing result reference mechanism defined in <xref section="3.7" sectionFormat="of" target="RFC8620"/> to enable broader applicability and more expressive value extraction. Specifically, enhanced result references support two key extensions to the base mechanism:</t>

<t>First, enhanced result references may be used in additional contexts beyond method call arguments. They may be used anywhere within a "Foo" object when creating or updating such an object via the Foo/set method, allowing property values to be derived from previous method call results. They may also be used within FilterCondition objects in Foo/query method calls, enabling dynamic query construction based on prior results.</t>

<t>Second, enhanced result references optionally support JSON Path (<xref target="RFC9535"/>) expressions as an alternative to JSON Pointer (<xref target="RFC6901"/>) for extracting values from result structures. JSON Path provides more sophisticated query capabilities, including array filtering, recursive descent, and complex selection patterns, while JSON Pointer remains the baseline requirement for all implementations.</t>

<t>The syntax and resolution mechanism for enhanced result references follows the same fundamental pattern as standard result references, with extensions to accommodate the new contexts and optional JSON Path support. Backward compatibility is maintained: clients that do not use enhanced result references, and servers that do not advertise the <spanx style="verb">urn:ietf:params:jmap:refplus</spanx> capability, interoperate normally using the base result reference mechanism from <xref target="RFC8620"/>.</t>

<section anchor="json-path-support"><name>JSON Path Support</name>

<t>JSON Path (<xref target="RFC9535"/>) is a query language for JSON that provides powerful capabilities for selecting and extracting values from JSON structures. While JSON Pointer (<xref target="RFC6901"/>) provides a simple notation for referencing a specific value within a JSON document using a sequence of reference tokens, JSON Path offers a more expressive syntax that supports complex queries including filters, recursive descent, array slicing, and wildcard selections.</t>

<section anchor="comparison-with-json-pointer"><name>Comparison with JSON Pointer</name>

<t>The key differences between JSON Pointer and JSON Path include:</t>

<t><list style="symbols">
  <t>JSON Pointer uses a simple path syntax with "/" separators and identifies exactly one value. JSON Path uses a richer syntax with multiple selector types and can return zero, one, or multiple values.</t>
  <t>JSON Pointer is deterministic and always produces the same result for a given document. JSON Path queries may be order-dependent when multiple values match.</t>
  <t>JSON Pointer has no conditional or filtering capabilities. JSON Path supports filter expressions, enabling selection based on value predicates.</t>
  <t>JSON Pointer requires exact knowledge of the structure. JSON Path supports recursive descent (..) allowing queries to find values at any depth.</t>
</list></t>

</section>
<section anchor="support-and-capabilities"><name>Support and Capabilities</name>

<t>Enhanced result references extend the base result reference mechanism to optionally support JSON Path expressions. This support is indicated by the "jsonPath" property in the account capabilities being set to true. Servers <bcp14>MAY</bcp14> implement JSON Path support, as it can be more resource-intensive than JSON Pointer due to the potential for complex query evaluation.</t>

<t>When a server supports JSON Path, enhanced result references may use JSON Path syntax as an alternative to JSON Pointer syntax in the "path" property of a ResultReference object. To indicate that a path should be interpreted as a JSON Path expression rather than a JSON Pointer, the path <bcp14>MUST</bcp14> begin with "$" (dollar sign), which is the root node identifier in JSON Path syntax. Paths not beginning with "$" are interpreted as JSON Pointer expressions following the rules in <xref target="RFC8620"/>.</t>

</section>
<section anchor="validation-requirements"><name>Validation Requirements</name>

<t>If the JSON Path expression is syntactically invalid according to <xref target="RFC9535"/>, the server <bcp14>MUST</bcp14> reject the method call with an "invalidResultReference" error. The error description <bcp14>SHOULD</bcp14> indicate the syntax error where possible.</t>

<t>If a client attempts to use a JSON Path expression (path beginning with "$") but the server does not support JSON Path (jsonPath capability is false or absent), the server <bcp14>MUST</bcp14> reject the method call with an "invalidResultReference" error. The error description <bcp14>SHOULD</bcp14> indicate that JSON Path is not supported.</t>

<t>Servers supporting JSON Path <bcp14>MUST</bcp14> implement the complete JSON Path specification as defined in <xref target="RFC9535"/>, including all standard function extensions. This requirement ensures consistent behaviour across implementations and guarantees that clients can rely on the full expressiveness of the JSON Path query language when composing requests. However, servers <bcp14>MAY</bcp14> limit the complexity of JSON Path expressions for security or performance reasons, for example by restricting maximum expression length, maximum result set size, or computational complexity. If a server rejects a valid JSON Path expression due to such limitations, it <bcp14>SHOULD</bcp14> return an "invalidResultReference" error with a description indicating the specific limitation encountered.</t>

</section>
</section>
<section anchor="resolution-algorithm"><name>Resolution Algorithm</name>

<t>This section defines the algorithm for resolving enhanced result references, which extends the base resolution mechanism defined in <xref section="3.7" sectionFormat="of" target="RFC8620"/> to handle both JSON Path expressions and extended JSON Pointer expressions (including wildcard support).</t>

<t>When processing a ResultReference object, the server <bcp14>MUST</bcp14> follow these steps:</t>

<t><list style="numbers" type="1">
  <t>Resolve the "resultOf" and "name" properties to identify the target method response, as defined in <xref section="3.7" sectionFormat="of" target="RFC8620"/>.</t>
  <t>Identify the second element of the method response array (the arguments object) as the target JSON structure for path evaluation.</t>
  <t>Determine whether the "path" property uses JSON Path or JSON Pointer syntax:
  <list style="symbols">
      <t>If the path begins with "$" (dollar sign), treat it as a JSON Path expression.</t>
      <t>Otherwise, treat it as a JSON Pointer expression.</t>
    </list></t>
  <t>Evaluate the path expression against the target JSON structure according to the appropriate specification (<xref target="RFC9535"/> for JSON Path, <xref target="RFC6901"/> for JSON Pointer).</t>
  <t>Apply the type-specific resolution rules defined in this section to produce the final resolved value.</t>
</list></t>

<section anchor="resolving-json-path-references"><name>Resolving JSON Path References</name>

<t>When processing a ResultReference with a JSON Path expression, the server <bcp14>MUST</bcp14>:</t>

<t><list style="numbers" type="1">
  <t>Apply the JSON Path expression (the "path" value) to the arguments object of the identified response.</t>
  <t>Evaluate the JSON Path expression according to <xref target="RFC9535"/> to produce a nodelist.</t>
  <t>Determine the expected type of the property being set and resolve the nodelist according to the following type-specific rules.</t>
</list></t>

<t>The nodelist produced by JSON Path evaluation <bcp14>MUST</bcp14> be resolved according to the expected type of the target property:</t>

<t>For properties that expect <strong>JSON primitive types</strong> (String, Boolean, Number as defined in <xref target="RFC8259"/>, or null) or a <strong>single JMAP object</strong> type:</t>

<t><list style="symbols">
  <t>If the nodelist contains exactly one node, use that node's value as the resolved value.</t>
  <t>If the nodelist contains zero nodes, use null as the resolved value.</t>
  <t>If the nodelist contains more than one node, the result reference resolution fails with an "invalidResultReference" error.</t>
</list></t>

<t>For properties that expect an <strong>array type</strong> (denoted as "A[]" in <xref section="1.1" sectionFormat="of" target="RFC8620"/>, where A[] is an array of values of type A):</t>

<t><list style="symbols">
  <t>Map the nodelist to an array containing the value of each node in the nodelist, in the order specified by <xref target="RFC9535"/>.</t>
  <t>If the nodelist contains zero nodes, use an empty array as the resolved value.</t>
  <t>If the nodelist contains one or more nodes, use an array containing all node values as the resolved value.</t>
</list></t>

<t>For properties that expect a <strong>map type</strong> (denoted as "A[B]" in <xref section="1.1" sectionFormat="of" target="RFC8620"/>, where the keys are of type A and the values are of type B):</t>

<t><list style="symbols">
  <t>If the nodelist contains exactly one node and that node's value is a JSON object conforming to the A[B] type, use that object as the resolved value.</t>
  <t>If the nodelist contains zero nodes, use an empty object {} as the resolved value.</t>
  <t>If the nodelist contains more than one node, or if the single node's value is not a JSON object, the result reference resolution fails with an "invalidResultReference" error.</t>
</list></t>

</section>
<section anchor="resolving-json-pointer-references"><name>Resolving JSON Pointer References</name>

<t>JSON Pointer expressions, as defined in <xref target="RFC6901"/>, provide a deterministic path to a single value within a JSON structure. However, <xref target="RFC8620"/> extends JSON Pointer syntax to support wildcards ("*") in certain contexts, allowing a single pointer to match multiple values. This extension is maintained in enhanced result references.</t>

<t>When processing a ResultReference with a JSON Pointer expression, the server <bcp14>MUST</bcp14>:</t>

<t><list style="numbers" type="1">
  <t>Apply the JSON Pointer expression (the "path" value) to the arguments object of the identified response.</t>
  <t>Evaluate the JSON Pointer expression according to <xref target="RFC6901"/>, with wildcard extensions as defined in <xref target="RFC8620"/>.</t>
  <t>Determine the expected type of the property being set and resolve according to the following type-specific rules.</t>
</list></t>

<t>The result produced by JSON Pointer evaluation (which may be a single value or multiple values when wildcards are used) <bcp14>MUST</bcp14> be resolved according to the expected type of the target property:</t>

<t>For properties that expect <strong>JSON primitive types</strong> (String, Boolean, Number as defined in <xref target="RFC8259"/>, or null) or a <strong>single JMAP object</strong> type:</t>

<t><list style="symbols">
  <t>If the pointer identifies exactly one value, use that value as the resolved value.</t>
  <t>If the pointer contains wildcards and matches zero values, use null as the resolved value.</t>
  <t>If the pointer contains wildcards and matches more than one value, the result reference resolution fails with an "invalidResultReference" error.</t>
  <t>If the pointer does not contain wildcards and does not match any value, the result reference resolution fails with an "invalidResultReference" error (per <xref target="RFC6901"/>).</t>
</list></t>

<t>For properties that expect an <strong>array type</strong> (denoted as "A[]" in <xref section="1.1" sectionFormat="of" target="RFC8620"/>, where A[] is an array of values of type A):</t>

<t><list style="symbols">
  <t>If the pointer identifies a single value that is already an array, use that array as the resolved value.</t>
  <t>If the pointer contains wildcards and matches multiple values, collect all matched values into an array in the order they appear in the document structure.</t>
  <t>If the pointer contains wildcards and matches zero values, use an empty array as the resolved value.</t>
  <t>If the pointer identifies a single value that is not an array, create an array containing that single value as the resolved value.</t>
</list></t>

<t>For properties that expect a <strong>map type</strong> (denoted as "A[B]" in <xref section="1.1" sectionFormat="of" target="RFC8620"/>, where the keys are of type A and the values are of type B):</t>

<t><list style="symbols">
  <t>If the pointer identifies exactly one value and that value is a JSON object conforming to the A[B] type, use that object as the resolved value.</t>
  <t>If the pointer contains wildcards and matches zero values, use an empty object {} as the resolved value.</t>
  <t>If the pointer contains wildcards and matches more than one value, or if the single identified value is not a JSON object, the result reference resolution fails with an "invalidResultReference" error.</t>
</list></t>

</section>
<section anchor="type-validation"><name>Type Validation</name>

<t>After applying the type-specific resolution rules, the server <bcp14>MUST</bcp14> validate that the resolved value conforms to the expected type for the property. If type validation fails after resolution, the server <bcp14>MUST</bcp14> reject the operation with an "invalidProperties" error (for /set operations) or an "invalidArguments" error (for /query operations).</t>

</section>
</section>
<section anchor="usage-in-set-methods"><name>Usage in /set Methods</name>

<t>Enhanced result references may be used anywhere within object property values when creating or updating objects via the Foo/set method. This enables efficient reuse of data from previous method calls when constructing new objects or modifying existing ones.</t>

<t>To use an enhanced result reference within an object property, the property name is prefixed with "#" (an octothorpe), and the value is set to a ResultReference object as defined in <xref section="3.7" sectionFormat="of" target="RFC8620"/>. This follows the same pattern as using result references in method call arguments. For example, to set a property "participants" to a value from a previous result, the object would include a property "#participants" with a ResultReference value.</t>

<t>Enhanced result references may be used at any depth within the object structure, not just at the top level. For nested objects and arrays, result references can be applied to properties at any level of nesting. The server <bcp14>MUST</bcp14> recursively process all levels of object and array nesting to resolve all result references before validating the complete object structure.</t>

<t>When processing a Foo/set method call, the server <bcp14>MUST</bcp14> examine all objects in the "create" and "update" arguments for properties with names beginning with "#". For each such property found, the server <bcp14>MUST</bcp14>:</t>

<t><list style="numbers" type="1">
  <t>Remove the "#" prefix to determine the actual property name.</t>
  <t>Resolve the ResultReference value following the resolution algorithm defined in <xref section="3.7" sectionFormat="of" target="RFC8620"/>, with the extensions defined in this specification.</t>
  <t>Set the actual property to the resolved value.</t>
  <t>Remove the property with the "#" prefix from the object.</t>
</list></t>

<t>If a result reference fails to resolve, the server <bcp14>MUST</bcp14> reject the creation or update of that specific object with a SetError of type "invalidResultReference". The SetError <bcp14>SHOULD</bcp14> include a description indicating which property reference failed and why.</t>

<t>If an object contains both a property name with "#" prefix and the same property name without the prefix (e.g., both "#participants" and "participants"), the server <bcp14>MUST</bcp14> reject the creation or update with a SetError of type "invalidProperties", as this represents an ambiguous specification.</t>

<t>The resolved value <bcp14>MUST</bcp14> be of a type appropriate for the property being set. If the resolved value does not match the expected type for the property, the server <bcp14>MUST</bcp14> reject the creation or update with a SetError of type "invalidProperties". Type validation occurs after result reference resolution but before other property validation.</t>

<section anchor="usage-in-patch-objects"><name>Usage in Patch Objects</name>

<t>Enhanced result references may also be used as values within patch objects, as defined in <xref section="5.3" sectionFormat="of" target="RFC8620"/>. A patch object is used to update specific properties of an existing object without having to send the entire object. When using result references in patch objects, special syntax rules apply:</t>

<t>The patch object key (the path to the property being patched) <bcp14>MUST</bcp14> be a JSON Pointer as specified in <xref target="RFC6901"/>, and <bcp14>MUST</bcp14> be prefixed with "#" to indicate that the value is a result reference. For example, to patch a property "locations/a1/coordinates" with a value from a previous result, the patch object would include a key "#locations/a1/coordinates" with a ResultReference value.</t>

<t>The value associated with the prefixed JSON Pointer key is a ResultReference object. This ResultReference may use either JSON Pointer or JSON Path (if supported by the server) in its "path" property to extract the value from the previous method result.</t>

<t>When processing patch objects, the server <bcp14>MUST</bcp14>:</t>

<t><list style="numbers" type="1">
  <t>Identify keys in the patch object that begin with "#".</t>
  <t>Remove the "#" prefix to obtain the JSON Pointer path to be patched.</t>
  <t>Resolve the ResultReference value according to the resolution algorithm.</t>
  <t>Apply the resolved value to the location specified by the JSON Pointer path in the target object.</t>
</list></t>

<t>If a result reference in a patch object fails to resolve, the server <bcp14>MUST</bcp14> reject the update with a SetError of type "invalidResultReference".</t>

<t>It is important to note that while the patch object key (the path) <bcp14>MUST</bcp14> use JSON Pointer syntax, the ResultReference value's "path" property may use either JSON Pointer or JSON Path syntax (if the server supports JSON Path).</t>

</section>
</section>
<section anchor="usage-in-filtercondition-objects"><name>Usage in FilterCondition Objects</name>

<t>Enhanced result references may be used within FilterCondition objects in Foo/query method calls. This enables dynamic query construction where filter criteria are derived from the results of previous method calls in the same request.</t>

<t>To use an enhanced result reference within a FilterCondition, the filter property name is prefixed with "#" (an octothorpe), and the value is set to a ResultReference object. For example, to filter based on a dynamically determined mailbox id, the FilterCondition would include "#inMailbox" rather than "inMailbox".</t>

<t>When processing a Foo/query method call, the server <bcp14>MUST</bcp14> examine the "filter" argument and any nested FilterCondition objects for properties with names beginning with "#". For each such property found, the server <bcp14>MUST</bcp14>:</t>

<t><list style="numbers" type="1">
  <t>Remove the "#" prefix to determine the actual filter property name.</t>
  <t>Resolve the ResultReference value following the resolution algorithm defined in <xref section="3.7" sectionFormat="of" target="RFC8620"/>, with the extensions defined in this specification.</t>
  <t>Replace the property with "#" prefix with a property of the actual name, having the resolved value.</t>
</list></t>

<t>If a result reference in a FilterCondition fails to resolve, the server <bcp14>MUST</bcp14> reject the entire query method call with an error response of type "invalidResultReference". The error response <bcp14>SHOULD</bcp14> include a description indicating which filter property reference failed and why.</t>

<t>If a FilterCondition contains both a property name with "#" prefix and the same property name without the prefix (e.g., both "#inMailbox" and "inMailbox"), the server <bcp14>MUST</bcp14> reject the query with an "invalidArguments" error, as this represents an ambiguous filter specification.</t>

<t>The resolved value <bcp14>MUST</bcp14> be of a type appropriate for the filter property being set. If the resolved value does not match the expected type for that filter property, the server <bcp14>MUST</bcp14> reject the query with an "invalidArguments" error.</t>

<t>Enhanced result references in FilterConditions support the full range of filter compositions defined by JMAP specifications, including nested FilterCondition objects combined with FilterOperators. The server <bcp14>MUST</bcp14> recursively process all levels of FilterCondition nesting to resolve all result references before evaluating the query.</t>

</section>
</section>
<section anchor="implementation-considerations-for-intermediate-layers"><name>Implementation Considerations for Intermediate Layers</name>

<t>A design goal of enhanced result references is that reference resolution can be performed as a purely syntactical transformation, independent of the semantics of specific JMAP method calls. This property enables reference resolution to be implemented in a generic layer of the JMAP server or in an intermediary proxy without requiring knowledge of the internal structure or behaviour of individual methods.</t>

<section anchor="method-agnostic-resolution"><name>Method-Agnostic Resolution</name>

<t>Reference resolution operates exclusively on JSON structures and does not require understanding of the types, properties, or semantics defined by specific JMAP specifications. The resolution process treats method call arguments and responses as opaque JSON documents, applying JSON Pointer or JSON Path expressions to extract values without interpreting their meaning.</t>

<t>The type-specific resolution rules defined in this specification (determining whether a resolved value should be treated as a single value, an array, or a map) are applied by the JMAP method implementation layer, not by the reference resolution layer. This separation ensures that a proxy or generic preprocessing component need not possess knowledge of individual method signatures or property type definitions.</t>

</section>
<section anchor="recommended-architecture"><name>Recommended Architecture</name>

<t>Implementations <bcp14>MAY</bcp14> separate reference resolution into two distinct phases:</t>

<t><list style="symbols">
  <t><strong>Syntactic Resolution Phase</strong>: A generic reference resolution layer (which may be a proxy, a preprocessing component, or a dedicated part of the JMAP server) identifies all ResultReference objects within the request. For each reference, it evaluates the corresponding JSON Pointer or JSON Path expression against the appropriate previous method result, producing a nodelist as defined in <xref target="RFC9535"/> or a single value as defined in <xref target="RFC6901"/>. The resolution layer then replaces the ResultReference object with the extracted value or values using an internal representation suitable for communication with the method execution layer.</t>
  <t><strong>Method Execution Phase</strong>: The JMAP server component responsible for executing specific method calls receives the request with result references replaced by their resolved values. The method implementation applies the type-specific interpretation rules defined in this specification, validating that the resolved values conform to the expected types for each property.</t>
</list></t>

<t>The internal representation used between these phases is an implementation detail and is not specified by this document. Implementations might, for example, represent resolved nodelists as JSON arrays internally, with the method execution layer extracting single values or validating map structures as appropriate. Alternatively, implementations might use other internal data structures suited to their architecture.</t>

</section>
</section>
<section anchor="examples"><name>Examples</name>

<t>This section provides additional examples demonstrating the use of enhanced result references in various contexts.</t>

<section anchor="usage-in-set"><name>Usage in /set</name>

<t>Example using JSON Path (assuming server supports jsonPath capability):</t>

<figure><sourcecode type="json"><![CDATA[
[
  ["CalendarEvent/query", {
    "accountId": "a1",
    "filter": {
      "uid": "meeting-template-001"
    }
  }, "c0"],
  ["CalendarEvent/get", {
    "accountId": "a1",
    "#ids": {
      "resultOf": "c0",
      "name": "CalendarEvent/query",
      "path": "/ids"
    },
    "properties": ["participants", "locations"]
  }, "c1"],
  ["CalendarEvent/set", {
    "accountId": "a1",
    "create": {
      "new-event": {
        "calendarIds": {"cal-1": true},
        "title": "Team Sync",
        "start": "2025-11-01T14:00:00Z",
        "duration": "PT1H",
        "#participants": {
          "resultOf": "c1",
          "name": "CalendarEvent/get",
          "path": "$.list[0].participants"
        },
        "#locations": {
          "resultOf": "c1",
          "name": "CalendarEvent/get",
          "path": "$.list[0].locations"
        }
      }
    }
  }, "c2"]
]
]]></sourcecode></figure>

<t>In this example, the new calendar event reuses the participants and locations from a template event retrieved in previous calls. The server would resolve the result references before creating the event, effectively copying those complex object values without requiring the client to extract and reformat them.</t>

</section>
<section anchor="usage-in-set-patch-objects"><name>Usage in /set patch objects</name>

<t>Example of using result references in a patch object (assuming server supports jsonPath capability):</t>

<figure><sourcecode type="json"><![CDATA[
[
  ["CalendarEvent/get", {
    "accountId": "a1",
    "ids": ["event-template"],
    "properties": [ "locations", 
                    "organizerCalendarAddress",
                    "participants"]
  }, "c0"],
  ["CalendarEvent/set", {
    "accountId": "a1",
    "update": {
      "event-123": {
        "#locations/a1": {
          "resultOf": "c0",
          "name": "CalendarEvent/get",
          "path": "$.list[0].locations.loc1"
        },
        "#organizerCalendarAddress": {
          "resultOf": "c0",
          "name": "CalendarEvent/get",
          "path": "$.list[0].organizerCalendarAddress"
        },
        "#participants/p1": {
          "resultOf": "c0",
          "name": "CalendarEvent/get",
          "path": "$.list[0].participants[?@.roles.chair]"
        }
      }
    }
  }, "c1"]
]
]]></sourcecode></figure>

<t>In this example, the patch object updates specific properties of event-123 using values extracted from a template event. The patch updates a single location entry ("locations/a1"), copies the organizer's calendar address, and adds a participant ("participants/p1") by extracting a participant with the "chair" role from the template using a JSON Path filter expression. The patch keys "#locations/a1", "#organizerCalendarAddress", and "#participants/p1" use JSON Pointer syntax (prefixed with "#"), while the ResultReference path properties use a mix of JSON Path expressions (including the filter expression for selecting the chair participant) and simple paths.</t>

</section>
<section anchor="usage-in-query-filtercondition"><name>Usage in /query FilterCondition</name>

<t>Example using JSON Path for array extraction (assuming server supports jsonPath capability):</t>

<figure><sourcecode type="json"><![CDATA[
[
  ["Mailbox/query", {
    "accountId": "a1",
    "filter": {
      "role": "inbox"
    }
  }, "c0"],
  ["Email/query", {
    "accountId": "a1",
    "filter": {
      "#inMailboxOtherThan": {
        "resultOf": "c0",
        "name": "Mailbox/query",
        "path": "$.ids[0]"
      },
      "from": "boss@example.com"
    },
    "sort": [{"property": "receivedAt", "isAscending": false}],
    "limit": 50
  }, "c1"]
]
]]></sourcecode></figure>

<t>In this example, the Email/query uses a dynamically resolved mailbox id from the previous Mailbox/query call. The JSON Path expression <spanx style="verb">$.ids[0]</spanx> extracts the first mailbox id from the query result. The server resolves this reference before executing the email query, effectively filtering emails that are not in the user's inbox and are from a specific sender.</t>

</section>
<section anchor="extracting-multiple-values-with-json-path"><name>Extracting Multiple Values with JSON Path</name>

<t>Example demonstrating JSON Path for extracting multiple values:</t>

<figure><artwork><![CDATA[
[
  ["Email/get", {
    "accountId": "a1",
    "ids": ["template-email-id"],
    "properties": ["attachments"],
    "bodyProperties": ["blobId", "name", "type"]
  }, "c0"],
  ["Email/set", {
    "accountId": "a1",
    "create": {
      "new-email": {
        "mailboxIds": {
          "inbox-id": true
        },
        "subject": "Quarterly Reports",
        "from": [{"email": "sender@example.com"}],
        "to": [{"email": "recipient@example.com"}],
        "#attachments": {
          "resultOf": "c0",
          "name": "Email/get",
          "path": "$.list[0].attachments[?@.name && 
                @.name.toLowerCase().endsWith('.pdf')]"
        }
      }
    }
  }, "c1"]
]
]]></artwork></figure>

<t>In this example, the JSON Path expression <spanx style="verb">$.list[0].attachments[?@.name &amp;&amp; @.name.toLowerCase().endsWith('.pdf')]</spanx> extracts all EmailBodyPart objects from the attachments array that have a "name" property ending with ".pdf" (case-insensitive). The result would be an array of EmailBodyPart objects (each containing <spanx style="verb">blobId</spanx>, <spanx style="verb">name</spanx> and <spanx style="verb">type</spanx>) that is then used to populate the attachments property of the new email, effectively copying only the PDF attachments from the template email.</t>

</section>
</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t>The security considerations described in <xref target="RFC8620"/> and <xref target="RFC9535"/> apply to this specification. This section discusses additional security implications introduced by allowing result references to be used in object properties and FilterCondition objects, and by supporting JSON Path expressions.</t>

<section anchor="denial-of-service-considerations"><name>Denial of Service Considerations</name>

<t>Enhanced result references, particularly when combined with JSON Path support, introduce additional denial of service (DoS) vectors that implementations must address.</t>

<section anchor="computational-complexity-of-json-path"><name>Computational Complexity of JSON Path</name>

<t>JSON Path expressions can be significantly more computationally expensive to evaluate than JSON Pointer references. Servers supporting JSON Path <bcp14>MUST</bcp14> implement appropriate safeguards against excessive resource consumption:</t>

<t><list style="symbols">
  <t>Servers <bcp14>SHOULD</bcp14> enforce limits on the complexity of JSON Path expressions, such as maximum expression length, maximum nesting depth of selectors, or maximum number of filter predicates.</t>
  <t>Servers <bcp14>SHOULD</bcp14> enforce timeouts on JSON Path evaluation to prevent indefinitely long computations.</t>
  <t>Servers <bcp14>SHOULD</bcp14> limit the size of nodelists that can be produced by a single JSON Path expression. An expression that matches a very large number of nodes could consume excessive memory.</t>
  <t>Servers <bcp14>SHOULD</bcp14> consider the cumulative cost of evaluating multiple result references in a single request. An attacker might attempt to overwhelm the server by including many complex JSON Path expressions in a single request.</t>
</list></t>

<t>Servers that implement these limitations <bcp14>MUST</bcp14> return an "invalidResultReference" error when a limit is exceeded, with a description that indicates the nature of the limitation where possible without revealing sensitive operational details.</t>

</section>
<section anchor="resource-exhaustion-through-reference-chains"><name>Resource Exhaustion Through Reference Chains</name>

<t>Enhanced result references enable longer and more complex chains of dependent method calls within a single request. While this is a design goal that improves efficiency, it also creates opportunities for resource exhaustion:</t>

<t><list style="symbols">
  <t>An attacker might construct requests with deeply nested result reference dependencies that require the server to maintain large amounts of intermediate state.</t>
  <t>The expanded use of result references in /set operations means that a single method call might need to resolve many result references across complex nested object structures.</t>
  <t>Result references in FilterCondition objects might require repeated evaluation of the same reference multiple times during query execution.</t>
</list></t>

<t>Servers <bcp14>SHOULD</bcp14> enforce reasonable limits on the complexity of result reference usage, such as:</t>

<t><list style="symbols">
  <t>Maximum number of result references per request</t>
  <t>Maximum number of result references per method call</t>
  <t>Maximum depth of property nesting when resolving result references in /set operations</t>
  <t>Maximum number of FilterCondition objects containing result references in a single query</t>
</list></t>

<t>These limits <bcp14>SHOULD</bcp14> be documented and consistent with other JMAP request limits defined in <xref target="RFC8620"/>.</t>

</section>
<section anchor="algorithmic-complexity-attacks"><name>Algorithmic Complexity Attacks</name>

<t>Certain combinations of JSON Path expressions and data structures can exhibit pathological performance characteristics. For example:</t>

<t><list style="symbols">
  <t>Recursive descent (..) combined with wildcard selectors on deeply nested structures can produce very large intermediate results.</t>
  <t>Filter expressions with complex predicates applied to large arrays can require substantial computation.</t>
  <t>JSON Path expressions that produce large nodelists, when used multiple times within a single request, can cause quadratic or worse time complexity.</t>
</list></t>

<t>Servers <bcp14>SHOULD</bcp14> implement query cost analysis and impose limits on expensive operations. When possible, servers <bcp14>SHOULD</bcp14> detect potentially problematic patterns before full evaluation and reject them proactively.</t>

</section>
</section>
<section anchor="data-integrity-and-validation-concerns"><name>Data Integrity and Validation Concerns</name>

<t>The use of result references in /set operations creates additional considerations for data validation and integrity.</t>

<section anchor="type-confusion"><name>Type Confusion</name>

<t>Result references resolve to values of arbitrary JSON types. When these values are used to populate object properties or filter conditions, type mismatches can occur. While this specification requires servers to validate types after resolution, implementations must be careful to avoid type confusion vulnerabilities:</t>

<t><list style="symbols">
  <t>Type validation <bcp14>MUST</bcp14> occur after result reference resolution but before the value is used in any security-sensitive operation.</t>
  <t>Servers <bcp14>MUST NOT</bcp14> make assumptions about the type of a resolved value based on the context. The value type must be explicitly checked.</t>
  <t>String-to-number or string-to-boolean coercions <bcp14>MUST NOT</bcp14> be performed automatically, as these can lead to unexpected behavior and potential security issues.</t>
</list></t>

</section>
<section anchor="injection-attacks"><name>Injection Attacks</name>

<t>When result references are used to populate FilterCondition properties, there is a potential for filter injection attacks. Consider a scenario where a result reference is used to set a filter property that expects a simple string value, but the resolution produces a complex object or an array:</t>

<t><list style="symbols">
  <t>Servers <bcp14>MUST</bcp14> validate that resolved values match the expected type and structure for the property or filter being populated.</t>
  <t>Servers <bcp14>MUST NOT</bcp14> attempt to serialize complex objects to strings or perform other automatic conversions that might enable injection attacks.</t>
  <t>When a resolved value is used in a filter that performs string matching or other operations, the server <bcp14>MUST</bcp14> ensure that the value is properly sanitized and does not alter the semantic meaning of the filter.</t>
</list></t>

</section>
<section anchor="circular-reference-prevention"><name>Circular Reference Prevention</name>

<t>While JMAP's sequential processing model prevents direct circular references (a method cannot reference a method that comes after it), enhanced result references in nested object structures could potentially create complex data copying patterns that consume excessive memory or lead to unexpected behavior. Servers <bcp14>SHOULD</bcp14> implement safeguards against pathological data copying patterns.</t>

</section>
</section>
<section anchor="privacy-considerations"><name>Privacy Considerations</name>

<t>Enhanced result references can affect user privacy in several ways:</t>

<section anchor="data-leakage-across-contexts"><name>Data Leakage Across Contexts</name>

<t>The ability to copy data from one JMAP object to another using result references creates potential for unintended data leakage. For example:</t>

<t><list style="symbols">
  <t>Private or sensitive data from one context might be inadvertently copied into a more widely shared context.</t>
  <t>Metadata or structural information might be leaked through the types and structures of resolved values.</t>
</list></t>

<t>Implementations <bcp14>SHOULD</bcp14> provide mechanisms for administrators and users to understand and control how data flows between different contexts through result references.</t>

</section>
<section anchor="audit-and-logging"><name>Audit and Logging</name>

<t>The use of result references can obscure the true source of data in audit logs. When an object is created or modified using result references, audit logs <bcp14>SHOULD</bcp14> record not just the final object state but also information about which data was derived from result references. This enables proper forensic analysis and compliance with data protection regulations.</t>

</section>
</section>
<section anchor="implementation-considerations"><name>Implementation Considerations</name>

<t>Implementers should be aware of several security-relevant implementation challenges:</t>

<section anchor="parser-security"><name>Parser Security</name>

<t>JSON Path parsers are complex and may contain vulnerabilities. Servers implementing JSON Path support <bcp14>SHOULD</bcp14>:</t>

<t><list style="symbols">
  <t>Use well-tested, maintained JSON Path libraries rather than custom implementations.</t>
  <t>Keep JSON Path libraries up to date with security patches.</t>
  <t>Consider sandboxing or isolating JSON Path evaluation from critical server components.</t>
</list></t>

</section>
<section anchor="cache-security"><name>Cache Security</name>

<t>To improve performance, servers might cache the results of result reference resolution. Such caches <bcp14>MUST</bcp14> respect all security boundaries:</t>

<t><list style="symbols">
  <t>Cached results <bcp14>MUST NOT</bcp14> be shared across different users or security contexts.</t>
  <t>Cache entries <bcp14>MUST</bcp14> be invalidated when relevant access control policies change.</t>
  <t>Cache implementations <bcp14>MUST</bcp14> be resistant to timing attacks that might reveal the presence or contents of cached data.</t>
</list></t>

</section>
<section anchor="backward-compatibility"><name>Backward Compatibility</name>

<t>Servers that support enhanced result references <bcp14>MUST</bcp14> continue to correctly handle requests from clients that do not use this extension. In particular:</t>

<t><list style="symbols">
  <t>Servers <bcp14>MUST</bcp14> correctly reject enhanced result references from clients that have not included the <spanx style="verb">urn:ietf:params:jmap:refplus</spanx> capability in the "using" property of the request.</t>
  <t>The presence of properties with "#" prefixes in contexts where standard JMAP does not allow result references <bcp14>MUST</bcp14> be handled appropriately (typically as invalid property names).</t>
</list></t>

</section>
</section>
</section>
<section anchor="iana-considerations"><name>IANA considerations</name>

<section anchor="jmap-capability-registration-for-refplus"><name>JMAP Capability Registration for "refplus"</name>

<t>IANA will register the "refplus" JMAP Capability as follows:</t>

<t><strong>Capability Name:</strong> urn:ietf:params:jmap:refplus<br />
<strong>Specification document:</strong> this document<br />
<strong>Intended use:</strong> common<br />
<strong>Change Controller:</strong> IETF<br />
<strong>Security and privacy considerations:</strong> this document, <xref target="security-considerations"></xref></t>

</section>
</section>


  </middle>

  <back>


<references title='References' anchor="sec-combined-references">

    <references title='Normative References' anchor="sec-normative-references">



<reference anchor="RFC8620">
  <front>
    <title>The JSON Meta Application Protocol (JMAP)</title>
    <author fullname="N. Jenkins" initials="N." surname="Jenkins"/>
    <author fullname="C. Newman" initials="C." surname="Newman"/>
    <date month="July" year="2019"/>
    <abstract>
      <t>This document specifies a protocol for clients to efficiently query, fetch, and modify JSON-based data objects, with support for push notification of changes and fast resynchronisation and for out-of- band binary data upload/download.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8620"/>
  <seriesInfo name="DOI" value="10.17487/RFC8620"/>
</reference>
<reference anchor="RFC8621">
  <front>
    <title>The JSON Meta Application Protocol (JMAP) for Mail</title>
    <author fullname="N. Jenkins" initials="N." surname="Jenkins"/>
    <author fullname="C. Newman" initials="C." surname="Newman"/>
    <date month="August" year="2019"/>
    <abstract>
      <t>This document specifies a data model for synchronising email data with a server using the JSON Meta Application Protocol (JMAP). Clients can use this to efficiently search, access, organise, and send messages, and to get push notifications for fast resynchronisation when new messages are delivered or a change is made in another client.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8621"/>
  <seriesInfo name="DOI" value="10.17487/RFC8621"/>
</reference>
<reference anchor="RFC9535">
  <front>
    <title>JSONPath: Query Expressions for JSON</title>
    <author fullname="S. Gössner" initials="S." role="editor" surname="Gössner"/>
    <author fullname="G. Normington" initials="G." role="editor" surname="Normington"/>
    <author fullname="C. Bormann" initials="C." role="editor" surname="Bormann"/>
    <date month="February" year="2024"/>
    <abstract>
      <t>JSONPath defines a string syntax for selecting and extracting JSON (RFC 8259) values from within a given JSON value.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9535"/>
  <seriesInfo name="DOI" value="10.17487/RFC9535"/>
</reference>
<reference anchor="RFC6901">
  <front>
    <title>JavaScript Object Notation (JSON) Pointer</title>
    <author fullname="P. Bryan" initials="P." role="editor" surname="Bryan"/>
    <author fullname="K. Zyp" initials="K." surname="Zyp"/>
    <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
    <date month="April" year="2013"/>
    <abstract>
      <t>JSON Pointer defines a string syntax for identifying a specific value within a JavaScript Object Notation (JSON) document.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="6901"/>
  <seriesInfo name="DOI" value="10.17487/RFC6901"/>
</reference>
<reference anchor="RFC8259">
  <front>
    <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
    <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
    <date month="December" year="2017"/>
    <abstract>
      <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
      <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="90"/>
  <seriesInfo name="RFC" value="8259"/>
  <seriesInfo name="DOI" value="10.17487/RFC8259"/>
</reference>
<reference anchor="RFC2119">
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author fullname="S. Bradner" initials="S." surname="Bradner"/>
    <date month="March" year="1997"/>
    <abstract>
      <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="2119"/>
  <seriesInfo name="DOI" value="10.17487/RFC2119"/>
</reference>
<reference anchor="RFC8174">
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author fullname="B. Leiba" initials="B." surname="Leiba"/>
    <date month="May" year="2017"/>
    <abstract>
      <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="8174"/>
  <seriesInfo name="DOI" value="10.17487/RFC8174"/>
</reference>



    </references>

    <references title='Informative References' anchor="sec-informative-references">



<reference anchor="RFC9610">
  <front>
    <title>JSON Meta Application Protocol (JMAP) for Contacts</title>
    <author fullname="N. Jenkins" initials="N." role="editor" surname="Jenkins"/>
    <date month="December" year="2024"/>
    <abstract>
      <t>This document specifies a data model for synchronising contact data with a server using the JSON Meta Application Protocol (JMAP).</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9610"/>
  <seriesInfo name="DOI" value="10.17487/RFC9610"/>
</reference>

<reference anchor="I-D.ietf-jmap-calendars">
   <front>
      <title>JSON Meta Application Protocol (JMAP) for Calendars</title>
      <author fullname="Neil Jenkins" initials="N." surname="Jenkins">
         <organization>Fastmail</organization>
      </author>
      <author fullname="Michael Douglass" initials="M." surname="Douglass">
         <organization>Spherical Cow Group</organization>
      </author>
      <date day="4" month="November" year="2025"/>
      <abstract>
	 <t>   This document specifies a data model for synchronizing calendar data
   with a server using JMAP.  Clients can use this to efficiently read,
   write, and share calendars and events, receive push notifications for
   changes or event reminders, and keep track of changes made by others
   in a multi-user environment.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-jmap-calendars-26"/>
   
</reference>



    </references>

</references>


<?line 599?>

<section anchor="changes"><name>Changes</name>

<t>[[This section to be removed by RFC Editor]]</t>

<t><strong>draft-ietf-jmap-refplus-01</strong></t>

<t><list style="symbols">
  <t>Changed <bcp14>SHOULD</bcp14> to <bcp14>MUST</bcp14> implement the complete JSON Path specification.</t>
  <t>Added Implementation Considerations for Intermediate Layers section.</t>
</list></t>

<t><strong>draft-ietf-jmap-refplus-00</strong></t>

<t><list style="symbols">
  <t>Initial version</t>
</list></t>

</section>


  </back>

<!-- ##markdown-source:
H4sIAAAAAAAAA+V963IbR5bmfzxFLTQxJhkARMp2j42dmG6akrY5K1kaUR5H
r6xYJaoSRFlAFaayihTsUMc+xD7APss+yj7Jnlve6gKClto7EzvRMaZQVXk5
eS7fOXny5HQ6HdV5vdbz5J+fn79MnhQrVaQ6S15p06xr+M9SVxp+MSO1WFT6
5u73sjIt1AYazCq1rKe5rpfTnzdqO630crtuzPT00cg0i01uTF4Wr3dbePXy
yeuno1TV+rqsdvPE1Nmo2WbwbzNPRuXClGuNf4/ybTVP6qox9aPT02+hofd6
d1tWGbRQ1LoqdD19jL2OTK2K7L+rdVlA6zsYFbz1/roqmy1PYLTN58mbukwn
iSmrGoZm4K/dBv94Oxqppl6V1XyUTEcJ/F9ewDiez5LHOvkvuihUVdLPPM3n
qqnK9qOyup4nV7Va36qqTp6phUmePbugR5aO0VN6YmAcup4nZ1+efptclMul
1kVyfqOLRk+SqyavdXIG86Z307wGQl2tdJVnqqCfKn0NBJ0nP/6F3ygzGN03
j745PZN/N0WN1P3h6px+0BuVr+fJBsf/J4OjmcFw6FFTAXlWdb0184cP/aNR
UVYbVec3GkiTvHp68c0fHp3O7R/upzP70xn/9O3XX349t3/wT3/49pTfwj/k
w0dffzu3f4xGebFsdfbtH864M/wDfrqcPp557krVWheZqmClBh6MRtPpFMgP
ZFYpTOb1KjcJcGuz0UWdmK1O82WuTaKKRH+odYHsmdRlUq908s9XL75Pnuta
Jefb7ToHVsWHL6sSWKhcJ0fIU8fwpqoTzaJh6LuKxaOy4pFsdAqPc7NJMr3M
C5CgvEh+/VVI+PHjLHkNn/n+1Xpd3ppOOwYHttBJY7gFlWU5DkmtYZ1BFD7U
Bh7vyiKDHoGXswTIsE5UdU2zRWbn+eLPu+Q2r1fQSrn4Wad1sq3Kra5qpEUG
nFBcs8w/NLpO8AlNHumU2Q+f5msQvwvojkYhDRk3vIf/1uhqF3w8S87diNe7
CdAK1sINidogGmQDUzfNdgtyy+vyUtUreH0Lbxoa2RERFLnt48fjRNGSKhxh
QfyEDfCHZY5qQ95HVoT3Jzj/mzzDeW/KSruW4UOeRqq2apGvc6IQcCkOFVkK
v7hR6wZ/rcoNtKNv8rIx0RLwdAyts9GWW2hR4B9qsdbS6xIokSNngh5U8BnQ
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
J+6hY73XLePlRU8UaW77lZYRIlp9FsUMsKIvGBATMggPr4sLhHBW7+RVS6mJ
/u/XRKyzTE/ujVPH6lAdO4n3k3vzcYxNyOnNx5GbL1TgKIvuH1pNigfZijo1
HVFlXSEJj63pghHA2uJUGEcOzMchxKB45yxpa65Nfr2qo5PZEz8eP1ErM8ZV
f+BUATcJKnm+n9fCok2hbBlhdUtmTM8LsYUJJXyWnPtKHthp+xA9TYjiULzJ
5KhMKThBuyg0vIvDHKYCDU/49wnTw7ROXPuKUb7Cn5AOmWlDMTePpyUBaB8I
xkI5FWkte1ahJ+cJ/Bs5Oc/qIIjjK2OaDftmcbSyp9oD5iD+9a9/pUejN6Mk
eTOOquNzxGk8SX6lC45sbcnLbDyHf5yNJ/yzxJnm8hr80uT0ykYT2JliSYs1
rNf09PRsTO98hP//cZKM09Px20lPx9e6vrPbB3lmwk4re0R7Tu1O7O90Vht+
652afYlCxPDSQ2yUhyjdeHQKz9/Eu8+TYKtp/NbO6ax/TuaAOUnKSDCrQt9O
qbh+8CO+KE1fMg3w39OzMd3zpT9O/Ht0Txn28VqrTQLIIh0HTwGQV9jw+NHp
o6+nZ2fT07PXZ1/NT0/hf/8tfDFrGJvhuy9fn/05fBbv0YejbC/KWfDZ4MLQ
0oev2aX5uxkqnTenb2dRh+7VcNp+b+53GZDvzY9mFP7X8fsjYJO3KHSAG8XG
+LDzSuoOSvd8kQTnDRrZH/ETJyXvOrZ7mVbU3Ld1xffW5IXHQ869deEFjlJX
QUB1METgUiLJuvElGnq5RIVIHiHem8GPS+PKhbjqo7FL5D1bgn5cAifwoNhH
Y28eX9n05X9G+4deM4Ke3bNj3toG+7xq8xDtxcrrzZgo6DQka46O1gnVzCQJ
eDHgyrK6BmfyF13ZsZxnGSLkiHcjLg6EyOmuAX18iO6SDLdAd/Hczh59Geuu
aON8r3yefm75xL/OBlTGIAF/jxEOdt4/1nDxHm5/HyKGfb75459mVYlH5fCq
rertnXrv7A69F0mjXGM5lErj2EoEXJSK95l6dSHrO+7HduD8OrfjrvG6x+Qo
yiDBkD1oNetGuKX6wnhVrXi55GasLKPopCcYtNhesuPWLVjx+z4nkQg8TpDa
flPWTc3WF/UIsFOXMZw4pU+0BHCyj/fldogOww3txCdHne3Z40mww992fLdS
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

-->

</rfc>

