<?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-13" 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="07"/>

    
    
    <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>caseInsensitiveNames: "Boolean"  <vspace blankLines='1'/>
If true, the server treats file names as case-insensitive for
  all name collision checks, including the sibling uniqueness
  constraint and <spanx style="verb">onExists</spanx> handling.  The server preserves the
  original case as provided by the client.</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"
    ],
    "caseInsensitiveNames": false,
    "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.</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="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="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>A server <bcp14>MUST</bcp14> order creation and deletion operations within a
single FileNode/set such that the sibling name uniqueness
constraint is retained at the end of the transaction, but
replacing an existing file can be done atomically.</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>
  <t>compareCaseInsensitively: "Boolean" (default: false)  <vspace blankLines='1'/>
If true, name collision checks (including <spanx style="verb">onExists</spanx> handling)
 treat names as case-insensitive for this request.  This has no
 effect if the server already has <spanx style="verb">caseInsensitiveNames</spanx> set to
 true in its capability.  This allows clients syncing to
 case-insensitive platforms to prevent name collisions that
 would be problematic on those platforms.</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="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>
<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 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="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="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="case-sensitivity"><name>Case Sensitivity</name>

<t>Windows and macOS filesystems are typically case-insensitive
(treating "Foo" and "foo" as the same name), while Linux
filesystems are typically case-sensitive.  Clients syncing to
case-insensitive platforms should use <spanx style="verb">compareCaseInsensitively</spanx>
on FileNode/set requests to prevent creating sibling nodes
whose names differ only in case, as these cannot coexist on
the target platform.</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-13</strong></t>

<t><list style="symbols">
  <t>Reordered methods to get/changes/set/copy/query/queryChanges per
RFC 8620 convention.</t>
  <t>Promoted Direct HTTP Write to top-level section.</t>
  <t>Moved Access Control before Quotas and integrations.</t>
  <t>Added caseInsensitiveNames capability and compareCaseInsensitively
parameter on FileNode/set.</t>
</list></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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
4BMpgD8i11dimZ+j/w9oTQQ9iakAAA==

-->

</rfc>

