<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rfc SYSTEM 'rfc2629.dtd' []>
<rfc ipr="trust200902" category="std" docName="draft-ietf-jmap-core-09">
<?rfc toc="yes"?>
<?rfc symrefs="yes"?>
<?rfc sortrefs="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc private=""?>
<?rfc topblock="yes"?>
<?rfc comments="no"?>
<front>
<title abbrev="JMAP">JSON Meta Application Protocol</title>

<author initials="N.M." surname="Jenkins" fullname="Neil Jenkins">
<organization>FastMail</organization>
<address>
<postal>
<street>PO Box 234, Collins St West</street>
<city>Melbourne</city>
<code>VIC 8007</code>
<country>Australia</country>
<region></region>
</postal>
<phone></phone>
<email>neilj@fastmailteam.com</email>
<uri>https://www.fastmail.com</uri>
</address>
</author>
<author initials="C." surname="Newman" fullname="Chris Newman">
<organization>Oracle</organization>
<address>
<postal>
<street>440 E. Huntington Dr., Suite 400</street>
<city>Arcadia</city>
<code>CA 91006</code>
<country>United States of America</country>
<region></region>
</postal>
<phone></phone>
<email>chris.newman@oracle.com</email>
<uri></uri>
</address>
</author>
<date year="2018" month="October" day="23"/>

<area>Applications</area>
<workgroup>JMAP</workgroup>
<keyword>JMAP</keyword>
<keyword>JSON</keyword>


<abstract>
<t>This document specifies a protocol for clients to access JSON-based data objects efficiently, with support for push and out-of-band binary data upload/download.
</t>
</abstract>


</front>

<middle>

<section anchor="introduction" title="Introduction">
<t>JMAP is a generic protocol for synchronising data, such as mail, calendars or contacts, between a client and a server. It is optimised for mobile and web environments, and aims to provide a consistent interface to different data types.
</t>
<t>This specification is for the generic mechanism of data synchronisation. Further specifications define the data models for different data types that may be synchronised via JMAP.
</t>
<t>JMAP is designed to make efficient use of limited network resources. Multiple API calls may be batched in a single request to the server, reducing round trips and improving battery life on mobile devices. Push connections remove the need for polling, and an efficient delta update mechanism ensures a minimum of data is transferred.
</t>
<t>JMAP is designed to be horizontally scalable to a very large number of users. This is facilitated by the separate end points for users after login, the separation of binary and structured data, and a shared data model that does not allow data dependencies between accounts.
</t>

<section anchor="notational-conventions" title="Notational conventions">
<t>The key words &quot;MUST&quot;, &quot;MUST NOT&quot;, &quot;REQUIRED&quot;, &quot;SHALL&quot;, &quot;SHALL NOT&quot;, &quot;SHOULD&quot;, &quot;SHOULD NOT&quot;, &quot;RECOMMENDED&quot;, &quot;MAY&quot;, and &quot;OPTIONAL&quot; in this document are to be interpreted as described in <xref target="RFC2119"/>.
</t>
<t>The underlying format used for this specification is JSON. Consequently, the terms &quot;object&quot; and &quot;array&quot; as well as the four primitive types (strings, numbers, booleans, and null) are to be interpreted as described in Section 1 of <xref target="RFC7159"/>. Unless otherwise noted, all the property names and values are case sensitive.
</t>
<t>Some examples in this document contain &quot;partial&quot; JSON documents used for illustrative purposes.  In these examples, three periods &quot;...&quot; are used to indicate a portion of the document that has been removed for compactness.
</t>
<t>Unless otherwise specified, examples of API exchanges only show the <spanx style="emph">methodCalls</spanx> array of the Request object or the <spanx style="emph">methodResponses</spanx> array of the Response object. For compactness, the rest of the Request/Response object is omitted.
</t>
<t>Type signatures are given for all JSON values in this document. The following conventions are used:
</t>
<t>
<list style="symbols">
<t><spanx style="verb">*</spanx> - The type is undefined (the value could be any type, although permitted
values may be constrained by the context of this value).</t>
<t><spanx style="verb">String</spanx> - The JSON string type.</t>
<t><spanx style="verb">Number</spanx> - The JSON number type.</t>
<t><spanx style="verb">Boolean</spanx> - The JSON boolean type.</t>
<t><spanx style="verb">String[A]</spanx> – A JSON object where the keys are all <spanx style="verb">String</spanx>s, and the values
are of type <spanx style="verb">A</spanx>.</t>
<t><spanx style="verb">A[]</spanx> – An array of values of type <spanx style="verb">A</spanx>.</t>
<t><spanx style="verb">A|B</spanx> – The value is either of type <spanx style="verb">A</spanx> or of type <spanx style="verb">B</spanx>.</t>
</list>
</t>
<t>Other types may also be given, with their representation defined elsewhere in this document.
</t>
</section>

<section anchor="the-int-and-positiveint-data-types" title="The Int and PositiveInt data types">
<t>Where <spanx style="verb">Int</spanx> is given as a data type, it means an integer in the range -2^53 &lt;= value &lt;= 2^53 (the maximum integer that may be reliably stored in a floating-point double), represented as a JSON <spanx style="verb">Number</spanx>.
</t>
<t>Where <spanx style="verb">PositiveInt</spanx> is given as a data type, it means an <spanx style="verb">Int</spanx> where the value MUST be in the range 0 &lt;= value &lt;= 2^53.
</t>
</section>

<section anchor="the-date-and-utcdate-data-types" title="The Date and UTCDate data types">
<t>Where <spanx style="verb">Date</spanx> is given as a type, it means a string in <xref target="RFC3339"/> <spanx style="emph">date-time</spanx> format. To ensure a normalised form, the <spanx style="emph">time-secfrac</spanx> MUST always  be omitted and any letters in the string (e.g. &quot;T&quot; and &quot;Z&quot;) MUST be upper-case. For example, <spanx style="verb">"2014-10-30T14:12:00+08:00"</spanx>.
</t>
<t>Where <spanx style="verb">UTCDate</spanx> is given as a type, it means a <spanx style="verb">Date</spanx> where the <spanx style="emph">time-offset</spanx> component MUST be <spanx style="verb">Z</spanx> (i.e. it must be in UTC time). For example, <spanx style="verb">"2014-10-30T06:12:00Z"</spanx>.
</t>
</section>

<section anchor="json-as-the-data-encoding-format" title="JSON as the data encoding format">
<t>JSON is a text-based data interchange format as specified in <xref target="RFC7159"/>. The I-JSON format defined in <xref target="RFC7493"/> is a strict subset of this, adding restrictions to avoid potentially confusing scenarios (for example, it mandates that an object MUST NOT have two properties with the same key).
</t>
<t>All data sent from the client to the server or from the server to the client (except binary file upload/download) MUST be valid I-JSON according to the RFC, and is therefore case-sensitive and encoded in UTF-8 (<xref target="RFC3629"/>).
</t>
</section>

<section anchor="terminology" title="Terminology">

<section anchor="user" title="User">
<t>A user represents a set of permissions relating to what data can be seen.
</t>
</section>

<section anchor="accounts" title="Accounts">
<t>An account is a collection of data. A single account may contain an arbitrary set of data types, for example a collection of mail, contacts and calendars.
</t>
<t>All data belongs to a single account. With the exception of a few explicit operations to copy data between accounts, all JMAP methods take an <spanx style="emph">accountId</spanx> argument that specifies on which account the operations are to take place. This argument is always optional; if not specified, the primary account for the capability that defines the data type is used. (Though if there is no primary account for that capability, an <spanx style="verb">accountNotFound</spanx> error will be returned.)
</t>
<t>An account is not the same as a user, although it is common for a primary account to directly belong to the user. For example, you may have an account that contains data for a group or business, to which multiple users have access.
</t>
<t>A single set of credentials may provide access to multiple accounts, for example if another user is sharing their mail with the logged in user, or if there is a group account.
</t>
<t>In the event of a severe internal error, a server may have to reallocate ids or do something else that violates standard JMAP data constraints for an account. In this situation, the data on the server is no longer compatible with cached data the client may have from before. The server MUST treat this as though the account has been deleted and then recreated with a new account id. Clients will then be forced to throw away any data with the old account id and refetch all data from scratch.
</t>
</section>

<section anchor="data-types-and-records" title="Data types and records">
<t>JMAP provides a uniform interface for creating, retrieving, updating and deleting various types of objects. A <spanx style="strong">data type</spanx> is a collection of named, typed properties, just like the schema for a database table. Each instance of a data type is called a <spanx style="strong">record</spanx>.
</t>
</section>
</section>

<section anchor="ids" title="Ids">
<t>All record ids are assigned by the server, and are immutable. They MUST be unique among all records of the <spanx style="strong">same type</spanx> within the <spanx style="strong">same account</spanx>. Ids may clash across accounts, or for two records of different types within the same account.
</t>
<t>Ids are always <spanx style="verb">String</spanx>s. An id MUST be at least 1 character in length and maximum 255 octets in size, and MUST only contain characters from the &quot;URL and Filename safe&quot; Base 64 Alphabet, as defined in section 5 of <xref target="RFC4648"/>. This is the ASCII alphanumeric characters (<spanx style="verb">A-Za-z0-9</spanx>), hyphen (<spanx style="verb">-</spanx>), and underscore (<spanx style="verb">_</spanx>).
</t>
</section>

<section anchor="the-jmap-api-model" title="The JMAP API model">
<t>JMAP uses HTTP <xref target="RFC7230"/> to expose API, Push, Upload and Download resources. Implementations MUST support HTTP/1.1, and MAY support later versions. All HTTP requests MUST use <xref target="RFC5246"/> TLS (HTTPS) transport. Support for common HTTP mechanisms such as redirection and caching are assumed.
</t>
<t>All HTTP requests MUST be authenticated. Servers MUST conform with the <xref target="RFC7235"/> HTTP Authentication framework to reject requests that fail authentication and inform the client of available authentication schemes.
</t>
<t>Clients SHOULD understand and be able to handle standard HTTP status codes appropriately.
</t>
<t>An authenticated client can fetch the JMAP Session object with details about the data and capabilities the server can provide as shown in section 2. The client may then exchange data with the server in the following ways:
</t>
<t>
<list style="numbers">
<t>The client may make an API request to the server to get or set structured data. This request consists of an ordered series of method calls. These are processed by the server, which then returns an ordered series of responses. This is described in sections 3 and 4.</t>
<t>The client may download or upload binary files from/to the server. This is detailed in section 5.</t>
<t>The client may connect to a push channel on the server, to be notified when data has changed. This is explained in section 6.</t>
</list>
</t>
</section>

<section anchor="vendorspecific-extensions" title="Vendor-specific extensions">
<t>Individual services will have custom features they wish to expose over JMAP. This may take the form of extra data types and/or methods not in the spec, or extra arguments to JMAP methods, or extra properties on existing data types (which may also appear in arguments to methods that take property names).
</t>
<t>The server can advertise custom extensions it supports by including the identifiers in the capabilities object. Identifiers for vendor extensions MUST be a URL belonging to a domain owned by the vendor, to avoid conflict. The URL SHOULD resolve to documentation for the changes the extension makes.
</t>
<t>To ensure compatibility with clients that don't know about a specific custom extension, and for compatibility with future versions of JMAP, to use an extension the client MUST opt in by passing the appropriate capability identifier in the <spanx style="emph">using</spanx> array of the Request object, as described in section 3.2. The server MUST only follow the specifications that are opted-into and behave as though it does not implement anything else when processing a request.
</t>
</section>
</section>

<section anchor="the-jmap-session-resource" title="The JMAP Session resource">
<t>You need two things to connect to a JMAP server:
</t>
<t>
<list style="numbers">
<t>The URL for the JMAP Session resource. This may be requested directly from
the user, or discovered automatically based on a username domain (see Service Autodiscovery section below).</t>
<t>Credentials to authenticate with. How to obtain credentials is out of scope
for this specification.</t>
</list>
</t>
<t>An authenticated GET request to the JMAP Session resource MUST return the details about the data and capabilities the server can provide to the client given those credentials.
</t>
<t>The response to a successful request is a JSON-encoded <spanx style="strong">JMAP Session</spanx> object. It has the following properties:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">username</spanx>: <spanx style="verb">String</spanx>
The username associated with the given credentials.</t>
<t><spanx style="strong">accounts</spanx>: <spanx style="verb">String[Account]</spanx>
A map of <spanx style="strong">account id</spanx> to Account object for each account (see section 1.5.2) the user has access to. An <spanx style="strong">Account</spanx> object has the following properties:
<list style="symbols">
<t><spanx style="strong">name</spanx>: <spanx style="verb">String</spanx>
A user-friendly string to show when presenting content from this account, e.g. the email address representing the owner of the account.</t>
<t><spanx style="strong">isPersonal</spanx>: <spanx style="verb">Boolean</spanx>
This is <spanx style="verb">true</spanx> if the account belongs to the authenticated user, rather than a group account or a personal account of another user that has been shared with them.</t>
<t><spanx style="strong">isReadOnly</spanx>: <spanx style="verb">Boolean</spanx>
This is <spanx style="verb">true</spanx> if the entire account is read-only.</t>
<t><spanx style="strong">hasDataFor</spanx>: <spanx style="verb">String[]</spanx>
A list of specification URIs for the object types supported in this account.
The server advertises the list of specifications it supports in general
in the capabilities object, as defined below. If the specification
includes new object type definitions, the server MUST include it the
<spanx style="emph">hasDataFor</spanx> array if, and only if, the user may use those data types
with this account.
For example, you may have access to your own account with mail,
calendars and contacts data, and also a shared account that only has
contacts data (a  business address book for example). In this case the
<spanx style="emph">hasDataFor</spanx> property on the first account would include something like
<spanx style="verb">urn:ietf:params:jmap:mail</spanx>, <spanx style="verb">urn:ietf:params:jmap:calendars</spanx>,
<spanx style="verb">urn:ietf:params:jmap:contacts</spanx>, while the second account would just
have the last of these.
Attempts to use the methods defined in a specification with one of the
accounts that does not contain those data types are rejected with an
<spanx style="emph">accountNotSupportedByMethod</spanx> error (see the Method-level errors
section below).</t>
</list></t>
<t><spanx style="strong">primaryAccounts</spanx>: <spanx style="verb">String[String]</spanx>
A map of capability URIs (as found in <spanx style="emph">hasDataFor</spanx>) to the account id to be considered the user's main or default account for data pertaining to that capability. If no account being returned belongs to the user, or in any other way there is no appropriate way to determine a default account, there MAY be no entry for a particular data profile name. <spanx style="verb">urn:ietf:params:jmap:core</spanx> SHOULD NOT be present.</t>
<t><spanx style="strong">capabilities</spanx>: <spanx style="verb">String[Object]</spanx>
An object specifying the capabilities of this server. Each key is a URI for a specification supported by the server. The value for each of these keys is an object with further information about the server's capabilities in relation to that specification.
The client MUST ignore any properties it does not understand.
The capabilities object MUST include a property called <spanx style="verb">urn:ietf:params:jmap:core</spanx>. The value of this property is an object which MUST contain the following information on server capabilities:
<list style="symbols">
<t><spanx style="strong">maxSizeUpload</spanx>: <spanx style="verb">PositiveInt</spanx>
The maximum file size, in octets, that the server will accept for a single file upload (for any purpose).</t>
<t><spanx style="strong">maxConcurrentUpload</spanx>: <spanx style="verb">PositiveInt</spanx>
The maximum number of concurrent requests the server will accept to the upload endpoint.</t>
<t><spanx style="strong">maxSizeRequest</spanx>: <spanx style="verb">PositiveInt</spanx>
The maximum size, in octets, that the server will accept for a single
request to the API endpoint.</t>
<t><spanx style="strong">maxConcurrentRequests</spanx>: <spanx style="verb">PositiveInt</spanx>
The maximum number of concurrent requests the server will accept to
the API endpoint.</t>
<t><spanx style="strong">maxCallsInRequest</spanx>: <spanx style="verb">PositiveInt</spanx>
The maximum number of method calls the server will accept in a single request to the API endpoint. This MUST be greater than or equal to <spanx style="verb">32</spanx> to ensure clients can rely on the ability to make efficient network use.</t>
<t><spanx style="strong">maxObjectsInGet</spanx>: <spanx style="verb">PositiveInt</spanx>
The maximum number of objects that the client may request in a single <spanx style="verb">/get</spanx> type method call.</t>
<t><spanx style="strong">maxObjectsInSet</spanx>: <spanx style="verb">PositiveInt</spanx>
The maximum number of objects the client may send to create, update or destroy in a single <spanx style="verb">/set</spanx> type method call.</t>
<t><spanx style="strong">collationAlgorithms</spanx>: <spanx style="verb">String[]</spanx>
A list of identifiers for algorithms registered in the collation registry defined in <xref target="RFC4790"/> that the server supports for sorting when querying records.</t>
</list>
Future specifications will define their own properties on the capabilities object.
Servers MAY advertise vendor-specific JMAP extensions, as described in section 1.8. To avoid conflict, the identifiers for these MUST be a URL with a domain owned by the vendor. Clients MUST opt in to any specifications it wishes to use (see section 3.1).</t>
<t><spanx style="strong">apiUrl</spanx>: <spanx style="verb">String</spanx>
The URL to use for JMAP API requests.</t>
<t><spanx style="strong">downloadUrl</spanx>: <spanx style="verb">String</spanx>
The URL endpoint to use when downloading files in <xref target="RFC6570"/> URI Template (level 1) format. The URL MUST contain variables called <spanx style="verb">accountId</spanx>, <spanx style="verb">blobId</spanx>, <spanx style="verb">type</spanx> and <spanx style="verb">name</spanx>. The use of these variables is described in section 5.2. Due to potential encoding issues with slashes in content types, it is recommended to put the <spanx style="verb">type</spanx> variable in the query section of the URL.</t>
<t><spanx style="strong">uploadUrl</spanx>: <spanx style="verb">String</spanx>
The URL endpoint to use when uploading files in <xref target="RFC6570"/> URI Template (level 1) format. The URL MUST contain a variable called <spanx style="verb">accountId</spanx>. The use of this variable is described in section 5.1.</t>
<t><spanx style="strong">eventSourceUrl</spanx>: <spanx style="verb">String</spanx>
The URL to connect to for push events, as described in section 6.3.</t>
<t><spanx style="strong">state</spanx>: <spanx style="verb">String</spanx>
A string representing the state of this object on the server. If the value of any other property on the session object changes, this string will change. The current value is also returned on the API Response object, allowing clients to quickly determine if the session information has changed (e.g. an account has been added or removed) and so they need to refetch the object.</t>
</list>
</t>
<t>To ensure future compatibility, other properties MAY be included on the JMAP Session object. Clients MUST ignore any properties they are not expecting.
</t>
<t>Implementors must take care to avoid inappropriate caching of the session object at the HTTP layer. Since the client should only refetch when it detects there is a change (via the sessionState property of an API response), it is recommended to disable HTTP caching altogether, for example by setting <spanx style="verb">Cache-Control: no-cache, no-store, must-revalidate</spanx> on the response.
</t>

<section anchor="example" title="Example">
<t>In the following example JMAP Session object, the user has access to his own mail and contacts via JMAP, as well as read-only access to shared mail from another user. The server is advertising a custom <spanx style="verb">https://example.com/apis/foobar</spanx> capability.
</t>

<figure align="center"><artwork align="center">
{
  "username": "john@example.com",
  "accounts": {
    "13824": {
      "name": "john@example.com",
      "isPersonal": true,
      "isReadOnly": false,
      "hasDataFor": [
        "urn:ietf:params:jmap:mail",
        "urn:ietf:params:jmap:contacts"
      ]
    },
    "97813": {
      "name": "jane@example.com",
      "isPersonal": false,
      "isReadOnly": true,
      "hasDataFor": [ "urn:ietf:params:jmap:mail" ]
    }
  },
  "primaryAccounts": {
    "urn:ietf:params:jmap:mail": "13824",
    "urn:ietf:params:jmap:contacts": "13824"
  },
  "capabilities": {
    "urn:ietf:params:jmap:core": {
      "maxSizeUpload": 50000000,
      "maxConcurrentUpload": 8,
      "maxSizeRequest": 10000000,
      "maxConcurrentRequest": 8,
      "maxCallsInRequest": 32,
      "maxObjectsInGet": 256,
      "maxObjectsInSet": 128,
      "collationAlgorithms": [
        "i;ascii-numeric",
        "i;ascii-casemap",
        "i;unicode-casemap"
      ]
    },
    "https://example.com/apis/foobar": {
      "maxFoosFinangled": 42
    },
    ...
  },
  "apiUrl": "https://jmap.example.com/api/",
  "downloadUrl": "https://jmap.example.com/download/{accountId}/{blobId}/{name}?accept={type}",
  "uploadUrl": "https://jmap.example.com/upload/{accountId}/",
  "eventSourceUrl": "https://jmap.example.com/eventsource/",
  "state": "75128aab4b1b"
}
</artwork></figure>
</section>

<section anchor="service-autodiscovery" title="Service Autodiscovery">
<t>There are two standardised autodiscovery methods in use for internet protocols:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">DNS SRV</spanx> (<xref target="RFC2782"/>, <xref target="RFC6186"/> and <xref target="RFC6764"/>)</t>
<t><spanx style="strong">.well-known/servicename</spanx> (<xref target="RFC5785"/>)</t>
</list>
</t>
<t>A JMAP-supporting host for the domain <spanx style="verb">example.com</spanx> SHOULD publish a SRV record <spanx style="verb">_jmap._tcp.example.com</spanx> which gives a <spanx style="emph">hostname</spanx> and <spanx style="emph">port</spanx> (usually port <spanx style="verb">443</spanx>). The JMAP Session resource is then <spanx style="verb">https://${hostname}[:${port}]/.well-known/jmap</spanx> (following any redirects).
</t>
<t>If the client has a username in the form of an email address, it MAY use the domain portion of this to attempt autodiscovery of the JMAP server.
</t>
</section>
</section>

<section anchor="structured-data-exchange" title="Structured data exchange">
<t>The client may make an API request to the server to get or set structured data. This request consists of an ordered series of method calls. These are processed by the server, which then returns an ordered series of responses.
</t>

<section anchor="making-an-api-request" title="Making an API request">
<t>To make an API request, the client makes an authenticated POST request to the API resource, which is defined by the <spanx style="emph">apiUrl</spanx> property in the JMAP Session object.
</t>
<t>The request MUST be of type <spanx style="verb">application/json</spanx> and consist of a single JSON <spanx style="strong">Request</spanx> object. If successful, the response MUST also be of type <spanx style="verb">application/json</spanx> and consist of a single <spanx style="strong">Response</spanx> object.
</t>
</section>

<section anchor="the-request-object" title="The Request object">
<t>A <spanx style="strong">Request</spanx> object has the following properties:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">using</spanx>: <spanx style="verb">String[]</spanx>
The set of capabilities the client wishes to use. The client MAY include capability identifiers even if the method calls it makes do not utilise those capabilities.
The server advertises the set of specifications it supports in the JMAP Session object, as keys on the <spanx style="emph">capabilities</spanx> property.</t>
<t><spanx style="strong">methodCalls</spanx>: <spanx style="verb">Invocation[]</spanx>
An array of method calls to process on the server. The method calls MUST be processed sequentially, in order.
An <spanx style="strong">Invocation</spanx> is a tuple, represented as a JSON array containing three elements:
<list style="numbers">
<t>A <spanx style="verb">String</spanx> <spanx style="strong">name</spanx> of the method to call.</t>
<t>A <spanx style="verb">String[*]</spanx> object containing <spanx style="emph">named</spanx> <spanx style="strong">arguments</spanx> for that method.</t>
<t>A <spanx style="verb">String</spanx> <spanx style="strong">client id</spanx>: an arbitrary string from the client to be echoed back with the responses emitted by that method call (a method may return 1 or more responses, as it may make implicit calls to other methods; all responses initiated by this method call get the same client id in the response).</t>
</list></t>
<t><spanx style="strong">createdIds</spanx>: <spanx style="verb">String[String]</spanx> (optional)
A map of (client-specified) creation id to the id the server assigned when a record was successfully created.
As described later in this specification, some records may have a property that contains the id of another record. To allow more efficient network usage, you can set this property to reference a record created earlier in the same API request. Since the real id is unknown when the request is created, the client can instead specify the creation id it assigned, prefixed with a <spanx style="verb">#</spanx>. As the server processes API requests, any time it successfully creates a new record it adds to this map the creation id, with the server-assigned real id as the value. If it comes across a reference to a creation id in a create/update, it looks it up in the map and replaces the reference with the real id, if found.
The client can pass an initial value for this map as the <spanx style="emph">createdIds</spanx> property of the Request. This may be an empty object. If given in the request, the response will also include a createdIds property, with any additionally created ids added. This allows proxy servers to easily split a JMAP request into multiple JMAP requests to send to different servers. For example it could send the first two method calls to server A, then the third to server B, before sending the fourth to server A again. By passing the createdIds of the previous response to the next request, it can ensure all of these still resolve.</t>
</list>
</t>
<t>Future specifications MAY add further properties to the Request object to extend the semantics. To ensure forwards compatibility, a server MUST ignore any other properties it does not understand on the JMAP request object.
</t>

<section anchor="example-request" title="Example request">

<figure align="center"><artwork align="center">
{
  "using": [ "urn:ietf:params:jmap:core", "urn:ietf:params:jmap:mail" ],
  "methodCalls": [
    [ "method1", {
      "arg1": "arg1data",
      "arg2": "arg2data"
    }, "c1" ],
    [ "method2", {
      "arg1": "arg1data"
    }, "c2" ],
    [ "method3", {}, "c3" ]
  ]
}
</artwork></figure>
</section>
</section>

<section anchor="the-response-object" title="The Response object">
<t>A <spanx style="strong">Response</spanx> object has the following properties:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">methodResponses</spanx>: <spanx style="verb">Invocation[]</spanx>
An array of responses, in the same format as the <spanx style="emph">methodCalls</spanx> on the request object. The output of the methods MUST be added to the <spanx style="emph">methodResponses</spanx> array in the same order as the methods are processed.</t>
<t><spanx style="strong">createdIds</spanx>: <spanx style="verb">String[String]</spanx> (optional; only returned if given in request)
A map of (client-specified) creation id to the id the server assigned when a record was successfully created. This includes all values passed in the request, as well as any additional ones added for newly created records.</t>
<t><spanx style="strong">sessionState</spanx>: <spanx style="verb">String</spanx> The current value of the &quot;state&quot; string on the
JMAP Session object. Clients may use this to detect if this object has
changed and needs to be refetched.</t>
</list>
</t>
<t>Unless otherwise specified, if the method call completed successfully its response name is the same as the method name in the request.
</t>

<section anchor="example-response" title="Example response:">

<figure align="center"><artwork align="center">
{
  "methodResponses": [
    [ "method1", {
      "arg1": 3,
      "arg2": "foo"
    }, "c1" ],
    [ "method2", {
      "isBlah": true
    }, "c2" ],
    [ "anotherResponseFromMethod2", {
      "data": 10,
      "yetmoredata": "Hello"
    }, "c2"],
    [ "error", {
      "type":"unknownMethod"
    }, "c3" ]
  ],
  "sessionState": "75128aab4b1b"
}
</artwork></figure>
</section>
</section>

<section anchor="omitting-arguments" title="Omitting arguments">
<t>An argument to a method may be specified to have a default value. If omitted by the client, the server MUST treat the method call the same as if the default value had been specified. Similarly, the server MAY omit any argument in a response which has the default value.
</t>
<t>Unless otherwise specified in a method description, <spanx style="verb">null</spanx> is the default value for any argument in a request or response where this is allowed by the type signature. Other arguments may only be omitted if an explicit default value is defined in the method description.
</t>
</section>

<section anchor="errors" title="Errors">
<t>There are three different levels of granularity at which an error may be returned in JMAP.
</t>
<t>When an API request is made, the request as a whole may be rejected due to rate limiting, malformed JSON, request for an unknown capability etc. In this case the entire request is rejected with an appropriate HTTP error response code, and an additional JSON body with more detail for the client.
</t>
<t>Provided the request itself is syntactically valid, the methods within it are executed sequentially by the server. Each method may individually fail, for example if invalid arguments are given, or an unknown method name is called.
</t>
<t>Finally, methods that make changes to the server state often act upon a number of different records within a single call. Each record change may be separately rejected with a SetError, as described in section 5.3.
</t>

<section anchor="requestlevel-errors" title="Request-level errors">
<t>When an HTTP error response is returned to the client, the server
SHOULD return a JSON &quot;problem details&quot; object as the response body,
as per <xref target="RFC7807"/>.
</t>
<t>The following problem types are defined:
</t>
<t>
<list style="symbols">
<t><spanx style="verb">urn:ietf:params:jmap:error:unknownCapability</spanx>
The client included a capability in the &quot;using&quot; property of the request that the server does not support.</t>
<t><spanx style="verb">urn:ietf:params:jmap:error:notJSON</spanx>
The content type of the request was not <spanx style="verb">application/json</spanx> or the request did not parse as I-JSON.</t>
<t><spanx style="verb">urn:ietf:params:jmap:error:notRequest</spanx>
The request parsed as JSON but did not match the structure of the Request object.</t>
<t><spanx style="verb">urn:ietf:params:jmap:error:limit</spanx>
The request was not processed as it would have exceeded one of the <spanx style="strong">request</spanx>
limits defined on the capability object, such as maxSizeRequest,
maxCallsInRequest or maxConcurrentRequests. A &quot;limit&quot; property MUST also be
present on the &quot;problem details&quot; object, containing the name of the limit
being applied.</t>
</list>
</t>

<section anchor="example-1" title="Example">

<figure align="center"><artwork align="center">
{
  "type": "urn:ietf:params:jmap:error:unknownCapability",
  "status": 400,
  "detail": "The request object used capability 'https://example.com/apis/foobar', which is not supported by this server."
}
</artwork></figure>
</section>
</section>

<section anchor="methodlevel-errors" title="Method-level errors">
<t>If a method encounters an error, the appropriate <spanx style="verb">error</spanx> response MUST be inserted at the current point in the <spanx style="emph">methodResponses</spanx> array and, unless otherwise specified, further processing MUST NOT happen within that method call.
</t>
<t>Any further method calls in the request MUST then be processed as normal. Errors at the method level MUST NOT generate an HTTP-level error.
</t>
<t>An <spanx style="verb">error</spanx> response looks like this:
</t>

<figure align="center"><artwork align="center">
[ "error", {
  "type": "unknownMethod"
}, "client-id" ]
</artwork></figure>
<t>The response name is <spanx style="verb">error</spanx>, and it MUST have a type property. Other properties may be present with further information; these are detailed in the error type descriptions where appropriate.
</t>
<t>With the exception of <spanx style="verb">serverPartialFail</spanx>, the externally-visible state of the server MUST NOT have changed if an error is returned at the method level.
</t>
<t>The following error types are defined which may be returned for any method call where appropriate:
</t>
<t><spanx style="verb">serverUnavailable</spanx>: Some internal server resource was temporarily unavailable. Attempting the same operation later (perhaps after a backoff with a random factor) may succeed.
</t>
<t><spanx style="verb">serverFail</spanx>: An unexpected or unknown error occurred during the processing of the call. A <spanx style="emph">description</spanx> property should provide more details about the error. The method call made no changes to the server's state. Attempting the same operation again is expected to fail again. Contacting the service administrator is likely necessary to resolve this problem if it is persistent.
</t>
<t><spanx style="verb">serverPartialFail</spanx>: Some, but not all expected changes described by the method occurred. The client MUST re-synchronise impacted data to determine server state. Use of this error is strongly discouraged.
</t>
<t><spanx style="verb">unknownMethod</spanx>: The server does not recognise this method name.
</t>
<t><spanx style="verb">invalidArguments</spanx>: One of the arguments is of the wrong type or otherwise invalid, or a required argument is missing. A <spanx style="verb">description</spanx> property MAY be present to help debug with an explanation of what the problem was. This is a non-localised string, and is not intended to be shown directly to end users.
</t>
<t><spanx style="verb">invalidResultReference</spanx>: The method used a back reference for one of its arguments (see the next section), but this failed to resolve.
</t>
<t><spanx style="verb">forbidden</spanx>: The method and arguments are valid, but executing the method would violate an ACL or other permissions policy.
</t>
<t><spanx style="verb">accountNotFound</spanx>: The <spanx style="emph">accountId</spanx> does not correspond to a valid account.
</t>
<t><spanx style="verb">accountNotSupportedByMethod</spanx>: The <spanx style="emph">accountId</spanx> given corresponds to a valid account, but the account does not support this data type.
</t>
<t><spanx style="verb">accountReadOnly</spanx>: This method call would modify state in an account that has <spanx style="verb">isReadOnly == true</spanx>.
</t>
<t>Further possible errors for a particular method are specified in the method descriptions.
</t>
<t>Further general errors MAY be defined in future RFCs. Should a client receive an error type it does not understand, it MUST treat it the same as the <spanx style="verb">serverFail</spanx> type.
</t>
</section>
</section>

<section anchor="references-to-previous-method-results" title="References to previous method results">
<t>To allow clients to make more efficient use of the network and avoid round
trips, an argument to one method can be taken from the result of a previous
method call.
</t>
<t>To do this, the client prefixes the argument name with &quot;#&quot;. The value is a <spanx style="emph">ResultReference</spanx> object as described below. When processing a method call, the server MUST first check the arguments object for any names beginning with &quot;#&quot;. If found, the back reference should be resolved and the value used as the &quot;real&quot; argument. The method is then processed as normal. If any back reference fails to resolve, the whole method MUST be rejected with an <spanx style="verb">invalidResultReference</spanx> error. If an argument object contains the same argument name in normal and referenced form (e.g. <spanx style="verb">foo</spanx> and <spanx style="verb">#foo</spanx>), the method MUST return an <spanx style="verb">invalidArguments</spanx> error.
</t>
<t>A <spanx style="strong">ResultReference</spanx> object has the following properties:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">resultOf</spanx>: <spanx style="verb">String</spanx>
The client id of the method call to get the result from (the string given as the third item in the array for a method call).</t>
<t><spanx style="strong">name</spanx>: <spanx style="verb">String</spanx>
The expected name of the response.</t>
<t><spanx style="strong">path</spanx>: <spanx style="verb">String</spanx>
A pointer into the arguments. This is an <xref target="RFC6901"/> JSON Pointer, except it also allows the use of <spanx style="verb">*</spanx> to map through an array (see description below).</t>
</list>
</t>
<t>To resolve:
</t>
<t>
<list style="numbers">
<t>Find the first response with a client id identical to the <spanx style="emph">resultOf</spanx>
property of the <spanx style="emph">ResultReference</spanx> in the <spanx style="emph">methodResponses</spanx> array from previously processed method calls in the same request. If none, evaluation fails.</t>
<t>If the response name is not identical to the <spanx style="emph">name</spanx> property of the
<spanx style="emph">ResultReference</spanx>, evaluation fails.</t>
<t>Apply the <spanx style="emph">path</spanx> to the arguments object of the response (the second item in
the response array) following the <xref target="RFC6901"/> JSON Pointer algorithm, except with the following addition in Section 4 (Evaluation):</t>
</list>
</t>
<t>If the currently referenced value is a JSON array, the reference token may
   be exactly the single character <spanx style="verb">*</spanx>, making the new referenced value the result of applying the rest of the JSON pointer tokens to every item in the array and returning the results in the same order in a new array. If the result of applying the rest of the pointer tokens to a value was itself an array, its items should be included individually in the output rather than including the array itself (i.e. the result is flattened from an array of arrays to a single array).
</t>
<t>As a simple example, suppose we have the following API request <spanx style="emph">methodCalls</spanx>:
</t>

<figure align="center"><artwork align="center">
[[ "Foo/changes", {
    "accountId": "1",
    "sinceState": "abcdef"
}, "t0" ],
[ "Foo/get", {
    "accountId": "1",
    "#ids": {
        "resultOf": "t0",
        "name": "Foo/changes",
        "path": "/created"
    }
}, "t1" ]]
</artwork></figure>
<t>After executing the first method call the <spanx style="emph">methodResponses</spanx> array is:
</t>

<figure align="center"><artwork align="center">
[[ "Foo/changes", {
    "accountId": "1",
    "oldState": "abcdef",
    "newState": "123456",
    "hasMoreChanges": false,
    "created": [ "f1", "f4" ],
    "updated": [],
    "destroyed": []
}, "t0" ]]
</artwork></figure>
<t>So to execute the Foo/get call, we look through the arguments and find there is one with a <spanx style="verb">#</spanx> prefix. To resolve this, we apply the algorithm above:
</t>
<t>
<list style="numbers">
<t>Find the first response with client id &quot;t0&quot;. The Foo/changes response
fulfils this criterion.</t>
<t>Check the response name is the same as in the result reference. It is, so
this is fine.</t>
<t>Apply the <spanx style="emph">path</spanx> as a JSON pointer to the arguments object. This simply
selects the &quot;created&quot; property, so the result of evaluating is:
<spanx style="verb">[ "f1", "f4" ]</spanx></t>
</list>
</t>
<t>The JMAP server now continues to process the Foo/get call as though the arguments were:
</t>

<figure align="center"><artwork align="center">
{
    "ids": [ "f1", "f4" ]
}
</artwork></figure>
<t>Now a more complicated example using the JMAP Mail data model: fetch the &quot;from&quot;/&quot;date&quot;/&quot;subject&quot; for every email in the first 10 threads in the Inbox (sorted newest first):
</t>

<figure align="center"><artwork align="center">
[[ "Email/query", {
  "accountId": "1",
  "filter": { "inMailbox": "id_of_inbox" },
  "sort": [{ "property": "receivedAt", "isAscending": false }],
  "collapseThreads": true,
  "position": 0,
  "limit": 10,
  "calculateTotal": true
}, "t0" ],
[ "Email/get", {
  "accountId": "1",
  "#ids": {
    "resultOf": "t0",
    "name": "Email/query",
    "path": "/ids"
  },
  "properties": [ "threadId" ]
}, "t1" ],
[ "Thread/get", {
  "accountId": "1",
  "#ids": {
    "resultOf": "t1",
    "name": "Email/get",
    "path": "/list/*/threadId"
  }
}, "t2" ],
[ "Email/get", {
  "accountId": "1",
  "#ids": {
    "resultOf": "t2",
    "name": "Thread/get",
    "path": "/list/*/emailIds"
  },
  "properties": [ "from", "receivedAt", "subject" ]
}, "t3" ]]
</artwork></figure>
<t>After executing the first 3 method calls the <spanx style="emph">methodResponses</spanx> array might be:
</t>

<figure align="center"><artwork align="center">
[[ "Email/query", {
    "accountId": "1",
    "filter": { "inMailbox": "id_of_inbox" },
    "sort": [{ "property": "receivedAt", "isAscending": false }],
    "collapseThreads": true,
    "queryState": "abcdefg",
    "canCalculateChanges": true,
    "position": 0,
    "total": 101,
    "ids": [ "msg1023", "msg223", "msg110", "msg93", "msg91", "msg38", "msg36", "msg33", "msg11", "msg1" ]
}, "t0" ],
[ "Email/get", {
    "accountId": "1",
    "state": "123456",
    "list": [{
        "id": "msg1023",
        "threadId": "trd194",
    }, {
        "id": "msg223",
        "threadId": "trd114"
    },
    ...
    ],
    "notFound": []
}, "t1" ],
[ "Thread/get", {
    "accountId": "1",
    "state": "123456",
    "list": [{
        "id: "trd194",
        "emailIds": [ "msg1020", "msg1021", "msg1023" ]
    }, {
        "id: "trd114",
        "emailIds": [ "msg201", "msg223" ]
    },
    ...
    ],
    "notFound": []
}, "t2" ]]
</artwork></figure>
<t>So to execute the final Email/get call, we look through the arguments and find there is one with a <spanx style="verb">#</spanx> prefix. To resolve this, we apply the algorithm:
</t>
<t>
<list style="numbers">
<t>Find the first response with client id &quot;t2&quot;. The &quot;Thread/get&quot; response
fulfils this criterion.</t>
<t>&quot;Thread/get&quot; is the name specified in the result reference, so this is fine.</t>
<t>Apply the <spanx style="emph">path</spanx> as a JSON pointer to the arguments object. Token-by-token:
a) <spanx style="verb">list</spanx>: get the array of thread objects
 b) <spanx style="verb">*</spanx>: for each of the items in the array:

<figure align="center"><artwork align="center">
i) `emailIds`: get the array of email ids
ii) Concatenate these into a single array of all the ids in the result.
</artwork></figure></t>
</list>
</t>
<t>The JMAP server now continues to process the Email/get call as though the arguments were:
</t>

<figure align="center"><artwork align="center">
{
    "ids": [ "msg1020", "msg1021", "msg1023", "msg201", "msg223", ... ],
    "properties": [ "from", "receivedAt", "subject" ]
}
</artwork></figure>
</section>

<section anchor="security" title="Security">
<t>As always, the server must be strict about data received from the client. Arguments need to be checked for validity; a malicious user could attempt to find an exploit through the API. In case of invalid arguments (unknown/insufficient/wrong type for data etc.) the method MUST return an <spanx style="verb">invalidArguments</spanx> error and terminate.
</t>
</section>

<section anchor="concurrency" title="Concurrency">
<t>Method calls within a single request MUST be executed in order. However, method calls from different concurrent API requests may be interleaved. This means that the data on the server may change between two method calls within a single API request.
</t>
</section>
</section>

<section anchor="the-coreecho-method" title="The Core/echo method">
<t>The <spanx style="emph">Core/echo</spanx> method returns exactly the same arguments as it is given. It is useful for testing you have a valid authenticated connection to a JMAP API endpoint.
</t>

<section anchor="example-2" title="Example">
<t>Request:
</t>

<figure align="center"><artwork align="center">
[[ "Core/echo", {
  "hello": true,
  "high": 5
}, "b3ff" ]]
</artwork></figure>
<t>Response:
</t>

<figure align="center"><artwork align="center">
[[ "Core/echo", {
  "hello": true,
  "high": 5
}, "b3ff" ]]
</artwork></figure>
</section>
</section>

<section anchor="standard-methods-and-naming-convention" title="Standard methods and naming convention">
<t>JMAP provides a uniform interface for creating, retrieving, updating and deleting objects of a particular type. For a <spanx style="verb">Foo</spanx> data type, records of that type would be fetched via a Foo/get call and modified via a Foo/set call. Delta updates may be fetched via a Foo/changes call. These methods all follow a standard format as described below.
</t>
<t>Not all types may have all methods. Specifications defining types MUST specify which methods are available for the type.
</t>

<section anchor="get" title="/get">
<t>Objects of type <spanx style="strong">Foo</spanx> are fetched via a call to <spanx style="emph">Foo/get</spanx>.
</t>
<t>It takes the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account to use.</t>
<t><spanx style="strong">ids</spanx>: <spanx style="verb">String[]|null</spanx>
The ids of the Foo objects to return. If <spanx style="verb">null</spanx> then <spanx style="strong">all</spanx> records of the data type are returned, if this is supported for that data type.</t>
<t><spanx style="strong">properties</spanx>: <spanx style="verb">String[]|null</spanx>
If supplied, only the properties listed in the array are returned for each Foo object. If <spanx style="verb">null</spanx>, all properties of the object are returned. The id of the object is <spanx style="strong">always</spanx> returned, even if not explicitly requested. If an invalid property is requested, the call MUST be rejected with an <spanx style="verb">invalidArguments</spanx> error.</t>
</list>
</t>
<t>The response has the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account used for the call.</t>
<t><spanx style="strong">state</spanx>: <spanx style="verb">String</spanx>
A string representing the state on the server for <spanx style="strong">all</spanx> the data of this type in the account (not just the objects returned in this call). If the data changes, this string MUST change. If the Foo data is unchanged, servers SHOULD return the same state string on subsequent requests for this data type.
When a client receives a response with a different state string to a previous call, it MUST either throw away all currently cached objects for the type, or call <spanx style="emph">Foo/changes</spanx> to get the exact changes.</t>
<t><spanx style="strong">list</spanx>: <spanx style="verb">Foo[]</spanx>
An array of the Foo objects requested. This is the <spanx style="strong">empty array</spanx> if no objects were found, or if the <spanx style="emph">ids</spanx> argument passed in was also the empty array. The results MAY be in a different order to the <spanx style="emph">ids</spanx> in the request arguments. If an identical id is included more than once in the request, the server MUST only include it once in either the <spanx style="emph">list</spanx> or <spanx style="emph">notFound</spanx> argument of the response.</t>
<t><spanx style="strong">notFound</spanx>: <spanx style="verb">String[]</spanx>
This array contains the ids passed to the method for records that do not exist. The array is empty if all requested ids were found, or if the <spanx style="emph">ids</spanx> argument passed in was either <spanx style="verb">null</spanx> or the empty array.</t>
</list>
</t>
<t>The following additional error may be returned instead of the <spanx style="emph">Foo/get</spanx> response:
</t>
<t><spanx style="verb">requestTooLarge</spanx>: The number of <spanx style="emph">ids</spanx> requested by the client exceeds the maximum number the server is willing to process in a single method call.
</t>
</section>

<section anchor="changes" title="/changes">
<t>When the state of the set of Foo records changes on the server (whether due to creation, updates or deletion), the <spanx style="emph">state</spanx> property of the <spanx style="emph">Foo/get</spanx> response will change. The <spanx style="emph">Foo/changes</spanx> method allows a client to efficiently update the state of its Foo cache to match the new state on the server. It takes the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account to use.</t>
<t><spanx style="strong">sinceState</spanx>: <spanx style="verb">String</spanx>
The current state of the client. This is the string that was returned as the <spanx style="emph">state</spanx> argument in the <spanx style="emph">Foo/get</spanx> response. The server will return the changes that have occurred since this state.</t>
<t><spanx style="strong">maxChanges</spanx>: <spanx style="verb">PositiveInt|null</spanx>
The maximum number of ids to return in the response. The server MAY choose to return fewer than this value, but MUST NOT return more. If not given by the client, the server may choose how many to return. If supplied by the client, the value MUST be a positive integer greater than 0. If a value outside of this range is given, the server MUST reject the call with an <spanx style="verb">invalidArguments</spanx> error.</t>
</list>
</t>
<t>The response has the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account used for the call.</t>
<t><spanx style="strong">oldState</spanx>: <spanx style="verb">String</spanx>
This is the <spanx style="emph">sinceState</spanx> argument echoed back; the state from which the server is returning changes.</t>
<t><spanx style="strong">newState</spanx>: <spanx style="verb">String</spanx>
This is the state the client will be in after applying the set of changes to the old state.</t>
<t><spanx style="strong">hasMoreChanges</spanx>: <spanx style="verb">Boolean</spanx>
If <spanx style="verb">true</spanx>, the client may call <spanx style="emph">Foo/changes</spanx> again with the <spanx style="emph">newState</spanx> returned to get further updates. If <spanx style="verb">false</spanx>, <spanx style="emph">newState</spanx> is the current server state.</t>
<t><spanx style="strong">created</spanx>: <spanx style="verb">String[]</spanx>
An array of ids for records which have been created since the old state.</t>
<t><spanx style="strong">updated</spanx>: <spanx style="verb">String[]</spanx>
An array of ids for records which have been updated since the old state.</t>
<t><spanx style="strong">destroyed</spanx>: <spanx style="verb">String[]</spanx>
An array of ids for records which have been destroyed since the old state.</t>
</list>
</t>
<t>If a record has been created AND updated since the old state, the server SHOULD just return the id in the <spanx style="emph">created</spanx> list, but MAY return it in the <spanx style="emph">updated</spanx> list as well.
</t>
<t>If a record has been updated AND destroyed since the old state, the server SHOULD just return the id in the <spanx style="emph">destroyed</spanx> list, but MAY return it in the <spanx style="emph">updated</spanx> list as well.
</t>
<t>If a record has been created AND destroyed since the old state, the server SHOULD remove the id from the response entirely, but MAY include it in the <spanx style="emph">destroyed</spanx> list, and if so MAY also include it in the <spanx style="emph">created</spanx> list.
</t>
<t>If a <spanx style="emph">maxChanges</spanx> is supplied, or set automatically by the server, the server MUST ensure the number of ids returned across <spanx style="emph">created</spanx>, <spanx style="emph">updated</spanx> and <spanx style="emph">destroyed</spanx> does not exceed this limit. If there are more changes than this between the client's state and the current server state, the server SHOULD generate an update to take the client to an intermediate state, from which the client can continue to call <spanx style="emph">Foo/changes</spanx> until it is fully up to date. If it is unable to calculate an intermediate state, it MUST return a <spanx style="verb">cannotCalculateChanges</spanx> error response instead.
</t>
<t>When generating intermediate states, the server may choose how to divide up the changes. For many types it will provide a better user experience to return the more recent changes first, as this is more likely to be what the user is most interested in. The client can then continue to page in the older changes while the user is viewing the newer data. For example, suppose a server went through the following states:
</t>

<figure align="center"><artwork align="center">
A -&gt; B -&gt; C -&gt; D -&gt; E
</artwork></figure>
<t>And a client asks for changes from state <spanx style="verb">B</spanx>. The server might first get the ids of records created, updated or destroyed between states D and E, returning them with:
</t>

<figure align="center"><artwork align="center">
state: "B-D-E"
hasMoreChanges: true
</artwork></figure>
<t>The client will then ask for the change from state <spanx style="verb">B-D-E</spanx>, and the server can return the changes between states C and D, returning:
</t>

<figure align="center"><artwork align="center">
state: "B-C-E"
hasMoreChanges: true
</artwork></figure>
<t>Finally the client will request the changes from <spanx style="verb">B-C-E</spanx> and the server can return the changes between states B and C, returning:
</t>

<figure align="center"><artwork align="center">
state: "E"
hasMoreChanges: false
</artwork></figure>
<t>Should the state on the server be modified in the middle of all this (to <spanx style="verb">F</spanx>), the server still does the same but now when the update to state <spanx style="verb">E</spanx> is returned, it would indicate that it still has more changes for the client to fetch.
</t>
<t>Where multiple changes to a record are split across different intermediate states, the server MUST NOT return a record as created in a later response than one which gives it as updated or destroyed, and MUST NOT return a record as destroyed before a response that gives it as created or updated. The server may have to coalesce multiple changes to a record to satisfy this requirement.
</t>
<t>The following additional errors may be returned instead of the <spanx style="emph">Foo/changes</spanx> response:
</t>
<t><spanx style="verb">cannotCalculateChanges</spanx>: The server cannot calculate the changes from the state string given by the client. Usually due to the client's state being too old, or the server being unable to produce an update to an intermediate state when there are too many updates. The client MUST invalidate its Foo cache.
</t>
<t>Maintaining state to allow calculation of <spanx style="emph">Foo/changes</spanx> can be expensive for the server, but always returning <spanx style="emph">cannotCalculateChanges</spanx> severely increases network traffic and resource usage for the client. To allow efficient sync, servers SHOULD be able to calculate changes from any state string that was given to a client within the last 30 days (but of course may support calculating updates from states older than this).
</t>
</section>

<section anchor="set" title="/set">
<t>Modifying the state of Foo objects on the server is done via the <spanx style="emph">Foo/set</spanx> method. This encompasses creating, updating and destroying Foo records. This allows the server to sort out ordering and dependencies that may exist if doing multiple operations at once (for example to ensure there is always a minimum number of a certain record type).
</t>
<t>The <spanx style="emph">Foo/set</spanx> method takes the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account to use.</t>
<t><spanx style="strong">ifInState</spanx>: <spanx style="verb">String|null</spanx>
This is a state string as returned by the <spanx style="emph">Foo/get</spanx> method. If supplied, the string must match the current state, otherwise the method will be aborted and a <spanx style="verb">stateMismatch</spanx> error returned. If <spanx style="verb">null</spanx>, any changes will be applied to the current state.</t>
<t><spanx style="strong">create</spanx>: <spanx style="verb">String[Foo]|null</spanx>
A map of <spanx style="emph">creation id</spanx> (an arbitrary string set by the client) to Foo
objects, or <spanx style="verb">null</spanx> if no objects are to be created.
The Foo object type definition MAY define default values for properties. Any such property MAY be omitted by the client.
The client MUST omit any properties that may only be set by the server (for example, the <spanx style="emph">id</spanx> property on most object types).</t>
<t><spanx style="strong">update</spanx>: <spanx style="verb">String[PatchObject]|null</spanx>
A map of id to a Patch object to apply to the current Foo object with that id, or <spanx style="verb">null</spanx> if no objects are to be updated.
A <spanx style="emph">PatchObject</spanx> is of type <spanx style="verb">String[*]</spanx>, and represents an unordered set of patches.  The keys are a path in <xref target="RFC6901"/> JSON pointer format, with an implicit leading &quot;/&quot; (i.e. prefix each key with &quot;/&quot; before applying the JSON pointer evaluation algorithm).
All paths MUST also conform to the following restrictions; if there is any violation, the update MUST be rejected with an <spanx style="verb">invalidPatch</spanx> error:
<list style="symbols">
<t>The pointer MUST NOT reference inside an array (i.e. you MUST NOT insert/delete from an array; the array MUST be replaced in its entirety instead).</t>
<t>All parts prior to the last (i.e. the value after the final slash) MUST already exist on the object being patched.</t>
<t>There MUST NOT be two patches in the PatchObject where the pointer of one is the prefix of the pointer of the other, e.g. &quot;alerts/1/offset&quot; and &quot;alerts&quot;.</t>
</list>
The value associated with each pointer determines how to apply that patch:
<list style="symbols">
<t>If <spanx style="verb">null</spanx>, set to the default value if specified for this property, otherwise remove the property from the patched object. If the key is not present in the parent, this a no-op.</t>
<t>Anything else: The value to set for this property (this may be a replacement or addition to the object being patched).</t>
</list>
Any server-set properties MAY be included in the patch if their value is identical to the current server value (before applying the patches to the object). Otherwise, the update MUST be rejected with an <spanx style="emph">invalidProperties</spanx> SetError.
This patch definition is designed such that an entire Foo object is also a valid PatchObject. The client MAY choose to optimise network usage by just sending the diff, or MAY just send the whole object; the server processes it the same either way.</t>
<t><spanx style="strong">destroy</spanx>: <spanx style="verb">String[]|null</spanx>
A list of ids for Foo objects to permanently delete, or <spanx style="verb">null</spanx> if no objects are to be destroyed.</t>
</list>
</t>
<t>Each creation, modification or destruction of an object is considered an atomic unit. It is permissible for the server to commit changes to some objects but not others, however it is not permissible to only commit part of an update to a single record (e.g. update a <spanx style="emph">name</spanx> property but not a <spanx style="emph">count</spanx> property, if both are supplied in the update object).
</t>
<t>The final state MUST be valid after the Foo/set is finished, however the server may have to transition through invalid intermediate states (not exposed to the client) while processing the individual create/update/destroy requests. For example, suppose there is a &quot;name&quot; property that must be unique. A single method call could rename an object A =&gt; B, and simultaneously rename another object B =&gt; A. If the final state is valid, this is allowed. Otherwise, each creation, modification or destruction of an object should be processed sequentially and accepted/rejected based on the current server state.
</t>
<t>If a create, update or destroy is rejected, the appropriate error MUST be added to the notCreated/notUpdated/notDestroyed property of the response and the server MUST continue to the next create/update/destroy. It does not terminate the method.
</t>
<t>If an id given cannot be found, the update or destroy MUST be rejected with a <spanx style="verb">notFound</spanx> set error.
</t>
<t>The server MAY skip an update (rejecting it with a <spanx style="verb">willDestroy</spanx> SetError) if that object is destroyed in the same /set request.
</t>
<t>Some record objects may hold references to others (foreign keys). When records are created or modified, they may reference other records being created <spanx style="emph">in the same API request</spanx> by using the creation id prefixed with a <spanx style="verb">#</spanx>. The order of the method calls in the request by the client MUST be such that the record being referenced is created in the same or an earlier call. The server thus never has to look ahead. Instead, while processing a request (a series of method calls), the server MUST keep a simple map for the duration of the request of creation id to record id for each newly created record, so it can substitute in the correct value if necessary in later method calls.
</t>
<t>Creation ids are not scoped by type but are a single map for all types. A client SHOULD NOT reuse a creation id anywhere in the same API request. If a creation id is reused, the server MUST map the creation id to the most recently created item with that id. To allow easy proxying of API requests, an initial set of creation id to real id values may be passed with a request (see The Request object specification above).
</t>
<t>The response has the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account used for the call.</t>
<t><spanx style="strong">oldState</spanx>: <spanx style="verb">String|null</spanx>
The state string that would have been returned by <spanx style="emph">Foo/get</spanx> before making the requested changes, or <spanx style="verb">null</spanx> if the server doesn't know what the previous state string was.</t>
<t><spanx style="strong">newState</spanx>: <spanx style="verb">String</spanx>
The state string that will now be returned by <spanx style="emph">Foo/get</spanx>.</t>
<t><spanx style="strong">created</spanx>: <spanx style="verb">String[Foo]|null</spanx>
A map of the creation id to an object containing any properties of the created Foo object that were not sent by the client. This includes all server-set properties (such as the <spanx style="emph">id</spanx> in most object types) and any properties that were omitted by the client and so set to a default by the server.
This argument is <spanx style="verb">null</spanx> if no Foo objects were successfully created.</t>
<t><spanx style="strong">updated</spanx>: <spanx style="verb">String[Foo|null]|null</spanx>
The <spanx style="emph">keys</spanx> in this map are the ids of all Foos that were successfully updated, or <spanx style="verb">null</spanx> if none successful.
The <spanx style="emph">value</spanx> for each id is a Foo object containing any property that
changed in a way <spanx style="emph">not</spanx> explicitly requested by the <spanx style="emph">PatchObject</spanx> sent to the server, or <spanx style="verb">null</spanx> if none. This lets the client know of any changes to server-set or computed properties.</t>
<t><spanx style="strong">destroyed</spanx>: <spanx style="verb">String[]|null</spanx>
A list of Foo ids for records that were successfully destroyed, or <spanx style="verb">null</spanx> if none successful.</t>
<t><spanx style="strong">notCreated</spanx>: <spanx style="verb">String[SetError]|null</spanx>
A map of creation id to a SetError object for each record that failed to be created, or <spanx style="verb">null</spanx> if all successful.</t>
<t><spanx style="strong">notUpdated</spanx>: <spanx style="verb">String[SetError]|null</spanx>
A map of Foo id to a SetError object for each record that failed to be updated, or <spanx style="verb">null</spanx> if all successful.</t>
<t><spanx style="strong">notDestroyed</spanx>: <spanx style="verb">String[SetError]|null</spanx>
A map of Foo id to a SetError object for each record that failed to be destroyed, or <spanx style="verb">null</spanx> if all successful.</t>
</list>
</t>
<t>A <spanx style="strong">SetError</spanx> object has the following properties:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">type</spanx>: <spanx style="verb">String</spanx>
The type of error.</t>
<t><spanx style="strong">description</spanx>: <spanx style="verb">String|null</spanx>
A description of the error to help debug with an explanation of what the problem was. This is a non-localised string, and is not intended to be shown directly to end users.</t>
</list>
</t>
<t>The following SetError types are defined and may be returned for set operations on any record type where appropriate:
</t>
<t>
<list style="symbols">
<t><spanx style="verb">forbidden</spanx>: (create; update; destroy) The create/update/destroy would
violate an ACL or other permissions policy.</t>
<t><spanx style="verb">overQuota</spanx>: (create) The create would exceed a server-defined limit on
the number or total size of objects of this type.</t>
<t><spanx style="verb">tooLarge</spanx>: (create; update) The create/update would result in an object
that exceeds a server-defined limit for the maximum size of a single object of this type.</t>
<t><spanx style="verb">rateLimit</spanx>: (create) Too many objects of this type have been created
recently, and a server-defined rate limit has been reached. It may work if
tried again later.</t>
<t><spanx style="verb">notFound</spanx>: (update; destroy) The id given to update/destroy cannot be found.</t>
<t><spanx style="verb">invalidPatch</spanx>: (update) The PatchObject given to update the record was
not a valid patch (see the patch description).</t>
<t><spanx style="verb">willDestroy</spanx> (update)
The client requested an object be both updated and destroyed in the same
/set request, and the server has decided to therefore ignore the update.</t>
<t><spanx style="verb">invalidProperties</spanx>: (create; update) The record given is invalid in
some way. For example:
<list style="symbols">
<t>It contains properties which are invalid according to the type specification of this record type.</t>
<t>It contains a property that may only be set by the server (e.g. &quot;id&quot;) and are different to the current value. Note, to allow clients to pass whole objects back, it is not an error to include a server-set property so long as the value is identical to the current value on the server (or the value that will be set by the server if a create).</t>
<t>There is a reference to another record (foreign key) and the given id does not correspond to a valid record.</t>
</list>
The SetError object SHOULD also have a property called <spanx style="emph">properties</spanx> of type <spanx style="verb">String[]</spanx> that lists <spanx style="strong">all</spanx> the properties that were invalid.
Individual methods MAY specify more specific errors for certain conditions that would otherwise result in an invalidProperties error. If the condition of one of these is met, it MUST be returned instead of the invalidProperties error.</t>
<t><spanx style="verb">singleton</spanx>: (create; destroy) This is a singleton type, so you cannot create
another one or destroy the existing one.</t>
</list>
</t>
<t>Other possible SetError types MAY be given in specific method descriptions. Other properties MAY also be present on the <spanx style="emph">SetError</spanx> object, as described in the relevant methods.
</t>
<t>The following additional errors may be returned instead of the <spanx style="emph">Foo/set</spanx> response:
</t>
<t><spanx style="verb">requestTooLarge</spanx>: The total number of objects to create, update or destroy exceeds the maximum number the server is willing to process in a single method call.
</t>
<t><spanx style="verb">stateMismatch</spanx>: An <spanx style="verb">ifInState</spanx> argument was supplied and it does not match the current state.
</t>
</section>

<section anchor="copy" title="/copy">
<t>The only way to move Foo records <spanx style="strong">between</spanx> two different accounts is to copy them using the <spanx style="emph">Foo/copy</spanx> method, then once the copy has succeeded, delete the original. The <spanx style="emph">onSuccessDestroyOriginal</spanx> argument allows you to try to do this in one method call, however note that the two different actions are not atomic, and so it is possible for the copy to succeed but the original not to be destroyed for some reason.
</t>
<t>The <spanx style="emph">Foo/copy</spanx> method takes the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">fromAccountId</spanx>: <spanx style="verb">String</spanx>
The id of the account to copy records from.</t>
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account to copy records to. This MUST be different to the <spanx style="verb">fromAccountId</spanx>.</t>
<t><spanx style="strong">ifInState</spanx>: <spanx style="verb">String|null</spanx>
This is a state string as returned by the <spanx style="emph">Foo/get</spanx> method. If supplied, the string must match the current state of the account referenced by the accountId, otherwise the method will be aborted and a <spanx style="verb">stateMismatch</spanx> error returned. If <spanx style="verb">null</spanx>, any changes will be applied to the current state.</t>
<t><spanx style="strong">create</spanx>: <spanx style="verb">String[Foo]</spanx>
A map of <spanx style="emph">creation id</spanx> to a Foo object. The object MUST contain an id property: the id (in the fromAccount) of the record to be copied. Any other properties included are used instead of the current value for that property on the original when creating the copy.</t>
<t><spanx style="strong">onSuccessDestroyOriginal</spanx>: <spanx style="verb">Boolean</spanx> (default: false)
If <spanx style="verb">true</spanx>, an attempt will be made to destroy the original records that were successfully copied: after emitting the <spanx style="emph">Foo/copy</spanx> response, but before processing the next method, the server MUST make a single call to <spanx style="emph">Foo/set</spanx> to destroy the original of each successfully copied record; the output of this is added to the responses as normal to be returned to the client.</t>
<t><spanx style="strong">destroyFromIfInState</spanx>: <spanx style="verb">String|null</spanx>
This argument is passed on as the <spanx style="verb">ifInState</spanx> argument to the implicit <spanx style="emph">Foo/set</spanx> call, if made at the end of this request.</t>
</list>
</t>
<t>Each record copy is considered an atomic unit which may succeed or fail individually.
</t>
<t>The response has the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">fromAccountId</spanx>: <spanx style="verb">String</spanx>
The id of the account records were copied from.</t>
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account records were copied to.</t>
<t><spanx style="strong">oldState</spanx>: <spanx style="verb">String|null</spanx>
The state string that would have been returned by <spanx style="emph">Foo/get</spanx> on this account before making the requested changes, or <spanx style="verb">null</spanx> if the server doesn't know what the previous state string was.</t>
<t><spanx style="strong">newState</spanx>: <spanx style="verb">String</spanx>
The state string that will now be returned by <spanx style="emph">Foo/get</spanx> on this account.</t>
<t><spanx style="strong">created</spanx>: <spanx style="verb">String[Foo]|null</spanx>
A map of the creation id to an object containing any properties of the copied Foo object that are set by the server (such as the <spanx style="emph">id</spanx> in most object types).
This argument is <spanx style="verb">null</spanx> if no Foo objects were successfully copied.</t>
<t><spanx style="strong">notCreated</spanx>: <spanx style="verb">String[SetError]|null</spanx>
A map of creation id to a SetError object for each record that failed to be copied, <spanx style="verb">null</spanx> if none.</t>
</list>
</t>
<t>The <spanx style="strong">SetError</spanx> may be any of the standard set errors that may be returned for a <spanx style="emph">create</spanx> or <spanx style="emph">update</spanx>. In addition, the following SetError is defined:
</t>
<t><spanx style="verb">alreadyExists</spanx>: The server forbids duplicates and the record already exists in the target account. An <spanx style="emph">existingId</spanx> property of type <spanx style="verb">String</spanx> MUST be included on the error object with the id of the existing record.
</t>
<t>The following additional errors may be returned instead of the <spanx style="emph">Foo/copy</spanx> response:
</t>
<t><spanx style="verb">fromAccountNotFound</spanx>: The <spanx style="emph">fromAccountId</spanx> does not correspond to a valid account.
</t>
<t><spanx style="verb">fromAccountNotSupportedByMethod</spanx>: The <spanx style="emph">fromAccountId</spanx> given corresponds to a valid account, but the account does not support this data type.
</t>
<t><spanx style="verb">stateMismatch</spanx>: An <spanx style="verb">ifInState</spanx> argument was supplied and it does not match the current state.
</t>
</section>

<section anchor="query" title="/query">
<t>For data sets where the total amount of data is expected to be very small, clients can just fetch the complete set of data and then do any sorting/filtering locally. However, for large data sets (e.g. multi-gigabyte mailboxes), the client needs to be able to search/sort/window the data type on the server.
</t>
<t>A query on the set of Foos in an account is made by calling <spanx style="emph">Foo/query</spanx>. This takes a number of arguments to determine which records to include, how they should be sorted, and which part of the result should be returned (the full list may be <spanx style="emph">very</spanx> long). The result is returned as a list of Foo ids.
</t>
<t>A call to <spanx style="emph">Foo/query</spanx> takes the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account to use.</t>
<t><spanx style="strong">filter</spanx>: <spanx style="verb">FilterOperator|FilterCondition|null</spanx>
Determines the set of Foos returned in the results. If <spanx style="verb">null</spanx>, all objects in the account of this type are included in the results.
A <spanx style="strong">FilterOperator</spanx> object has the following properties:
<list style="symbols">
<t><spanx style="strong">operator</spanx>: <spanx style="verb">String</spanx>
This MUST be one of the following strings: &quot;AND&quot;/&quot;OR&quot;/&quot;NOT&quot;:
<list style="symbols">
<t><spanx style="strong">AND</spanx>: all of the conditions must match for the filter to match.</t>
<t><spanx style="strong">OR</spanx>: at least one of the conditions must match for the filter to match.</t>
<t><spanx style="strong">NOT</spanx>: none of the conditions must match for the filter to match.</t>
</list></t>
<t><spanx style="strong">conditions</spanx>: <spanx style="verb">(FilterOperator|FilterCondition)[]</spanx>
The conditions to evaluate against each record.</t>
</list>
A <spanx style="strong">FilterCondition</spanx> is an <spanx style="verb">object</spanx>, whose allowed properties and semantics depend on the data type and is defined in the <spanx style="emph">/query</spanx> method specification for that type. It MUST NOT have an <spanx style="emph">operator</spanx> property.</t>
<t><spanx style="strong">sort</spanx>: <spanx style="verb">Comparator[]|null</spanx>
Lists the names of properties to compare between two Foo records, and how to compare them, to determine which comes first in the sort. If two Foo records have an identical value for the first comparator, the next comparator will be considered and so on. If all comparators are the same (this includes the case where an empty array or <spanx style="verb">null</spanx> is given as the <spanx style="emph">sort</spanx> argument), the sort order is server-dependent, but MUST be stable between calls to Foo/query.
A <spanx style="strong">Comparator</spanx> has the following properties:
<list style="symbols">
<t><spanx style="strong">property</spanx>: <spanx style="verb">String</spanx>
The name of the property on the Foo objects to compare.</t>
<t><spanx style="strong">isAscending</spanx>: <spanx style="verb">Boolean</spanx> (optional; default: true)
If true, sort in ascending order. If false, reverse the comparator's results to sort in descending order.</t>
<t><spanx style="strong">collation</spanx>: <spanx style="verb">String</spanx> (optional; default is server-dependent)
The identifier, as registered in the collation registry defined in <xref target="RFC4790"/>, for the algorithm to use when comparing the order of strings. The algorithms the server supports are advertised in the capabilities object returned with the JMAP Session object.
If omitted, the default algorithm is server-dependent, but:
<list style="numbers">
<t>It MUST be unicode-aware.</t>
<t>It SHOULD have reasonable default behavior for many languages when
the user's language is unknown.</t>
<t>It MAY be selected based on out-of-band information about the user's
language/locale.</t>
<t>It SHOULD be case-insensitive where such a concept makes sense for a
language/locale.</t>
</list>
The &quot;i;unicode-casemap&quot; collation (<xref target="RFC5051"/>) and the Unicode Collation Algorithm (<eref target="http://www.unicode.org/reports/tr10/"/>) are two examples that fulfil these criterion.
When the property being compared is not a string, the <spanx style="emph">collation</spanx> property is ignored and the following comparison rules apply based on the type. In ascending order:
<list style="symbols">
<t><spanx style="verb">Boolean</spanx>: <spanx style="verb">false</spanx> comes before <spanx style="verb">true</spanx>.</t>
<t><spanx style="verb">Number</spanx>: A lower number comes before a higher number.</t>
<t><spanx style="verb">Date</spanx>/<spanx style="verb">UTCDate</spanx>: The earlier date comes first.</t>
</list></t>
</list>
The object may also have additional properties as required for specific
sort operations defined in a type's /query method.</t>
<t><spanx style="strong">position</spanx>: <spanx style="verb">Int</spanx> (default: 0)
The 0-based index of the first id in the full list of results to return.
If a negative value is given, it is an offset from the end of the list. Specifically, the negative value MUST be added to the total number of results given the filter, and if still negative clamped to <spanx style="verb">0</spanx>. This is now the 0-based index of the first id to return.
If the index is greater than or equal to the total number of objects in the results list then the <spanx style="emph">ids</spanx> array in the response will be empty, but this is not an error.</t>
<t><spanx style="strong">anchor</spanx>: <spanx style="verb">String|null</spanx>
A Foo id. If supplied the <spanx style="emph">position</spanx> argument is ignored. The index of this id in the results will be used in combination with the <spanx style="verb">anchorOffset</spanx> argument to determine the index of the first result to return (see below for more details).</t>
<t><spanx style="strong">anchorOffset</spanx>: <spanx style="verb">Int|null</spanx>
The index of the first result to return relative to the index of the anchor. This MAY be negative. For example, <spanx style="verb">-1</spanx> means the first Foo before the anchor Foo should be the first result in the results returned (see below for more details).</t>
<t><spanx style="strong">limit</spanx>: <spanx style="verb">PositiveInt|null</spanx>
The maximum number of results to return. If <spanx style="verb">null</spanx>, no limit presumed. The server MAY choose to enforce a maximum <spanx style="verb">limit</spanx> argument. In this case, if a greater value is given (or if it is <spanx style="verb">null</spanx>), the limit should be clamped to the maximum; since the total number of results in the query is returned, the client can determine if it has received all the results. If a negative value is given, the call MUST be rejected with an <spanx style="verb">invalidArguments</spanx> error.</t>
<t><spanx style="strong">calculateTotal</spanx>: <spanx style="verb">Boolean</spanx> (default: false)
Does the client wish to know the total number of results in the query? This may be slow and expensive for servers to calculate, particularly with complex filters, so clients should take care to only request the total when needed.</t>
</list>
</t>
<t>If an <spanx style="strong">anchor</spanx> argument is given, then after filtering and sorting the anchor is looked for in the results. If found, the <spanx style="strong">anchor offset</spanx> is then added to its index. If the resulting index is now negative, it is clamped to 0. This index is now used exactly as though it were supplied as the <spanx style="verb">position</spanx> argument. If the anchor is not found, the call is rejected with an <spanx style="verb">anchorNotFound</spanx> error.
</t>
<t>If an <spanx style="emph">anchor</spanx> is specified, any position argument supplied by the client MUST be ignored. If <spanx style="emph">anchorOffset</spanx> is <spanx style="verb">null</spanx>, it defaults to <spanx style="verb">0</spanx>. If no <spanx style="emph">anchor</spanx> is supplied, any anchor offset argument MUST be ignored.
</t>
<t>A client can use <spanx style="emph">anchor</spanx> instead of <spanx style="emph">position</spanx> to find the index of an id
within a large set of results.
</t>
<t>The response has the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account used for the call.</t>
<t><spanx style="strong">filter</spanx>: <spanx style="verb">FilterOperator|FilterCondition|null</spanx>
The filter used. Echoed back from the call.</t>
<t><spanx style="strong">sort</spanx>: <spanx style="verb">Comparator[]|null</spanx>
The sort options used. Echoed back from the call.</t>
<t><spanx style="strong">queryState</spanx>: <spanx style="verb">String</spanx>
A string encoding the current state of the query on the server. This string MUST change if the results of the query (i.e. the matching ids and their sort order) have changed. The queryState string MAY change if something has changed on the server which means the results may have changed but the server doesn't know for sure.
The queryState string only represents the ordered list of ids that match the particular query (including its sort/filter). There is no requirement for it to change if a property on an object matching the query changes but the query results are unaffected (indeed, it is more efficient if the queryState string does not change in this case). The queryState string only has meaning when compared to future responses to a query with the same type/sort/filter, or when used with /queryChanges to fetch changes.
Should a client receive back a response with a different queryState string to a previous call, it MUST either throw away the currently cached query and fetch it again (note, this does not require fetching the records again, just the list of ids) or, call <spanx style="emph">Foo/queryChanges</spanx> to get the difference.</t>
<t><spanx style="strong">canCalculateChanges</spanx>: <spanx style="verb">Boolean</spanx>
This is <spanx style="verb">true</spanx> if the server supports calling <spanx style="emph">Foo/queryChanges</spanx> with these <spanx style="verb">filter</spanx>/<spanx style="verb">sort</spanx> parameters. Note, this does not guarantee that the <spanx style="emph">Foo/queryChanges</spanx> call will succeed, as it may only be possible for a limited time afterwards due to server internal implementation details.</t>
<t><spanx style="strong">position</spanx>: <spanx style="verb">PositiveInt</spanx>
The 0-based index of the first result in the <spanx style="verb">ids</spanx> array within the complete list of query results.</t>
<t><spanx style="strong">total</spanx>: <spanx style="verb">PositiveInt</spanx> (only if requested)
The total number of foos in the results (given the <spanx style="emph">filter</spanx>). This argument MUST be omitted if the <spanx style="emph">calculateTotal</spanx> request argument is not <spanx style="verb">true</spanx>.</t>
<t><spanx style="strong">ids</spanx>: <spanx style="verb">String[]</spanx>
The list of ids for each foo in the query results, starting at the index given by the <spanx style="emph">position</spanx> argument of this response, and continuing until it hits the end of the results or reaches the <spanx style="verb">limit</spanx> number of ids. If <spanx style="emph">position</spanx> is &gt;= <spanx style="emph">total</spanx>, this MUST be the empty list.</t>
</list>
</t>
<t>The following additional errors may be returned instead of the <spanx style="emph">Foo/query</spanx> response:
</t>
<t><spanx style="verb">anchorNotFound</spanx>: An anchor argument was supplied, but it cannot be found in the results of the query.
</t>
<t><spanx style="verb">unsupportedSort</spanx>: The <spanx style="emph">sort</spanx> is syntactically valid, but includes a property the server does not support sorting on, or a collation method it does not recognise.
</t>
<t><spanx style="verb">unsupportedFilter</spanx>: The <spanx style="emph">filter</spanx> is syntactically valid, but the server cannot
process it. If the filter was the result of a user's search input, the client
SHOULD suggest the user simplify their search.
</t>
</section>

<section anchor="querychanges" title="/queryChanges">
<t>The <spanx style="verb">Foo/queryChanges</spanx> call allows a client to efficiently update the state of any cached foo query to match the new state on the server. It takes the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account to use.</t>
<t><spanx style="strong">filter</spanx>: <spanx style="verb">FilterOperator|FilterCondition|null</spanx>
The filter argument that was used with <spanx style="emph">Foo/query</spanx>.</t>
<t><spanx style="strong">sort</spanx>: <spanx style="verb">Comparator[]|null</spanx>
The sort argument that was used with <spanx style="emph">Foo/query</spanx>.</t>
<t><spanx style="strong">sinceQueryState</spanx>: <spanx style="verb">String</spanx>
The current state of the query in the client. This is the string that was returned as the <spanx style="emph">queryState</spanx> argument in the <spanx style="emph">Foo/query</spanx> response with the same sort/filter. The server will return the changes made to the query since this state.</t>
<t><spanx style="strong">maxChanges</spanx>: <spanx style="verb">PositiveInt|null</spanx>
The maximum number of changes to return in the response. See error descriptions below for more details.</t>
<t><spanx style="strong">upToId</spanx>: <spanx style="verb">String|null</spanx>
The last (highest-index) id the client currently has cached from the query results. When there are a large number of results, in a common case the client may have only downloaded and cached a small subset from the beginning of the results. If the sort and filter are both only on immutable properties, this allows the server to omit changes after this point in the results, which can significantly increase efficiency. If they are not immutable, this argument is ignored.</t>
<t><spanx style="strong">calculateTotal</spanx>: <spanx style="verb">Boolean</spanx> (default: false)
Does the client wish to know the total number of results now in the query? This may be slow and expensive for servers to calculate, particularly with complex filters, so clients should take care to only request the total when needed.</t>
</list>
</t>
<t>The response has the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account used for the call.</t>
<t><spanx style="strong">filter</spanx>: <spanx style="verb">FilterOperator|FilterCondition|null</spanx>
The filter used. Echoed back from the call.</t>
<t><spanx style="strong">sort</spanx>: <spanx style="verb">Comparator[]|null</spanx>
The sort options used. Echoed back from the call.</t>
<t><spanx style="strong">oldQueryState</spanx>: <spanx style="verb">String</spanx>
This is the <spanx style="verb">sinceQueryState</spanx> argument echoed back; the state from which the server is returning changes.</t>
<t><spanx style="strong">newQueryState</spanx>: <spanx style="verb">String</spanx>
This is the state the query will be in after applying the set of changes to the old state.</t>
<t><spanx style="strong">upToId</spanx>: <spanx style="verb">String|null</spanx>
Echoed back from the call.</t>
<t><spanx style="strong">total</spanx>: <spanx style="verb">PositiveInt</spanx> (only if requested)
The total number of foos in the results (given the <spanx style="emph">filter</spanx>). This argument MUST be omitted if the <spanx style="emph">calculateTotal</spanx> request argument is not <spanx style="verb">true</spanx>.</t>
<t><spanx style="strong">removed</spanx>: <spanx style="verb">String[]</spanx>
The <spanx style="emph">id</spanx> for every foo that was in the query results in the old state and is not in the results in the new state.
If the sort and filter are both only on immutable properties and an <spanx style="emph">upToId</spanx> is supplied and exists in the results, any ids that were removed but have a higher index than <spanx style="emph">upToId</spanx> SHOULD be omitted.
If the server cannot calculate this exactly, the server MAY return extra foos in addition that may have been in the old results but are not in the new results.
If the <spanx style="emph">filter</spanx> or <spanx style="emph">sort</spanx> includes a mutable property, the server MUST include all foos in the current results for which this property MAY have changed.</t>
<t><spanx style="strong">added</spanx>: <spanx style="verb">AddedItem[]</spanx>
The id and index in the query results (in the new state) for every foo that has been added to the results since the old state AND every foo in the current results that was included in the <spanx style="emph">removed</spanx> array (due to a filter or sort based upon a mutable property).
If the sort and filter are both only on immutable properties and an <spanx style="emph">upToId</spanx> is supplied and exists in the results, any ids that were added but have a higher index than <spanx style="emph">upToId</spanx> SHOULD be omitted.
The array MUST be sorted in order of index, lowest index first.
An <spanx style="strong">AddedItem</spanx> object has the following properties:
<list style="symbols">
<t><spanx style="strong">id</spanx>: <spanx style="verb">String</spanx></t>
<t><spanx style="strong">index</spanx>: <spanx style="verb">PositiveInt</spanx></t>
</list></t>
</list>
</t>
<t>The result of this is that if the client has a cached sparse array of foo ids in the results in the old state:
</t>

<figure align="center"><artwork align="center">
fooIds = [ "id1", "id2", null, null, "id3", "id4", null, null, null ]
</artwork></figure>
<t>then if it <spanx style="strong">splices out</spanx> all foos in the removed array:
</t>

<figure align="center"><artwork align="center">
removed = [ "id2", … ];
fooIds =&gt; [ "id1", null, null, "id3", "id4", null, null, null ]
</artwork></figure>
<t>and <spanx style="strong">splices in</spanx> (in order) all of the foos in the added array:
</t>

<figure align="center"><artwork align="center">
added = [{ id: "id5", index: 0, … }];
fooIds =&gt; [ "id5", "id1", null, null, "id3", "id4", null, null, null ]
</artwork></figure>
<t>and <spanx style="strong">truncates</spanx> or <spanx style="strong">extends</spanx> to the new total length, then the results will now be in the new state.
</t>
<t>The following additional errors may be returned instead of the <spanx style="emph">Foo/queryChanges</spanx> response:
</t>
<t><spanx style="verb">tooManyChanges</spanx>: There are more changes than the client's <spanx style="emph">maxChanges</spanx> argument. Each item in the removed or added array is considered as one change. The client may retry with a higher max changes or invalidate its cache of the query results.
</t>
<t><spanx style="verb">cannotCalculateChanges</spanx>: The server cannot calculate the changes from the queryState string given by the client. Usually due to the client's state being too old. The client MUST invalidate its cache of the query results.
</t>
</section>

<section anchor="examples" title="Examples">
<t>Suppose we have a type <spanx style="emph">Todo</spanx> with the following properties:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">id</spanx>: <spanx style="verb">String</spanx> (immutable; server-set)
The id of the object.</t>
<t><spanx style="strong">title</spanx>: <spanx style="verb">String</spanx>
A brief summary of what is to be done.</t>
<t><spanx style="strong">keywords</spanx>: <spanx style="verb">String[Boolean]</spanx> (default: )
A set of keywords that apply to the todo. The set is represented as an object, with the keys being the <spanx style="emph">keywords</spanx>. The value for each key in the object MUST be <spanx style="verb">true</spanx>.</t>
<t><spanx style="strong">neuralNetworkTimeEstimation</spanx>: <spanx style="verb">Number</spanx> (server-set)
The title and keywords are fed into the server's state-of-the-art neural
network to get an estimation of how long this todo will take, in seconds.</t>
</list>
</t>
<t>and the server supports all the standard methods for the type, including querying by keyword using the syntax <spanx style="verb">{ hasKeyword: "foo" }</spanx> in the <spanx style="emph">filter</spanx> argument to <spanx style="emph">/query</spanx>.
</t>
<t>Now, a client might want to display the list of todos with either a &quot;music&quot; keyword or a &quot;video&quot; keyword, so it makes the following method call:
</t>

<figure align="center"><artwork align="center">
[[ "Todo/query", {
  "accountId": "x",
  "filter": {
    "operator": "OR",
    "conditions": [
      { "hasKeyword": "music" },
      { "hasKeyword": "video" }
    ]
  },
  "sort": [{ "property": "title" }],
  "position": 0,
  "limit": 10
}, "0" ],
[ "Todo/get", {
  "accountId": "x",
  "#ids": {
    "resultOf": "0",
    "name": "Todo/query",
    "path": "/ids"
  },
}, "1" ]]
</artwork></figure>
<t>This would query the server for the set of todos with a keyword of &quot;music&quot;, sorted by title, and limited to the first 10 results. It fetches the full object for each of these Todos using backreferences to reference the result of the query. The response might look something like:
</t>

<figure align="center"><artwork align="center">
[[ "Todo/query", {
  "accountId": "x",
  "filter": {
    "operator": "OR",
    "conditions": [
      { "hasKeyword": "music" },
      { "hasKeyword": "video" }
    ]
  },
  "sort": [{ "property": "title" }],
  "queryState": "y13213",
  "canCalculateChanges": true,
  "position": 0,
  "ids": [ "a", "b", "c", "d", "e", "f", "g", "h", "i", "j" ]
}, "0" ],
[ "Todo/get", {
  "accountId": "x",
  "state": "10324",
  "list": [{
    "id": "a",
    "title": "Practise Piano",
    "keywords": {
      "music": true,
      "beethoven": true,
      "mozart": true,
      "liszt": true,
      "rachmaninov": true
    },
    "neuralNetworkTimeEstimation": 3600
  }, {
    "id": "b",
    "title": "Listen to Daft Punk",
    "keywords": {
      "music": true,
      "trance": true
    },
    "neuralNetworkTimeEstimation": 18000
  },
  ...
  ]
}, "1" ]]
</artwork></figure>
<t>Now suppose the user adds a keyword &quot;chopin&quot; and removes the keyword &quot;mozart&quot; from the &quot;Practise Piano&quot; task. The client may send the whole object to the server, as this is a valid PatchObject:
</t>

<figure align="center"><artwork align="center">
[[ "Todo/set", {
  "accountId": "x",
  "ifInState": "10324",
  "update": {
    "a": {
      "id": "a",
      "title": "Practise Piano",
      "keywords": {
        "music": true,
        "beethoven": true,
        "chopin": true,
        "liszt": true,
        "rachmaninov": true,
      }
      "neuralNetworkTimeEstimation": 360
    }
  }
}, "0" ]]
</artwork></figure>
<t>or it may send a minimal patch:
</t>

<figure align="center"><artwork align="center">
[[ "Todo/set", {
  "accountId": "x",
  "ifInState": "10324",
  "update": {
    "a": {
      "keywords/chopin": true,
      "keywords/mozart": null
    }
  }
}, "0" ]]
</artwork></figure>
<t>The effect is exactly the same on the server in either case, and presuming the server is still in state &quot;10324&quot; it will probably return success:
</t>

<figure align="center"><artwork align="center">
[[ "Todo/set", {
  "accountId": "x",
  "oldState": "10324",
  "newState": "10329",
  "updated": {
    "a": {
      "neuralNetworkTimeEstimation": 5400
    }
  }
}, "0" ]]
</artwork></figure>
<t>The server changed the &quot;neuralNetworkTimeEstimation&quot; property on the object as part of this change; as this changed in a way <spanx style="emph">not</spanx> explicitly requested by the PatchObject sent to the server, it is returned with the &quot;updated&quot; confirmation.
</t>
<t>Now, suppose another user deleted the &quot;Listen to Daft Punk&quot; todo. The first user will receive a push notification (see later in the spec) with the changed state string for the &quot;Todo&quot; type. Since the new string does not match its current state, it knows it needs to check for updates. It may make a request like:
</t>

<figure align="center"><artwork align="center">
[[ "Todo/changes", {
  "accountId": "x",
  "sinceState": "10324",
  "maxChanges": 50,
}, "0" ],
[ "Todo/queryChanges", {
  "accountId": "x",
  "filter": {
    "operator": "OR",
    "conditions": [
      { "hasKeyword": "music" },
      { "hasKeyword": "video" }
    ]
  },
  "sort": [{ "property": "title" }],
  "sinceQueryState": "y13213"
  "maxChanges": 50,
}, "1" ]]
</artwork></figure>
<t>and receive in response:
</t>

<figure align="center"><artwork align="center">
[[ "Todo/changes", {
  "accountId": "x",
  "oldState": "10324",
  "newState": "871903",
  "hasMoreChanges": false,
  "created": [],
  "updated": [],
  "destroyed": ["b"]
}, "0" ],
[ "Todo/queryChanges", {
  "accountId": "x",
  "filter": {
    "operator": "OR",
    "conditions": [
      { "hasKeyword": "music" },
      { "hasKeyword": "video" }
    ]
  },
  "sort": [{ "property": "title" }],
  "oldQueryState": "y13213"
  "newQueryState": "y13218"
  "removed": ["b"],
  "added": null
}, "1" ]]
</artwork></figure>
<t>Suppose the user has access to another account <spanx style="verb">y</spanx>, for example a team account shared between multiple users. To move an existing Todo from account <spanx style="verb">x</spanx>, the client would call:
</t>

<figure align="center"><artwork align="center">
[[ "Todo/copy", {
  "fromAccountId": "x",
  "accountId": "y",
  "create": {
    "k5122": {
      "id": "a"
    }
  },
  "onSuccessDestroyOriginal": true,
}, "0" ]]
</artwork></figure>
<t>The server successfully copies the Todo to a new account (where it receives a new id) and deletes the original. Due to the implicit call to &quot;Todo/set&quot;, there are two responses to the single method call, both with the same client id:
</t>

<figure align="center"><artwork align="center">
[[ "Todo/copy", {
  "fromAccountId": "x",
  "accountId": "y",
  "created": {
    "k5122": {
      "id": "97"
    }
  },
  "oldState": "c1d64ecb038c",
  "newState": "33844835152b"
}, "0" ],
[ "Todo/set", {
  "accountId": "x",
  "oldState": "871903"
  "newState": "871909",
  "destroyed": [ "a" ],
  ...
}, "0" ]]
</artwork></figure>
</section>

<section anchor="proxy-considerations" title="Proxy considerations">
<t>JMAP has been designed to allow an API endpoint to easily proxy through to one
or more JMAP servers. This may be useful for load balancing, augmenting capabilities, or presenting a single endpoint to accounts hosted on different JMAP servers (splitting the request based on each method's &quot;accountId&quot; argument). The proxy need only understand the general structure of a JMAP Request object, it does not need to know anything specifically about the methods and arguments it will pass through to other servers.
</t>
<t>If splitting up the methods in a request to call them on different backend servers, the proxy must do two things to ensure back-references and creation id references resolve the same as if the entire request were processed on a single server:
</t>
<t>
<list style="numbers">
<t>It must pass a <spanx style="verb">createdIds</spanx> property with each subrequest. If this is not
given by the client, an empty object should be used for the first subrequest. The <spanx style="verb">createIds</spanx> property of each subresponse should be passed on in the next subrequest.</t>
<t>It must resolve back references to previous method results that were
processed on a different server. This is a relatively simple syntactic substitution, described in section 3.6.</t>
</list>
</t>
<t>When splitting a request based on accountId, proxy implementors do need to be aware of <spanx style="verb">/copy</spanx> methods, that copy between accounts. If the accounts are on different servers, the proxy will have to implement this functionality directly.
</t>
</section>
</section>

<section anchor="binary-data" title="Binary data">
<t>Binary data is referenced by a <spanx style="emph">blobId</spanx> in JMAP, and uploaded/downloaded separately to the core API. The blobId solely represents the raw bytes of data, not any associated metadata such as a file name or content type. Such metadata is stored alongside the blobId in the object referencing it. The data represented by a blobId is immutable.
</t>
<t>Any blobId that exists within an account may be used when creating/updating another object in that account. For example, an Email type may have a blobId that represents the <xref target="RFC5322"/> representation of the message. A client could create a new Email object with an attachment and use this blobId, in effect attaching the old message to the new one. Similarly it could attach any existing attachment of an old message without having to download and upload it again.
</t>
<t>When the client uses a blobId in a create/update, the server MAY assign a new blobId to refer to the same binary data within the new/updated object. If it does so, it MUST return any properties that contain a changed blobId in the created/updated response so the client gets the new ids.
</t>
<t>A blob that is not referenced by a JMAP object (e.g. as a message attachment) MAY be deleted by the server to free up resources. Uploads (see below) are initially unreferenced blobs. To ensure interoperability:
</t>
<t>
<list style="symbols">
<t>The server SHOULD use a separate quota for unreferenced blobs to the user's
usual quota.</t>
<t>This quota SHOULD be at least the maximum total size that a single
object can reference on this server. For example, if supporting JMAP Mail, this should be at least the maximum total attachments size for a message.</t>
<t>When an upload would take the user over quota, the server MUST delete
unreferenced blobs in date order, oldest first, until there is room for the new blob.</t>
<t>Except where quota restrictions force early deletion, an unreferenced blob
MUST NOT be deleted for at least 1 hour from the time of upload; if reuploaded, the same blobId MAY be returned, but this SHOULD reset the expiry time.</t>
<t>A blob MUST NOT be deleted during the method call which removed the last
reference, so that a client can issue a create and a destroy that both reference the blob within the same method call.</t>
</list>
</t>

<section anchor="uploading-binary-data" title="Uploading binary data">
<t>There is a single endpoint which handles all file uploads for an account, regardless of what they are to be used for. The JMAP Session object has an <spanx style="emph">uploadUrl</spanx> property in <xref target="RFC6570"/> URI Template (level 1) format, which MUST contain a variable called <spanx style="verb">accountId</spanx>. The client may use this template in combination with an <spanx style="emph">accountId</spanx> to get the URL of the file upload resource.
</t>
<t>To upload a file, the client submits an authenticated POST request to the file upload resource.
</t>
<t>A successful request MUST return a single JSON object with the following properties as the response:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account used for the call.</t>
<t><spanx style="strong">blobId</spanx>: <spanx style="verb">String</spanx>,
The id representing the binary data uploaded. The data for this id is immutable. The id <spanx style="emph">only</spanx> refers to the binary data, not any metadata.</t>
<t><spanx style="strong">type</spanx>: <spanx style="verb">String</spanx>
The media type of the file (as specified in <xref target="RFC6838"/>, section 4.2) as set in the Content-Type header of the upload HTTP request.</t>
<t><spanx style="strong">size</spanx>: <spanx style="verb">PositiveInt</spanx>
The size of the file in octets.</t>
</list>
</t>
<t>If identical binary content to an existing blob in the account is uploaded, the existing blobId MAY be returned.
</t>
<t>When an HTTP error response is returned to the client, the server SHOULD return a JSON &quot;problem details&quot; object as the response body, as per <xref target="RFC7807"/>.
</t>
</section>

<section anchor="downloading-binary-data" title="Downloading binary data">
<t>The JMAP Session object has a <spanx style="emph">downloadUrl</spanx> property, which is in <xref target="RFC6570"/> URI Template (level 1) format. The URL MUST contain variables called <spanx style="verb">accountId</spanx>, <spanx style="verb">blobId</spanx>, <spanx style="verb">type</spanx> and <spanx style="verb">name</spanx>.
</t>
<t>To download a file, the client makes an authenticated GET request to the download URL with the appropriate variables substituted in:
</t>
<t>
<list style="symbols">
<t><spanx style="verb">accountId</spanx>: The id of the account to which the record with the blobId
belongs.</t>
<t><spanx style="verb">blobId</spanx>: The blobId representing the data of the file to download.</t>
<t><spanx style="verb">type</spanx>: The type for the server to set in the <spanx style="verb">Content-Type</spanx> header of the
response; the blobId only represents the binary data and does not have a content-type inately associated with it.</t>
<t><spanx style="verb">name</spanx>: The name for the file; the server MUST return this as the filename if
it sets a <spanx style="verb">Content-Disposition</spanx> header.</t>
</list>
</t>
<t>As the data for a particular blobId is immutable, and thus the response in the generated download URL is too, implementors are recommended to set long cache times for successful responses, for example <spanx style="verb">Cache-Control: private, max-age=31536000</spanx>.
</t>
<t>When an HTTP error response is returned to the client, the server SHOULD return a JSON &quot;problem details&quot; object as the response body, as per <xref target="RFC7807"/>.
</t>
</section>

<section anchor="blobcopy" title="Blob/copy">
<t>Binary data may be copied <spanx style="strong">between</spanx> two different accounts using the <spanx style="emph">Blob/copy</spanx> method, rather than having to download then reupload on the client.
</t>
<t>The <spanx style="emph">Blob/copy</spanx> method takes the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">fromAccountId</spanx>: <spanx style="verb">String</spanx>
The id of the account to copy blobs from.</t>
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account to copy blobs to.</t>
<t><spanx style="strong">blobIds</spanx>: <spanx style="verb">String[]</spanx>
A list of ids of blobs to copy to the other account.</t>
</list>
</t>
<t>The response has the following arguments:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">fromAccountId</spanx>: <spanx style="verb">String</spanx>
The id of the account emails were copied from.</t>
<t><spanx style="strong">accountId</spanx>: <spanx style="verb">String</spanx>
The id of the account emails were copied to.</t>
<t><spanx style="strong">copied</spanx>: <spanx style="verb">String[String]|null</spanx>
A map of the blobId in the <spanx style="emph">fromAccount</spanx> to the id for the blob in the <spanx style="emph">toAccount</spanx>, or <spanx style="verb">null</spanx> if none were successfully copied.</t>
<t><spanx style="strong">notCopied</spanx>: <spanx style="verb">String[SetError]|null</spanx>
A map of blobId to a SetError object for each blob that failed to be copied, <spanx style="verb">null</spanx> if none.</t>
</list>
</t>
<t>The <spanx style="strong">SetError</spanx> may be any of the standard set errors that may be returned for a <spanx style="emph">create</spanx>. In addition, the <spanx style="verb">notFound</spanx> SetError error may be returned if the blobId to be copied cannot be found.
</t>
<t>The following additional errors may be returned instead of the <spanx style="emph">Blob/copy</spanx> response:
</t>
<t><spanx style="verb">fromAccountNotFound</spanx>: The <spanx style="emph">fromAccountId</spanx> included with the request does not correspond to a valid account.
</t>
</section>
</section>

<section anchor="push" title="Push">
<t>Push notifications allow clients to efficiently update (almost) instantly to stay in sync with data changes on the server. In JMAP, push notifications occur out-of-band (i.e. not over the same connection as API exchanges), so that they can make use of efficient native push mechanisms on different platforms.
</t>
<t>The general model for push is simple and sends minimal data over the push channel. The format allows multiple changes to be coalesced into a single push update, and the frequency of pushes to be rate limited by the server. It doesn't matter if some push events are dropped before they reach the client; it will still get all changes next time it syncs.
</t>

<section anchor="the-statechange-object" title="The StateChange object">
<t>When something changes on the server, the server pushes a <spanx style="strong">StateChange</spanx> object to the client. A <spanx style="strong">StateChange</spanx> object has the following properties:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">changed</spanx>: <spanx style="verb">String[TypeState]</spanx>
A map of <spanx style="emph">account id</spanx> to an object encoding the state of data types that have changed for that account since the last push event, for each of the accounts to which the user has access and for which something has changed.
A <spanx style="strong">TypeState</spanx> object is a map. The keys are the type name <spanx style="verb">Foo</spanx> (e.g. &quot;Mailbox&quot; or &quot;Email&quot;), and the value is the <spanx style="emph">state</spanx> property that would currently be returned by a call to <spanx style="emph">Foo/get</spanx>.
The client can compare the new state strings with its current values to see whether it has the current data for these types. If not, the changes can then be efficiently fetched in a single standard API request (using the <spanx style="emph">/changes</spanx> type methods).</t>
</list>
</t>

<section anchor="example-3" title="Example">
<t>In this example, the server has almalgamated a few changes together across two different accounts the user has access to, before pushing the following StateChange object to the client:
</t>

<figure align="center"><artwork align="center">
{
  "changed": {
    "a3123": {
      "Email": "d35ecb040aab",
      "EmailDelivery": "428d565f2440",
      "CalendarEvent": "87accfac587a"
    },
    "a43461d": {
      "Mailbox": "0af7a512ce70",
      "CalendarEvent": "7a4297cecd76"
    },
  }
}
</artwork></figure>
<t>The client can compare the state strings with its current state for the Email, CalendarEvent etc. object types in the appropriate accounts to see if it needs to fetch changes. If the client is itself making changes, it may receive a StateChange object while the /set API call is in flight. It can wait until the call completes and then compare if the new state string after the /set is the same as was pushed in the StateChange object; if so, it does not need to waste a request asking for changes it already knows.
</t>
</section>
</section>

<section anchor="pushsubscription" title="PushSubscription">
<t>A push subscription is a message delivery context established between the client and a push service. A <spanx style="strong">PushSubscription</spanx> object has the following properties:
</t>
<t>
<list style="symbols">
<t><spanx style="strong">id</spanx>: <spanx style="verb">String</spanx> (immutable; server-set)
The id of the push subscription.</t>
<t><spanx style="strong">deviceClientId</spanx>: <spanx style="verb">String</spanx> (immutable)
An id that uniquely identifies the client + device it is running on. The purpose of this is to allow clients to identify which PushSubscription objects they created even if they lose their local state, so they can revoke or update them. This string MUST be different on different devices, and be different from other vendors. It SHOULD be easy to re-generate, not depend on persisted state. A secure hash that includes both a device id and vendor id is one way this could be achieved.</t>
<t><spanx style="strong">url</spanx>: <spanx style="verb">String</spanx> (immutable)
An absolute URL where the JMAP server will POST the data for the push message.
This MUST begin with <spanx style="verb">https://</spanx>.</t>
<t><spanx style="strong">keys</spanx>: <spanx style="verb">Object|null</spanx> (immutable)
Client-generated encryption keys. If supplied the server MUST use them as specified in <xref target="RFC8291"/> to encrypt all data sent to the push subscription. The object MUST have the following properties:
<list style="symbols">
<t><spanx style="strong">p256dh</spanx>: the P-256 ECDH Diffie-Hellman public key as described in <xref target="RFC8291"/>, encoded in URL-safe Base64 representation as defined in <xref target="RFC4648"/>.</t>
<t><spanx style="strong">auth</spanx>: the authentication secret as described in <xref target="RFC8291"/>, encoded in URL-safe base64 representation as defined in <xref target="RFC4648"/>.</t>
</list></t>
<t><spanx style="strong">expires</spanx>: <spanx style="verb">UTCDate|null</spanx>
The time this push subscription expires. If specified, the JMAP server MUST NOT make further requests to this resource after this time. It MAY automatically destroy the push subscription at or after this time.
The server MAY choose to set an expiry if none is given by the client, or modify the expiry time given by the client to a shorter duration.</t>
<t><spanx style="strong">types</spanx>: <spanx style="verb">String[]|null</spanx>
A list of types the client is interested in (using the same names as the keys in the <spanx style="emph">TypeState</spanx> object). Push events will only be sent if the data for one of these types changes. Other types are omitted from the TypeState object. If <spanx style="verb">null</spanx>, changes will be pushed for all types.</t>
</list>
</t>
<t>Clients may create a push subscription on the JMAP server, which will then make a POST request to the associated push endpoint whenever an event occurs.
</t>
<t>The POST request MUST have a content type of <spanx style="verb">application/json</spanx> and contain the UTF-8 JSON encoded <spanx style="emph">StateChange</spanx> object as the body. The request MUST have a <spanx style="verb">TTL</spanx> header, and MAY have <spanx style="verb">Urgency</spanx> and/or <spanx style="verb">Topic</spanx> headers, as specified in section 5 of <xref target="RFC8030"/>.
</t>
<t>If the response code is <spanx style="verb">503</spanx> (Service Unavailable), the JMAP server MAY try again later, but may also just drop the event. If the response code is <spanx style="verb">429</spanx> (Too Many Requests) the JMAP server SHOULD attempt to reduce the frequency of pushes to that URL. Any other <spanx style="verb">4xx</spanx> or <spanx style="verb">5xx</spanx> response code MUST be considered a <spanx style="strong">permanent failure</spanx> and the push subscription SHOULD be destroyed.
</t>
<t>The use of this push endpoint conforms with the use of a push endpoint by an Application Server as defined in <xref target="RFC8030"/>. A client MAY use the rest of <xref target="RFC8030"/> in combination with its own Push Server to form a complete end-to-end solution, or MAY rely on alternative mechanisms to ensure the delivery of the pushed data after it leaves the JMAP server.
</t>
<t>The push subscription is tied to the credentials used to authenticate the API request that created it. Should these credentials expire or be revoked, the push subscription MUST be destroyed by the JMAP server.
</t>
<t>When these credentials have their own expiry (i.e. it is a session with a timeout), the server SHOULD NOT set or bound the expiry time for the push subscription given by the client, but MUST expire it when the session expires.
</t>
<t>When these credentials are not time bounded (e.g. <xref target="RFC7617"/> Basic Authentication), the server SHOULD set an expiry time for the push subscription if none given, and limit the expiry time if set too far in the future. This maximum expiry time MUST be at least 48 hours in the future and SHOULD be at least 7 days in the future.
</t>
<t>In the case of separate access and refresh credentials, as in <xref target="RFC6749"/> Oauth 2.0, the server SHOULD tie the push subscription to the validity of the refresh token rather than the access token, and behave according to whether this is time-limited or not.
</t>

<section anchor="pushsubscriptionget" title="PushSubscription/get">
<t>Standard <spanx style="emph">/get</spanx> method, except it does <spanx style="strong">not</spanx> take or return an <spanx style="emph">accountId</spanx> argument, as push subscriptions are not tied to specific accounts. It also does <spanx style="strong">not</spanx> return a <spanx style="emph">state</spanx> argument. The <spanx style="emph">ids</spanx> argument may be <spanx style="verb">null</spanx> to fetch all at once.
</t>
<t>As the <spanx style="emph">url</spanx> and <spanx style="emph">keys</spanx> properties may contain data that is private to a particular device, the values for these properties MUST NOT be returned. If the <spanx style="emph">properties</spanx> argument is <spanx style="verb">null</spanx> or omitted, the server MUST default to all properties excluding these two. If one of them is explicitly requested, the method call MUST be rejected with a <spanx style="verb">forbidden</spanx> error.
</t>
</section>

<section anchor="pushsubscriptionset" title="PushSubscription/set">
<t>Standard <spanx style="emph">/set</spanx> method except it does <spanx style="strong">not</spanx> take or return an <spanx style="emph">accountId</spanx> argument, as push subscriptions are not tied to specific accounts. It also does <spanx style="strong">not</spanx> take an <spanx style="emph">ifInState</spanx> argument or return <spanx style="emph">oldState</spanx> or <spanx style="emph">newState</spanx> arguments.
</t>
<t>The <spanx style="emph">url</spanx> and <spanx style="emph">keys</spanx> properties are immutable; if the client wishes to change these, it must destroy the current push subscription and create a new one.
</t>
<t>The client may update the <spanx style="emph">expires</spanx> property to extend (or, less commonly, shorten) the lifetime of a push subscription. The server MAY modify the proposed new expiry time to enforce server-defined limits.
</t>
<t>Clients SHOULD NOT update or destroy a push subscription that they did not create (i.e. has a <spanx style="emph">deviceClientId</spanx> that they do not recognise).
</t>
</section>

<section anchor="example-4" title="Example">
<t>A client with deviceClientId <spanx style="verb">a889-ffea-910</spanx> fetches the set of push subscriptions currently on the server, making an API request with:
</t>

<figure align="center"><artwork align="center">
[[ "PushSubscription/get", {
  "ids": null,
}, "0" ]]
</artwork></figure>
<t>Which returns:
</t>

<figure align="center"><artwork align="center">
[[ "PushSubscription/get", {
  "list": [{
      "id": "e50b2c1d-9553-41a3-b0a7-a7d26b599ee1",
      "deviceClientId": "b37ff8001ca0",
      "expires": "2018-01-31T00:13:21Z",
      "types": [ "Todo" ]
  }, {
      "id": "f2d0aab5-e976-4e8b-ad4b-b380a5b987e4",
      "deviceClientId": "8980f37f6c71",
      "expires": "2018-02-12T05:55:00Z",
      "types": [ "Mailbox", "Email", "EmailDelivery" ]
  }],
  "notFound": []
}, "0" ]]
</artwork></figure>
<t>Since neither of the returned push subscription objects have the client's deviceClientId, it knows it does not have a current push subscription active on the server. So it creates one, sending this request:
</t>

<figure align="center"><artwork align="center">
[[ "PushSubscription/set", {
  "create": {
    "4f29": {
      "deviceClientId": "a889-ffea-910",
      "url": "https://example.com/push/?device=8980f37f6c&amp;client=12c6d086",
      "types": null
    }
  }
}, "0" ]]
</artwork></figure>
<t>The server creates the push subscription but limits the expiry time to 7 days in the future, returning this response:
</t>

<figure align="center"><artwork align="center">
[[ "PushSubscription/set", {
  "created": {
    "4f29": {
      "id": "043dcfa4-1dd4-41ef-9156-2c89b3b19c60",
      "keys": null,
      "expires": "2018-07-13T02:14:29Z"
    }
  }
}, "0" ]]
</artwork></figure>
<t>Two days later, the client updates the subscription to extend its lifetime, sending this request:
</t>

<figure align="center"><artwork align="center">
[[ "PushSubscription/set", {
  "update": {
    "043dcfa4-1dd4-41ef-9156-2c89b3b19c60": {
      "expires": "2018-08-13T00:00:00Z"
    }
  }
}, "0" ]]
</artwork></figure>
<t>The server extends the expiry time, but only again to its maximum limit of 7 days in the future, returning this response:
</t>

<figure align="center"><artwork align="center">
[[ "PushSubscription/set", {
  "updated": {
    "043dcfa4-1dd4-41ef-9156-2c89b3b19c60": {
      "expires": "2018-07-16T02:22:50Z"
    }
  }
}, "0" ]]
</artwork></figure>
</section>
</section>

<section anchor="event-source" title="Event Source">
<t>Clients that can hold open TCP connections can connect directly to the JMAP server to receive push notifications via a <spanx style="verb">text/event-stream</spanx> resource, as described in <eref target="http://www.w3.org/TR/eventsource/"/>. This is a long running HTTP request down which the server can push data.
</t>
<t>When a change occurs in the data on the server, it pushes an event called <spanx style="strong">state</spanx> to any connected clients, with the <spanx style="emph">StateChange</spanx> object as the data.
</t>
<t>The server SHOULD also send a new event id that encodes the entire server state visible to the user immediately after sending a <spanx style="emph">state</spanx> event. When a new connection is made to the event-source endpoint, a client following the <eref target="https://html.spec.whatwg.org/multipage/server-sent-events.html">server-sent events specification</eref> will send a Last-Event-ID HTTP header with the last id it saw, which the server can use to work out whether the client has missed some changes. If so, it SHOULD send these changes immediately on connection.
</t>
<t>The client MAY add a query parameter called <spanx style="verb">types</spanx>, with the value being a comma-separated list of type names. If present, the server MUST only push changes for the types in this list. If omitted, changes to all types are pushed.
</t>
<t>The client MAY add a query parameter called <spanx style="verb">closeafter</spanx> with value <spanx style="verb">state</spanx> to the event-source resource URL when requesting the event-source resource. If set, the server MUST end the HTTP response after pushing a <spanx style="emph">state</spanx> event. This can be used by clients in environments where buffering proxies prevent the pushed data from arriving immediately, or indeed at all, when operating in the usual mode.
</t>
<t>The client MAY add a query parameter called <spanx style="verb">ping</spanx>, with a positive integer value representing a length of time in seconds, e.g. <spanx style="verb">ping=300</spanx>. If set, the server MUST send an event called <spanx style="strong">ping</spanx> whenever this time elapses since the previous event was sent. This MUST NOT set a new event id.
</t>
<t>The server MAY modify the interval given as a query parameter to be subject to a minimum and/or maximum value. For interoperability, servers MUST NOT have a minimum allowed value higher than 30 or a maximum allowed value less than 300.
</t>
<t>The data for the ping event MUST be a JSON object containing an <spanx style="emph">interval</spanx> property, the value (type <spanx style="verb">PositiveInt</spanx>) being the interval in seconds the server is using to send pings (this may be different to the requested value if the server clamped it to be within a min/max value).
</t>
<t>Clients can monitor for the <spanx style="emph">ping</spanx> event to help determine when the closeafter mode may be required.
</t>
<t>Refer to the JMAP Session resource section of this spec for details on how to get the URL for the event-source resource. Requests to the resource MUST be authenticated.
</t>
<t>A client MAY hold open multiple connections to the event-source resource, although it SHOULD try to use a single connection for efficiency.
</t>
</section>
</section>

<section anchor="security-considerations" title="Security considerations">

<section anchor="transport-confidentiality" title="Transport confidentiality">
<t>All HTTP requests MUST use <xref target="RFC5246"/> TLS (https) transport to ensure the confidentiality of data sent and received via JMAP. Clients MUST validate TLS certificate chains to protect against man-in-the-middle attacks.
</t>
</section>

<section anchor="authentication-scheme" title="Authentication scheme">
<t>A number of HTTP authentication schemes have been standardised (<eref target="https://www.iana.org/assignments/http-authschemes/http-authschemes.xhtml"/>). Servers should take care to assess the security characteristics of different schemes in relation to their needs when deciding what to implement.
</t>
<t>If offering the Basic authentication scheme, services are strongly recommended  to not allow a user's regular password but require generation of a unique &quot;app password&quot; via some external mechanism for each client they wish to connect. This allows connections from different devices to be differentiated by the server, and access to be individually revoked.
</t>
</section>

<section anchor="service-autodiscovery-1" title="Service autodiscovery">
<t>Unless secured by something like DNSSEC, autodiscovery of server details is
vulnerable to a DNS poisoning attack leading to the client talking to an attacker's server instead of the real JMAP server. The attacker may then man-in-the-middle requests and depending on the authentication scheme, steal credentials to generate its own requests.
</t>
<t>Clients that do not support SRV lookups are likely to try just using the <spanx style="verb">/.well-known/jmap</spanx> path directly against the domain of the username over HTTPS. Servers SHOULD ensure this path resolves or redirects to the correct JMAP Session resource to allow this to work. If this is not feasible, servers MUST ensure this path cannot be controlled by an attacker, as again it may be used to steal credentials.
</t>
</section>

<section anchor="json-parsing" title="JSON parsing">
<t>The security considerations of <xref target="RFC7159"/> apply to the use of JSON as the data interchange format.
</t>
</section>

<section anchor="denial-of-service" title="Denial of service">
<t>A small request may result in a very large response, and require considerable
work on the server if resource limits are not enforced. JMAP provides mechanisms for advertising and enforcing a wide variety of limits for mitigating this threat, including limits on number of objects fetched in a single method call, number of methods in a single request, number of concurrent requests, etc.
</t>
<t>JMAP servers MUST implement sensible limits to mitigate against resource exhaustion attacks.
</t>
</section>

<section anchor="push-encryption" title="Push encryption">
<t>When data changes, a small object is pushed with the new state strings for the types that have changed. While the data here is minimal, a passive man-in-the-middle attacker may be able to gain useful information. To ensure confidentiality, if the push is sent via a third party outside of the control of the client and JMAP server the client MUST specify encryption keys when establishing the PushSubscription.
</t>
<t>The privacy and security considerations of <xref target="RFC8030"/> and <xref target="RFC8291"/> also all apply to the use of the PushSubscription mechanism.
</t>
</section>
</section>

<section anchor="iana-considerations" title="IANA considerations">

<section anchor="assignment-of-jmap-service-name" title="Assignment of jmap service name">
<t>IANA will assign the 'jmap' service name in the 'Service Name and Transport Protocol Port Number Registry' <xref target="RFC6335"/>.
</t>
<t>Service Name: jmap
</t>
<t>Transport Protocol(s): tcp
</t>
<t>Assignee: IESG
</t>
<t>Contact: IETF Chair
</t>
<t>Description: JSON Meta Application Protocol
</t>
<t>Reference: this document
</t>
<t>Assignment Notes: this service name was previously assigned under the name <spanx style="emph">JSON Mail Access Protocol</spanx>. This will be de-assigned and re-assigned with the approval of the previous assignee.
</t>
</section>

<section anchor="registration-of-wellknown-uri-suffix-for-jmap" title="Registration of well-known URI suffix for JMAP">
<t>IANA will register the following well-known URI suffix for JMAP as described in <xref target="RFC5785"/>:
</t>
<t>URI Suffix: jmap
</t>
<t>Change Controller: IETF
</t>
<t>Specification Document: this document, section 2.2.
</t>
</section>

<section anchor="registration-of-the-jmap-urn-subnamespace" title="Registration of the jmap URN sub-namespace">
<t>IANA will register the following URN sub-namespace in the &quot;IETF URN Sub-namespace for Registered Protocol Parameter Identifiers&quot; registry as described in <xref target="RFC3553"/>.
</t>
<t>Registered Parameter Identifier: jmap
</t>
<t>Reference: this document, next section
</t>
<t>IANA Registry Reference: {insert IANA registry URL for registry in next section, upon approval}
</t>
</section>

<section anchor="creation-of-jmap-capabilities-registry" title="Creation of &quot;JMAP Capabilities&quot; registry">
<t>IANA will create a registry for JMAP capabilities as described in section 2. JMAP capabilities are advertised in the <spanx style="emph">capabilities</spanx> property of the <spanx style="emph">JMAP Session</spanx> resource. They are used to extend the functionality of a JMAP server. A capability is referenced by a URI. The JMAP capability URI can be a URN starting with <spanx style="verb">urn:ietf:params:jmap:</spanx> plus a unique suffix which is the index value in the jmap URN sub-namespace. Registration of a JMAP capability with another form of URI has no impact on the jmap URN sub-namespace.
</t>
<t>This registry follows the expert review process unless the &quot;intended use&quot; field is <spanx style="emph">common</spanx> or <spanx style="emph">placeholder</spanx> in which case registration follows the specification required process.
</t>
<t>A JMAP capability registration can have an intended use of <spanx style="emph">common</spanx>, <spanx style="emph">placeholder</spanx>, <spanx style="emph">limited</spanx>, or <spanx style="emph">obsolete</spanx>. IANA will list common use registrations prominently and separately from those with other intended use values.
</t>
<t>The JMAP capability registration procedure is not a formal standards process, but rather an administrative procedure intended to allow community comment and sanity checking without excessive time delay.
</t>
<t>A <spanx style="emph">placeholder</spanx> registration reserves part of the jmap urn namespace for another purpose but is typically not included in the <spanx style="emph">capabilities</spanx> property of the <spanx style="emph">JMAP Session</spanx> resource.
</t>

<section anchor="preliminary-community-review" title="Preliminary community review">
<t>Notice of a potential JMAP common use registration SHOULD be sent to the jmap@ietf.org mailing list for review. This mailing list is appropriate to solicit community feedback on a proposed JMAP capability. Registrations that are not intended for common use MAY be sent to the list for review as well; doing so is entirely OPTIONAL, but is encouraged.
</t>
<t>The intent of the public posting to this list is to solicit comments and feedback on the choice of capability 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 and at any time.
</t>
</section>

<section anchor="submit-request-to-iana" title="Submit request to IANA">
<t>Registration requests can be sent to iana@iana.org.
</t>
</section>

<section anchor="designated-expert-review" title="Designated expert review">
<t>For a limited use registration, the designated expert's (DE) primary concern is preventing name collisions and encouraging the submitter to document security and privacy considerations; a published specification is not required. For a common use registration, the DE is expected to confirm that suitable documentation as described in <xref target="RFC8126"/>, Section 4.6, is available. The DE should also verify the capability does not conflict with work that is active or already published within the IETF.
</t>
<t>Before a period of 30 days has passed, the DE will either approve or deny the registration request and publish a notice of the decision to the JMAP WG mailing list or its successor, as well as informing 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="change-procedures" title="Change procedures">
<t>Once a JMAP capability has been published by the 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>JMAP capability registrations may not be deleted; capabilities that are no longer believed appropriate for use can be declared obsolete by a change to their &quot;intended use&quot; field; such capabilities will be clearly marked in the lists published by the IANA.
</t>
<t>Significant changes to a capability's definition should be requested only when there are serious omissions or errors in the published specification. 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 JMAP capability may pass responsibility to another person or agency by informing the IANA; this can be done without discussion or review.
</t>
<t>The IESG may reassign responsibility for a JMAP capability. The most common case of this will be to enable changes to be made to capabilities where the author of the registration has died, moved out of contact, or is otherwise unable to make changes that are important to the community.
</t>
</section>

<section anchor="jmap-capabilities-registry-template" title="JMAP Capabilities registry template:">
<t>Capability name: (see capability property in section 2)
</t>
<t>Specification document:
</t>
<t>Intended use: (one of common, limited, or obsolete)
</t>
<t>Change controller: (<spanx style="emph">IETF</spanx> for standards-track/BCP RFCs)
</t>
<t>Security and privacy considerations:
</t>
</section>

<section anchor="initial-registration-for-jmap-core" title="Initial registration for JMAP core">
<t>Capability Name: <spanx style="verb">urn:ietf:params:jmap:core</spanx>
</t>
<t>Specification document: this document, section 2
</t>
<t>Intended use: common
</t>
<t>Change Controller: IETF
</t>
<t>Security and privacy considerations: this document, section 8.
</t>
</section>

<section anchor="registration-for-jmap-error-placeholder-in-jmap-capabilities-registry" title="Registration for JMAP error placeholder in JMAP capabilities registry">
<t>Capability Name: `urn:ietf:params:jmap:error:'
</t>
<t>Specification document: this document, next section.
</t>
<t>Intended use: placeholder
</t>
<t>Change Controller: IETF
</t>
<t>Security and privacy considerations: this document, section 8.
</t>
</section>
</section>

<section anchor="creation-of-jmap-error-codes-registry" title="Creation of &quot;JMAP Error Codes&quot; registry">
<t>IANA will create a registry for JMAP error codes. JMAP error codes appear in the &quot;type&quot; member of a JSON problem details object (as described in section 3.5.1), in the &quot;type&quot; member in a JMAP error object (as described in section 3.5.2), or the &quot;type&quot; member of a JMAP method-specific error object (such as SetError in section 5.3). When used in a problem details object, the prefix 'urn:ietf:params:jmap:error:' is always included, and when used in JMAP objects, the prefix is always omitted.
</t>
<t>This registry follows the expert review process. Preliminary community review for this registry follows the same procedures as the JMAP capabilities registry but is optional. The change procedures for this registry are the same as the change procedures for the JMAP capabilities registry.
</t>

<section anchor="designated-expert-review-1" title="Designated expert review">
<t>The designated expert should review the following aspects of the registration:
</t>
<t>
<list style="numbers">
<t>Verify the error code does not conflict with existing names.</t>
<t>Verify the error code follows the syntax limitations (does not require URI encoding).</t>
<t>Encourage the error code to follow the naming convention of previously registered errors.</t>
<t>Encourage description of client behaviors that are recommended in response to the error code. These may distinguish the error code from other error codes.</t>
<t>Encourage description of when the server should issue the error as opposed to some other error code.</t>
<t>Encourage the submitter to note any security considerations associated with the error, if any. For example, an error code that might disclose existence of data the authenticated user does not have permission to know about.</t>
</list>
</t>
<t>Steps 3-6 are meant to promote a higher-quality registry. However, the expert is encouraged to approve any registration that would not actively harm JMAP interoperability to make this a relatively light-weight process.
</t>
</section>

<section anchor="jmap-error-codes-registry-template" title="JMAP Error Codes registry template:">
<t>JMAP Error Code:
</t>
<t>Intended use: (one of <spanx style="emph">common</spanx>, <spanx style="emph">limited</spanx>, <spanx style="emph">obsolete</spanx>)
</t>
<t>Change Controller: (<spanx style="emph">IETF</spanx> for standards-track/BCP RFCs)
</t>
<t>Description or Reference:
</t>
</section>

<section anchor="initial-jmap-error-codes-registry" title="Initial JMAP Error Codes registry">
<texttable>
<ttcol align="center">JMAP Error Code</ttcol>
<ttcol align="center">Intended Use</ttcol>
<ttcol align="center">Change Controller</ttcol>
<ttcol align="center">Description or Reference</ttcol>

<c>accountNotFound</c><c>common</c><c>IETF</c><c>RFC XXXX section 3.5.2</c>
<c>accountNotSupportedByMethod</c><c>common</c><c>IETF</c><c>RFC XXXX section 3.5.2</c>
<c>accountReadOnly</c><c>common</c><c>IETF</c><c>RFC XXXX section 3.5.2</c>
<c>anchorNotFound</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.5</c>
<c>alreadyExists</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.4</c>
<c>cannotCalculateChanges</c><c>common</c><c>IETF</c><c>RFC XXXX sections 5.2 and 5.6</c>
<c>forbidden</c><c>common</c><c>IETF</c><c>RFC XXXX sections 3.5.2, 5.3, and 7.2.1</c>
<c>fromAccountNotFound</c><c>common</c><c>IETF</c><c>RFC XXXX sections 5.4 and 6.3</c>
<c>fromAccountNotSupportedByMethod</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.4</c>
<c>invalidArguments</c><c>common</c><c>IETF</c><c>RFC XXXX section 3.5.2</c>
<c>invalidPatch</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.3</c>
<c>invalidProperties</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.3</c>
<c>notFound</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.3</c>
<c>notJSON</c><c>common</c><c>IETF</c><c>RFC XXXX section 3.5.1</c>
<c>notRequest</c><c>common</c><c>IETF</c><c>RFC XXXX section 3.5.1</c>
<c>overQuota</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.3</c>
<c>rateLimit</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.3</c>
<c>requestTooLarge</c><c>common</c><c>IETF</c><c>RFC XXXX sections 5.1 and 5.3</c>
<c>invalidResultReference</c><c>common</c><c>IETF</c><c>RFC XXXX section 3.5.2</c>
<c>serverFail</c><c>common</c><c>IETF</c><c>RFC XXXX section 3.5.2</c>
<c>serverPartialFail</c><c>limited</c><c>IETF</c><c>RFC XXXX section 3.5.2</c>
<c>serverUnavailable</c><c>common</c><c>IETF</c><c>RFC XXXX section 3.5.2</c>
<c>singleton</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.3</c>
<c>stateMismatch</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.3</c>
<c>tooLarge</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.3</c>
<c>tooManyChanges</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.6</c>
<c>unknownCapability</c><c>common</c><c>IETF</c><c>RFC XXXX section 3.5.1</c>
<c>unknownMethod</c><c>common</c><c>IETF</c><c>RFC XXXX section 3.5.2</c>
<c>unsupportedFilter</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.5</c>
<c>unsupportedSort</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.5</c>
<c>willDestroy</c><c>common</c><c>IETF</c><c>RFC XXXX section 5.3</c>
</texttable>
</section>
</section>
</section>

</middle>
<back>
<references title="Normative References">
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.2782.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.3339.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.3553.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.3629.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.4648.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.4790.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5051.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5246.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5322.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.5785.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6186.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6335.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6570.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6749.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6764.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6838.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.6901.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7159.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7230.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7235.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7493.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7617.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.7807.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.8030.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.8126.xml"?>
<?rfc include="http://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.8291.xml"?>
</references>

</back>
</rfc>
