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


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

]>


<rfc ipr="trust200902" docName="draft-ietf-jmap-filenode-08" category="std" consensus="true" submissionType="IETF" updates="8620" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="JMAP FileNode">JMAP File Storage extension</title>

    <author initials="B." surname="Gondwana" fullname="Bron Gondwana">
      <organization>Fastmail</organization>
      <address>
        <email>brong@fastmailteam.com</email>
      </address>
    </author>

    <date year="2026" month="March" day="17"/>

    
    
    <keyword>Internet-Draft</keyword>

    <abstract>


<?line 39?>

<t>The JMAP base protocol (RFC8620) provides the ability to upload and download
arbitrary binary data.  This binary data is called a "blob", and can be used
in all other JMAP extensions.</t>

<t>This extension adds a method to expose blobs as a filesystem along with the
types of metadata that are provided by other remote filesystem protocols.</t>



    </abstract>



  </front>

  <middle>


<?line 48?>

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

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

<t>In the same way that JMAP Calendars (<xref target="JMAP-CALENDARS"/>) replaces
CalDAV (<xref target="CALDAV"/>) and JMAP Contacts (<xref target="JMAP-CONTACTS"/>) replaces
CardDAV (<xref target="CARDDAV"/>), this document replaces the use of WebDAV (<xref target="WEBDAV"/>)
for remote filesystem access.</t>

<section anchor="conventions-used-in-this-document"><name>Conventions Used in This Document</name>

<t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>

<?line -18?>

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

<t>The capabilities object is returned as part of the JMAP Session
object; see <xref target="JMAP-CORE"/>, Section 2.</t>

<t>This document defines an additional capability URI.</t>

<section anchor="urnietfparamsjmapfilenode"><name>urn:ietf:params:jmap:filenode</name>

<t>The capability <spanx style="verb">urn:ietf:params:jmap:filenode</spanx> being present in the
"accountCapabilities" property of an account represents support
for the FileNode datatype.  Servers that include the capability
in one or more "accountCapabilities" properties <bcp14>MUST</bcp14> also include
the property in the "capabilities" property.</t>

<t>The value of this property in the JMAP session "capabilities"
property <bcp14>MUST</bcp14> be an empty object.</t>

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

<t><list style="symbols">
  <t>maxFileNodeDepth: "UnsignedInt|null"  <vspace blankLines='1'/>
The maximum depth of the FileNode hierarchy (i.e., one more than
  the maximum number of ancestors a FileNode may have), or null for
  no limit.</t>
  <t>maxSizeFileNodeName: "UnsignedInt"  <vspace blankLines='1'/>
The maximum length, in (UTF-8) octets, allowed for the name of a
  FileNode.  This <bcp14>MUST</bcp14> be at least 100, although it is recommended
  servers allow more.</t>
  <t>fileNodeQuerySortOptions: "String[]"  <vspace blankLines='1'/>
A list of all the values the server supports for the "property"
  field of the Comparator object in a "FileNode/query" sort (see
  "FileNode/query" below).  This <bcp14>MAY</bcp14> include properties the client does not
  recognise (for example, custom properties specified in a vendor
  extension).  Clients <bcp14>MUST</bcp14> ignore any unknown properties in the
  list.</t>
  <t>mayCreateTopLevelFileNode: "Boolean"  <vspace blankLines='1'/>
If true, the user may create a FileNode (see "FileNode/set" below) in this
 account with a null parentId.  (Permission for creating a child of
 an existing FileNode is given by the "myRights" property on that
 FileNode.)</t>
  <t>webTrashUrl: "String|null"  <vspace blankLines='1'/>
The URL at which the folder with the "trash" role can be viewed
  on the web.  If null, there is no web URL available.</t>
  <t>webUrlTemplate: "String|null"  <vspace blankLines='1'/>
A template by which any node can be viewed on the web, in URI
  Template (level 1) format <xref target="URI-TEMPLATE"/>.  The available
  variable is <spanx style="verb">{id}</spanx>, which is the FileNode id.  If null, there
  is no web URL available.</t>
  <t>webWriteUrlTemplate: "String|null"  <vspace blankLines='1'/>
A URI Template (level 1) <xref target="URI-TEMPLATE"/> for writing content
  to a file node.  The available variable is <spanx style="verb">{id}</spanx>, which is
  the FileNode id.  If null, direct HTTP writes are not
  supported and clients must use FileNode/set to update content.
  See "Direct HTTP Write" below for the HTTP semantics.</t>
</list></t>

<section anchor="capability-example"><name>Capability Example</name>

<figure><sourcecode type="json"><![CDATA[
{
  "urn:ietf:params:jmap:filenode": {
    "maxFileNodeDepth": 50,
    "maxSizeFileNodeName": 255,
    "fileNodeQuerySortOptions": [
      "name", "type", "size", "created", "modified",
      "hasType", "tree"
    ],
    "mayCreateTopLevelFileNode": false,
    "webTrashUrl": "https://files.example.com/trash",
    "webUrlTemplate": "https://files.example.com/view/{id}",
    "webWriteUrlTemplate": "https://files.example.com/write/{id}"
  }
}
]]></sourcecode></figure>

</section>
</section>
</section>
<section anchor="filenode-data-type"><name>FileNode Data Type</name>

<t>A FileNode is a set of metadata which behaves similarly to an inode in
a filesystem.  In <xref target="WEBDAV"/> terminology a FileNode can refer to either
a collection or a resource.</t>

<t>The following JMAP Methods are selected by the
<spanx style="verb">urn:ietf:params:jmap:filenode</spanx> capability.</t>

<section anchor="filenode-objects"><name>FileNode objects</name>

<t>The filenode object has the following keys:</t>

<t><list style="symbols">
  <t>id: "Id" (immutable; server-set)  <vspace blankLines='1'/>
The Id of the FileNode.</t>
  <t>parentId: "Id|null"  <vspace blankLines='1'/>
The Id of the parent node, or null if this is a top level node.</t>
  <t>blobId: "Id|null"  <vspace blankLines='1'/>
The blobId for the content of this node, or null if this node
  is a collection.  <bcp14>MUST</bcp14> be non-null for file nodes (including
  zero byte files).  Creating or updating a file node to have a
  null blobId is an "invalidProperties" error.  Updating the
  blobId replaces the node's content; the server <bcp14>MUST</bcp14> update
  <spanx style="verb">size</spanx> to match the new blob.  A directory node (null blobId)
  cannot be changed to a file node or vice versa; attempting to
  do so is an "invalidProperties" error.  A blob referenced by
  a FileNode <bcp14>MUST NOT</bcp14> be expired or garbage collected by the
  server while the FileNode exists.</t>
  <t>size: "UnsignedInt|null" (server-set)  <vspace blankLines='1'/>
The size in bytes of the associated blob data.  This <bcp14>MUST</bcp14> be
  null if, and only if, the blobId is null.  Size is optional on
  create and update, but if provided it <bcp14>MUST</bcp14> match the size of
  the provided blobId, or be null if the node is a directory.
  If the client updates <spanx style="verb">blobId</spanx> without providing <spanx style="verb">size</spanx>, the
  server sets <spanx style="verb">size</spanx> from the new blob and returns the size in
  the "updated" response.</t>
  <t>name: "String"  <vspace blankLines='1'/>
User-visible name for the FileNode.  This <bcp14>MUST</bcp14> be a
  Net-Unicode string <xref target="UNICODE"/> of at least 1 character in length,
  subject to the maximum size given in the capability object.  There
  <bcp14>MUST NOT</bcp14> be two sibling FileNodes with both the same parent and
  the same name.  Servers <bcp14>MAY</bcp14> reject names that violate server
  policy (e.g., names containing control characters).  Further:  <list style="symbols">
      <t>The name <bcp14>MUST NOT</bcp14> be "." or ".."</t>
      <t>The name <bcp14>MUST NOT</bcp14> contain a "/"</t>
    </list>
Servers <bcp14>MAY</bcp14> reject names containing additional characters that
  are problematic on common platforms (e.g. "\", ":", "*", "?",
  """, "&lt;", "&gt;", "|") with an "invalidProperties" error.  <vspace blankLines='1'/>
A server <bcp14>MUST</bcp14> order creation and deletion operations within a
  single FileNode/set such that the sibling constraint is
  retained at the end of the transaction, but replacing an
  existing file can be done atomically.</t>
  <t>type: "String|null"  <vspace blankLines='1'/>
The media type of the FileNode.  This <bcp14>MUST</bcp14> be <spanx style="verb">null</spanx> if, and
  only if, the node does not have a <spanx style="verb">blobId</spanx>.  Valid values are
  found in the IANA media-types registry.  Servers <bcp14>MUST NOT</bcp14>
  reject media types that are not recognised.  Servers <bcp14>MUST</bcp14>
  reject media types if the value does not conform to the ABNF
  of <xref target="MEDIATYPE"/> Section 4.2.</t>
  <t>created: "UTCDate" (default: current server time)  <vspace blankLines='1'/>
The date the node was created.</t>
  <t>modified: "UTCDate|null" (default: current server time)  <vspace blankLines='1'/>
The date the node was last updated.  The server does not
  automatically update this value; clients <bcp14>SHOULD</bcp14> provide an
  updated value when modifying the node.  This gives clients
  control over the timestamp, for example when preserving
  original modification times during file synchronization.
  If the client does not include <spanx style="verb">modified</spanx> in an update, the
  server <bcp14>MUST</bcp14> leave it unchanged.  If the client sets <spanx style="verb">modified</spanx>
  to null, the server <bcp14>MUST</bcp14> set it to the current server time.</t>
  <t>accessed: "UTCDate|null" (default: current server time)  <vspace blankLines='1'/>
The date the node was last accessed.  As with <spanx style="verb">modified</spanx>,
  the server does not automatically update this value; clients
  <bcp14>SHOULD</bcp14> provide an updated value when appropriate.  If not
  included in an update, the server <bcp14>MUST</bcp14> leave it unchanged.
  If set to null, the server <bcp14>MUST</bcp14> set it to the current server
  time.</t>
  <t>executable: "Boolean" (default: false)  <vspace blankLines='1'/>
If true, the node should be treated as an executable by
  operating systems that support this flag.</t>
  <t>isSubscribed: "Boolean" (default: true)  <vspace blankLines='1'/>
This property is stored per user, and if true, the node should
  be displayed to the current user.  Some servers may not allow
  this field to be changed for some or all nodes, e.g. only for
  directories, or only for nodes on which the shareWith ACL is
  actually set for this user, not nodes which inherit their ACL
  from a parent.</t>
  <t>myRights: "FilesRights" (server-set)  <vspace blankLines='1'/>
The set of rights (ACLs) the user has in relation to this
  node.  A <strong>FilesRights</strong> object has the following properties:  <list style="symbols">
      <t>mayRead: <spanx style="verb">Boolean</spanx> The user may read the contents of this
node.</t>
      <t>mayWrite: <spanx style="verb">Boolean</spanx> The user may modify the properties of
this node, including renaming or deleting children.</t>
      <t>mayShare: <spanx style="verb">Boolean</spanx> The user may change the sharing of this
node (see <xref target="JMAP-SHARING"/>).</t>
    </list></t>
  <t>shareWith: "Id[FilesRights]|null"  <vspace blankLines='1'/>
A map of userId to rights for users this node is shared with.
  The owner of the node <bcp14>MUST NOT</bcp14> be in this set.  This is <spanx style="verb">null</spanx>
  if the user requesting the object does not have
  <spanx style="verb">myRights.mayShare</spanx>, or if the node is not shared with anyone.</t>
  <t>role: "String|null"  <vspace blankLines='1'/>
An indication that this directory has a special role.  The role
  <bcp14>MUST</bcp14> be null for files.  A node with the "root" role should
  have a null parentId.  Clients <bcp14>MUST</bcp14> ignore unrecognised role
  values.  Values are registered in the "JMAP FileNode Roles"
  registry (see IANA Considerations).</t>
</list></t>

</section>
<section anchor="filenode-methods"><name>FileNode Methods</name>

<section anchor="filenodeset"><name>FileNode/set</name>

<t>This is a standard Foo/set method, with the following differences:</t>

<t>Since parentId creates a tree structure, an attempt to move a node
to a parent for which this node is also an ancestor is an error,
and an <spanx style="verb">invalidProperties</spanx> error will be returned.</t>

<t>There are these additional top level arguments:</t>

<t><list style="symbols">
  <t>onDestroyRemoveChildren: "Boolean" (default: <spanx style="verb">false</spanx>)  <vspace blankLines='1'/>
If false, an attempt to destroy a FileNode which is the parentId
 of another FileNode will be rejected with a <spanx style="verb">nodeHasChildren</spanx>
 error.  NOTE: if all the child nodes are being destroyed in the
 same operation, then the server <bcp14>MUST NOT</bcp14> return this error.
 Servers <bcp14>MUST</bcp14> either sort the destroys children before parents,
 or only check this constraint on the final state, remembering
 that JMAP <spanx style="verb">set</spanx> operations must be atomic.  <vspace blankLines='1'/>
If true, then all child nodes will also be destroyed when a
 node is destroyed.  When deleting child nodes, the server <bcp14>MUST</bcp14>
 include the ids of all deleted nodes in the method response.</t>
  <t>onExists: "String|null" (default: null)  <vspace blankLines='1'/>
If null, an attempt to create or update a FileNode which would
 cause a name collision will be rejected by the server with an
 "alreadyExists" error.  <vspace blankLines='1'/>
If "replace", the existing item will be destroyed.  In this
 case, the server <bcp14>MUST</bcp14> include the id of the replaced item in
 the destroyed response list.  NOTE: if the replaced item is a
 directory which has children, then the server <bcp14>MUST</bcp14> respond with
 a nodeHasChildren error to this action unless
 onDestroyRemoveChildren is true.  <vspace blankLines='1'/>
If "rename", the server will change the "name" field to not
 clash, using an algorithm of its choice.  If the server changes
 the name, it <bcp14>MUST</bcp14> include the new "name" value in the created
 or updated response field for this id.</t>
</list></t>

<t>Errors (in addition to standard SetError codes from <xref target="JMAP-CORE"/>):</t>

<t><list style="symbols">
  <t>"alreadyExists" — a create or update would cause a name collision
with an existing sibling FileNode, and onExists is null.  The
SetError object <bcp14>MUST</bcp14> include an <spanx style="verb">existingId</spanx> property with the id
of the existing FileNode.</t>
  <t>"invalidProperties" — an attempt was made to move a node to a
descendant of itself, creating a cycle in the tree.</t>
  <t>"nodeHasChildren" — a destroy was attempted on a FileNode that
has children, and onDestroyRemoveChildren is false.</t>
</list></t>

</section>
<section anchor="filenodecopy"><name>FileNode/copy</name>

<t>This is a standard Foo/copy function with the same additional
top-level arguments as FileNode/set, onDestroyRemoveChildren and
onExists, with the same behaviour.</t>

<t>Errors: the same additional errors as FileNode/set apply.</t>

</section>
<section anchor="filenodeget"><name>FileNode/get</name>

<t>This is a standard Foo/get method.</t>

</section>
<section anchor="filenodechanges"><name>FileNode/changes</name>

<t>This is a standard Foo/changes method.</t>

</section>
<section anchor="filenodequery"><name>FileNode/query</name>

<t>This is a standard Foo/query method except for the following:</t>

<t>There's one more property to the query:</t>

<t><list style="symbols">
  <t>depth: "UnsignedInt|null"  <vspace blankLines='1'/>
The number of levels of subdirectories to recurse into.  If
  absent, null, or zero, do not recurse.</t>
</list></t>

<t>The following filter criteria are defined:</t>

<t><list style="symbols">
  <t>isTopLevel: "Boolean"  <vspace blankLines='1'/>
If true, the node must have a null parentId to match the
  condition.</t>
  <t>parentId: "Id"  <vspace blankLines='1'/>
A FileNode id.  A node must have a parentId equal to this to
  match the condition.</t>
  <t>ancestorId: "Id"  <vspace blankLines='1'/>
A FileNode id.  A node must have an ancestor (parent, parent
  of parent, etc.) with an id equal to this to match the
  condition.</t>
  <t>hasType: "Boolean"  <vspace blankLines='1'/>
If <spanx style="verb">true</spanx>, the FileNode must be a file/resource, not a
  directory/collection.</t>
  <t>hasRole: "String"  <vspace blankLines='1'/>
A role name.  Only nodes with precisely this role match this
  condition.</t>
  <t>hasAnyRole: "Boolean"  <vspace blankLines='1'/>
If true, any node with a defined role matches this condition.
  If false, any node which has a role does not match this
  condition.</t>
  <t>blobId: "Id"  <vspace blankLines='1'/>
A FileNode must have a blobId equal to this to match the
  condition.</t>
  <t>isExecutable: "Boolean"  <vspace blankLines='1'/>
If <spanx style="verb">true</spanx>, the FileNode must have a true executable value.</t>
  <t>createdBefore: "UTCDate"  <vspace blankLines='1'/>
The creation date of the node must be before this date to
  match the condition.</t>
  <t>createdAfter: "UTCDate"  <vspace blankLines='1'/>
The creation date of the node must be on or after this date
  to match the condition.</t>
  <t>modifiedBefore: "UTCDate"  <vspace blankLines='1'/>
The modified date of the node must be before this date to
  match the condition.</t>
  <t>modifiedAfter: "UTCDate"  <vspace blankLines='1'/>
The modified date of the node must be on or after this date
  to match the condition.</t>
  <t>accessedBefore: "UTCDate"  <vspace blankLines='1'/>
The accessed date of the node must be before this date to
  match the condition.</t>
  <t>accessedAfter: "UTCDate"  <vspace blankLines='1'/>
The accessed date of the node must be on or after this date
  to match the condition.</t>
  <t>minSize: "UnsignedInt"  <vspace blankLines='1'/>
The size of the node in bytes must be equal to or greater
  than this number to match the condition.</t>
  <t>maxSize: "UnsignedInt"  <vspace blankLines='1'/>
The size of the node in bytes must be less than this number
  to match the condition.</t>
  <t>name: "String"  <vspace blankLines='1'/>
A FileNode must have exactly the same octets in its name
  property to match the condition.</t>
  <t>nameMatch: "String"  <vspace blankLines='1'/>
Does a glob match of the specified name against the <em>name</em>
  property of the node.</t>
  <t>type: "String"  <vspace blankLines='1'/>
A FileNode must have exactly the same octets in its type
  property to match the condition.</t>
  <t>typeMatch: "String"  <vspace blankLines='1'/>
Does a glob match of the specified type against the <em>type</em>
  property of the node.</t>
  <t>body: "String"  <vspace blankLines='1'/>
Match the content of the referenced blob, see the definition
  of <em>body</em> in section 4.4.1 of <xref target="JMAP-MAIL"/>.  The server may
  use any technology to extract meaningful text from the blob
  for searching, or interpret the string in any way, to choose
  the nodes that it believes the user wants to see.</t>
  <t>text: "String"  <vspace blankLines='1'/>
Is equivalent to <em>body</em> OR <em>nameMatch</em> OR <em>typeMatch</em>.</t>
</list></t>

<t>It also supports the following additional sort properties:</t>

<t><list style="symbols">
  <t>tree:  <vspace blankLines='1'/>
Sort by tree; which means by name, but any directory/collection
  node is immediately followed by the recursive application of
  the same sort to its child nodes.  This is similar to the
  output of the <spanx style="verb">find</spanx> command on a filesystem with the depth
  parameter provided above.</t>
  <t>hasType:  <vspace blankLines='1'/>
Sort directories before files (false sorts before true)</t>
  <t>type:  <vspace blankLines='1'/>
Sorts directories first, and sorts by media type for files</t>
</list></t>

</section>
<section anchor="filenodequerychanges"><name>FileNode/queryChanges</name>

<t>This is a standard Foo/queryChanges method.</t>

</section>
</section>
<section anchor="direct-http-write"><name>Direct HTTP Write</name>

<t>When the server advertises a <spanx style="verb">webWriteUrlTemplate</spanx>, clients can
update a file node's content directly via HTTP without using
FileNode/set.  The URL is constructed by expanding the template
with the FileNode id.  This is only valid for file nodes (those
with a non-null blobId); requests targeting directory nodes <bcp14>MUST</bcp14>
be rejected with an HTTP 400 status.</t>

<t>The client <bcp14>MUST</bcp14> have <spanx style="verb">mayWrite</spanx> permission on the node.
Requests without sufficient permission <bcp14>MUST</bcp14> be rejected with an
HTTP 403 status.  Authentication uses the same mechanism as other
JMAP HTTP endpoints.</t>

<section anchor="put"><name>PUT</name>

<t>A PUT request replaces the entire content of the node.  The
request body is the new content.  The Content-Type header sets
the media type of the node.</t>

<t>On success, the server <bcp14>MUST</bcp14> update the node's <spanx style="verb">blobId</spanx>, <spanx style="verb">size</spanx>,
and <spanx style="verb">type</spanx> properties, and return an HTTP 200 response with a
JSON body:</t>

<figure><sourcecode type="json"><![CDATA[
{
  "blobId": "Bnewblob123",
  "size": 48576,
  "type": "text/plain"
}
]]></sourcecode></figure>

</section>
<section anchor="patch"><name>PATCH</name>

<t>A PATCH request applies a partial modification to the node's
current content.  The Content-Type of the request indicates the
patch format.  The supported patch formats are those listed in
the <spanx style="verb">supportedPatchTypes</spanx> capability of <xref target="JMAP-BLOBEXT"/> (e.g.,
<spanx style="verb">application/x-rdiff-delta</spanx>, <spanx style="verb">application/x-bsdiff</spanx>,
<spanx style="verb">text/x-diff</spanx>).  The server applies the delta to the node's
current blob to produce the new content.</t>

<t>On success, the server <bcp14>MUST</bcp14> update the node's <spanx style="verb">blobId</spanx> and
<spanx style="verb">size</spanx> properties.  The <spanx style="verb">type</spanx> is not changed unless the client
includes an <spanx style="verb">X-FileNode-Type</spanx> header, in which case the server
<bcp14>MUST</bcp14> update the node's <spanx style="verb">type</spanx> to the header value.  The response
is an HTTP 200 with the same JSON body as PUT:</t>

<figure><sourcecode type="json"><![CDATA[
{
  "blobId": "Bpatched456",
  "size": 49152,
  "type": "text/plain"
}
]]></sourcecode></figure>

<t>Servers that do not support a given patch format <bcp14>MUST</bcp14> respond
with HTTP 415 (Unsupported Media Type).</t>

</section>
</section>
</section>
<section anchor="quotas"><name>Quotas</name>

<t>Servers that support JMAP Quotas (<xref target="JMAP-QUOTAS"/>) <bcp14>SHOULD</bcp14>
provide Quota objects with <spanx style="verb">"FileNode"</spanx> in the <spanx style="verb">types</spanx> array.
Both the <spanx style="verb">octets</spanx> resource type (total storage used by file
node blobs) and the <spanx style="verb">count</spanx> resource type (number of FileNode
objects) are applicable.</t>

</section>
<section anchor="integration-with-jmap-blob-extensions"><name>Integration with JMAP Blob Extensions</name>

<t>When a server advertises both <spanx style="verb">urn:ietf:params:jmap:filenode</spanx> and
<spanx style="verb">urn:ietf:params:jmap:blobext</spanx>, the ArchiveEntry object type
(defined in <xref target="JMAP-BLOBEXT"/>) is extended with two additional
properties:</t>

<t><list style="symbols">
  <t>nodeId: "Id|null"
A FileNode id.  When present, the server populates the
archive entry from the referenced FileNode's properties.
The <spanx style="verb">blobId</spanx> and <spanx style="verb">name</spanx> are taken from the FileNode.  The
FileNode's <spanx style="verb">created</spanx> and <spanx style="verb">modified</spanx> timestamps map to the
archive entry's time metadata.  The FileNode's
<spanx style="verb">myRights</spanx> (specifically the <spanx style="verb">mayWrite</spanx> right) and the
<spanx style="verb">executable</spanx> property inform the <spanx style="verb">mode</spanx> field in the
archive entry (e.g., permissions and executable bit).
If the ArchiveEntry also provides explicit values for
any of these properties, the explicit values take
precedence.  Mutually exclusive with providing <spanx style="verb">blobId</spanx>
directly when the FileNode is a file.</t>
  <t>recurse: "Boolean" (default: false)
Only valid when the referenced FileNode is a directory.
When true, the server recursively includes all children
of the directory in the archive.  Each child entry's
<spanx style="verb">name</spanx> is its full path relative to the directory.
Directory names <bcp14>MUST</bcp14> include a trailing <spanx style="verb">/</spanx>.</t>
</list></t>

<t>If <spanx style="verb">nodeId</spanx> references a FileNode that the user does not have
permission to read, or that does not exist, the server <bcp14>MUST</bcp14>
reject the Blob/convert creation with a <spanx style="verb">notFound</spanx> SetError.</t>

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

<t>To archive an entire directory tree rooted at FileNode
"dirabc" into a zip file:</t>

<t><spanx style="verb">json
[["Blob/convert", {
  "accountId": "account1",
  "create": {
    "myarchive": {
      "archive": {
        "type": "application/zip",
        "entries": [{
          "nodeId": "dirabc",
          "name": "/",
          "recurse": true
        }]
      }
    }
  }
}, "R1"]]
</spanx></t>

<t>To archive specific files from different locations along with
a full subdirectory:</t>

<t><spanx style="verb">json
[["Blob/convert", {
  "accountId": "account1",
  "create": {
    "selective": {
      "archive": {
        "type": "application/zip",
        "entries": [
          {
            "nodeId": "filenode1",
            "name": "README.txt"
          },
          {
            "nodeId": "dirnode2",
            "name": "docs/",
            "recurse": true
          }
        ]
      }
    }
  }
}, "R1"]]
</spanx></t>

</section>
</section>
<section anchor="access-control"><name>Access Control</name>

<t>Since nodes create a tree, ACLs created by shareWith automatically
apply to children as well, so if <spanx style="verb">mayRead</spanx> is set on a node, all
its child nodes are also readable.  The <spanx style="verb">myRights</spanx> property on
every node reflects the derived rights for the current user,
taking inheritance into account.</t>

<t>When a <spanx style="verb">shareWith</spanx> change on a node causes the derived <spanx style="verb">myRights</spanx>
to change for any descendant, the server <bcp14>MUST</bcp14> report those
descendants as changed in FileNode/changes responses.  The server
<bcp14>SHOULD NOT</bcp14> report descendants whose derived <spanx style="verb">myRights</spanx> did not
actually change, but <bcp14>MAY</bcp14> do so if it cannot efficiently determine
whether the derived values differ.</t>

<t>If a server does not support changing access on non-directory
nodes, it can set <spanx style="verb">mayShare</spanx> to false on those nodes, even if the
parent directory has true.</t>

<t>Nodes which are not "discoverable" <bcp14>MUST</bcp14> return notFound errors if
fetched with FileNode/get and <bcp14>MUST NOT</bcp14> be returned in response to
FileNode/query.  Nodes are discoverable in one of two ways:</t>

<t><list style="numbers" type="1">
  <t>If the node or an ancestor of the node has mayRead true.</t>
  <t>If the node is an ancestor of a node which has mayRead true.</t>
</list></t>

<t>In the second case, the node itself will have mayRead false, and appears
only to give the full path to the visible nodes.  This means that
a query with that node as the parent will only return those of its
children which are otherwise discoverable through the second
discoverability rule.</t>

<t>This leads to a sharee seeing the full path to anything that they have
access to, but nothing else.</t>

<t>E.g. in a unix homedirectory environment where user Alice had shared
the "forBob" folder, one might see, when logged in as Bob:</t>

<figure><sourcecode type="artwork"><![CDATA[
/home
  /alice
    /shared
      /forBob
        file1.jpg
        file2.txt
        ...
  /bob
    bobfile.txt
    ...
]]></sourcecode></figure>

<t>While Alice would see many more files and folders at the home
directory level.</t>

<t>This does lead to potentially large changes in the visible Node
set, so when Alice first shared that directory, Bob would have
been told of a large number of new Nodes in response to a
FileNode/changes query.  The server might report these as
"created" or "updated" — it is not always possible for the server
to know whether a node was previously visible to the user.</t>

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

<t>All security considerations from <xref target="JMAP-CORE"/> apply to this document.</t>

<section anchor="path-traversal"><name>Path Traversal</name>

<t>FileNode names <bcp14>MUST NOT</bcp14> contain "/" or be "." or "..".  Servers <bcp14>MUST</bcp14>
enforce these constraints.  Clients that reconstruct filesystem paths
from FileNode hierarchies <bcp14>MUST</bcp14> validate the resulting paths and reject
any that would escape the intended directory tree.</t>

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

<t>Deep nesting of FileNodes or very large numbers of children under a
single parent can consume significant server resources.  Servers
<bcp14>SHOULD</bcp14> enforce reasonable limits via <spanx style="verb">maxFileNodeDepth</spanx> and <bcp14>MAY</bcp14>
impose additional limits on the number of children per node.
Recursive operations such as destroying a subtree with
<spanx style="verb">onDestroyRemoveChildren</spanx> can be expensive; servers <bcp14>SHOULD</bcp14> impose
limits on the size of subtrees that can be destroyed in a single
operation.</t>

</section>
<section anchor="access-control-1"><name>Access Control</name>

<t>The discoverability rules defined in this document mean that ancestor
nodes of shared content are visible (with <spanx style="verb">mayRead</spanx> false) to users
who have access to descendants.  While these ancestor nodes do not
expose file content, their names and structure may reveal information
about the file hierarchy.  Server administrators and users sharing
content should be aware of this.</t>

<t>Changes to the <spanx style="verb">shareWith</spanx> property on a node affect all descendants.
Removing sharing from a parent node will make all descendants
undiscoverable to the affected users, which may be surprising if
those users had been actively working with the shared files.</t>

</section>
<section anchor="content-security"><name>Content Security</name>

<t>Servers that perform content scanning or malware detection <bcp14>SHOULD</bcp14>
scan blobs referenced by FileNode objects.  The <spanx style="verb">type</spanx> property is
client-asserted and <bcp14>MUST NOT</bcp14> be trusted for security decisions;
servers <bcp14>SHOULD</bcp14> independently verify content types where this matters.</t>

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

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

<t>IANA is requested to register the "filenode" JMAP Capability as follows:</t>

<t>Capability Name: urn:ietf:params:jmap:filenode</t>

<t>Specification document: this document</t>

<t>Intended use: common</t>

<t>Change Controller: IETF</t>

<t>Security and privacy considerations: this document, Security Considerations</t>

</section>
<section anchor="jmap-error-codes-registration-for-nodehaschildren"><name>JMAP Error Codes registration for "nodeHasChildren"</name>

<t>IANA is requested to register the "nodeHasChildren" JMAP Error Code as follows:</t>

<t>JMAP Error Code: nodeHasChildren</t>

<t>Intended use: common</t>

<t>Change Controller: IETF</t>

<t>Description: The node being destroyed is still referenced by other nodes which have not been destroyed.</t>

<t>Reference: this document</t>

</section>
<section anchor="jmap-data-types-registration-for-filenode"><name>JMAP Data Types registration for "FileNode"</name>

<t>IANA is requested to register the "FileNode" JMAP Data Type as follows:</t>

<t>Type Name: FileNode</t>

<t>Can Reference Blobs: Yes</t>

<t>Can Use For State Change: Yes</t>

<t>Capability: urn:ietf:params:jmap:filenode</t>

<t>Reference: this document</t>

</section>
<section anchor="jmap-filenode-roles-registry"><name>JMAP FileNode Roles Registry</name>

<t>IANA is requested to create a new "JMAP FileNode Roles" registry
with the following initial values.  New registrations are subject
to Expert Review (<xref target="IANA-GUIDELINES"/>).</t>

<texttable>
      <ttcol align='left'>Role</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>root</c>
      <c>The base of a filesystem</c>
      <c>this document</c>
      <c>home</c>
      <c>A user's home directory</c>
      <c>this document</c>
      <c>temp</c>
      <c>Temporary space; may be cleaned up automatically</c>
      <c>this document</c>
      <c>trash</c>
      <c>Deleted data; may be removed automatically or manually</c>
      <c>this document</c>
      <c>documents</c>
      <c>Document storage</c>
      <c>this document</c>
      <c>downloads</c>
      <c>Downloaded files</c>
      <c>this document</c>
      <c>music</c>
      <c>Audio files</c>
      <c>this document</c>
      <c>pictures</c>
      <c>Photos and images</c>
      <c>this document</c>
      <c>videos</c>
      <c>Video files</c>
      <c>this document</c>
</texttable>

</section>
</section>
<section anchor="todo"><name>TODO</name>

<t><list style="symbols">
  <t>support SYMLINK types (RFC4437)</t>
  <t>create real-world clients to test this</t>
  <t>a way to get or query all ancestor nodes</t>
</list></t>

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

<t>EDITOR: please remove this section before publication.</t>

<t>The source of this document exists on github at: https://github.com/brong/draft-gondwana-jmap-filenode/</t>

<t><strong>draft-ietf-jmap-filenode-08</strong></t>

<t><list style="symbols">
  <t>Removed immutability restriction on blobId, size, and type — nodes
can now have their content updated via FileNode/set.</t>
  <t>Added webWriteUrlTemplate capability for direct HTTP PUT/PATCH
writes to file nodes.</t>
  <t>Added documents, downloads, music, pictures, and videos roles.</t>
  <t>Added Quotas section referencing RFC 9425.</t>
</list></t>

<t><strong>draft-ietf-jmap-filenode-07</strong></t>

<t><list style="symbols">
  <t>added webTrashUrl and webUrlTemplate to the capabilities object</t>
  <t>added capability example JSON</t>
  <t>added explicit Errors sections to FileNode/set and FileNode/copy</t>
  <t>fixed typos and spelling errors</t>
  <t>added BCP 14 boilerplate</t>
  <t>fleshed out Security Considerations</t>
  <t>replaced role TODO with IANA registry</t>
  <t>documented webUrlTemplate variables</t>
  <t>clarified modified/accessed semantics: client-managed with null
to reset to server time</t>
  <t>clarified blobId constraints and blob lifetime</t>
  <t>documented myRights inheritance and FileNode/changes behaviour
when shareWith changes</t>
  <t>wrapped long lines throughout</t>
  <t>added Integration with JMAP Blob Extensions section
(ArchiveEntry extension with nodeId and recurse)</t>
</list></t>

<t><strong>draft-ietf-jmap-filenode-06</strong></t>

<t><list style="symbols">
  <t>Documented FileNode/copy and detailed that it has the same new top-level keys</t>
</list></t>

<t><strong>draft-ietf-jmap-filenode-05</strong></t>

<t><list style="symbols">
  <t>Renamed onDuplicate to onExists for name alignment</t>
  <t>added "role" for directories</t>
  <t>added a "TODO" for putting more restrictions on node names</t>
  <t>changed hasParentId to isTopLevel with reversed boolean meaning</t>
</list></t>

<t><strong>draft-ietf-jmap-filenode-04</strong></t>

<t><list style="symbols">
  <t>Documented that blobId, size, and type are immutable after creation.</t>
  <t>Documented that creating a file and deleting the old copy of the file within a transaction is legal.</t>
  <t>Added onDuplicate top-level option for FileNode/set, giving both "rename" and "replace" options.</t>
  <t>Updated the definition of shareWith to say that the keys of the hash are Ids, not arbitrary strings</t>
</list></t>

<t><strong>draft-ietf-jmap-filenode-03</strong></t>

<t><list style="symbols">
  <t>Added 'text' and 'body' searches (added JMAP-MAIL reference as additional information for body search)</t>
  <t>Updated JMAP-CONTACTS and JMAP-SHARING references to published RFC numbers rather than draft names</t>
  <t>Noted that the server <bcp14>MUST</bcp14> included the nodeids of deleted child nodes.</t>
  <t>Added isSubscribed</t>
  <t>Renamed mayAdmin to mayShare to align with other specs</t>
  <t>Described the inheritance of ACLs</t>
</list></t>

<t><strong>draft-ietf-jmap-filenode-02</strong></t>

<t><list style="symbols">
  <t>Convert to Kramdown-RFC format (no intentional changes)</t>
</list></t>

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

<t><list style="symbols">
  <t>Refreshing draft only</t>
</list></t>

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

<t><list style="symbols">
  <t>upload as a working group document</t>
</list></t>

<t><strong>draft-gondwana-jmap-filenode-01</strong></t>

<t><list style="symbols">
  <t>require a blobId for the zero-byte file</t>
  <t>make size also null for collections</t>
  <t>add more to the TODO section</t>
  <t>bikeshed; FileNode</t>
  <t>correct UTCDate, UnsignedInt, and normalised UTF-8.</t>
  <t>add some fields to the capabilities object</t>
</list></t>

<t><strong>draft-gondwana-jmap-filenode-00</strong></t>

<t><list style="symbols">
  <t>initial proposal</t>
</list></t>

</section>
<section anchor="acknowledgements"><name>Acknowledgements</name>

<t>Neil Jenkins and the JMAP working group at the IETF.</t>

<t>{backmatter}</t>

</section>


  </middle>

  <back>


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

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



<reference anchor="JMAP-CORE">
  <front>
    <title>The JSON Meta Application Protocol (JMAP)</title>
    <author fullname="N. Jenkins" initials="N." surname="Jenkins"/>
    <author fullname="C. Newman" initials="C." surname="Newman"/>
    <date month="July" year="2019"/>
    <abstract>
      <t>This document specifies a protocol for clients to efficiently query, fetch, and modify JSON-based data objects, with support for push notification of changes and fast resynchronisation and for out-of- band binary data upload/download.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8620"/>
  <seriesInfo name="DOI" value="10.17487/RFC8620"/>
</reference>

<reference anchor="JMAP-SHARING">
  <front>
    <title>JSON Meta Application Protocol (JMAP) Sharing</title>
    <author fullname="N. Jenkins" initials="N." role="editor" surname="Jenkins"/>
    <date month="November" year="2024"/>
    <abstract>
      <t>This document specifies a data model for sharing data between users using the JSON Meta Application Protocol (JMAP). Future documents can reference this document when defining data types to support a consistent model of sharing.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9670"/>
  <seriesInfo name="DOI" value="10.17487/RFC9670"/>
</reference>

<reference anchor="MEDIATYPE">
  <front>
    <title>Media Type Specifications and Registration Procedures</title>
    <author fullname="N. Freed" initials="N." surname="Freed"/>
    <author fullname="J. Klensin" initials="J." surname="Klensin"/>
    <author fullname="T. Hansen" initials="T." surname="Hansen"/>
    <date month="January" year="2013"/>
    <abstract>
      <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols. This memo documents an Internet Best Current Practice.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="13"/>
  <seriesInfo name="RFC" value="6838"/>
  <seriesInfo name="DOI" value="10.17487/RFC6838"/>
</reference>

<reference anchor="URI-TEMPLATE">
  <front>
    <title>URI Template</title>
    <author fullname="J. Gregorio" initials="J." surname="Gregorio"/>
    <author fullname="R. Fielding" initials="R." surname="Fielding"/>
    <author fullname="M. Hadley" initials="M." surname="Hadley"/>
    <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
    <author fullname="D. Orchard" initials="D." surname="Orchard"/>
    <date month="March" year="2012"/>
    <abstract>
      <t>A URI Template is a compact sequence of characters for describing a range of Uniform Resource Identifiers through variable expansion. This specification defines the URI Template syntax and the process for expanding a URI Template into a URI reference, along with guidelines for the use of URI Templates on the Internet. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="6570"/>
  <seriesInfo name="DOI" value="10.17487/RFC6570"/>
</reference>

<reference anchor="IANA-GUIDELINES">
  <front>
    <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
    <author fullname="M. Cotton" initials="M." surname="Cotton"/>
    <author fullname="B. Leiba" initials="B." surname="Leiba"/>
    <author fullname="T. Narten" initials="T." surname="Narten"/>
    <date month="June" year="2017"/>
    <abstract>
      <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
      <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
      <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="26"/>
  <seriesInfo name="RFC" value="8126"/>
  <seriesInfo name="DOI" value="10.17487/RFC8126"/>
</reference>


<reference anchor="JMAP-BLOBEXT">
   <front>
      <title>JMAP Blob Extensions</title>
      <author fullname="Bron Gondwana" initials="B." surname="Gondwana">
         <organization>Fastmail</organization>
      </author>
      <date day="14" month="March" year="2026"/>
      <abstract>
	 <t>   The JMAP base protocol (RFC8620) provides the ability to upload and
   download arbitrary binary data.  This binary data is called a &quot;blob&quot;,
   and can be used in all other JMAP extensions.

   The JMAP blob extension (RFC9404) added additional ways to create and
   access blobs by making inline method calls within a standard JMAP
   request.

   This extension adds more methods to work with blobs, including
   handling large blobs by processing them in chunks (building on
   RFC9404&#x27;s blob construction support), and providing server-side blob
   conversion operations: image format conversion, archive creation and
   extraction (zip, tar, cpio), compression and decompression, and
   binary delta (rdiff) operations.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-gondwana-jmap-blobext-01"/>
   
</reference>

<reference anchor="RFC2119">
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author fullname="S. Bradner" initials="S." surname="Bradner"/>
    <date month="March" year="1997"/>
    <abstract>
      <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="2119"/>
  <seriesInfo name="DOI" value="10.17487/RFC2119"/>
</reference>

<reference anchor="RFC8174">
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author fullname="B. Leiba" initials="B." surname="Leiba"/>
    <date month="May" year="2017"/>
    <abstract>
      <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="8174"/>
  <seriesInfo name="DOI" value="10.17487/RFC8174"/>
</reference>




    </references>

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



<reference anchor="CALDAV">
  <front>
    <title>Calendaring Extensions to WebDAV (CalDAV)</title>
    <author fullname="C. Daboo" initials="C." surname="Daboo"/>
    <author fullname="B. Desruisseaux" initials="B." surname="Desruisseaux"/>
    <author fullname="L. Dusseault" initials="L." surname="Dusseault"/>
    <date month="March" year="2007"/>
    <abstract>
      <t>This document defines extensions to the Web Distributed Authoring and Versioning (WebDAV) protocol to specify a standard way of accessing, managing, and sharing calendaring and scheduling information based on the iCalendar format. This document defines the "calendar-access" feature of CalDAV. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4791"/>
  <seriesInfo name="DOI" value="10.17487/RFC4791"/>
</reference>

<reference anchor="CARDDAV">
  <front>
    <title>CardDAV: vCard Extensions to Web Distributed Authoring and Versioning (WebDAV)</title>
    <author fullname="C. Daboo" initials="C." surname="Daboo"/>
    <date month="August" year="2011"/>
    <abstract>
      <t>This document defines extensions to the Web Distributed Authoring and Versioning (WebDAV) protocol to specify a standard way of accessing, managing, and sharing contact information based on the vCard format. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="6352"/>
  <seriesInfo name="DOI" value="10.17487/RFC6352"/>
</reference>

<reference anchor="JMAP-MAIL">
  <front>
    <title>The JSON Meta Application Protocol (JMAP) for Mail</title>
    <author fullname="N. Jenkins" initials="N." surname="Jenkins"/>
    <author fullname="C. Newman" initials="C." surname="Newman"/>
    <date month="August" year="2019"/>
    <abstract>
      <t>This document specifies a data model for synchronising email data with a server using the JSON Meta Application Protocol (JMAP). Clients can use this to efficiently search, access, organise, and send messages, and to get push notifications for fast resynchronisation when new messages are delivered or a change is made in another client.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8621"/>
  <seriesInfo name="DOI" value="10.17487/RFC8621"/>
</reference>


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

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

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

<reference anchor="JMAP-QUOTAS">
  <front>
    <title>JSON Meta Application Protocol (JMAP) for Quotas</title>
    <author fullname="R. Cordier" initials="R." role="editor" surname="Cordier"/>
    <date month="June" year="2023"/>
    <abstract>
      <t>This document specifies a data model for handling quotas on accounts with a server using the JSON Meta Application Protocol (JMAP).</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9425"/>
  <seriesInfo name="DOI" value="10.17487/RFC9425"/>
</reference>

<reference anchor="WEBDAV">
  <front>
    <title>HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)</title>
    <author fullname="L. Dusseault" initials="L." role="editor" surname="Dusseault"/>
    <date month="June" year="2007"/>
    <abstract>
      <t>Web Distributed Authoring and Versioning (WebDAV) consists of a set of methods, headers, and content-types ancillary to HTTP/1.1 for the management of resource properties, creation and management of resource collections, URL namespace manipulation, and resource locking (collision avoidance).</t>
      <t>RFC 2518 was published in February 1999, and this specification obsoletes RFC 2518 with minor revisions mostly due to interoperability experience. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="4918"/>
  <seriesInfo name="DOI" value="10.17487/RFC4918"/>
</reference>

<reference anchor="UNICODE">
  <front>
    <title>Unicode Format for Network Interchange</title>
    <author fullname="J. Klensin" initials="J." surname="Klensin"/>
    <author fullname="M. Padlipsky" initials="M." surname="Padlipsky"/>
    <date month="March" year="2008"/>
    <abstract>
      <t>The Internet today is in need of a standardized form for the transmission of internationalized "text" information, paralleling the specifications for the use of ASCII that date from the early days of the ARPANET. This document specifies that format, using UTF-8 with normalization and specific line-ending sequences. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="5198"/>
  <seriesInfo name="DOI" value="10.17487/RFC5198"/>
</reference>




    </references>

</references>



  </back>

<!-- ##markdown-source:
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

-->

</rfc>

