<?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-12" 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="April" day="01"/>

    
    
    <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>forbiddenNameChars: "String|null"  <vspace blankLines='1'/>
A string where each character is forbidden in FileNode names.
  If null, the server does not restrict name characters beyond
  the requirement that names be non-empty Net-Unicode strings.
  The server <bcp14>MUST</bcp14> reject names containing any of these
  characters with an "invalidProperties" error.</t>
  <t>forbiddenNodeNames: "String[]|null"  <vspace blankLines='1'/>
An array of complete names that the server will not accept
  as FileNode names, compared case-insensitively.  For
  example, <spanx style="verb">[".", "..", "CON", "PRN", "AUX", "NUL"]</spanx> would
  forbid common path-traversal names and Windows reserved
  device names.  If null, the server does not forbid any
  specific names.</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",
      "nodeType", "tree"
    ],
    "forbiddenNameChars": "/<>:\"\\|?*",
    "forbiddenNodeNames": [".", "..", "CON", "PRN", "AUX",
      "NUL", "COM0", "COM1", "COM2", "COM3", "COM4", "COM5",
      "COM6", "COM7", "COM8", "COM9", "LPT0", "LPT1", "LPT2",
      "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9"
    ],
    "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>nodeType: "String" (immutable; default: server-inferred)  <vspace blankLines='1'/>
The type of node.  Values are registered in the "JMAP
  FileNode Types" registry (see IANA Considerations).  This
  document defines the following values: "file", "directory",
  and "symlink".  This is immutable after creation.  If not
  provided on creation, the server infers the type: "file" if
  <spanx style="verb">blobId</spanx> is non-null, "symlink" if <spanx style="verb">target</spanx> is non-null,
  "directory" otherwise.  Attempting to change <spanx style="verb">nodeType</spanx> after
  creation is an "invalidProperties" error.</t>
  <t>blobId: "Id|null"  <vspace blankLines='1'/>
The blobId for the content of this node.  <bcp14>MUST</bcp14> be non-null
  for file nodes (including zero byte files).  <bcp14>MUST</bcp14> be null
  for directory and symlink nodes.  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
  blob referenced by a FileNode <bcp14>MUST NOT</bcp14> be expired or garbage
  collected by the server while the FileNode exists.</t>
  <t>target: "String[]|null"  <vspace blankLines='1'/>
The target path for symlink nodes, as an array of path
  elements.  <bcp14>MUST</bcp14> be non-null for symlinks.  <bcp14>MUST</bcp14> be null for
  file and directory nodes.  Each element is a node name in
  the path.  An empty string as the first element indicates
  an absolute path from the root of the tree; otherwise the
  path is relative to the symlink's parent.  An element of
  ".." refers to the parent directory.  The target is not
  required to resolve to an existing node (symlinks may
  dangle).  The target is mutable — updating it changes where
  the symlink points.</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 for directory and symlink nodes, and non-null for file
  nodes.  Size is optional on create and update, but if
  provided it <bcp14>MUST</bcp14> match the size of the provided blobId.
  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.  The server <bcp14>MUST</bcp14> reject names containing any
  character listed in <spanx style="verb">forbiddenNameChars</spanx>, or matching any
  entry in <spanx style="verb">forbiddenNodeNames</spanx> (case-insensitively), with an
  "invalidProperties" error.  See Implementation Considerations
  for guidance on which characters and names to forbid.  <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> for
  directory and symlink nodes, and non-null for file nodes.  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.  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.  See
  Implementation Considerations for usage guidance.</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>changed: "UTCDate" (server-set)  <vspace blankLines='1'/>
The date the server last recorded a change to any property
  of this node.  The server <bcp14>MUST</bcp14> automatically update this
  value whenever any property of the node is modified,
  including <spanx style="verb">blobId</spanx>, <spanx style="verb">name</spanx>, <spanx style="verb">parentId</spanx>, <spanx style="verb">shareWith</spanx>,
  <spanx style="verb">executable</spanx>, and all other mutable properties.  This is
  not settable by clients.</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 properties and
blob content of this node.</t>
      <t>mayAddChildren: <spanx style="verb">Boolean</spanx> The user may create child nodes
in this directory.</t>
      <t>mayRename: <spanx style="verb">Boolean</spanx> The user may rename or move this node.</t>
      <t>mayDelete: <spanx style="verb">Boolean</spanx> The user may destroy this node.</t>
      <t>mayModifyContent: <spanx style="verb">Boolean</spanx> The user may update the
content-related properties of this node (<spanx style="verb">blobId</spanx>, <spanx style="verb">type</spanx>,
<spanx style="verb">target</spanx>, <spanx style="verb">modified</spanx>, <spanx style="verb">accessed</spanx>, <spanx style="verb">executable</spanx>).</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, with the following additional
request argument:</t>

<t><list style="symbols">
  <t>fetchParents: "Boolean" (default: false)  <vspace blankLines='1'/>
If true, the server returns all ancestor nodes of the
  requested ids in addition to the requested nodes themselves.
  This allows a client to reconstruct the full path to each
  requested node in a single call.  Ancestor nodes that have
  already been included (either because they were explicitly
  requested or because they are ancestors of multiple requested
  nodes) are not duplicated.  The ancestors are returned as
  additional entries in the <spanx style="verb">list</spanx> array.</t>
</list></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>descendantId: "Id"  <vspace blankLines='1'/>
A FileNode id.  A node must be an ancestor (parent, parent
  of parent, etc.) of the node with this id to match the
  condition.  This is the inverse of <spanx style="verb">ancestorId</spanx>.</t>
  <t>nodeType: "String"  <vspace blankLines='1'/>
A node type value.  Only nodes with precisely this nodeType
  match this condition.</t>
  <t>role: "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'/>
Matches the <em>name</em> property of the node using glob syntax.
  The following special patterns are defined: <spanx style="verb">*</spanx> matches any
  sequence of characters, <spanx style="verb">?</spanx> matches any single character,
  and a pair of brackets matches any single character in the
  bracketed set (e.g., <spanx style="verb">[abc]</spanx> matches "a", "b", or "c";
  <spanx style="verb">[a-z]</spanx> matches any lowercase letter; <spanx style="verb">[!abc]</spanx> or <spanx style="verb">[^abc]</spanx>
  matches any character not in the set).  All other characters match
  literally.  The match is case-insensitive.</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'/>
Matches the <em>type</em> property of the node using the same glob
  syntax as <em>nameMatch</em>.</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>nodeType:  <vspace blankLines='1'/>
Sort by node type.  Directories sort first, then symlinks,
  then files.</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">mayModifyContent</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">mayModifyContent</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 anchor="extracting-archives-into-filenodes"><name>Extracting Archives into FileNodes</name>

<t>When both capabilities are present, the ExtractRecipe
(defined in <xref target="JMAP-BLOBEXT"/>) is extended with the following
additional properties:</t>

<t><list style="symbols">
  <t>parentNodeId: "Id|null"
A FileNode id of a directory.  When present, the server
extracts the archive contents into this directory, creating
FileNode objects for each entry.  Subdirectories in the
archive are created as directory FileNodes.  File entries
become file FileNodes with their <spanx style="verb">blobId</spanx> set to the
extracted content.  The <spanx style="verb">created</spanx> and <spanx style="verb">modified</spanx> timestamps
are taken from the archive entry metadata.  If the archive
entry includes a <spanx style="verb">mode</spanx> field, the server <bcp14>SHOULD</bcp14> use it to
set the <spanx style="verb">executable</spanx> property on the created FileNode.</t>
  <t>onExists: "String|null" (default: null)
Controls the behaviour when an extracted entry would collide
with an existing FileNode name under the same parent.  The
values and semantics are the same as for FileNode/set (see
above): null rejects with an <spanx style="verb">alreadyExists</spanx> SetError,
"replace" destroys the existing node, and "rename" gives the
new node a server-chosen name.</t>
</list></t>

<t>When <spanx style="verb">parentNodeId</spanx> is set, each ArchiveEntry in the response
<spanx style="verb">entries</spanx> array includes an additional <spanx style="verb">nodeId</spanx> property
containing the id of the FileNode that was created for that
entry.</t>

<t>If <spanx style="verb">parentNodeId</spanx> references a FileNode that does not exist,
is not a directory, or for which the user does not have
<spanx style="verb">mayAddChildren</spanx> permission, the server <bcp14>MUST</bcp14> reject the Blob/convert
creation with an appropriate SetError (<spanx style="verb">notFound</spanx>,
<spanx style="verb">invalidProperties</spanx>, or <spanx style="verb">forbidden</spanx>).</t>

<section anchor="example"><name>Example</name>

<t>Extracting a zip file into a directory:</t>

<t><spanx style="verb">json
[["Blob/convert", {
  "accountId": "account1",
  "create": {
    "e1": {
      "extract": {
        "blobId": "Barchive123",
        "type": "application/zip",
        "parentNodeId": "dir456"
      }
    }
  }
}, "R1"]]
</spanx></t>

<t>The response includes a <spanx style="verb">nodeId</spanx> for each created entry:</t>

<t><spanx style="verb">json
[["Blob/convert", {
  "accountId": "account1",
  "created": {
    "e1": {
      "id": "Barchive123",
      "type": "application/zip",
      "size": 104857,
      "entries": [
        {
          "name": "docs/",
          "entryType": "directory",
          "nodeId": "node001"
        },
        {
          "name": "docs/readme.txt",
          "blobId": "Bdd001",
          "entryType": "file",
          "modified": "2026-03-01T12:00:00Z",
          "mode": "0644",
          "nodeId": "node002"
        },
        {
          "name": "docs/logo.png",
          "blobId": "Bdd002",
          "entryType": "file",
          "modified": "2026-02-15T09:30:00Z",
          "mode": "0644",
          "nodeId": "node003"
        }
      ]
    }
  },
  "notCreated": {}
}, "R1"]]
</spanx></t>

</section>
</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="implementation-considerations"><name>Implementation Considerations</name>

<section anchor="modification-timestamps"><name>Modification Timestamps</name>

<t>Clients <bcp14>SHOULD</bcp14> provide an updated <spanx style="verb">modified</spanx> value when modifying
a node.  This gives clients control over the timestamp, for
example when preserving original modification times during file
synchronization.  Clients that do not care about preserving
timestamps can set <spanx style="verb">modified</spanx> to null to have the server use the
current time.</t>

<t>Clients may also choose to update the <spanx style="verb">modified</spanx> timestamp on a
parent directory when moving a child node in or out, to reflect
that the directory's contents have changed.</t>

</section>
<section anchor="timestamp-precision"><name>Timestamp Precision</name>

<t>The UTCDate type (RFC 3339) supports fractional seconds.
Servers <bcp14>SHOULD</bcp14> include sub-second precision in <spanx style="verb">created</spanx>,
<spanx style="verb">modified</spanx>, <spanx style="verb">accessed</spanx>, and <spanx style="verb">changed</spanx> timestamps where their
storage backend supports it.  Clients <bcp14>MUST</bcp14> preserve fractional
seconds when round-tripping timestamps back to the server.</t>

</section>
<section anchor="filename-character-restrictions"><name>Filename Character Restrictions</name>

<t>Servers should set <spanx style="verb">forbiddenNameChars</spanx> and <spanx style="verb">forbiddenNodeNames</spanx>
to include characters and names that are problematic for their
storage backend and for the broadest set of clients.</t>

<t>The following characters are problematic on common platforms:</t>

<t><list style="symbols">
  <t>Windows: <spanx style="verb">&lt;</spanx>, <spanx style="verb">&gt;</spanx>, <spanx style="verb">:</spanx>, <spanx style="verb">"</spanx>, <spanx style="verb">\</spanx>, <spanx style="verb">|</spanx>, <spanx style="verb">?</spanx>, <spanx style="verb">*</spanx>, and
control characters (U+0000-U+001F).  Windows also forbids
trailing dots and spaces in names.</t>
  <t>macOS: <spanx style="verb">:</spanx> (HFS+ legacy; displayed as <spanx style="verb">/</spanx> in Finder).</t>
  <t>Linux: the null byte (U+0000).</t>
</list></t>

<t>The following names are problematic:</t>

<t><list style="symbols">
  <t>All platforms: <spanx style="verb">.</spanx> and <spanx style="verb">..</spanx> (path traversal).</t>
  <t>Windows: reserved device names CON, PRN, AUX, NUL,
COM0-COM9, and LPT0-LPT9.  These are reserved regardless
of file extension (e.g., "CON.txt" is also forbidden).</t>
</list></t>

<t>A server targeting broad client compatibility should include
at least <spanx style="verb">/&lt;&gt;:"\|?*</spanx> in <spanx style="verb">forbiddenNameChars</spanx> and at least
<spanx style="verb">.</spanx>, <spanx style="verb">..</spanx>, and the Windows reserved names in
<spanx style="verb">forbiddenNodeNames</spanx>.</t>

</section>
<section anchor="access-time-updates"><name>Access Time Updates</name>

<t>Updating <spanx style="verb">accessed</spanx> on every file read generates significant
API traffic for little value.  Clients are encouraged to use a
"relatime" strategy similar to modern POSIX filesystems: only
update <spanx style="verb">accessed</spanx> if the current value is older than <spanx style="verb">modified</spanx>,
or if more than 24 hours have elapsed since the last <spanx style="verb">accessed</spanx>
update.  Clients should batch access time updates with their
next JMAP request rather than making a dedicated call.</t>

</section>
</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>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.  Servers <bcp14>SHOULD</bcp14> include <spanx style="verb">/</spanx> in
<spanx style="verb">forbiddenNameChars</spanx> and <spanx style="verb">.</spanx> and <spanx style="verb">..</spanx> in <spanx style="verb">forbiddenNodeNames</spanx> to
prevent path traversal attacks via node names.</t>

</section>
<section anchor="symlink-targets"><name>Symlink Targets</name>

<t>Symlink targets are not validated by the server to point to
existing nodes.  Clients that resolve symlinks <bcp14>MUST</bcp14> guard
against symlink loops (a symlink pointing to an ancestor of
itself) and <bcp14>MUST NOT</bcp14> follow symlinks outside the FileNode tree.
Servers <bcp14>SHOULD</bcp14> impose a limit on the length of <spanx style="verb">target</spanx> values
and <bcp14>MAY</bcp14> reject targets containing ".." path components.</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-types-registry"><name>JMAP FileNode Types Registry</name>

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

<texttable>
      <ttcol align='left'>Type</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>file</c>
      <c>A regular file with blob content</c>
      <c>this document</c>
      <c>directory</c>
      <c>A collection that may contain child nodes</c>
      <c>this document</c>
      <c>symlink</c>
      <c>A symbolic link to another path in the tree</c>
      <c>this document</c>
</texttable>

</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>create real-world clients to test this</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-12</strong></t>

<t><list style="symbols">
  <t>Added symlink support: nodeType property (file, directory,
symlink) with IANA registry, and target property (array of
path elements).</t>
  <t>Replaced isFile/isDirectory query filters and sort with
nodeType.</t>
  <t>Expanded myRights: replaced mayWrite with mayAddChildren,
mayRename, mayDelete, mayModifyContent.</t>
  <t>Added forbiddenNameChars and forbiddenNodeNames capabilities;
removed hardcoded name restrictions from spec.</t>
  <t>Added changed (server-set) timestamp.</t>
  <t>Added Implementation Considerations section with guidance on
timestamps, access times, and filename restrictions.</t>
</list></t>

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

<t><list style="symbols">
  <t>Updated for blobext recipe renames (ExtractRecipe).</t>
</list></t>

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

<t><list style="symbols">
  <t>Added ExtractRecipe parentNodeId extension for extracting
archives directly into FileNode trees.</t>
</list></t>

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

<t><list style="symbols">
  <t>Renamed hasType filter to isFile and isDirectory (separate filters).</t>
  <t>Renamed hasRole filter to role for consistency.</t>
  <t>Defined glob matching syntax for nameMatch/typeMatch.</t>
  <t>Added fetchParents argument to FileNode/get.</t>
  <t>Added descendantId filter to FileNode/query.</t>
</list></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="30" 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
   delta/patch operations.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-gondwana-jmap-blobext-05"/>
   
</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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
qzBtMOhYXZo6RlDEks9JDiTzRcMZok5d7yyZBsBzrnuGsgg/fhQkao7jHesj
xknejIbrKhKnnzpEjbqFA2G7RamKupV6HlR+chqGc2l0YasOjbBDImYIs/zz
lhN0NXekg01sqrmuzxYPtXIyyX8Pe9d1dAnWkXqv4ISimGMKWYqTRi34UrPf
sw/E2NnU0sCDK3/V845ir3ffm3bfbWsC8pFAh4TyHoyGa7BD9Gg34AYslLE7
6d9iXayH0dVaLFaxl1OW1Uaj+owQr3Ur59ODs2p3MSMV3YAOgufQ/5Gl7ALk
/ZrzzipPvWrPRZndDBaUPuacEDPeRzwKgQmh87GHQtPP/vCegm52cqCvc/g1
SdlDoSJKn+Q8mPVEPK0KxMfgomSoI2jW+riCz7tsX6F6ceySc8T+01ZPsBwr
RwJI/REl3QObs2aReiy1oI7dowlHMpkOOF5MM/0jXzAyEfMbj8cswL/7bhAu
bjDkVlHW71Skuv5xICJdmEzQU2qlS3Mf4f21jwLZHyp5tCTXCoke0SQAdG7y
L2qPKFmMbmnY+VZ6VQ32ux8ruQykPsd98/F7/fVjZP//GH1ER+mDwfffAzId
gLt+iWzgCyf2bcCLaqqZoL7nOhoKAZWD+P3qVwW5NAv69UEeAC+Efgf+JssP
OrAODuHi7Pj0zdle+6EdBA98HH7O4AQu/HG4bey0mjb7/S+3HLOdL/59xokz
vbHPErxDJUYjlOOq6VX9YVWn27GXE0ACJUHHuiDc+QVaS+g/jAL/YU9/kaj+
W6/F/G2zGsMJwJ3OG9u0mig2z20T8m8zkhQe3QIKn5sXqCNOKeaOmtzppNT6
625Wy5qMByinvnzPczl3CnsyjWUMRaiYm6KojV1GvdYHLdeUOe1Ki0JlSt0q
urx2jOnPUKR4wWvaWVdPCTQpVUT0+8i3PTBx2lF8OrJEy2jhZueC1SiWTWCd
G7WpqpPo2m3S9dmZ3TF7FOqqEDxwuYOap14GsJOtaNoqMlVTbHAtT7XTYZdM
4DSrvYnpWsmIUmu1/XC3WitEK7vQfEXBrE6GoraHZX/xrmxEvWu+4/C4k4Tr
JS7zWUsU92UFou8FXWf0PgHNfGar1AwAOBPYPDPraDSF76SUJBRlHeOQZlnz
4XxOppCOmpqb4qYW+lixXa3IOPQYBBzC6TquvDjo2IEB87XubaLNBI0BXL/x
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

-->

</rfc>

