<?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.6.17 (Ruby 3.0.3) -->


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

]>

<?rfc comments="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-jsonpath-base-08" category="std" consensus="true" submissionType="IETF" xml:lang="en" tocDepth="4" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="JSONPath">JSONPath: Query expressions for JSON</title>

    <author initials="S." surname="Gössner" fullname="Stefan Gössner" role="editor">
      <organization>Fachhochschule Dortmund</organization>
      <address>
        <postal>
          <street>Sonnenstraße 96</street>
          <city>Dortmund</city>
          <code>D-44139</code>
          <country>Germany</country>
        </postal>
        <email>stefan.goessner@fh-dortmund.de</email>
      </address>
    </author>
    <author initials="G." surname="Normington" fullname="Glyn Normington" role="editor">
      <organization></organization>
      <address>
        <postal>
          <street></street>
          <city>Winchester</city>
          <region></region>
          <code></code>
          <country>UK</country>
        </postal>
        <phone></phone>
        <email>glyn.normington@gmail.com</email>
      </address>
    </author>
    <author initials="C." surname="Bormann" fullname="Carsten Bormann" role="editor">
      <organization ascii="Universitaet Bremen TZI">Universität Bremen TZI</organization>
      <address>
        <postal>
          <street>Postfach 330440</street>
          <city>Bremen</city>
          <code>D-28359</code>
          <country>Germany</country>
        </postal>
        <phone>+49-421-218-63921</phone>
        <email>cabo@tzi.org</email>
      </address>
    </author>

    <date year="2022"/>

    <area>ART</area>
    <workgroup>JSONPath WG</workgroup>
    <keyword>JSON</keyword>

    <abstract>


<t>JSONPath defines a string syntax for selecting and extracting JSON (RFC 8259) values
from a JSON value.</t>



    </abstract>

    <note title="About This Document" removeInRFC="true">
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-jsonpath-base/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        JSON Path Working Group mailing list (<eref target="mailto:jsonpath@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/jsonpath/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/jsonpath/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-jsonpath/draft-ietf-jsonpath-base"/>.</t>
    </note>


  </front>

  <middle>


<!-- define an ALD to simplify below -->
<!-- use as {: unnumbered} -->

<!-- editorial issue: lots of complicated nesting of quotes, as in -->
<!-- `"13 == '13'"` or `$`.  We probably should find a simpler style -->

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

<t>JSON <xref target="RFC8259"/> is a popular representation
format for structured data values.
JSONPath defines a string syntax for selecting and extracting JSON values
from a JSON value.</t>

<t>JSONPath is not intended as a replacement for, but as a more powerful
companion to, JSON Pointer <xref target="RFC6901"/>. See <xref target="json-pointer"/>.</t>

<section anchor="terminology"><name>Terminology</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>

<t>The grammatical rules in this document are to be interpreted as ABNF,
as described in <xref target="RFC5234"/>.
ABNF terminal values in this document define Unicode code points rather than
their UTF-8 encoding.
For example, the Unicode PLACE OF INTEREST SIGN (U+2318) would be defined
in ABNF as <spanx style="verb">%x2318</spanx>.</t>

<t>The terminology of <xref target="RFC8259"/> applies except where clarified below.
The terms "Primitive" and "Structured" are used to group
different kinds of values as in <xref section="1" sectionFormat="of" target="RFC8259"/>; JSON Objects and Arrays are
structured, all other values are primitive.
Definitions for "Object", "Array", "Number", and "String" remain
unchanged.
Importantly "object" and "array" in particular do not take on a
generic meaning, such as they would in a general programming context.</t>

<t>Additional terms used in this specification are defined below.</t>

<dl>
  <dt>Value:</dt>
  <dd>
    <t>As per <xref target="RFC8259"/>, a structure conforming to the generic data model of JSON, i.e.,
composed of components such as structured values, namely JSON objects and arrays, and
primitive data, namely numbers and text strings as well as the special
values null, true, and false.
<xref target="RFC8259"/> focuses on the textual representation of JSON values and
doesn't fully define the value abstraction assumed here.</t>
  </dd>
  <dt>Member:</dt>
  <dd>
    <t>A name/value pair in an object.  (A member is not itself a value.)</t>
  </dd>
  <dt>Name:</dt>
  <dd>
    <t>The name (a string) in a name/value pair constituting a member.
This is also used in <xref target="RFC8259"/>, but that specification does not
formally define it.
It is included here for completeness.</t>
  </dd>
  <dt>Element:</dt>
  <dd>
    <t>A value in a JSON array.</t>
  </dd>
  <dt>Index:</dt>
  <dd>
    <t>A non-negative integer that identifies a specific element in an array.
Note that the term <em>indexing</em> is also used for accessing elements
using negative integers (<xref target="index-semantics"/>), and for accessing
member values in an object using their member name.</t>
  </dd>
  <dt>Query:</dt>
  <dd>
    <t>Short name for a JSONPath expression.</t>
  </dd>
  <dt>Argument:</dt>
  <dd>
    <t>Short name for the value a JSONPath expression is applied to.</t>
  </dd>
  <dt>Location:</dt>
  <dd>
    <t>the position of a value within the argument. This can be thought of
as a sequence of names and indexes navigating to the value through
the objects and arrays in the argument, with the empty sequence
indicating the argument itself.
A location can be represented as a Normalized Path (defined below).</t>
  </dd>
  <dt>Node:</dt>
  <dd>
    <t>The pair of a value along with its location within the argument.
Member names do not have locations and so do not have nodes.
Members are not values and so do not have nodes.
Note that a node is either the root node (defined below) or one of
its descendants (also defined below).</t>
  </dd>
  <dt>Root Node:</dt>
  <dd>
    <t>The unique node whose value is the entire argument.</t>
  </dd>
  <dt>Children (of a node):</dt>
  <dd>
    <t>If the node is an array, the nodes of its elements.
If the node is an object, the nodes of its member values.
If the node is neither an array nor an object, it has no children.
Note that the members and member names of an object do not
have nodes.</t>
  </dd>
  <dt>Descendants (of a node):</dt>
  <dd>
    <t>The children of the node, together with the children of its children, and so forth
recursively. More formally, the descendants relation between nodes is the transitive
closure of the children relation.</t>
  </dd>
  <dt>Depth (of a descendant node within a value):</dt>
  <dd>
    <t>The number of ancestors of the node within the value. The root node of the value has depth zero,
the children of the root node have depth one, their children have depth two, and so forth.</t>
  </dd>
  <dt>Segment:</dt>
  <dd>
    <t>One of the constructs which select children (<spanx style="verb">[]</spanx>)
or descendants (<spanx style="verb">..[]</spanx>) of an input value.</t>
  </dd>
  <dt>Nodelist:</dt>
  <dd>
    <t>A list of nodes.
While a nodelist can be represented in JSON, e.g. as an array, this specification
does not require or assume any particular representation.</t>
  </dd>
  <dt>Normalized Path:</dt>
  <dd>
    <t>A simple form of JSONPath expression that identifies a node in a value by
providing a query that results in exactly that node.  Similar
to, but syntactically different from, a JSON Pointer <xref target="RFC6901"/>.</t>
  </dd>
  <dt>Unicode Scalar Value:</dt>
  <dd>
    <t>Any Unicode <xref target="UNICODE"/> code point except high-surrogate and low-surrogate code points.
In other words, integers in either of the inclusive base 16 ranges 0 to D7FF and
E000 to 10FFFF. JSON string values are sequences of Unicode scalar values.</t>
  </dd>
  <dt>Singular Path:</dt>
  <dd>
    <t>A JSONPath expression built from segments each of which, regardless of the input value,
produces at most one node.</t>
  </dd>
  <dt>Selector:</dt>
  <dd>
    <t>A single item within a segment that takes the input value and produces a nodelist
consisting of child nodes of the input value.</t>
  </dd>
</dl>

</section>
<section anchor="history"><name>History</name>

<t>This section is informative.</t>

<t>This document picks up <contact fullname="Stefan Gössner"/>'s popular JSONPath proposal
dated 2007-02-21 <xref target="JSONPath-orig"/>, builds on the experience from the widespread
deployment of its implementations, and provides a normative definition for it.</t>

<t><xref target="inspired-by-xpath"/> describes how JSONPath was inspired by XML's XPath
<xref target="XPath"></xref>.</t>

<t>JSONPath was intended as a light-weight companion to JSON
implementations on platforms such as PHP and JavaScript, so instead of
defining its own expression language like XPath did, JSONPath
delegated this to the expression language of the platform.
While the languages in which JSONPath is used do have significant
commonalities, over time this caused non-portability of JSONPath
expressions between the ensuing platform-specific dialects.</t>

<t>The present specification aims to remove platform dependencies and
serve as a common JSONPath specification that can be used across
platforms.  Obviously, this means that backwards compatibility could
not always be achieved; a design principle of this specification is to
go with a "consensus" between implementations even if it is rough, as
long as that does not jeopardize the objective of obtaining a usable,
stable JSON query language.</t>

</section>
<section anchor="json-values"><name>JSON Values</name>

<t>The JSON value a JSONPath query is applied to is, by definition, a
valid JSON value. A JSON value is often constructed by parsing
a JSON text.</t>

<t>The parsing of a JSON text into a JSON value and what happens if a JSON
text does not represent valid JSON are not defined by this specification.
Sections <xref target="RFC8259" section="4" sectionFormat="bare"/> and <xref target="RFC8259" section="8" sectionFormat="bare"/> of <xref target="RFC8259"/> identify specific situations that may
conform to the grammar for JSON texts but are not interoperable uses
of JSON, as they may cause unpredictable behavior.
The present specification does not attempt to define predictable
behavior for JSONPath queries in these situations.</t>

<t>Specifically, the "Semantics" subsections of Sections
<xref format="counter" target="name-selector"/>, <xref format="counter" target="wildcard"/>,
<xref format="counter" target="filter-selector"/>, and <xref format="counter" target="descendant-segment"/> describe behavior that
becomes unpredictable when the JSON value for one of the objects
under consideration was constructed out of JSON text that exhibits
multiple members for a single object that share the same member name
("duplicate names", see <xref section="4" sectionFormat="of" target="RFC8259"/>).
Also, selecting a child by name (<xref format="counter" target="name-selector"/>) and comparing strings
(<xref target="comparisons"/> in Section <xref format="counter" target="filter-selector"/>) assume these
strings are sequences of Unicode scalar values, becoming unpredictable
if they aren't (<xref section="8.2" sectionFormat="of" target="RFC8259"/>).</t>

</section>
<section anchor="overview"><name>Overview of JSONPath Expressions</name>

<t>This section is informative.</t>

<t>A JSONPath expression is applied to a JSON value, the <em>argument</em>.
The output is a nodelist.</t>

<t>A JSONPath expression consists of an identifier followed by a series
of zero or more segments each of which contains one or more selectors.</t>

<section anchor="ids"><name>Identifiers</name>

<t>The <em>root node identifier</em> <spanx style="verb">$</spanx> refers to the <em>root node</em> of the argument,
i.e., to the argument as a whole.
Every JSONPath expression begins with the root node identifier.</t>

<t>The <em>current node identifier</em> <spanx style="verb">@</spanx> refers to the <em>current node</em> in the context
of the evaluation of a filter expression (described later).</t>

</section>
<section anchor="segments"><name>Segments</name>

<t>Segments can use the <em>bracket notation</em>, for example:</t>

<figure><artwork><![CDATA[
$['store']['book'][0]['title']
]]></artwork></figure>

<t>or the more compact <em>dot notation</em>, for example:</t>

<figure><artwork><![CDATA[
$.store.book[0].title
]]></artwork></figure>

<t>A JSONPath expression may use a combination of bracket and dot notations.</t>

<t>Dot notation is a shorthand way of writing certain bracket notations.</t>

<t>This document treats the bracket notations as canonical and defines various shorthands in terms
of bracket notation. Examples and descriptions use shorthands where convenient.</t>

</section>
<section anchor="selectors"><name>Selectors</name>

<t>A wildcard <spanx style="verb">*</spanx> (<xref target="wildcard"/>) in the expression <spanx style="verb">[*]</spanx> selects all children of an
object or an array and in the expression <spanx style="verb">..[*]</spanx> selects all descendants of an object or an array.</t>

<t>An array slice <spanx style="verb">start:end:step</spanx> (<xref target="slice"/>) selects a series of
elements from an array, giving a start position, an end position, and
possibly a step value that moves the position from the start to the
end.</t>

<t>Filter expressions <spanx style="verb">?&lt;boolean expr&gt;</spanx> select certain children of an object or array as in</t>

<figure><artwork><![CDATA[
$.store.book[?@.price < 10].title
]]></artwork></figure>

</section>
<section anchor="summary"><name>Summary</name>

<t><xref target="tbl-overview"/> provides a quick overview of the JSONPath syntax elements.</t>

<texttable title="Overview of JSONPath" anchor="tbl-overview">
      <ttcol align='left'>Syntax Element</ttcol>
      <ttcol align='left'>Description</ttcol>
      <c><spanx style="verb">$</spanx></c>
      <c><xref target="root-identifier">root node identifier</xref></c>
      <c><spanx style="verb">@</spanx></c>
      <c><xref target="filter-selector">current node identifier</xref> (valid only within filter selectors)</c>
      <c><spanx style="verb">[&lt;selectors&gt;]</spanx></c>
      <c><xref target="child-segment">child segment</xref> selects zero or more children of JSON objects and arrays; contains one or more selectors, separated by commas</c>
      <c><spanx style="verb">.name</spanx></c>
      <c>shorthand for <spanx style="verb">['name']</spanx></c>
      <c><spanx style="verb">.*</spanx></c>
      <c>shorthand for <spanx style="verb">[*]</spanx></c>
      <c><spanx style="verb">..[&lt;selectors&gt;]</spanx></c>
      <c><xref target="descendant-segment">descendant segment</xref>: selects zero or more descendants of JSON objects and arrays; contains one or more selectors, separated by commas</c>
      <c><spanx style="verb">..name</spanx></c>
      <c>shorthand for <spanx style="verb">..['name']</spanx></c>
      <c><spanx style="verb">..*</spanx></c>
      <c>shorthand for <spanx style="verb">..[*]</spanx></c>
      <c><spanx style="verb">'name'</spanx></c>
      <c><xref target="name-selector">name selector</xref>: selects a named child of an object</c>
      <c><spanx style="verb">*</spanx></c>
      <c><xref target="name-selector">wildcard selector</xref>: selects all children of an array or object</c>
      <c><spanx style="verb">3</spanx></c>
      <c><xref target="index-selector">index selector</xref>: selects an indexed child of an array (from 0)</c>
      <c><spanx style="verb">0:100:5</spanx></c>
      <c><xref target="slice">array slice selector</xref>: start:end:step for arrays</c>
      <c><spanx style="verb">?&lt;expr&gt;</spanx></c>
      <c><xref target="filter-selector">filter selector</xref>: selects particular children using a boolean expression</c>
</texttable>

</section>
</section>
<section anchor="jsonpath-examples"><name>JSONPath Examples</name>

<t>This section is informative. It provides examples of JSONPath expressions.</t>

<t>The examples are based on the simple JSON value shown in
<xref target="fig-example-value"/>, representing a bookstore (that also has a bicycle).</t>

<figure title="Example JSON value" anchor="fig-example-value"><sourcecode type="json"><![CDATA[
{ "store": {
    "book": [
      { "category": "reference",
        "author": "Nigel Rees",
        "title": "Sayings of the Century",
        "price": 8.95
      },
      { "category": "fiction",
        "author": "Evelyn Waugh",
        "title": "Sword of Honour",
        "price": 12.99
      },
      { "category": "fiction",
        "author": "Herman Melville",
        "title": "Moby Dick",
        "isbn": "0-553-21311-3",
        "price": 8.99
      },
      { "category": "fiction",
        "author": "J. R. R. Tolkien",
        "title": "The Lord of the Rings",
        "isbn": "0-395-19395-8",
        "price": 22.99
      }
    ],
    "bicycle": {
      "color": "red",
      "price": 399
    }
  }
}
]]></sourcecode></figure>

<t><xref target="tbl-example"/> shows some JSONPath queries that might be applied to this example and their intended results.</t>

<texttable title="Example JSONPath expressions and their intended results when applied to the example JSON value" anchor="tbl-example">
      <ttcol align='left'>JSONPath</ttcol>
      <ttcol align='left'>Intended result</ttcol>
      <c><spanx style="verb">$.store.book[*].author</spanx></c>
      <c>the authors of all books in the store</c>
      <c><spanx style="verb">$..author</spanx></c>
      <c>all authors</c>
      <c><spanx style="verb">$.store.*</spanx></c>
      <c>all things in store, which are some books and a red bicycle</c>
      <c><spanx style="verb">$.store..price</spanx></c>
      <c>the prices of everything in the store</c>
      <c><spanx style="verb">$..book[2]</spanx></c>
      <c>the third book</c>
      <c><spanx style="verb">$..book[-1]</spanx></c>
      <c>the last book in order</c>
      <c><spanx style="verb">$..book[0,1]</spanx><br /><spanx style="verb">$..book[:2]</spanx></c>
      <c>the first two books</c>
      <c><spanx style="verb">$..book[?(@.isbn)]</spanx></c>
      <c>all books with an ISBN number</c>
      <c><spanx style="verb">$..book[?(@.price&lt;10)]</spanx></c>
      <c>all books cheaper than 10</c>
      <c><spanx style="verb">$..*</spanx></c>
      <c>all member values and array elements contained in input value</c>
</texttable>

</section>
</section>
<section anchor="jsonpath-syntax-and-semantics"><name>JSONPath Syntax and Semantics</name>

<section anchor="synsem-overview"><name>Overview</name>

<t>A JSONPath expression is a string which, when applied to a JSON value,
the <em>argument</em>, selects zero or more nodes of the argument and outputs
these nodes as a nodelist.</t>

<t>A query <bcp14>MUST</bcp14> be encoded using UTF-8.
The grammar for queries given in this document assumes that its UTF-8 form is first decoded into
Unicode code points as described
in <xref target="RFC3629"/>; implementation approaches that lead to an equivalent
result are possible.</t>

<t>A string to be used as a JSONPath query needs to be <em>well-formed</em> and
<em>valid</em>.
A string is a well-formed JSONPath query if it conforms to the ABNF syntax in this document.
A well-formed JSONPath query is valid if it also fulfills all semantic
requirements posed by this document.</t>

<t>To be valid, integer numbers in the JSONPath query that are relevant
to the JSONPath processing (e.g., index values and steps) <bcp14>MUST</bcp14> be
within the range of exact values defined in I-JSON <xref target="RFC7493"/>, namely
within the interval [-(2<sup>53</sup>)+1, (2<sup>53</sup>)-1]).</t>

<t>To be valid, strings on the right-hand side of the <spanx style="verb">=~</spanx> regex matching
operator need to conform to <xref target="I-D.draft-ietf-jsonpath-iregexp"/>.</t>

<t>The well-formedness and the validity of JSONPath queries are independent of
the JSON value the query is applied to; no further errors relating to the
well-formedness and the validity of a JSONPath query can be
raised during application of the query to a value.</t>

<t>Obviously, an implementation can still fail when executing a JSONPath
query, e.g., because of resource depletion, but this is not modeled in
the present specification.  However, the implementation <bcp14>MUST NOT</bcp14>
silently malfunction.  Specifically, if a valid JSONPath query is
evaluated against a structured value whose size doesn't fit in the
range of exact values, interfering with the correct interpretation of
the query, the implementation <bcp14>MUST</bcp14> provide an indication of overflow.</t>

<t>(Readers familiar with the HTTP error model may be reminded of 400
type errors when pondering well-formedness and validity, while
resource depletion and related errors are comparable to 500 type
errors.)</t>

</section>
<section anchor="syntax"><name>Syntax</name>

<t>Syntactically, a JSONPath query consists of a root identifier (<spanx style="verb">$</spanx>), which
stands for a nodelist that contains the root node of the argument,
followed by a possibly empty sequence of <em>segments</em>.</t>

<figure><sourcecode type="abnf"><![CDATA[
json-path = root-identifier segments
segments  =  *(S (child-segment /
                  descendant-segment))
]]></sourcecode></figure>

<t>The syntax and semantics of each segment are defined below.</t>

</section>
<section anchor="semantics"><name>Semantics</name>

<t>In this specification, the semantics of a JSONPath query define the
required results and do not prescribe the internal workings of an
implementation.</t>

<t>The semantics are that a valid query is executed against a value,
the <em>argument</em>, and produces a list of zero or more nodes of the value.</t>

<t>The query is a root identifier followed by a sequence of zero or more <em>segments</em>, each of
which is applied to the result of the previous root identifier or segment and provides
input to the next segment.
These results and inputs take the form of a <em>nodelist</em>, i.e., a
sequence of zero or more nodes.</t>

<t>Segments can be added to a query to drill further into the structure of the input value.</t>

<t>The nodelist resulting from the root identifier contains a single node,
the argument.
The nodelist resulting from the last segment is presented as the
result of the query. Depending on the specific API, it might be
presented as an array of the JSON values at the nodes, an array of
Normalized Paths referencing the nodes, or both — or some other
representation as desired by the implementation.
Note that an empty nodelist is a valid query result.</t>

<t>A segment operates on each of the nodes in its input nodelist in turn,
and the resultant nodelists are concatenated to produce
the result of the segment. A node may be selected more than once and
appears that number of times in the nodelist. Duplicate nodes are not removed.</t>

<t>A syntactically valid segment <bcp14>MUST NOT</bcp14> produce errors when executing the query.
This means that some
operations that might be considered erroneous, such as indexing beyond the
end of an array,
simply result in fewer nodes being selected.</t>

<t>Consider this example. With the argument <spanx style="verb">{"a":[{"b":0},{"b":1},{"c":2}]}</spanx>, the
query <spanx style="verb">$.a[*].b</spanx> selects the following list of nodes: <spanx style="verb">0</spanx>, <spanx style="verb">1</spanx>
(denoted here by their value).</t>

<t>The query consists of <spanx style="verb">$</spanx> followed by three segments: <spanx style="verb">.a</spanx>, <spanx style="verb">[*]</spanx>, and <spanx style="verb">.b</spanx>.</t>

<t>Firstly, <spanx style="verb">$</spanx> produces a nodelist consisting of just the argument.</t>

<t>Next, <spanx style="verb">.a</spanx> selects from any object input node and selects the
node of any
member value of the input
node corresponding to the member name <spanx style="verb">"a"</spanx>.
The result is again a list of one node: <spanx style="verb">[{"b":0},{"b":1},{"c":2}]</spanx>.</t>

<t>Next, <spanx style="verb">[*]</spanx> selects from any array input node all its elements
(for an object input node, it would select all its member
values, but not the member names).
The result is a list of three nodes: <spanx style="verb">{"b":0}</spanx>, <spanx style="verb">{"b":1}</spanx>, and <spanx style="verb">{"c":2}</spanx>.</t>

<t>Finally, <spanx style="verb">.b</spanx> selects from any object input node with a member name
<spanx style="verb">b</spanx> and selects the node of the member value of the input node corresponding to that name.
The result is a list containing <spanx style="verb">0</spanx>, <spanx style="verb">1</spanx>.
This is the concatenation of three lists, two of length one containing
<spanx style="verb">0</spanx>, <spanx style="verb">1</spanx>, respectively, and one of length zero.</t>

<t>As a consequence of this approach, if any of the segments produces an empty nodelist,
then the whole query produces an empty nodelist.</t>

<t>If a query may produce a nodelist with more than one possible ordering, a particular implementation
may also produce distinct orderings in successive runs of the query.</t>

<t>In what follows, the semantics of each segment are defined for each kind
of input node.</t>

</section>
<section anchor="root-identifier"><name>Root Identifier</name>

<section numbered="false" toc="exclude" anchor="syntax-1"><name>Syntax</name>

<t>Every JSONPath query <bcp14>MUST</bcp14> begin with the root identifier <spanx style="verb">$</spanx>.</t>

<figure><sourcecode type="abnf"><![CDATA[
root-identifier  = "$"
]]></sourcecode></figure>

</section>
<section numbered="false" toc="exclude" anchor="semantics-1"><name>Semantics</name>

<t>The root identifier <spanx style="verb">$</spanx> represents the root node of the argument
and produces a nodelist consisting of that root node.</t>

</section>
<section numbered="false" toc="exclude" anchor="examples"><name>Examples</name>

<t>JSON:</t>

<figure><artwork><![CDATA[
{"k": "v"}
]]></artwork></figure>

<t>Queries:</t>

<texttable title="Root identifier examples">
      <ttcol align='center'>Query</ttcol>
      <ttcol align='left'>Result</ttcol>
      <ttcol align='center'>Result Path</ttcol>
      <ttcol align='left'>Comment</ttcol>
      <c><spanx style="verb">$</spanx></c>
      <c><spanx style="verb">{"k": "v"}</spanx></c>
      <c><spanx style="verb">$</spanx></c>
      <c>Root node</c>
</texttable>

</section>
</section>
<section anchor="selectors-1"><name>Selectors</name>

<t>Selectors appear only inside <xref target="child-segment">child segments</xref> and
<xref target="descendant-segment">descendant segments</xref>.</t>

<t>A selector produces a nodelist consisting of zero or more children of the input value.</t>

<t>There are various kinds of selectors which produce children of objects, children of arrays,
or children of either objects or arrays.</t>

<figure><sourcecode type="abnf"><![CDATA[
selector =  ( name-selector  /
              index-selector /
              slice-selector /
              filter-selector
            )
]]></sourcecode></figure>

<t>The syntax and semantics of each kind of selector are defined below.</t>

<section anchor="name-selector"><name>Name Selector</name>

<section numbered="false" toc="exclude" anchor="syntax-name"><name>Syntax</name>

<t>A name selector <spanx style="verb">'&lt;name&gt;'</spanx> selects at most one object member value.</t>

<t>In contrast to JSON,
the JSONPath syntax allows strings to be enclosed in <em>single</em> or <em>double</em> quotes.</t>

<figure><sourcecode type="abnf"><![CDATA[
name-selector       = string-literal

string-literal      = %x22 *double-quoted %x22 /     ; "string"
                      %x27 *single-quoted %x27       ; 'string'

double-quoted       = unescaped /
                      %x27      /                    ; '
                      ESC %x22  /                    ; \"
                      ESC escapable

single-quoted       = unescaped /
                      %x22      /                    ; "
                      ESC %x27  /                    ; \'
                      ESC escapable

ESC                 = %x5C                           ; \  backslash

unescaped           = %x20-21 /                      ; s. RFC 8259
                      %x23-26 /                      ; omit "
                      %x28-5B /                      ; omit '
                      %x5D-10FFFF                    ; omit \

escapable           = ( %x62 / %x66 / %x6E / %x72 / %x74 /
                         ; \b \f \n \r \t
                         ; b / ;  BS backspace U+0008
                         ; t / ;  HT horizontal tab U+0009
                         ; n / ;  LF line feed U+000A
                         ; f / ;  FF form feed U+000C
                         ; r / ;  CR carriage return U+000D
                         "/" / ;  /  slash (solidus) U+002F
                         "\" / ; \ backslash (reverse solidus) U+005C
                         (%x75 hexchar) ;  uXXXX      U+XXXX
                      )

hexchar = non-surrogate / (high-surrogate "\" %x75 low-surrogate)
non-surrogate = ((DIGIT / "A"/"B"/"C" / "E"/"F") 3HEXDIG) /
                 ("D" %x30-37 2HEXDIG )
high-surrogate = "D" ("8"/"9"/"A"/"B") 2HEXDIG
low-surrogate = "D" ("C"/"D"/"E"/"F") 2HEXDIG

HEXDIG = DIGIT / "A" / "B" / "C" / "D" / "E" / "F"
]]></sourcecode></figure>

<t>Note: <spanx style="verb">double-quoted</spanx> strings follow the JSON string syntax (<xref section="7" sectionFormat="of" target="RFC8259"/>);
<spanx style="verb">single-quoted</spanx> strings follow an analogous pattern (<xref target="syntax-index"/>).</t>

</section>
<section numbered="false" toc="exclude" anchor="semantics-2"><name>Semantics</name>

<t>A <spanx style="verb">name-selector</spanx> string <bcp14>MUST</bcp14> be converted to a
member name M by removing the surrounding quotes and
replacing each escape sequence with its equivalent Unicode character, as
in the table below:</t>

<texttable title="Escape Sequence Replacements">
      <ttcol align='center'>Escape Sequence</ttcol>
      <ttcol align='center'>Unicode Character</ttcol>
      <ttcol align='left'>Description</ttcol>
      <c>\b</c>
      <c>U+0008</c>
      <c>BS backspace</c>
      <c>\t</c>
      <c>U+0009</c>
      <c>HT horizontal tab</c>
      <c>\n</c>
      <c>U+000A</c>
      <c>LF line feed</c>
      <c>\f</c>
      <c>U+000C</c>
      <c>FF form feed</c>
      <c>\r</c>
      <c>U+000D</c>
      <c>CR carriage return</c>
      <c>\"</c>
      <c>U+0022</c>
      <c>quotation mark</c>
      <c>\'</c>
      <c>U+0027</c>
      <c>apostrophe</c>
      <c>\/</c>
      <c>U+002F</c>
      <c>slash (solidus)</c>
      <c>\\</c>
      <c>U+005C</c>
      <c>backslash (reverse solidus)</c>
      <c>\uXXXX</c>
      <c>U+XXXX</c>
      <c>unicode character</c>
</texttable>

<t>Applying the <spanx style="verb">name-selector</spanx> to an object node
selects a member value whose name equals the member name M,
or selects nothing if there is no such member value.
Nothing is selected from a value that is not an object.</t>

<t>Note that processing the name selector requires comparing the member name string M
with member name strings in the JSON to which the selector is being applied.
Two strings <bcp14>MUST</bcp14> be considered equal if and only if they are identical
sequences of Unicode scalar values. In other words, normalization operations
<bcp14>MUST NOT</bcp14> be applied to either the member name string M from the JSONPath or to
the member name strings in the JSON prior to comparison.</t>

</section>
<section numbered="false" toc="exclude" anchor="examples-1"><name>Examples</name>

<!-- EDITING NOTE: There are non-breaking spaces here between j and j -->
<!-- i.e., j j and not j j -->

<t>JSON:</t>

<figure><artwork><![CDATA[
{
  "o": {"j j": {"k.k": 3}},
  "'": {"@": 2}
}
]]></artwork></figure>

<t>Queries:</t>

<texttable title="Name selector examples">
      <ttcol align='center'>Query</ttcol>
      <ttcol align='left'>Result</ttcol>
      <ttcol align='center'>Result Paths</ttcol>
      <ttcol align='left'>Comment</ttcol>
      <c><spanx style="verb">$.o['j j']['k.k']</spanx></c>
      <c><spanx style="verb">3</spanx></c>
      <c><spanx style="verb">$['o']['j j']['k.k']</spanx></c>
      <c>Named value in nested object</c>
      <c><spanx style="verb">$.o["j j"]["k.k"]</spanx></c>
      <c><spanx style="verb">3</spanx></c>
      <c><spanx style="verb">$['o']['j j']['k.k']</spanx></c>
      <c>Named value in nested object</c>
      <c><spanx style="verb">$["'"]["@"]</spanx></c>
      <c><spanx style="verb">2</spanx></c>
      <c><spanx style="verb">$['\'']['@']</spanx></c>
      <c>Unusual member names</c>
</texttable>

</section>
</section>
<section anchor="wildcard"><name>Wildcard Selector</name>

<section numbered="false" toc="exclude" anchor="syntax-2"><name>Syntax</name>

<t>The wildcard selector consists of an asterisk.</t>

<figure><sourcecode type="abnf"><![CDATA[
wildcard = "*"
]]></sourcecode></figure>

</section>
<section numbered="false" toc="exclude" anchor="semantics-3"><name>Semantics</name>

<t>A <spanx style="verb">wildcard</spanx> selector selects the nodes of all children of an object or array.
The order in which the children of an object appear in the resultant nodelist is not stipulated,
since JSON objects are unordered.
Children of an array appear in array order in the resultant nodelist.</t>

<t>The <spanx style="verb">wildcard</spanx> selector selects nothing from a primitive JSON value (that is,
a number, a string, <spanx style="verb">true</spanx>, <spanx style="verb">false</spanx>, or <spanx style="verb">null</spanx>).</t>

</section>
<section numbered="false" toc="exclude" anchor="examples-2"><name>Examples</name>

<t>JSON:</t>

<figure><artwork><![CDATA[
{
  "o": {"j": 1, "k": 2},
  "a": [5, 3]
}
]]></artwork></figure>

<t>Queries:</t>

<t>The following examples show the <spanx style="verb">wildcard</spanx> selector in use by a child segment.</t>

<texttable title="Wildcard selector examples">
      <ttcol align='center'>Query</ttcol>
      <ttcol align='left'>Result</ttcol>
      <ttcol align='center'>Result Paths</ttcol>
      <ttcol align='left'>Comment</ttcol>
      <c><spanx style="verb">$[*]</spanx></c>
      <c><spanx style="verb">{"j": 1, "k": 2}</spanx> <br /> <spanx style="verb">[5, 3]</spanx></c>
      <c><spanx style="verb">$['o']</spanx> <br /> <spanx style="verb">$['a']</spanx></c>
      <c>Object values</c>
      <c><spanx style="verb">$.o[*]</spanx></c>
      <c><spanx style="verb">1</spanx> <br /> <spanx style="verb">2</spanx></c>
      <c><spanx style="verb">$['o']['j']</spanx> <br /> <spanx style="verb">$['o']['k']</spanx></c>
      <c>Object values</c>
      <c><spanx style="verb">$.o[*]</spanx></c>
      <c><spanx style="verb">2</spanx> <br /> <spanx style="verb">1</spanx></c>
      <c><spanx style="verb">$['o']['k']</spanx> <br /> <spanx style="verb">$['o']['j']</spanx></c>
      <c>Alternative result</c>
      <c><spanx style="verb">$.o[*, *]</spanx></c>
      <c><spanx style="verb">1</spanx> <br /> <spanx style="verb">2</spanx> <br /> <spanx style="verb">2</spanx> <br /> <spanx style="verb">1</spanx></c>
      <c><spanx style="verb">$['o']['j']</spanx> <br /> <spanx style="verb">$['o']['k']</spanx> <br /> <spanx style="verb">$['o']['k']</spanx> <br /> <spanx style="verb">$['o']['j']</spanx></c>
      <c>Non-deterministic ordering</c>
      <c><spanx style="verb">$.a[*]</spanx></c>
      <c><spanx style="verb">5</spanx> <br /> <spanx style="verb">3</spanx></c>
      <c><spanx style="verb">$['a'][0]</spanx> <br /> <spanx style="verb">$['a'][1]</spanx></c>
      <c>Array members</c>
</texttable>

<t>The example above with the query <spanx style="verb">$.o[*, *]</spanx> shows that the wildcard selector may produce nodelists in distinct
orders each time it appears in the child segment, when it is applied to an object node with two or more
members (but not when it is applied to object nodes with less than two members or to array nodes).</t>

</section>
</section>
<section anchor="index-selector"><name>Index selector</name>

<section numbered="false" toc="exclude" anchor="syntax-index"><name>Syntax</name>

<t>An index selector <spanx style="verb">&lt;index&gt;</spanx> matches at most one array element value.</t>

<figure><sourcecode type="abnf"><![CDATA[
index-selector = int                             ; decimal integer

int            = ["-"] ( "0" / (DIGIT1 *DIGIT) ) ; -  optional
DIGIT1         = %x31-39                         ; 1-9 non-zero digit
]]></sourcecode></figure>

<t>Applying the numerical <spanx style="verb">index-selector</spanx> selects the corresponding
element. JSONPath allows it to be negative (see <xref target="index-semantics"/>).</t>

<t>Notes:
1. An <spanx style="verb">index-selector</spanx> is an integer (in base 10, as in JSON numbers).
2. As in JSON numbers, the syntax does not allow octal-like integers with leading zeros such as <spanx style="verb">01</spanx> or <spanx style="verb">-01</spanx>.</t>

</section>
<section numbered="false" toc="exclude" anchor="index-semantics"><name>Semantics</name>

<t>The <spanx style="verb">index-selector</spanx> applied to an array selects an array element using a zero-based index.
For example, the selector <spanx style="verb">0</spanx> selects the first and the selector <spanx style="verb">4</spanx> selects the fifth element of a sufficiently long array.
Nothing is selected, and it is not an error, if the index lies outside the range of the array. Nothing is selected from a value that is not an array.</t>

<t>A negative <spanx style="verb">index-selector</spanx> counts from the array end.
For example, the selector <spanx style="verb">-1</spanx> selects the last and the selector <spanx style="verb">-2</spanx> selects the penultimate element of an array with at least two elements.
As with non-negative indexes, it is not an error if such an element does
not exist; this simply means that no element is selected.</t>

</section>
<section numbered="false" toc="exclude" anchor="examples-3"><name>Examples</name>

<!-- EDITING NOTE: There are non-breaking spaces here between j and j -->
<!-- i.e., j j and not j j -->

<t>JSON:</t>

<figure><artwork><![CDATA[
["a","b"]
]]></artwork></figure>

<t>Queries:</t>

<t>The following examples show the index selector in use by a child segment.</t>

<texttable title="Index selector examples">
      <ttcol align='center'>Query</ttcol>
      <ttcol align='left'>Result</ttcol>
      <ttcol align='center'>Result Paths</ttcol>
      <ttcol align='left'>Comment</ttcol>
      <c><spanx style="verb">$[1]</spanx></c>
      <c><spanx style="verb">"b"</spanx></c>
      <c><spanx style="verb">$[1]</spanx></c>
      <c>Member of array</c>
      <c><spanx style="verb">$[-2]</spanx></c>
      <c><spanx style="verb">"a"</spanx></c>
      <c><spanx style="verb">$[0]</spanx></c>
      <c>Member of array, from the end</c>
</texttable>

</section>
</section>
<section anchor="slice"><name>Array Slice selector</name>

<section numbered="false" toc="exclude" anchor="syntax-3"><name>Syntax</name>

<t>The array slice selector has the form <spanx style="verb">&lt;start&gt;:&lt;end&gt;:&lt;step&gt;</spanx>.
It matches elements from arrays starting at index <spanx style="verb">&lt;start&gt;</spanx>, ending at — but
not including — <spanx style="verb">&lt;end&gt;</spanx>, while incrementing by <spanx style="verb">step</spanx> with a default of <spanx style="verb">1</spanx>.</t>

<figure><sourcecode type="abnf"><![CDATA[
slice-selector =  [start S] ":" S [end S] [":" [S step ]]

start          = int       ; included in selection
end            = int       ; not included in selection
step           = int       ; default: 1

B              =    %x20 / ; Space
                    %x09 / ; Horizontal tab
                    %x0A / ; Line feed or New line
                    %x0D   ; Carriage return
S              = *B        ; optional blank space
RS             = 1*B       ; required blank space

]]></sourcecode></figure>

<t>The slice selector consists of three optional decimal integers separated by colons.</t>

</section>
<section numbered="false" toc="exclude" anchor="semantics-4"><name>Semantics</name>

<t>The slice selector was inspired by the slice operator of ECMAScript
4 (ES4), which was deprecated in 2014, and that of Python.</t>

<section numbered="false" toc="exclude" anchor="informal-introduction"><name>Informal Introduction</name>

<t>This section is informative.</t>

<t>Array slicing is inspired by the behavior of the <spanx style="verb">Array.prototype.slice</spanx> method
of the JavaScript language as defined by the ECMA-262 standard <xref target="ECMA-262"/>,
with the addition of the <spanx style="verb">step</spanx> parameter, which is inspired by the Python slice expression.</t>

<t>The array slice expression <spanx style="verb">start:end:step</spanx> selects elements at indices starting at <spanx style="verb">start</spanx>,
incrementing by <spanx style="verb">step</spanx>, and ending with <spanx style="verb">end</spanx> (which is itself excluded).
So, for example, the expression <spanx style="verb">1:3</spanx> (where <spanx style="verb">step</spanx> defaults to <spanx style="verb">1</spanx>)
selects elements with indices <spanx style="verb">1</spanx> and <spanx style="verb">2</spanx> (in that order) whereas
<spanx style="verb">1:5:2</spanx> selects elements with indices <spanx style="verb">1</spanx> and <spanx style="verb">3</spanx>.</t>

<t>When <spanx style="verb">step</spanx> is negative, elements are selected in reverse order. Thus,
for example, <spanx style="verb">5:1:-2</spanx> selects elements with indices <spanx style="verb">5</spanx> and <spanx style="verb">3</spanx>, in
that order and <spanx style="verb">::-1</spanx> selects all the elements of an array in
reverse order.</t>

<t>When <spanx style="verb">step</spanx> is <spanx style="verb">0</spanx>, no elements are selected.
(This is the one case that differs from the behavior of Python, which
raises an error in this case.)</t>

<t>The following section specifies the behavior fully, without depending on
JavaScript or Python behavior.</t>

</section>
<section numbered="false" toc="exclude" anchor="detailed-semantics"><name>Detailed Semantics</name>

<t>A slice expression selects a subset of the elements of the input array, in
the same order
as the array or the reverse order, depending on the sign of the <spanx style="verb">step</spanx> parameter.
It selects no nodes from a node that is not an array.</t>

<t>A slice is defined by the two slice parameters, <spanx style="verb">start</spanx> and <spanx style="verb">end</spanx>, and
an iteration delta, <spanx style="verb">step</spanx>.
Each of these parameters is
optional. <spanx style="verb">len</spanx> is the length of the input array.</t>

<t>The default value for <spanx style="verb">step</spanx> is <spanx style="verb">1</spanx>.
The default values for <spanx style="verb">start</spanx> and <spanx style="verb">end</spanx> depend on the sign of <spanx style="verb">step</spanx>,
as follows:</t>

<texttable title="Default array slice start and end values">
      <ttcol align='left'>Condition</ttcol>
      <ttcol align='left'>start</ttcol>
      <ttcol align='left'>end</ttcol>
      <c>step &gt;= 0</c>
      <c>0</c>
      <c>len</c>
      <c>step &lt; 0</c>
      <c>len - 1</c>
      <c>-len - 1</c>
</texttable>

<t>Slice expression parameters <spanx style="verb">start</spanx> and <spanx style="verb">end</spanx> are not directly usable
as slice bounds and must first be normalized.
Normalization for this purpose is defined as:</t>

<figure><artwork><![CDATA[
FUNCTION Normalize(i, len):
  IF i >= 0 THEN
    RETURN i
  ELSE
    RETURN len + i
  END IF
]]></artwork></figure>

<t>The result of the array indexing expression <spanx style="verb">i</spanx> applied to an array
of length <spanx style="verb">len</spanx> is defined to be the result of the array
slicing expression <spanx style="verb">Normalize(i, len):Normalize(i, len)+1:1</spanx>.</t>

<t>Slice expression parameters <spanx style="verb">start</spanx> and <spanx style="verb">end</spanx> are used to derive slice bounds <spanx style="verb">lower</spanx> and <spanx style="verb">upper</spanx>.
The direction of the iteration, defined
by the sign of <spanx style="verb">step</spanx>, determines which of the parameters is the lower bound and which
is the upper bound:</t>

<figure><artwork><![CDATA[
FUNCTION Bounds(start, end, step, len):
  n_start = Normalize(start, len)
  n_end = Normalize(end, len)

  IF step >= 0 THEN
    lower = MIN(MAX(n_start, 0), len)
    upper = MIN(MAX(n_end, 0), len)
  ELSE
    upper = MIN(MAX(n_start, -1), len-1)
    lower = MIN(MAX(n_end, -1), len-1)
  END IF

  RETURN (lower, upper)
]]></artwork></figure>

<t>The slice expression selects elements with indices between the lower and
upper bounds.
In the following pseudocode, the <spanx style="verb">a(i)</spanx> construct expresses the
0-based indexing operation on the underlying array.</t>

<figure><artwork><![CDATA[
IF step > 0 THEN

  i = lower
  WHILE i < upper:
    SELECT a(i)
    i = i + step
  END WHILE

ELSE if step < 0 THEN

  i = upper
  WHILE lower < i:
    SELECT a(i)
    i = i + step
  END WHILE

END IF
]]></artwork></figure>

<t>When <spanx style="verb">step = 0</spanx>, no elements are selected and the result array is empty.</t>

<t>To be valid, the slice expression parameters <bcp14>MUST</bcp14> be in the I-JSON
range of exact values, see <xref target="synsem-overview"/>.</t>

</section>
</section>
<section numbered="false" toc="exclude" anchor="examples-4"><name>Examples</name>

<t>JSON:</t>

<figure><artwork><![CDATA[
["a", "b", "c", "d", "e", "f", "g"]
]]></artwork></figure>

<t>Queries:</t>

<texttable title="Array slice selector examples">
      <ttcol align='center'>Query</ttcol>
      <ttcol align='left'>Result</ttcol>
      <ttcol align='center'>Result Paths</ttcol>
      <ttcol align='left'>Comment</ttcol>
      <c><spanx style="verb">$[1:3]</spanx></c>
      <c><spanx style="verb">"b"</spanx> <br /> <spanx style="verb">"c"</spanx></c>
      <c><spanx style="verb">$[1]</spanx> <br /> <spanx style="verb">$[2]</spanx></c>
      <c>Slice with default step</c>
      <c><spanx style="verb">$[1:5:2]</spanx></c>
      <c><spanx style="verb">"b"</spanx> <br /> <spanx style="verb">"d"</spanx></c>
      <c><spanx style="verb">$[1]</spanx> <br /> <spanx style="verb">$[3]</spanx></c>
      <c>Slice with step 2</c>
      <c><spanx style="verb">$[5:1:-2]</spanx></c>
      <c><spanx style="verb">"f"</spanx> <br /> <spanx style="verb">"d"</spanx></c>
      <c><spanx style="verb">$[5]</spanx> <br /> <spanx style="verb">$[3]</spanx></c>
      <c>Slice with negative step</c>
      <c><spanx style="verb">$[::-1]</spanx></c>
      <c><spanx style="verb">"g"</spanx> <br /> <spanx style="verb">"f"</spanx> <br /> <spanx style="verb">"e"</spanx> <br /> <spanx style="verb">"d"</spanx> <br /> <spanx style="verb">"c"</spanx> <br /> <spanx style="verb">"b"</spanx> <br /> <spanx style="verb">"a"</spanx></c>
      <c><spanx style="verb">$[6]</spanx> <br /> <spanx style="verb">$[5]</spanx> <br /> <spanx style="verb">$[4]</spanx> <br /> <spanx style="verb">$[3]</spanx> <br /> <spanx style="verb">$[2]</spanx> <br /> <spanx style="verb">$[1]</spanx> <br /> <spanx style="verb">$[0]</spanx></c>
      <c>Slice in reverse order</c>
</texttable>

</section>
</section>
<section anchor="filter-selector"><name>Filter selector</name>

<section numbered="false" toc="exclude" anchor="syntax-4"><name>Syntax</name>

<t>The filter selector has the form <spanx style="verb">?&lt;expr&gt;</spanx>. It iterates over structured values, i.e., arrays and objects.</t>

<figure><sourcecode type="abnf"><![CDATA[
filter-selector = "?" S boolean-expr
]]></sourcecode></figure>

<t>During the iteration process the node of each array element or object member being visited is known as the current node.
A boolean expression, usually involving the current node, is evaluated and
the current node is selected if and only if the expression yields true.</t>

<t>Paths in filter expressions are Singular Paths, each of which selects at most one node.</t>

<t>The current node is accessible via the current node identifier <spanx style="verb">@</spanx>.</t>

<figure><sourcecode type="abnf"><![CDATA[
boolean-expr      = logical-or-expr
logical-or-expr   = logical-and-expr *(S "||" S logical-and-expr)
                      ; disjunction
                      ; binds less tightly than conjunction
logical-and-expr  = basic-expr *(S "&&" S basic-expr)
                      ; conjunction
                      ; binds more tightly than disjunction

basic-expr        = exist-expr /
                    paren-expr /
                    relation-expr
exist-expr        = [logical-not-op S] (rel-path / json-path)
                       ; path existence or non-existence
rel-path          = current-node-identifier segments
current-node-identifier = "@"
]]></sourcecode></figure>

<t>Parentheses <bcp14>MAY</bcp14> be used within <spanx style="verb">boolean-expr</spanx> for grouping.</t>

<figure><sourcecode type="abnf"><![CDATA[
paren-expr        = [logical-not-op S] "(" S boolean-expr S ")"
                                      ; parenthesized expression
logical-not-op    = "!"               ; logical NOT operator

relation-expr = comp-expr /           ; comparison test
                regex-expr            ; regular expression test
]]></sourcecode></figure>

<t>Comparisons are restricted to Singular Path values, each of which selects at most one node, and primitive values (that is, numbers, strings, <spanx style="verb">true</spanx>, <spanx style="verb">false</spanx>,
and <spanx style="verb">null</spanx>).</t>

<figure><sourcecode type="abnf"><![CDATA[
comp-expr    = comparable S comp-op S comparable
comparable   = number / string-literal /        ; primitive ...
               true / false / null /            ; values only
               singular-path                    ; Singular Path value
comp-op      = "==" / "!=" /                    ; comparison ...
               "<"  / ">"  /                    ; operators
               "<=" / ">="

singular-path     = rel-singular-path / abs-singular-path
rel-singular-path = current-node-identifier singular-path-segments
abs-singular-path = root-identifier singular-path-segments
singular-path-segments = *(S (name-segment / index-segment))
name-segment      = "[" name-selector "]" / dot-member-name-shorthand
index-segment     = "[" index-selector "]"
]]></sourcecode></figure>

<t>Alphabetic characters in ABNF are case-insensitive, so "e" can be either "e" or "E".</t>

<t><spanx style="verb">true</spanx>, <spanx style="verb">false</spanx>, and <spanx style="verb">null</spanx> are lower-case only (case-sensitive).</t>

<figure><sourcecode type="abnf"><![CDATA[
number       = int [ frac ] [ exp ]                ; decimal number
frac         = "." 1*DIGIT                         ; decimal fraction
exp          = "e" [ "-" / "+" ] 1*DIGIT           ; decimal exponent
true         = %x74.72.75.65                       ; true
false        = %x66.61.6c.73.65                    ; false
null         = %x6e.75.6c.6c                       ; null
]]></sourcecode></figure>

<t>The syntax of regular expressions in the string-literals on the right-hand
side of <spanx style="verb">=~</spanx> is as defined in <xref target="I-D.draft-ietf-jsonpath-iregexp"/>.</t>

<figure><sourcecode type="abnf"><![CDATA[
regex-expr   = (singular-path / string-literal) S regex-op S regex
regex-op     = "=~"                        ; regular expression match
regex        = string-literal              ; I-Regexp
]]></sourcecode></figure>

<t>The following table lists filter expression operators in order of precedence from highest (binds most tightly) to lowest (binds least tightly).</t>

<!-- FIXME: Should the syntax column be split between unary and binary operators? -->

<texttable title="Filter expression operator precedence">
      <ttcol align='center'>Precedence</ttcol>
      <ttcol align='center'>Operator type</ttcol>
      <ttcol align='center'>Syntax</ttcol>
      <c>5</c>
      <c>Grouping</c>
      <c><spanx style="verb">(...)</spanx></c>
      <c>4</c>
      <c>Logical NOT</c>
      <c><spanx style="verb">!</spanx></c>
      <c>3</c>
      <c>Relations</c>
      <c><spanx style="verb">==</spanx> <spanx style="verb">!=</spanx><br /><spanx style="verb">&lt;</spanx> <spanx style="verb">&lt;=</spanx> <spanx style="verb">&gt;</spanx> <spanx style="verb">&gt;=</spanx><br /><spanx style="verb">=~</spanx></c>
      <c>2</c>
      <c>Logical AND</c>
      <c><spanx style="verb">&amp;&amp;</spanx></c>
      <c>1</c>
      <c>Logical OR</c>
      <c><spanx style="verb">¦¦</spanx></c>
</texttable>

</section>
<section numbered="false" toc="exclude" anchor="semantics-5"><name>Semantics</name>

<t>The filter selector works with arrays and objects exclusively. Its result is a list of <em>zero</em>, <em>one</em>, <em>multiple</em> or <em>all</em> of their array elements or member values, respectively.
Applied to primitive values, it will select nothing.</t>

<t>The order in which the children of an object appear in the resultant nodelist is not stipulated,
since JSON objects are unordered.
Children of an array appear in array order in the resultant nodelist.</t>

<section numbered="false" toc="exclude" anchor="existence-tests"><name>Existence Tests</name>

<t>A path by itself in a Boolean context is an existence test which yields true if the path selects at least one node and yields false if the path does not select any nodes.</t>

<t>Existence tests differ from comparisons in that:</t>

<t><list style="symbols">
  <t>they work with arbitrary relative or absolute paths (not just Singular Paths).</t>
  <t>they work with paths that select structured values.</t>
</list></t>

<t>To test the value of a node selected by a path, an explicit comparison is necessary.
For example, to test whether the node selected by the path <spanx style="verb">@.foo</spanx> has the value <spanx style="verb">null</spanx>, use <spanx style="verb">@.foo == null</spanx> (see <xref target="null-semantics"/>)
rather than the negated existence test <spanx style="verb">!@.foo</spanx> (which yields false if <spanx style="verb">@.foo</spanx> selects a node, regardless of the node's value).</t>

</section>
<section numbered="false" toc="exclude" anchor="comparisons"><name>Comparisons</name>

<t>The comparison operators <spanx style="verb">==</spanx> and <spanx style="verb">&lt;</spanx> are defined first and then these are used to define <spanx style="verb">!=</spanx>, <spanx style="verb">&lt;=</spanx>, <spanx style="verb">&gt;</spanx>, and <spanx style="verb">&gt;=</spanx>.</t>

<t>When a path resulting in an empty nodelist appears on either side of a comparison:</t>

<t><list style="symbols">
  <t>a comparison using the operator <spanx style="verb">==</spanx> yields true if and only if the comparison
is between two paths each of which result in an empty nodelist.</t>
  <t>a comparison using the operator <spanx style="verb">&lt;</spanx> yields false.</t>
</list></t>

<t>When any path on either side of a comparison results in a nodelist consisting of a single node, each such path is
replaced by the value of its node and then:</t>

<t><list style="symbols">
  <t>a comparison using the operator <spanx style="verb">==</spanx> yields true if and only if the comparison
is between:
  <list style="symbols">
      <t>equal primitive values,</t>
      <t>equal arrays, that is arrays of the same length where each element of the first array is equal to the corresponding
element of the second array, or</t>
      <t>equal objects with no duplicate names, that is where:
      <list style="symbols">
          <t>both objects have the same collection of names (with no duplicates), and</t>
          <t>for each of those names, the values associated with the name by the objects are equal.</t>
        </list></t>
    </list></t>
  <t>a comparison using the operator <spanx style="verb">&lt;</spanx> yields true if and only if
the comparison is between values which are both numbers or both strings and which satisfy the comparison:  <list style="symbols">
      <t>numbers expected to interoperate as per <xref section="2.2" sectionFormat="of" target="RFC7493">I-JSON</xref> <bcp14>MUST</bcp14> compare using the normal mathematical ordering;
numbers not expected to interoperate as per I-JSON <bcp14>MAY</bcp14> compare using an implementation specific ordering</t>
      <t>the empty string compares less than any non-empty string</t>
      <t>a non-empty string compares less than another non-empty string if and only if the first string starts with a
lower Unicode scalar value than the second string or if both strings start with the same Unicode scalar value and
the remainder of the first string compares less than the remainder of the second string.</t>
    </list></t>
</list></t>

<t>Note that comparisons using the operator <spanx style="verb">&lt;</spanx> yield false if either value being
compared is an object, array, boolean, or <spanx style="verb">null</spanx>.</t>

<t><spanx style="verb">!=</spanx>, <spanx style="verb">&lt;=</spanx>, <spanx style="verb">&gt;</spanx>, and <spanx style="verb">&gt;=</spanx> are defined in terms of the other comparison operators. For any <spanx style="verb">a</spanx> and <spanx style="verb">b</spanx>:</t>

<t><list style="symbols">
  <t>The comparison <spanx style="verb">a != b</spanx> yields true if and only if <spanx style="verb">a == b</spanx> yields false.</t>
  <t>The comparison <spanx style="verb">a &lt;= b</spanx> yields true if and only if <spanx style="verb">a &lt; b</spanx> yields true or <spanx style="verb">a == b</spanx> yields true.</t>
  <t>The comparison <spanx style="verb">a &gt; b</spanx> yields true if and only if <spanx style="verb">b &lt; a</spanx> yields true.</t>
  <t>The comparison <spanx style="verb">a &gt;= b</spanx> yields true if and only if <spanx style="verb">b &lt; a</spanx> yields true or <spanx style="verb">a == b</spanx> yields true.</t>
</list></t>

</section>
<section numbered="false" toc="exclude" anchor="regular-expressions"><name>Regular Expressions</name>

<t>A regular-expression test yields true if and only if the value on the left-hand side of <spanx style="verb">=~</spanx> is a string value and it
matches the regular expression on the right-hand side according to the semantics of <xref target="I-D.draft-ietf-jsonpath-iregexp"/>.</t>

<t>The semantics of regular expressions are as defined in <xref target="I-D.draft-ietf-jsonpath-iregexp"/>.</t>

</section>
<section numbered="false" toc="exclude" anchor="boolean-operators"><name>Boolean Operators</name>

<t>The logical AND, OR, and NOT operators have the normal semantics of Boolean algebra and
obey its laws (see, for example, <xref target="BOOLEAN-LAWS"/>).</t>

</section>
</section>
<section numbered="false" toc="exclude" anchor="examples-5"><name>Examples</name>

<t>JSON:</t>

<figure><artwork><![CDATA[
{
  "obj": {"x": "y"},
  "arr": [2, 3]
}
]]></artwork></figure>

<texttable title="Comparison examples">
      <ttcol align='center'>Comparison</ttcol>
      <ttcol align='center'>Result</ttcol>
      <ttcol align='center'>Comment</ttcol>
      <c><spanx style="verb">$.absent1 == $.absent2</spanx></c>
      <c>true</c>
      <c>Empty nodelists</c>
      <c><spanx style="verb">$.absent1 &lt;= $.absent2</spanx></c>
      <c>true</c>
      <c><spanx style="verb">==</spanx> implies <spanx style="verb">&lt;=</spanx></c>
      <c><spanx style="verb">$.absent == 'g'</spanx></c>
      <c>false</c>
      <c>Empty nodelist</c>
      <c><spanx style="verb">$.absent1 != $.absent2</spanx></c>
      <c>false</c>
      <c>Empty nodelists</c>
      <c><spanx style="verb">$.absent != 'g'</spanx></c>
      <c>true</c>
      <c>Empty nodelist</c>
      <c><spanx style="verb">1 &lt;= 2</spanx></c>
      <c>true</c>
      <c>Numeric comparison</c>
      <c><spanx style="verb">1 &gt; 2</spanx></c>
      <c>false</c>
      <c>Strict, numeric comparison</c>
      <c><spanx style="verb">13 == '13'</spanx></c>
      <c>false</c>
      <c>Type mismatch</c>
      <c><spanx style="verb">'a' &lt;= 'b'</spanx></c>
      <c>true</c>
      <c>String comparison</c>
      <c><spanx style="verb">'a' &gt; 'b'</spanx></c>
      <c>false</c>
      <c>Strict, string comparison</c>
      <c><spanx style="verb">$.obj == $.arr</spanx></c>
      <c>false</c>
      <c>Type mismatch</c>
      <c><spanx style="verb">$.obj != $.arr</spanx></c>
      <c>true</c>
      <c>Type mismatch</c>
      <c><spanx style="verb">$.obj == $.obj</spanx></c>
      <c>true</c>
      <c>Object comparison</c>
      <c><spanx style="verb">$.obj != $.obj</spanx></c>
      <c>false</c>
      <c>Object comparison</c>
      <c><spanx style="verb">$.arr == $.arr</spanx></c>
      <c>true</c>
      <c>Array comparison</c>
      <c><spanx style="verb">$.arr != $.arr</spanx></c>
      <c>false</c>
      <c>Array comparison</c>
      <c><spanx style="verb">$.obj == 17</spanx></c>
      <c>false</c>
      <c>Type mismatch</c>
      <c><spanx style="verb">$.obj != 17</spanx></c>
      <c>true</c>
      <c>Type mismatch</c>
      <c><spanx style="verb">$.obj &lt;= $.arr</spanx></c>
      <c>false</c>
      <c>Objects and arrays are not ordered</c>
      <c><spanx style="verb">$.obj &lt; $.arr</spanx></c>
      <c>false</c>
      <c>Objects and arrays are not ordered</c>
      <c><spanx style="verb">$.obj &lt;= $.obj</spanx></c>
      <c>true</c>
      <c><spanx style="verb">==</spanx> implies <spanx style="verb">&lt;=</spanx></c>
      <c><spanx style="verb">$.arr &lt;= $.arr</spanx></c>
      <c>true</c>
      <c><spanx style="verb">==</spanx> implies <spanx style="verb">&lt;=</spanx></c>
      <c><spanx style="verb">1 &lt;= $.arr</spanx></c>
      <c>false</c>
      <c>Arrays are not ordered</c>
      <c><spanx style="verb">1 &gt;= $.arr</spanx></c>
      <c>false</c>
      <c>Arrays are not ordered</c>
      <c><spanx style="verb">1 &gt; $.arr</spanx></c>
      <c>false</c>
      <c>Arrays are not ordered</c>
      <c><spanx style="verb">1 &lt; $.arr</spanx></c>
      <c>false</c>
      <c>Arrays are not ordered</c>
      <c><spanx style="verb">true &lt;= true</spanx></c>
      <c>true</c>
      <c><spanx style="verb">==</spanx> implies <spanx style="verb">&lt;=</spanx></c>
      <c><spanx style="verb">true &gt; true</spanx></c>
      <c>false</c>
      <c>Booleans are not ordered</c>
</texttable>

<t>JSON:</t>

<figure><artwork><![CDATA[
{
  "a": [3, 5, 1, 2, 4, 6, {"b": "j"}, {"b": "k"}, {"b": {}}],
  "o": {"p": 1, "q": 2, "r": 3, "s": 5, "t": {"u": 6}},
  "e": "f"
}
]]></artwork></figure>

<t>Queries:</t>

<texttable title="Filter selector examples">
      <ttcol align='center'>Query</ttcol>
      <ttcol align='left'>Result</ttcol>
      <ttcol align='center'>Result Paths</ttcol>
      <ttcol align='left'>Comment</ttcol>
      <c><spanx style="verb">$.a[?@&gt;3.5]</spanx></c>
      <c><spanx style="verb">5</spanx> <br /> <spanx style="verb">4</spanx> <br /> <spanx style="verb">6</spanx></c>
      <c><spanx style="verb">$['a'][1]</spanx> <br /> <spanx style="verb">$['a'][4]</spanx> <br /> <spanx style="verb">$['a'][5]</spanx></c>
      <c>Array value comparison</c>
      <c><spanx style="verb">$.a[?@.b]</spanx></c>
      <c><spanx style="verb">{"b": "j"}</spanx> <br /> <spanx style="verb">{"b": "k"}</spanx> <br /> <spanx style="verb">{"b": {}}</spanx></c>
      <c><spanx style="verb">$['a'][6]</spanx> <br /> <spanx style="verb">$['a'][7]</spanx> <br /> <spanx style="verb">$['a'][8]</spanx></c>
      <c>Array value existence</c>
      <c><spanx style="verb">$[?@.*]</spanx></c>
      <c><spanx style="verb">[3, 5, 1, 2, 4, 6, {"b": "j"}, {"b": "k"}, {"b": {}}]</spanx> <br /> <spanx style="verb">{"p": 1, "q": 2, "r": 3, "s": 5, "t": {"u": 6}}</spanx></c>
      <c><spanx style="verb">$['a']</spanx> <br /> <spanx style="verb">$['o']</spanx></c>
      <c>Existence of non-singular paths</c>
      <c><spanx style="verb">$[?@[?@.b]]</spanx></c>
      <c><spanx style="verb">[3, 5, 1, 2, 4, 6, {"b": "j"}, {"b": "k"}, {"b": {}}]</spanx></c>
      <c><spanx style="verb">$['a']</spanx></c>
      <c>Nested filters</c>
      <c><spanx style="verb">$.a[?@.b, ?@.b]</spanx></c>
      <c><spanx style="verb">{"b": "j"}</spanx> <br /> <spanx style="verb">{"b": "k"}</spanx> <br /> <spanx style="verb">{"b": "k"}</spanx> <br /> <spanx style="verb">{"b": "j"}</spanx></c>
      <c><spanx style="verb">$['a'][6]</spanx> <br /> <spanx style="verb">$['a'][7]</spanx> <br /> <spanx style="verb">$['a'][7]</spanx> <br /> <spanx style="verb">$['a'][6]</spanx></c>
      <c>Non-deterministic ordering</c>
      <c><spanx style="verb">$.a[?@&lt;2 || @.b == "k"]</spanx></c>
      <c><spanx style="verb">1</spanx> <br /> <spanx style="verb">{"b": "k"}</spanx></c>
      <c><spanx style="verb">$['a'][2]</spanx> <br /> <spanx style="verb">$['a'][7]</spanx></c>
      <c>Array value logical OR</c>
      <c><spanx style="verb">$.a[?@.b =~ "[jk]"]</spanx></c>
      <c><spanx style="verb">{"b": "j"}</spanx> <br /> <spanx style="verb">{"b": "k"}</spanx></c>
      <c><spanx style="verb">$['a'][6]</spanx> <br /> <spanx style="verb">$['a'][7]</spanx></c>
      <c>Array value regular expression</c>
      <c><spanx style="verb">$.o[?@&gt;1 &amp;&amp; @&lt;4]</spanx></c>
      <c><spanx style="verb">2</spanx> <br /> <spanx style="verb">3</spanx></c>
      <c><spanx style="verb">$['o']['q']</spanx> <br /> <spanx style="verb">$['o']['r']</spanx></c>
      <c>Object value logical AND</c>
      <c><spanx style="verb">$.o[?@&gt;1 &amp;&amp; @&lt;4]</spanx></c>
      <c><spanx style="verb">3</spanx> <br /> <spanx style="verb">2</spanx></c>
      <c><spanx style="verb">$['o']['r']</spanx> <br /> <spanx style="verb">$['o']['q']</spanx></c>
      <c>Alternative result</c>
      <c><spanx style="verb">$.o[?@.u || @.x]</spanx></c>
      <c><spanx style="verb">{"u": 6}</spanx></c>
      <c><spanx style="verb">$['o']['t']</spanx></c>
      <c>Object value logical OR</c>
      <c><spanx style="verb">$.a[?(@.b == $.x)]</spanx></c>
      <c><spanx style="verb">3</spanx> <br /> <spanx style="verb">5</spanx> <br /> <spanx style="verb">1</spanx> <br /> <spanx style="verb">2</spanx> <br /> <spanx style="verb">4</spanx> <br /> <spanx style="verb">6</spanx></c>
      <c><spanx style="verb">$['a'][0]</spanx> <br /><spanx style="verb">$['a'][1]</spanx> <br /> <spanx style="verb">$['a'][2]</spanx> <br /> <spanx style="verb">$['a'][3]</spanx> <br /> <spanx style="verb">$['a'][4]</spanx></c>
      <c>Comparison of paths with no values</c>
      <c><spanx style="verb">$[?(@ == @)]</spanx></c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>Comparison of structured values</c>
</texttable>

<t>The example above with the query <spanx style="verb">$.a[?@.b, ?@.b]</spanx> shows that the filter selector may produce nodelists in distinct
orders each time it appears in the child segment.</t>

</section>
</section>
</section>
<section anchor="segments-1"><name>Segments</name>

<t>Segments apply one or more selectors to an input value and concatenate the results into a single nodelist.</t>

<t>It turns out that the more segments there are in a query, the greater the depth in the input value of the
nodes of the resultant nodelist:</t>

<t><list style="symbols">
  <t>A query with N segments, where N &gt;= 0, produces a nodelist
consisting of nodes at depth in the input value of N or greater.</t>
  <t>A query with N segments, where N &gt;= 0, all of which are <xref target="child-segment">child segments</xref>,
produces a nodelist consisting of nodes precisely at depth N in the input value.</t>
</list></t>

<t>The syntax and semantics of each segment are defined below.</t>

<section anchor="child-segment"><name>Child Segment</name>

<section numbered="false" toc="exclude" anchor="syntax-5"><name>Syntax</name>

<t>The child segment consists of a non-empty, comma-separated
sequence of selectors enclosed in square brackets.</t>

<t>Shorthand notations are also provided for when there is a single
wildcard or name selector.</t>

<figure><sourcecode type="abnf"><![CDATA[
child-segment             = (child-longhand /
                             dot-wildcard-shorthand /
                             dot-member-name-shorthand)

child-longhand            = "[" S selector 1*(S "," S selector) S "]"

dot-wildcard-shorthand    = "." wildcard

dot-member-name-shorthand = "." dot-member-name
dot-member-name           = name-first *name-char
name-first                = ALPHA /
                            "_"   /            ; _
                            %x80-10FFFF
                              ; any non-ASCII Unicode character
name-char                 = DIGIT / name-first

DIGIT                     =  %x30-39              ; 0-9
ALPHA                     =  %x41-5A / %x61-7A    ; A-Z / a-z
]]></sourcecode></figure>

<t>The <spanx style="verb">dot-wildcard-shorthand</spanx> is shorthand for <spanx style="verb">[*]</spanx>.</t>

<t>A <spanx style="verb">dot-member-name-shorthand</spanx> of the form <spanx style="verb">.&lt;member-name&gt;</spanx> is shorthand for <spanx style="verb">['&lt;member-name&gt;']</spanx>, but
can only be used with member names that are composed of certain characters.
Thus, for example, <spanx style="verb">$.foo.bar</spanx> is shorthand for <spanx style="verb">$['foo']['bar']</spanx> (and not for <spanx style="verb">$['foo.bar']</spanx>).</t>

</section>
<section numbered="false" toc="exclude" anchor="semantics-6"><name>Semantics</name>

<t>A child segment contains a sequence of selectors, each of which
selects zero or more children of the input value.</t>

<t>Selectors of different kinds may be combined within a single child segment.</t>

<t>The resulting nodelist of a child segment is the concatenation of
the nodelists from each of its selectors in the order that the selectors
appear in the list.
Note that any node matched by more than one selector is kept
as many times in the nodelist.</t>

<t>Where a selector can produce a nodelist in more than one possible order,
each occurrence of the selector in the child segment
may evaluate to produce a nodelist in a distinct order.</t>

<t>So a child segment drills down one more level into the structure of the input value.</t>

</section>
<section numbered="false" toc="exclude" anchor="examples-6"><name>Examples</name>

<t>JSON:</t>

<figure><artwork><![CDATA[
["a", "b", "c", "d", "e", "f", "g"]
]]></artwork></figure>

<t>Queries:</t>

<texttable title="Child segment examples">
      <ttcol align='center'>Query</ttcol>
      <ttcol align='left'>Result</ttcol>
      <ttcol align='center'>Result Paths</ttcol>
      <ttcol align='left'>Comment</ttcol>
      <c><spanx style="verb">$[0, 3]</spanx></c>
      <c><spanx style="verb">"a"</spanx> <br /> <spanx style="verb">"d"</spanx></c>
      <c><spanx style="verb">$[0]</spanx> <br /> <spanx style="verb">$[3]</spanx></c>
      <c>Indices</c>
      <c><spanx style="verb">$[0:2, 5]</spanx></c>
      <c><spanx style="verb">"a"</spanx> <br /> <spanx style="verb">"b"</spanx> <br /> <spanx style="verb">"f"</spanx></c>
      <c><spanx style="verb">$[0]</spanx> <br /> <spanx style="verb">$[1]</spanx> <br /> <spanx style="verb">$[5]</spanx></c>
      <c>Slice and index</c>
      <c><spanx style="verb">$[0, 0]</spanx></c>
      <c><spanx style="verb">"a"</spanx> <br /> <spanx style="verb">"a"</spanx></c>
      <c><spanx style="verb">$[0]</spanx> <br /> <spanx style="verb">$[0]</spanx></c>
      <c>Duplicated entries</c>
</texttable>

</section>
</section>
<section anchor="descendant-segment"><name>Descendant Segment</name>

<section numbered="false" toc="exclude" anchor="syntax-6"><name>Syntax</name>

<t>The descendant segment consists of a double dot <spanx style="verb">..</spanx>
followed by a child segment (<spanx style="verb">descendant-segment</spanx>).</t>

<t>Shortand notations are also provided that correspond to the shorthand forms of the child segment.</t>

<figure><sourcecode type="abnf"><![CDATA[
descendant-segment               = (descendant-child /
                                    descendant-wildcard-shorthand /
                                    descendant-member-name-shorthand)
descendant-child                 = ".." child-segment

descendant-wildcard-shorthand    = ".." wildcard
descendant-member-name-shorthand = ".." dot-member-name
]]></sourcecode></figure>

<t>The <spanx style="verb">descendant-wildcard-shorthand</spanx> is shorthand for <spanx style="verb">..[*]</spanx>.</t>

<t>A <spanx style="verb">descendant-member-name-shorthand</spanx> of the form <spanx style="verb">..&lt;member-name&gt;</spanx> is shorthand for <spanx style="verb">..['&lt;member-name&gt;']</spanx>.</t>

<t>Note that <spanx style="verb">..</spanx> on its own is not a valid segment.</t>

</section>
<section numbered="false" toc="exclude" anchor="semantics-7"><name>Semantics</name>

<t>A descendant segment produces zero or more descendants of the input value.</t>

<t>A descendant selector visits the input value and each of
its descendants such that:</t>

<t><list style="symbols">
  <t>nodes of any array are visited in array order, and</t>
  <t>nodes are visited before their descendants.</t>
</list></t>

<t>The order in which the children of an object are visited is not stipulated, since
JSON objects are unordered.</t>

<t>Suppose the nodes, in the order visited, are <spanx style="verb">D1</spanx>, ..., <spanx style="verb">Dn</spanx> (where <spanx style="verb">n &gt;= 1</spanx>).
Note that <spanx style="verb">D1</spanx> is the input value.</t>

<t>For each <spanx style="verb">i</spanx> such that <spanx style="verb">1 &lt;= i &lt;= n</spanx>, the nodelist <spanx style="verb">Ri</spanx> is defined to be a result of applying
the child segment <spanx style="verb">[&lt;selectors&gt;]</spanx> to the node <spanx style="verb">Di</spanx>.</t>

<t>The result of the descendant selector is the concatenation of <spanx style="verb">R1</spanx>, ..., <spanx style="verb">Rn</spanx> (in that order).</t>

<t>So a descendant segment drills down one or more levels into the structure of the input value.</t>

</section>
<section numbered="false" toc="exclude" anchor="examples-7"><name>Examples</name>

<t>JSON:</t>

<figure><artwork><![CDATA[
{
  "o": {"j": 1, "k": 2},
  "a": [5, 3, [{"j": 4}, {"k": 6}]]
}
]]></artwork></figure>

<t>Queries:</t>

<texttable title="Descendant segment examples">
      <ttcol align='center'>Query</ttcol>
      <ttcol align='left'>Result</ttcol>
      <ttcol align='center'>Result Paths</ttcol>
      <ttcol align='left'>Comment</ttcol>
      <c><spanx style="verb">$..j</spanx></c>
      <c><spanx style="verb">1</spanx> <br /> <spanx style="verb">4</spanx></c>
      <c><spanx style="verb">$['o']['j']</spanx> <br /> <spanx style="verb">$['a'][2][0]['j']</spanx></c>
      <c>Object values</c>
      <c><spanx style="verb">$..j</spanx></c>
      <c><spanx style="verb">4</spanx> <br /> <spanx style="verb">1</spanx></c>
      <c><spanx style="verb">$['a'][2][0]['j']</spanx> <br /> <spanx style="verb">$['o']['j']</spanx></c>
      <c>Alternative result</c>
      <c><spanx style="verb">$..[0]</spanx></c>
      <c><spanx style="verb">5</spanx> <br /> <spanx style="verb">{"j": 4}</spanx></c>
      <c><spanx style="verb">$['a'][0]</spanx> <br /> <spanx style="verb">$['a'][2][0]</spanx></c>
      <c>Array values</c>
      <c><spanx style="verb">$..[0]</spanx></c>
      <c><spanx style="verb">{"j": 4}</spanx> <br /> <spanx style="verb">5</spanx></c>
      <c><spanx style="verb">$['a'][2][0]</spanx> <br /> <spanx style="verb">$['a'][0]</spanx></c>
      <c>Alternative result</c>
      <c><spanx style="verb">$..[*]</spanx> <br /> <spanx style="verb">$..*</spanx></c>
      <c><spanx style="verb">{"j": 1, "k" : 2}</spanx> <br /> <spanx style="verb">[5, 3, [{"j": 4}, {"k": 6}]]</spanx> <br /> <spanx style="verb">1</spanx> <br /> <spanx style="verb">2</spanx> <br /> <spanx style="verb">5</spanx> <br /> <spanx style="verb">3</spanx> <br /> <spanx style="verb">[{"j": 4}, {"k": 6}]</spanx> <br /> <spanx style="verb">{"j": 4}</spanx> <br /> <spanx style="verb">4</spanx> <br /> <spanx style="verb">{"k": 6}</spanx> <br /> <spanx style="verb">6</spanx></c>
      <c><spanx style="verb">$['o']</spanx> <br /> <spanx style="verb">$['a']</spanx> <br /> <spanx style="verb">$['o']['j']</spanx> <br /> <spanx style="verb">$['o']['k']</spanx> <br /> <spanx style="verb">$['a'][0]</spanx> <br /> <spanx style="verb">$['a'][1]</spanx> <br /> <spanx style="verb">$['a'][2]</spanx> <br /> <spanx style="verb">$['a'][2][0]</spanx> <br /> <spanx style="verb">$['a'][2][0]['j']</spanx> <br /> <spanx style="verb">$['a'][2][1]</spanx> <br /> <spanx style="verb">$['a'][2][1]['k']</spanx></c>
      <c>All values</c>
      <c><spanx style="verb">$..o</spanx></c>
      <c><spanx style="verb">{"j": 1, "k": 2}</spanx></c>
      <c><spanx style="verb">$['o']</spanx></c>
      <c>Input value is visited</c>
      <c><spanx style="verb">$.o..[*, *]</spanx></c>
      <c><spanx style="verb">1</spanx> <br /> <spanx style="verb">2</spanx> <br /> <spanx style="verb">2</spanx> <br /> <spanx style="verb">1</spanx></c>
      <c><spanx style="verb">$['o']['j']</spanx> <br /> <spanx style="verb">$['o']['k']</spanx> <br /> <spanx style="verb">$['o']['k']</spanx> <br /> <spanx style="verb">$['o']['j']</spanx></c>
      <c>Non-deterministic ordering</c>
      <c><spanx style="verb">$.a..[0, 1]</spanx></c>
      <c><spanx style="verb">5</spanx> <br /> <spanx style="verb">3</spanx> <br /> <spanx style="verb">{"j": 4}</spanx> <br /> <spanx style="verb">{"k": 6}</spanx></c>
      <c><spanx style="verb">$['a'][0]</spanx> <br /> <spanx style="verb">$['a'][1]</spanx> <br /> <spanx style="verb">$['a'][0][2][0]</spanx> <br /> <spanx style="verb">$['a'][0][2][1]</spanx></c>
      <c>Multiple segments</c>
</texttable>

<t>Note: The ordering of the results for the <spanx style="verb">$..[*]</spanx> and <spanx style="verb">$..*</spanx> examples above is not guaranteed, except that:</t>

<t><list style="symbols">
  <t><spanx style="verb">{"j": 1, "k": 2}</spanx> must appear before <spanx style="verb">1</spanx> and <spanx style="verb">2</spanx>,</t>
  <t><spanx style="verb">[5, 3, [{"j": 4}, {"k": 6}]]</spanx> must appear before <spanx style="verb">5</spanx>, <spanx style="verb">3</spanx>, and <spanx style="verb">[{"j": 4}, {"k": 6}]</spanx>,</t>
  <t><spanx style="verb">5</spanx> must appear before <spanx style="verb">3</spanx> which must appear before <spanx style="verb">[{"j": 4}, {"k": 6}]</spanx>,</t>
  <t><spanx style="verb">5</spanx> and <spanx style="verb">3</spanx> must appear before <spanx style="verb">{"j": 4}</spanx>, <spanx style="verb">4</spanx>, <spanx style="verb">, {"k": 6}</spanx>, and <spanx style="verb">6</spanx>,</t>
  <t><spanx style="verb">[{"j": 4}, {"k": 6}]</spanx> must appear before <spanx style="verb">{"j": 4}</spanx> and <spanx style="verb">{"k": 6}</spanx>,</t>
  <t><spanx style="verb">{"j": 4}</spanx> must appear before <spanx style="verb">4</spanx>, and</t>
  <t><spanx style="verb">{"k": 6}</spanx> must appear before <spanx style="verb">6</spanx>.</t>
</list></t>

<t>The example above with the query <spanx style="verb">$.o..[*, *]</spanx> shows that a selector may produce nodelists in distinct orders
each time it appears in the descendant segment.</t>

<t>The example above with the query <spanx style="verb">$.a..[0, 1]</spanx> shows that the child segment <spanx style="verb">[0, 1]</spanx> is applied to each node
in turn (rather than the nodes being visited once per selector, which is the case for some JSONPath implementations
that do not conform to this specification).</t>

</section>
</section>
</section>
<section anchor="null-semantics"><name>Semantics of <spanx style="verb">null</spanx></name>

<t>Note that JSON <spanx style="verb">null</spanx> is treated the same as any other JSON value: it is not taken to mean "undefined" or "missing".</t>

<section numbered="false" toc="exclude" anchor="examples-8"><name>Examples</name>

<t>JSON:</t>

<figure><artwork><![CDATA[
{"a": null, "b": [null], "c": [{}], "null": 1}
]]></artwork></figure>

<t>Queries:</t>

<texttable title="Examples involving (or not involving) null">
      <ttcol align='center'>Query</ttcol>
      <ttcol align='left'>Result</ttcol>
      <ttcol align='center'>Result Paths</ttcol>
      <ttcol align='left'>Comment</ttcol>
      <c><spanx style="verb">$.a</spanx></c>
      <c><spanx style="verb">null</spanx></c>
      <c><spanx style="verb">$['a']</spanx></c>
      <c>Object value</c>
      <c><spanx style="verb">$.a[0]</spanx></c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c><spanx style="verb">null</spanx> used as array</c>
      <c><spanx style="verb">$.a.d</spanx></c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c><spanx style="verb">null</spanx> used as object</c>
      <c><spanx style="verb">$.b[0]</spanx></c>
      <c><spanx style="verb">null</spanx></c>
      <c><spanx style="verb">$['b'][0]</spanx></c>
      <c>Array value</c>
      <c><spanx style="verb">$.b[*]</spanx></c>
      <c><spanx style="verb">null</spanx></c>
      <c><spanx style="verb">$['b'][0]</spanx></c>
      <c>Array value</c>
      <c><spanx style="verb">$.b[?@]</spanx></c>
      <c><spanx style="verb">null</spanx></c>
      <c><spanx style="verb">$['b'][0]</spanx></c>
      <c>Existence</c>
      <c><spanx style="verb">$.b[?@==null]</spanx></c>
      <c><spanx style="verb">null</spanx></c>
      <c><spanx style="verb">$['b'][0]</spanx></c>
      <c>Comparison</c>
      <c><spanx style="verb">$.c[?(@.d==null)]</spanx></c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>Comparison with "missing" value</c>
      <c><spanx style="verb">$.null</spanx></c>
      <c><spanx style="verb">1</spanx></c>
      <c><spanx style="verb">$['null']</spanx></c>
      <c>Not JSON null at all, just a member name string</c>
</texttable>

</section>
</section>
<section anchor="normalized-paths"><name>Normalized Paths</name>

<t>A Normalized Path is a canonical representation of the identity of a node in a value.
Specifically, a Normalized Path is a JSONPath query with restricted syntax (defined below),
e.g., <spanx style="verb">$['book'][3]</spanx>, which when applied to the value results in a nodelist consisting
of just the node identified by the Normalized Path.
Note that a Normalized Path represents the identity of a node <em>in a specific value</em>.
There is precisely one Normalized Path identifying any particular node in a value.</t>

<t>A canonical representation of a nodelist is as a JSON arrays of strings, where the strings are
Normalized Paths.</t>

<t>Normalized Paths provide a predictable format that simplifies testing and post-processing
of nodelists, e.g., to remove duplicate nodes.
Normalized Paths are used in this document as result paths in examples.</t>

<t>Normalized Paths use the canonical bracket notation, rather than dot notation.</t>

<t>Single quotes are used to delimit string member names. This reduces the number of characters that
need escaping when Normalized Paths appear in double quote delimited strings, e.g., in JSON texts.</t>

<t>Certain characters are escaped, in one and only one way; all other characters are unescaped.</t>

<t>Note: Normalized Paths are Singular Paths, but not all Singular Paths are Normalized Paths.
For example, <spanx style="verb">$[-3]</spanx> is a Singular Path, but is not a Normalized Path.
The Normalized Path equivalent to <spanx style="verb">$[-3]</spanx> would have an index equal to the array length minus <spanx style="verb">3</spanx>.
(The array length must be at least <spanx style="verb">3</spanx> if <spanx style="verb">$[-3]</spanx> is to identify a node.)</t>

<figure><sourcecode type="abnf"><![CDATA[
normalized-path      = root-identifier *(normal-index-segment)
normal-index-segment = "[" normal-selector "]"
normal-selector      = normal-name-selector / normal-index-selector
normal-name-selector = %x27 *normal-single-quoted %x27 ; 'string'
normal-single-quoted = normal-unescaped /
                       ESC normal-escapable
normal-unescaped     = %x20-26 /                 ; omit control codes
                       %x28-5B /                 ; omit '
                       %x5D-10FFFF               ; omit \
normal-escapable     = ( %x62 / %x66 / %x6E / %x72 / %x74 /
                           ; \b \f \n \r \t
                           ; b /         ;  BS backspace U+0008
                           ; t /         ;  HT horizontal tab U+0009
                           ; n /         ;  LF line feed U+000A
                           ; f /         ;  FF form feed U+000C
                           ; r /         ;  CR carriage return U+000D
                         "'" /           ;  ' apostrophe U+0027
                         "\" / ; \ backslash (reverse solidus) U+005C
                         (%x75 normal-hexchar)
                                        ; certain values u00xx U+00XX
                        )
normal-hexchar       = "0" "0"
                       (
                          ("0" %x30-37) / ; "00"-"07"
                          ("0" %x62) / ; "0b" ; omit U+0008-U+000A
                          ("0" %x65-66) /
                            ; "0e"-"0f" ; omit U+000C-U+000D
                          ("1" normal-HEXDIG)
                        )
normal-HEXDIG        = DIGIT / %x61-66   ; "0"-"9", "a"-"f"
normal-index-selector = "0" / (DIGIT1 *DIGIT)
                          ; non-negative decimal integer
]]></sourcecode></figure>

<t>Since there can only be one Normalized Path identifying a given node, the syntax
stipulates which characters are escaped and which are not.
So the definition of <spanx style="verb">normal-hexchar</spanx> is designed for hex escaping of characters
which are not straightforwardly-printable, for example U+000B LINE TABULATION, but
for which no standard JSON escape, such as <spanx style="verb">\n</spanx>, is available.</t>

<section numbered="false" toc="exclude" anchor="examples-9"><name>Examples</name>

<texttable title="Normalized Path examples">
      <ttcol align='center'>Path</ttcol>
      <ttcol align='center'>Normalized Path</ttcol>
      <ttcol align='left'>Comment</ttcol>
      <c><spanx style="verb">$.a</spanx></c>
      <c><spanx style="verb">$['a']</spanx></c>
      <c>Object value</c>
      <c><spanx style="verb">$[1]</spanx></c>
      <c><spanx style="verb">$[1]</spanx></c>
      <c>Array index</c>
      <c><spanx style="verb">$[-3]</spanx></c>
      <c><spanx style="verb">$[2]</spanx></c>
      <c>Negative array index for an array of length 5</c>
      <c><spanx style="verb">$.a.b[1:2]</spanx></c>
      <c><spanx style="verb">$['a']['b'][1]</spanx></c>
      <c>Nested structure</c>
      <c><spanx style="verb">$["\u000B"]</spanx></c>
      <c><spanx style="verb">$['\u000b']</spanx></c>
      <c>Unicode escape</c>
      <c><spanx style="verb">$["\u0061"]</spanx></c>
      <c><spanx style="verb">$['a']</spanx></c>
      <c>Unicode character</c>
</texttable>

</section>
</section>
</section>
<section anchor="IANA"><name>IANA Considerations</name>

<section anchor="registration-of-media-type-applicationjsonpath"><name>Registration of Media Type application/jsonpath</name>

<t>IANA is requested to register the following media type <xref target="RFC6838"/>:</t>

<dl>
  <dt>Type name:</dt>
  <dd>
    <t>application</t>
  </dd>
  <dt>Subtype name:</dt>
  <dd>
    <t>jsonpath</t>
  </dd>
  <dt>Required parameters:</dt>
  <dd>
    <t>N/A</t>
  </dd>
  <dt>Optional parameters:</dt>
  <dd>
    <t>N/A</t>
  </dd>
  <dt>Encoding considerations:</dt>
  <dd>
    <t>binary (UTF-8)</t>
  </dd>
  <dt>Security considerations:</dt>
  <dd>
    <t>See the Security Considerations section of RFCXXXX.</t>
  </dd>
  <dt>Interoperability considerations:</dt>
  <dd>
    <t>N/A</t>
  </dd>
  <dt>Published specification:</dt>
  <dd>
    <t>RFCXXXX</t>
  </dd>
  <dt>Applications that use this media type:</dt>
  <dd>
    <t>Applications that need to convey queries in JSON data</t>
  </dd>
  <dt>Fragment identifier considerations:</dt>
  <dd>
    <t>N/A</t>
  </dd>
  <dt>Additional information:</dt>
  <dd>
    <dl>
      <dt>Deprecated alias names for this type:</dt>
      <dd>
        <t>N/A</t>
      </dd>
      <dt>Magic number(s):</dt>
      <dd>
        <t>N/A</t>
      </dd>
      <dt>File extension(s):</dt>
      <dd>
        <t>N/A</t>
      </dd>
      <dt>Macintosh file type code(s):</dt>
      <dd>
        <t>N/A</t>
      </dd>
    </dl>
  </dd>
</dl>

<t>Person &amp; email address to contact for further information:
   iesg@ietf.org</t>

<dl>
  <dt>Intended usage:</dt>
  <dd>
    <t>COMMON</t>
  </dd>
  <dt>Restrictions on usage:</dt>
  <dd>
    <t>N/A</t>
  </dd>
  <dt>Author:</dt>
  <dd>
    <t>JSONPath WG</t>
  </dd>
  <dt>Change controller:</dt>
  <dd>
    <t>IESG</t>
  </dd>
  <dt>Provisional registration? (standards tree only):</dt>
  <dd>
    <t>no</t>
  </dd>
</dl>

</section>
</section>
<section anchor="Security"><name>Security Considerations</name>

<t>Security considerations for JSONPath can stem from</t>

<t><list style="symbols">
  <t>attack vectors on JSONPath implementations, and</t>
  <t>the way JSONPath is used in security-relevant mechanisms.</t>
</list></t>

<section anchor="attack-vectors-on-jsonpath-implementations"><name>Attack vectors on JSONPath Implementations</name>

<t>Historically, JSONPath has often been implemented by feeding parts of
the query to an underlying programming language engine, e.g.,
JavaScript's <spanx style="verb">eval()</spanx> function.
This approach is well known to lead to injection attacks and would
require perfect input validation to prevent these attacks (see
<xref section="12" sectionFormat="of" target="RFC8259"/> for similar considerations for JSON itself).
Instead, JSONPath implementations need to implement the entire syntax
of the query without relying on the parsers of programming language
engines.</t>

<t>Attacks on availability may attempt to trigger unusually expensive
runtime performance exhibited by certain implementations in certain
cases.
(See <xref section="10" sectionFormat="of" target="RFC8949"/> for issues in hash-table implementations,
and <xref section="8" sectionFormat="of" target="I-D.draft-ietf-jsonpath-iregexp"/> for performance issues in regular
expression implementations.)
Implementers need to be aware that good average performance is not
sufficient as long as an attacker can choose to submit specially
crafted JSONPath queries or arguments that trigger surprisingly high, possibly
exponential, CPU usage or, for example via a naive recursive implementation of the descendant segment,
stack overflow. Implementations need to have appropriate resource management
to mitigate these attacks.</t>

</section>
<section anchor="attacks-on-security-mechanisms-that-employ-jsonpath"><name>Attacks on Security Mechanisms that Employ JSONPath</name>

<t>Where JSONPath is used as a part of a security mechanism, attackers
can attempt to provoke unexpected or unpredictable behavior, or
take advantage of differences in behavior between JSONPath implementations.</t>

<t>Unexpected or unpredictable behavior can arise from an argument with certain
constructs described as unpredictable by <xref target="RFC8259"/>.
Predictable behavior can be expected, except in relation to the ordering
of objects, for any argument conforming with <xref target="RFC7493"/>.</t>

<t>Other attacks can target the behavior of underlying technologies such as UTF-8 (see
<xref section="10" sectionFormat="of" target="RFC3629"/>) and the Unicode character set.</t>

</section>
</section>


  </middle>

  <back>


    <references title='Normative References'>





<reference anchor='RFC3629' target='https://www.rfc-editor.org/info/rfc3629'>
<front>
<title>UTF-8, a transformation format of ISO 10646</title>
<author fullname='F. Yergeau' initials='F.' surname='Yergeau'><organization/></author>
<date month='November' year='2003'/>
<abstract><t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems.  The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo.  UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values.  This memo obsoletes and replaces RFC 2279.</t></abstract>
</front>
<seriesInfo name='STD' value='63'/>
<seriesInfo name='RFC' value='3629'/>
<seriesInfo name='DOI' value='10.17487/RFC3629'/>
</reference>



<reference anchor='RFC5234' target='https://www.rfc-editor.org/info/rfc5234'>
<front>
<title>Augmented BNF for Syntax Specifications: ABNF</title>
<author fullname='D. Crocker' initials='D.' role='editor' surname='Crocker'><organization/></author>
<author fullname='P. Overell' initials='P.' surname='Overell'><organization/></author>
<date month='January' year='2008'/>
<abstract><t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='STD' value='68'/>
<seriesInfo name='RFC' value='5234'/>
<seriesInfo name='DOI' value='10.17487/RFC5234'/>
</reference>



<reference anchor='RFC8259' target='https://www.rfc-editor.org/info/rfc8259'>
<front>
<title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
<author fullname='T. Bray' initials='T.' role='editor' surname='Bray'><organization/></author>
<date month='December' year='2017'/>
<abstract><t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.</t><t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t></abstract>
</front>
<seriesInfo name='STD' value='90'/>
<seriesInfo name='RFC' value='8259'/>
<seriesInfo name='DOI' value='10.17487/RFC8259'/>
</reference>



<reference anchor='RFC7493' target='https://www.rfc-editor.org/info/rfc7493'>
<front>
<title>The I-JSON Message Format</title>
<author fullname='T. Bray' initials='T.' role='editor' surname='Bray'><organization/></author>
<date month='March' year='2015'/>
<abstract><t>I-JSON (short for &quot;Internet JSON&quot;) is a restricted profile of JSON designed to maximize interoperability and increase confidence that software can process it successfully with predictable results.</t></abstract>
</front>
<seriesInfo name='RFC' value='7493'/>
<seriesInfo name='DOI' value='10.17487/RFC7493'/>
</reference>



<reference anchor='RFC6838' target='https://www.rfc-editor.org/info/rfc6838'>
<front>
<title>Media Type Specifications and Registration Procedures</title>
<author fullname='N. Freed' initials='N.' surname='Freed'><organization/></author>
<author fullname='J. Klensin' initials='J.' surname='Klensin'><organization/></author>
<author fullname='T. Hansen' initials='T.' surname='Hansen'><organization/></author>
<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='I-D.draft-ietf-jsonpath-iregexp'>
   <front>
      <title>I-Regexp: An Interoperable Regexp Format</title>
      <author fullname='Carsten Bormann' initials='C.' surname='Bormann'>
         <organization>Universität Bremen TZI</organization>
      </author>
      <author fullname='Tim Bray' initials='T.' surname='Bray'>
         <organization>Textuality</organization>
      </author>
      <date day='17' month='October' year='2022'/>
      <abstract>
	 <t>   This document specifies I-Regexp, a flavor of regular expressions
   that is limited in scope with the goal of interoperation across many
   different regular-expression libraries.

	 </t>
      </abstract>
   </front>
   <seriesInfo name='Internet-Draft' value='draft-ietf-jsonpath-iregexp-02'/>
   <format target='https://www.ietf.org/archive/id/draft-ietf-jsonpath-iregexp-02.txt' type='TXT'/>
</reference>


<reference anchor="UNICODE" target="https://www.unicode.org/versions/Unicode14.0.0/UnicodeStandard-14.0.pdf">
  <front>
    <title>The Unicode® Standard: Version 14.0 - Core Specification</title>
    <author >
      <organization>The Unicode Consortium</organization>
    </author>
    <date year="2021" month="September"/>
  </front>
  <format type="PDF" target="https://www.unicode.org/versions/Unicode14.0.0/UnicodeStandard-14.0.pdf"/>
</reference>




<reference anchor='RFC2119' target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author fullname='S. Bradner' initials='S.' surname='Bradner'><organization/></author>
<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' target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author fullname='B. Leiba' initials='B.' surname='Leiba'><organization/></author>
<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'>





<reference anchor='RFC6901' target='https://www.rfc-editor.org/info/rfc6901'>
<front>
<title>JavaScript Object Notation (JSON) Pointer</title>
<author fullname='P. Bryan' initials='P.' role='editor' surname='Bryan'><organization/></author>
<author fullname='K. Zyp' initials='K.' surname='Zyp'><organization/></author>
<author fullname='M. Nottingham' initials='M.' role='editor' surname='Nottingham'><organization/></author>
<date month='April' year='2013'/>
<abstract><t>JSON Pointer defines a string syntax for identifying a specific value within a JavaScript Object Notation (JSON) document.</t></abstract>
</front>
<seriesInfo name='RFC' value='6901'/>
<seriesInfo name='DOI' value='10.17487/RFC6901'/>
</reference>


<reference anchor="JSONPath-orig" target="https://goessner.net/articles/JsonPath/">
  <front>
    <title>JSONPath — XPath for JSON</title>
    <author initials="S." surname="Gössner" fullname="Stefan Gössner">
      <organization>Fachhochschule Dortmund</organization>
    </author>
    <date year="2007" month="February" day="21"/>
  </front>
</reference>


<reference anchor='XPath' target='https://www.w3.org/TR/2010/REC-xpath20-20101214/'>
  <front>
    <title>XML Path Language (XPath) 2.0 (Second Edition)</title>
    <author fullname='Anders Berglund' role='editor'/>
    <author fullname='Don Chamberlin' role='editor'/>
    <author fullname='Jerome Simeon' role='editor'/>
    <author fullname='Jonathan Robie' role='editor'/>
    <author fullname='Mary Fernandez' role='editor'/>
    <author fullname='Michael Kay' role='editor'/>
    <author fullname='Scott Boag' role='editor'/>
    <date day='14' month='December' year='2010'/>
  </front>
  <seriesInfo name='W3C REC' value='REC-xpath20-20101214'/>
  <seriesInfo name='W3C' value='REC-xpath20-20101214'/>
  <format target='https://www.w3.org/TR/2010/REC-xpath20-20101214/' type='TXT'/>
</reference>


<reference anchor="E4X" >
  <front>
    <title>Information technology — ECMAScript for XML (E4X) specification</title>
    <author >
      <organization>ISO</organization>
    </author>
    <date year="2006"/>
  </front>
  <seriesInfo name="ISO/IEC 22537:2006" value=""/>
</reference>
<reference anchor="SLICE" target="https://github.com/tc39/proposal-slice-notation">
  <front>
    <title>Slice notation</title>
    <author >
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>
<reference anchor="ECMA-262" target="http://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf">
  <front>
    <title>ECMAScript Language Specification, Standard ECMA-262, Third Edition</title>
    <author >
      <organization>Ecma International</organization>
    </author>
    <date year="1999" month="December"/>
  </front>
</reference>




<reference anchor='RFC8949' target='https://www.rfc-editor.org/info/rfc8949'>
<front>
<title>Concise Binary Object Representation (CBOR)</title>
<author fullname='C. Bormann' initials='C.' surname='Bormann'><organization/></author>
<author fullname='P. Hoffman' initials='P.' surname='Hoffman'><organization/></author>
<date month='December' year='2020'/>
<abstract><t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t><t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049.  It does not create a new version of the format.</t></abstract>
</front>
<seriesInfo name='STD' value='94'/>
<seriesInfo name='RFC' value='8949'/>
<seriesInfo name='DOI' value='10.17487/RFC8949'/>
</reference>


<reference anchor="BOOLEAN-LAWS" target="https://en.wikipedia.org/wiki/Boolean_algebra#Laws">
  <front>
    <title>Boolean algebra laws</title>
    <author >
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>


    </references>


<section anchor="inspired-by-xpath"><name>Inspired by XPath</name>

<t>This appendix is informative.</t>

<t>At the time JSONPath was invented, XML was noted for the availability of
powerful tools to analyze, transform and selectively extract data from
XML documents.
<xref target="XPath"/> is one of these tools.</t>

<t>In 2007, the need for something solving the same class of problems for
the emerging JSON community became apparent, specifically for:</t>

<t><list style="symbols">
  <t>Finding data interactively and extracting them out of <xref target="RFC8259"/>
JSON values without special scripting.</t>
  <t>Specifying the relevant parts of the JSON data in a request by a
client, so the server can reduce the amount of data in its response,
minimizing bandwidth usage.</t>
</list></t>

<t>(Note that XPath has evolved since 2007, and recent versions even
nominally support operating inside JSON values.
This appendix only discusses the more widely used version of XPath
that was available in 2007.)</t>

<t>JSONPath picks up the overall feeling of XPath, but maps the concepts
to syntax (and partially semantics) that would be familiar to someone
using JSON in a dynamic language.</t>

<t>E.g., in popular dynamic programming languages such as JavaScript,
Python and PHP, the semantics of the XPath expression</t>

<figure><artwork><![CDATA[
/store/book[1]/title
]]></artwork></figure>

<t>can be realized in the expression</t>

<figure><artwork><![CDATA[
x.store.book[0].title
]]></artwork></figure>

<t>or, in bracket notation,</t>

<figure><artwork><![CDATA[
x['store']['book'][0]['title']
]]></artwork></figure>

<t>with the variable x holding the argument.</t>

<t>The JSONPath language was designed to:</t>

<t><list style="symbols">
  <t>be naturally based on those language characteristics;</t>
  <t>cover only the most essential parts of XPath 1.0;</t>
  <t>be lightweight in code size and memory consumption;</t>
  <t>be runtime efficient.</t>
</list></t>

<section anchor="xpath-overview"><name>JSONPath and XPath</name>

<t>JSONPath expressions apply to JSON values in the same way
as XPath expressions are used in combination with an XML document.
JSONPath uses <spanx style="verb">$</spanx> to refer to the root node of the argument, similar
to XPath's <spanx style="verb">/</spanx> at the front.</t>

<t>JSONPath expressions move further down the hierarchy using <em>dot notation</em>
(<spanx style="verb">$.store.book[0].title</spanx>)
or the <em>bracket notation</em>
(<spanx style="verb">$['store']['book'][0]['title']</spanx>), a lightweight/limited, and a more
heavyweight syntax replacing XPath's <spanx style="verb">/</spanx> within query expressions.</t>

<t>Both JSONPath and XPath use <spanx style="verb">*</spanx> for a wildcard.
The descendant operators, starting with <spanx style="verb">..</spanx>, borrowed from <xref target="E4X"/>, are similar to XPath's <spanx style="verb">//</spanx>.
The array slicing construct <spanx style="verb">[start:end:step]</spanx> is unique to JSONPath,
inspired by <xref target="SLICE"/> from ECMASCRIPT 4.</t>

<t>Filter expressions are supported via the syntax <spanx style="verb">?(&lt;boolean expr&gt;)</spanx> as in</t>

<figure><artwork><![CDATA[
$.store.book[?(@.price < 10)].title
]]></artwork></figure>

<t><xref target="tbl-xpath-overview"/> extends <xref target="tbl-overview"/> by providing a comparison
with similar XPath concepts.</t>

<texttable title="XPath syntax compared to JSONPath" anchor="tbl-xpath-overview">
      <ttcol align='left'>XPath</ttcol>
      <ttcol align='left'>JSONPath</ttcol>
      <ttcol align='left'>Description</ttcol>
      <c><spanx style="verb">/</spanx></c>
      <c><spanx style="verb">$</spanx></c>
      <c>the root XML element</c>
      <c><spanx style="verb">.</spanx></c>
      <c><spanx style="verb">@</spanx></c>
      <c>the current XML element</c>
      <c><spanx style="verb">/</spanx></c>
      <c><spanx style="verb">.</spanx> or <spanx style="verb">[]</spanx></c>
      <c>child operator</c>
      <c><spanx style="verb">..</spanx></c>
      <c>n/a</c>
      <c>parent operator</c>
      <c><spanx style="verb">//</spanx></c>
      <c><spanx style="verb">..name</spanx>, <spanx style="verb">..[index]</spanx>, <spanx style="verb">..*</spanx>, or <spanx style="verb">..[*]</spanx></c>
      <c>descendants (JSONPath borrows this syntax from E4X)</c>
      <c><spanx style="verb">*</spanx></c>
      <c><spanx style="verb">*</spanx></c>
      <c>wildcard: All XML elements regardless of their names</c>
      <c><spanx style="verb">@</spanx></c>
      <c>n/a</c>
      <c>attribute access: JSON values do not have attributes</c>
      <c><spanx style="verb">[]</spanx></c>
      <c><spanx style="verb">[]</spanx></c>
      <c>subscript operator used to iterate over XML element collections and for predicates</c>
      <c><spanx style="verb">¦</spanx></c>
      <c><spanx style="verb">[,]</spanx></c>
      <c>Union operator (results in a combination of node sets); called list operator in JSONPath, allows combining member names, array indices, and slices</c>
      <c>n/a</c>
      <c><spanx style="verb">[start:end:step]</spanx></c>
      <c>array slice operator borrowed from ES4</c>
      <c><spanx style="verb">[]</spanx></c>
      <c><spanx style="verb">?()</spanx></c>
      <c>applies a filter (script) expression</c>
      <c>seamless</c>
      <c>n/a</c>
      <c>expression engine</c>
      <c><spanx style="verb">()</spanx></c>
      <c>n/a</c>
      <c>grouping</c>
</texttable>

<!-- note that the weirdness about the vertical bar above is intentional -->

<t>For further illustration, <xref target="tbl-xpath-equivalents"/> shows some XPath expressions
and their JSONPath equivalents.</t>

<texttable title="Example XPath expressions and their JSONPath equivalents" anchor="tbl-xpath-equivalents">
      <ttcol align='left'>XPath</ttcol>
      <ttcol align='left'>JSONPath</ttcol>
      <ttcol align='left'>Result</ttcol>
      <c><spanx style="verb">/store/book/author</spanx></c>
      <c><spanx style="verb">$.store.book[*].author</spanx></c>
      <c>the authors of all books in the store</c>
      <c><spanx style="verb">//author</spanx></c>
      <c><spanx style="verb">$..author</spanx></c>
      <c>all authors</c>
      <c><spanx style="verb">/store/*</spanx></c>
      <c><spanx style="verb">$.store.*</spanx></c>
      <c>all things in store, which are some books and a red bicycle</c>
      <c><spanx style="verb">/store//price</spanx></c>
      <c><spanx style="verb">$.store..price</spanx></c>
      <c>the prices of everything in the store</c>
      <c><spanx style="verb">//book[3]</spanx></c>
      <c><spanx style="verb">$..book[2]</spanx></c>
      <c>the third book</c>
      <c><spanx style="verb">//book[last()]</spanx></c>
      <c><spanx style="verb">$..book[-1]</spanx></c>
      <c>the last book in order</c>
      <c><spanx style="verb">//book[position()&lt;3]</spanx></c>
      <c><spanx style="verb">$..book[0,1]</spanx><br /><spanx style="verb">$..book[:2]</spanx></c>
      <c>the first two books</c>
      <c><spanx style="verb">//book[isbn]</spanx></c>
      <c><spanx style="verb">$..book[?(@.isbn)]</spanx></c>
      <c>filter all books with isbn number</c>
      <c><spanx style="verb">//book[price&lt;10]</spanx></c>
      <c><spanx style="verb">$..book[?(@.price&lt;10)]</spanx></c>
      <c>filter all books cheaper than 10</c>
      <c><spanx style="verb">//*</spanx></c>
      <c><spanx style="verb">$..*</spanx></c>
      <c>all elements in XML document; all member values and array elements contained in input value</c>
</texttable>

<t>XPath has a lot more functionality (location paths in unabbreviated syntax,
operators and functions) than listed in this comparison.  Moreover, there are
significant differences in how the subscript operator works in XPath and
JSONPath:</t>

<t><list style="symbols">
  <t>Square brackets in XPath expressions always operate on the <em>node
set</em> resulting from the previous path fragment. Indices always start
at 1.</t>
  <t>With JSONPath, square brackets operate on the <em>object</em> or <em>array</em>
addressed by the previous path fragment. Array indices always start
at 0.</t>
</list></t>

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

<t>This appendix is informative.</t>

<t>JSONPath is not intended as a replacement for, but as a more powerful
companion to, JSON Pointer <xref target="RFC6901"/>. The purposes of the two standards
are different.</t>

<t>JSON Pointer is for identifying a single value within a JSON value whose
structure is known.</t>

<t>JSONPath can identify a single value within a JSON value, for example by
using a Normalized Path. But JSONPath is also a query syntax that can be used
to search for and extract multiple values from JSON values whose structure
is known only in a general way.</t>

<t>A Normalized JSONPath can be converted into a JSON Pointer by converting the syntax,
without knowledge of any JSON value. The inverse is not generally true: a numeric
path component in a JSON Pointer may identify a member of a JSON object or may index an array.
For conversion to a JSONPath query, knowledge of the structure of the JSON value is
needed to distinguish these cases.</t>

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

<t>This specification is based on <contact fullname="Stefan Gössner"/>'s
original online article defining JSONPath <xref target="JSONPath-orig"/>.</t>

<t>The books example was taken from
http://coli.lili.uni-bielefeld.de/~andreas/Seminare/sommer02/books.xml
— a dead link now.</t>

<!--  LocalWords:  JSONPath XPath nodelist
 -->

</section>

    <section anchor="contributors" numbered="false" toc="include" removeInRFC="false">
        <name>Contributors</name>
    <contact initials="M." surname="Mikulicic" fullname="Marko Mikulicic">
      <organization>InfluxData, Inc.</organization>
      <address>
        <postal>
          <city>Pisa</city>
          <country>IT</country>
        </postal>
        <email>mmikulicic@gmail.com</email>
      </address>
    </contact>
    <contact initials="E." surname="Surov" fullname="Edward Surov">
      <organization>TheSoul Publishing Ltd.</organization>
      <address>
        <postal>
          <city>Limassol</city>
          <country>Cyprus</country>
        </postal>
        <email>esurov.tsp@gmail.com</email>
      </address>
    </contact>
    <contact initials="G." surname="Dennis" fullname="Greg Dennis">
      <organization></organization>
      <address>
        <postal>
          <city>Auckland</city>
          <country>New Zealand</country>
        </postal>
        <email>gregsdennis@yahoo.com</email>
        <uri>https://github.com/gregsdennis</uri>
      </address>
    </contact>
    </section>

  </back>

<!-- ##markdown-source:
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
afmWstAyyTdx3OkC+f8BXS1qyrEhAQA=

-->

</rfc>

