<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?rfc toc="yes"?>
<?rfc symrefs="yes"?>
<?rfc sortrefs="yes" ?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc linkmailto="no" ?>
<?rfc editing="no" ?>
<?rfc comments="yes" ?>
<?rfc inline="yes"?>
<?rfc rfcedstyle="yes"?>
<?rfc-ext allow-markup-in-artwork="yes" ?>
<?rfc-ext include-index="no" ?>
<!--<?rfc strict="no"?> -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" docName="draft-ietf-netconf-list-pagination-01" category="std" consensus="true" ipr="trust200902" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" symRefs="true" sortRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.16.0 -->
  <front>
    <title abbrev="List Pagination">
        List Pagination for YANG-driven Protocols
    </title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-netconf-list-pagination-01"/>
    <author fullname="Kent Watsen" initials="K." surname="Watsen">
      <organization>Watsen Networks</organization>
      <address>
        <email>kent+ietf@watsen.net</email>
      </address>
    </author>
    <author fullname="Qin Wu" initials="Q." surname="Wu">
      <organization>Huawei Technologies</organization>
      <address>
        <!--
        <postal>
          <street>101 Software Avenue, Yuhua District</street>
          <city>Nanjing</city>
          <region>Jiangsu</region>
          <code>210012</code>
          <country>China</country>
        </postal>
        -->
        <email>bill.wu@huawei.com</email>
      </address>
    </author>
    <author fullname="Olof Hagsand" initials="O." surname="Hagsand">
      <organization>Netgate</organization>
      <address>
        <email>olof@hagsand.se</email>
      </address>
    </author>
    <author fullname="Hongwei Li" initials="H." surname="Li">
      <organization>Hewlett Packard Enterprise</organization>
      <address>
        <email>flycoolman@gmail.com</email>
      </address>
    </author>
    <author fullname="Per Andersson" initials="P." surname="Andersson">
      <organization>Cisco Systems</organization>
      <address>
        <email>perander@cisco.com</email>
      </address>
    </author>
    <date/>
    <area>OPS Area</area>
    <workgroup>NETCONF Working Group</workgroup>
    <abstract>
      <t>In some circumstances, instances of YANG modeled "list" and "leaf-list"
        nodes may contain numerous entries.  Retrieval of all the entries
        can lead to inefficiencies in the server, the client, and the network
        in between.</t>
      <t>This document defines a model for list pagination that can be
        implemented by YANG-driven management protocols such as NETCONF
        and RESTCONF.  The model supports paging over optionally filtered
        and/or sorted entries.  The solution additionally enables servers
        to constrain query expressions on some "config false" lists or
        leaf-lists.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="intro" numbered="true" toc="default">
      <name>Introduction</name>
      <t>YANG modeled "list" and "leaf-list" nodes may contain a large
        number of entries.  For instance, there may be thousands of
        entries in the configuration for network interfaces or access
        control lists.  And time-driven logging mechanisms, such as an
        audit log or a traffic log, can contain millions of entries.</t>
      <t>Retrieval of all the entries can lead to inefficiencies in
        the server, the client, and the network in between.  For
        instance, consider the following:</t>
      <ul>
        <li>A client may need to filter and/or sort list entries in
          order to, e.g., present the view requested by a user.</li>
        <li>A server may need to iterate over many more list entries
          than needed by a client.</li>
        <li>A network may need to convey more data than needed by a
          client.</li>
      </ul>
      <t>Optimal global resource utilization is obtained when clients
        are able to cherry-pick just that which is needed to support
        the application-level business logic.</t>
      <t>This document defines a generic model for list pagination that can
        be implemented by YANG-driven management protocols such as NETCONF
        <xref target="RFC6241" format="default"/> and RESTCONF <xref target="RFC8040" format="default"/>.
        Details for how such protocols are updated are outside the scope
        of this document.</t>
      <t>The model presented in this document supports paging over
        optionally filtered and/or sorted entries.  Server-side filtering
        and sorting is ideal as servers can leverage indexes maintained
        by a backend storage layer to accelerate queries.</t>
      <section numbered="true" toc="default">
        <name>Terminology</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
          NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
          "MAY", and "OPTIONAL" in this document are to be interpreted as
          described in BCP 14 <xref target="RFC2119" format="default"/> <xref target="RFC8174" format="default"/>
          when, and only when, they appear in all capitals, as shown here.</t>
        <t>The following terms are defined in <xref target="RFC7950" format="default"/>
          and are not redefined here:
            client,
            data model,
            data tree,
            feature,
            extension,
            module,
            leaf,
            leaf-list,
            and server.
        </t>
        <!--
        <t>The following terms are defined in this document as follows:</t>
        -->
      </section>
      <section numbered="true" toc="default">
        <name>Conventions</name>
        <t>Various examples used in this document use a placeholder
          value for binary data that has been base64 encoded (e.g.,
          "BASE64VALUE=").  This placeholder value is used as real
          base64 encoded structures are often many lines long and
          hence distracting to the example being presented.</t>
      </section>
      <section numbered="true" toc="default">
        <name>Adherence to the NMDA</name>
        <t>This document is compliant with the Network Management Datastore
          Architecture (NMDA) <xref target="RFC8342" format="default"/>.  The "ietf-list-pagination"
          module only defines a YANG extension and augments a couple leafs into a
          "config false" node defined by the "ietf-system-capabilities" module.</t>
      </section>
    </section>
    <section numbered="true" toc="default">
      <name>Solution Overview</name>
      <t>The solution presented in this document broadly entails
        a client sending a query to a server targeting a specific
        list or leaf-list including optional parameters guiding
        which entries should be returned.</t>
      <t>A secondary aspect of this solution entails a client
        sending a query parameter to a server guiding how
        descendent lists and leaf-lists should be returned.
        This parameter may be used on any target node, not
        just "list" and "leaf-list" nodes.</t>
      <t>Clients detect a server's support for list pagination
        via an entry for the "ietf-list-pagination" module (defined
        in <xref target="yang-module" format="default"/>) in the server's YANG
        Library <xref target="RFC8525" format="default"/> response.</t>
      <t>Relying on client-provided query parameters ensures
        servers remain backward compatible with legacy clients.</t>
    </section>
    <section numbered="true" toc="default">
      <name>Solution Details</name>
      <t>This section is composed of the following subsections:</t>
      <ul>
        <li>
          <xref target="soln-sec-1" format="default"/> defines five query parameters
          clients may use to page through the entries of a single list
          or leaf-list in a data tree.</li>
        <li>
          <xref target="soln-sec-2" format="default"/> defines one query
          parameter that clients may use to affect the content
          returned for descendant lists and leaf-lists.</li>
        <li>
          <xref target="soln-sec-3" format="default"/> defines per schema-node tags
          enabling servers to indicate which "config false" lists
          are constrained and how they may be interacted with.</li>
      </ul>
      <section anchor="soln-sec-1" numbered="true" toc="default">
        <name>Query Parameters for a Targeted List or Leaf-List</name>
        <t>The five query parameters presented this section are listed in
          processing order.  This processing order is logical, efficient,
          and matches the processing order implemented by database systems,
          such as SQL.</t>
        <t>The order is as follows: a server first processes the "where" parameter
          (see <xref target="where" format="default"/>), then the "sort-by" parameter
          (see <xref target="sort-by" format="default"/>), then the "direction" parameter
          (see <xref target="direction" format="default"/>), and either a combination of
          the "offset" parameter (see <xref target="offset" format="default"/>) or the "cursor"
          parameter (see <xref target="cursor" format="default"/>), and lastly "the "limit"
          parameter (see <xref target="limit" format="default"/>).</t>
        <section anchor="where" toc="exclude" numbered="true">
          <name>The "where" Query Parameter</name>
          <dl newline="true">
            <dt>Description</dt>
            <dd>The "where" query parameter specifies a filter expression
              that result-set entries must match.</dd>
            <dt>Default Value</dt>
            <dd>If this query parameter is unspecified, then no entries are
              filtered from the working result-set.</dd>
            <dt>Allowed Values</dt>
            <dd>The allowed values are XPath 1.0 expressions.  It is an error
              if the XPath expression references a node identifier that does
              not exist in the schema, is optional or conditional in the schema
              or, for constrained "config false" lists and leaf-lists (see
              <xref target="soln-sec-3" format="default"/>), if the node identifier does not
              point to a node having the "indexed" extension statement
              applied to it (see <xref target="next-section" format="default"/>).</dd>
            <dt>Conformance</dt>
            <dd>The "where" query parameter MUST be supported for all "config
              true" lists and leaf-lists and SHOULD be supported for "config
              false" lists and leaf-lists.  Servers MAY disable the support
              for some or all "config false" lists and leaf-lists as described
              in <xref target="next-section" format="default"/>.</dd>
          </dl>
        </section>
        <section anchor="sort-by" toc="exclude" numbered="true">
          <name>The "sort-by" Query Parameter</name>
          <dl newline="true">
            <dt>Description</dt>
            <dd>The "sort-by" query parameter indicates the node in the
              working result-set (i.e., after the "where" parameter has
              been applied) that entries should be sorted by.  Sorts are
              in ascending order (e.g., '1' before '9', 'a' before 'z',
              etc.).  Missing values are sorted to the end (e.g., after
              all nodes having values).  Sub-sorts are not supported.</dd>
            <dt>Default Value</dt>
            <dd>If this query parameter is unspecified, then the list or
              leaf-list's default order is used, per the YANG "ordered-by"
              statement (see <xref section="7.7.7" target="RFC7950"/>).</dd>
            <dt>Allowed Values</dt>
            <dd>The allowed values are node identifiers.  It is an error
              if the specified node identifier does not exist in the schema,
              is optional or conditional in the schema or, for constrained
              "config false" lists and leaf-lists (see <xref target="soln-sec-3" format="default"/>),
              if the node identifier does not point to a node having the "indexed"
              extension statement applied to it (see <xref target="next-section" format="default"/>).</dd>
            <dt>Conformance</dt>
            <dd>The "sort-by" query parameter MUST be supported for all "config
              true" lists and leaf-lists and SHOULD be supported for "config
              false" lists and leaf-lists.  Servers MAY disable the support
              for some or all "config false" lists and leaf-lists as described
              in <xref target="next-section" format="default"/>.</dd>
          </dl>
        </section>
        <section anchor="direction" toc="exclude" numbered="true">
          <name>The "direction" Query Parameter</name>
          <dl newline="true">
            <dt>Description</dt>
            <dd>The "direction" query parameter indicates how the entries
              in the working result-set (i.e., after the "sort-by" parameter
              has been applied) should be traversed.</dd>
            <dt>Default Value</dt>
            <dd>If this query parameter is unspecified, the default
              value is "forwards".</dd>
            <dt>Allowed Values</dt>
            <dd>
              <t>The allowed values are:
              </t>
              <dl newline="true">
                <dt>forwards</dt>
                <dd>Return entries in the forwards direction.  Also 
                  known as the "default" or "ascending" direction.</dd>
                <dt>backwards</dt>
                <dd>Return entries in the backwards direction.  Also
                  known as the "reverse" or "descending" direction</dd>
              </dl>
            </dd>
            <dt>Conformance</dt>
            <dd>The "direction" query parameter MUST be supported for
              all lists and leaf-lists.</dd>
          </dl>
        </section>
        <section anchor="offset" toc="exclude" numbered="true">
          <name>The "offset" Query Parameter</name>
          <dl newline="true">
            <dt>Description</dt>
            <dd>The "offset" query parameter indicates the number of entries
              in the working result-set (i.e., after the "direction"
              parameter has been applied) that should be skipped over
              when preparing the response.</dd>
            <dt>Default Value</dt>
            <dd>If this query parameter is unspecified, then no entries
              in the result-set are skipped, same as when the offset
              value '0' is specified.</dd>
            <dt>Allowed Values</dt>
            <dd>The allowed values are unsigned integers.  It is an error
              for the offset value to exceed the number of entries in
              the working result-set, and the "offset-out-of-range" identity
              SHOULD be produced in the error output when this occurs.</dd>
            <dt>Conformance</dt>
            <dd>The "offset" query parameter MUST be supported for all
              lists and leaf-lists.</dd>
          </dl>
        </section>
        <section anchor="cursor" toc="exclude" numbered="true">
          <name>The "cursor" Query Parameter</name>
          <dl newline="true">
            <dt>Description</dt>
            <dd>The "cursor" query parameter indicates where to start the
              working result-set (i.e., after the "direction" parameter has
              been applied), the elements before the cursor are skipped over
              when preparing the response. Furthermore the result-set is
              annotated with attributes for the next and previous cursors
              following a result-set constrained with the "limit" query
              parameter.</dd>
            <dt>Default Value</dt>
            <dd>If this query parameter is unspecified, then no entries
              in the result-set are skipped.</dd>
            <dt>Allowed Values</dt>
            <dd>The allowed values are base64 encoded positions interpreted by
              the server to index an element in the list. It is an error to
              supply an unkown cursor for the working result-set, and the
              "cursor-not-found" identity SHOULD be produced in the error
              output when this occurs.</dd>
            <dt>Conformance</dt>
            <dd>The "cursor" query parameter MUST be supported for all
              lists.</dd>
          </dl>
        </section>
        <section anchor="limit" toc="exclude" numbered="true">
          <name>The "limit" Query Parameter</name>
          <dl newline="true">
            <dt>Description</dt>
            <dd>The "limit" query parameter limits the number of entries
              returned from the working result-set (i.e., after the "offset"
              parameter has been applied).  Any list or leaf-list that is
              limited includes, somewhere in its encoding, a metadata value
              <xref target="RFC7952" format="default"/> called "remaining", a positive integer
              indicating the number of elements that were not included in the
              result-set by the "limit" operation, or the value "unknown"
              in case, e.g., the server determines that counting would be
              prohibitively expensive.</dd>
            <dt>Default Value</dt>
            <dd>If this query parameter is unspecified, the number of
              entries that may be returned is unbounded.</dd>
            <dt>Allowed Values</dt>
            <dd>The allowed values are positive integers.</dd>
            <dt>Conformance</dt>
            <dd>The "limit" query parameter MUST be supported for
              all lists and leaf-lists.</dd>
          </dl>
        </section>
      </section>
      <section anchor="soln-sec-2" numbered="true" toc="default">
        <name>Query Parameter for Descendant Lists and Leaf-Lists</name>
        <t>Whilst this document primarily regards pagination for a
          list or leaf-list, it begs the question for how descendant
          lists and leaf-lists should be handled, which is addressed
          by the "sublist-limit" query parameter described in
          this section.</t>
        <section anchor="sublist-limit" toc="exclude" numbered="true">
          <name>The "sublist-limit" Query Parameter</name>
          <dl newline="true">
            <dt>Description</dt>
            <dd>
              <t>The "sublist-limit" parameter limits the number of entries
                returned for descendent lists and leaf-lists.</t>
              <t>Any descendent list or leaf-list limited by the
                "sublist-limit" parameter includes, somewhere in its encoding,
                a metadata value <xref target="RFC7952" format="default"/> called "remaining",
                a positive integer indicating the number of elements that
                were not included by the "sublist-limit" parameter, or the
                value "unknown" in case, e.g., the server determines that
                counting would be prohibitively expensive.</t>
              <t>When used on a list node, it only affects the list's
                descendant nodes, not the list itself, which is only
                affected by the parameters presented in
                <xref target="soln-sec-1" format="default"/>.</t>
            </dd>
            <dt>Default Value</dt>
            <dd>If this query parameter is unspecified, the number of
              entries that may be returned for descendent lists and
              leaf-lists is unbounded.</dd>
            <dt>Allowed Values</dt>
            <dd>The allowed values are positive integers.</dd>
            <dt>Conformance</dt>
            <dd>The "sublist-limit" query parameter MUST be
              supported for all conventional nodes, including
              a datastore's top-level node (i.e., '/').</dd>
          </dl>
        </section>
      </section>
      <section anchor="soln-sec-3" numbered="true" toc="default">
        <name>Constraints on "where" and "sort-by" for "config false" Lists</name>
        <t>Some "config false" lists and leaf-lists may contain an
          enormous number of entries.  For instance, a time-driven
          logging mechanism, such as an audit log or a traffic log,
          can contain millions of entries.</t>
        <t>In such cases, "where" and "sort-by" expressions will
          not perform well if the server must bring each entry
          into memory in order to process it.</t>
        <t>The server's best option is to leverage query-optimizing
          features (e.g., indexes) built into the backend database
          holding the dataset.</t>
        <t>However, arbitrary "where" expressions and "sort-by"
          node identifiers into syntax supported by the backend
          database and/or query-optimizers may prove challenging,
          if not impossible, to implement.</t>
        <t>Thusly this section introduces mechanisms whereby a
          server can:</t>
        <ol>
          <li>Identify which "config false" lists and leaf-lists
            are constrained.</li>
          <li>Identify what node-identifiers and expressions are
            allowed for the constrained lists and leaf-lists.</li>
        </ol>
        <aside>
          <t>Note: The pagination performance for "config true" lists
            and leaf-lists is not considered as already servers must
            be able to process them as configuration.  Whilst some
            "config true' lists and leaf-lists may contain thousands
            of entries, they are well within the capability of
            server-side processing.</t>
        </aside>
        <section anchor="prev-section" numbered="true" toc="default">
          <name>Identifying Constrained "config false" Lists and Leaf-Lists</name>
          <t>Identification of which lists and leaf-lists are constrained
            occurs in the schema tree, not the data tree.  However, as
            server abilities vary, it is not possible to define constraints
            in YANG modules defining generic data models.</t>
          <t>In order to enable servers to identify which lists and leaf-lists
            are constrained, the solution presented in this document augments
            the data model defined by the "ietf-system-capabilities" module
            presented in <xref target="I-D.ietf-netconf-notification-capabilities" format="default"/>.</t>
          <t>Specifically, the "ietf-list-pagination" module (see <xref target="yang-module" format="default"/>) augments an empty leaf node called
            "constrained" into the "per-node-capabilities" node defined
            in the "ietf-system-capabilities" module.</t>
          <!-- FIXME: let servers augment-in a "constrained" extrension node instead? -->
          <t>The "constrained" leaf MAY be specified for any "config false"
            list or leaf-list.</t>
          <t>When a list or leaf-list is constrained:</t>
          <ul>
            <li>All parts of XPath 1.0 expressions are disabled unless
              explicitly enabled by <xref target="next-section" format="default"/>.</li>
            <li>Node-identifiers used in "where" expressions and "sort-by"
              filters MUST have the "indexed" leaf applied to it
              (see <xref target="next-section" format="default"/>).</li>
            <li>For lists only, node-identifiers used in "where" expressions
              and "sort-by" filters MUST NOT descend past any descendent lists.
              This ensures that only indexes relative to the targeted
              list are used.  Further constraints on node identifiers MAY
              be applied in <xref target="next-section" format="default"/>.</li>
          </ul>
        </section>
        <section anchor="next-section" numbered="true" toc="default">
          <name>Indicating the Constraints for "where" Filters and "sort-by" Expressions</name>
          <t>This section identifies how constraints for "where" filters and
            "sort-by" expressions are specified.  These constraints are valid
            only if the "constrained" leaf described in the previous section
            <xref target="prev-section" format="default"/> has been set on the immediate
            ancestor "list" node or, for "leaf-list" nodes, on itself.</t>
          <section numbered="true" toc="default">
            <name>Indicating Filterable/Sortable Nodes</name>
            <t>For "where" filters, an unconstrained XPath expressions may
              use any node in comparisons.  However, efficient mappings to backend
              databases may support only a subset of the nodes.</t>
            <t>Similarly, for "sort-by" expressions, efficient sorts may
              only support a subset of the nodes.</t>
            <t>In order to enable servers to identify which nodes may be used in
              comparisons (for both "where" and "sort-by" expressions), the
              "ietf-list-pagination" module (see <xref target="yang-module" format="default"/>)
              augments an empty leaf node called "indexed" into the "per-node-capabilities"
              node defined in the "ietf-system-capabilities" module
              (see <xref target="I-D.ietf-netconf-notification-capabilities" format="default"/>).</t>
            <t>When a "list" or "leaf-list" node has the "constrained" leaf,
              only nodes having the "indexed" node may be used in "where" 
              and/or "sort-by" expressions.  If no nodes have the "indexed"
              leaf, when the "constrained" leaf is present, then "where" and
              "sort-by" expressions are disabled for that list or leaf-list.</t>
          </section>
        </section>
      </section>
    </section>
    <section anchor="yang-module" numbered="true" toc="default">
      <name>The "ietf-list-pagination" Module</name>
      <t>The "ietf-list-pagination" module is used by servers to indicate
        that they support pagination on YANG "list" and "leaf-list" nodes,
        and to provide an ability to indicate which "config false" list and/or
        "leaf-list" nodes are constrained and, if so, which nodes may be
        used in "where" and "sort-by" expressions.</t>
      <section numbered="true" toc="default">
        <name>Data Model Overview</name>
        <t>The following tree diagram <xref target="RFC8340" format="default"/> illustrates
          the "ietf-list-pagination" module:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
module: ietf-list-pagination

  augment /sysc:system-capabilities/sysc:datastore-capabilities
            /sysc:per-node-capabilities:
    +--ro constrained?   empty
    +--ro indexed?       empty
]]></artwork>
        <t>Comments:</t>
        <ul>
          <li>As shown, this module augments two optional leaves into
            the "node-selector" node of the "ietf-system-capabilities"
            module.</li>
          <li>Not shown is that the module also defines an "md:annotation"
            statement named "remaining".  This annotation may be present
            in a server's response to a client request containing either
            the "limit" (<xref target="limit" format="default"/>) or "sublist-limit"
            parameters (<xref target="sublist-limit-param" format="default"/>).</li>
        </ul>
      </section>
      <section numbered="true" toc="default">
        <name>Example Usage</name>
        <section numbered="true" toc="default">
          <name>Constraining a "config false" list</name>
          <t>The following example illustrates the "ietf-list-pagination"
            module's augmentations of the "system-capabilities" data tree.
            This example assumes the "example-social" module defined in
            the <xref target="example-social-module" format="default"/> is implemented.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
=============== NOTE: '\' line wrapping per RFC 8792 ================

<system-capabilities
  xmlns="urn:ietf:params:xml:ns:yang:ietf-system-capabilities"
  xmlns:ds="urn:ietf:params:xml:ns:yang:ietf-datastores"
  xmlns:es="http://example.com/ns/example-social"
  xmlns:lpg="urn:ietf:params:xml:ns:yang:ietf-list-pagination">
  <datastore-capabilities>
    <datastore>ds:operational</datastore>
    <per-node-capabilities>
      <node-selector>/es:audit-logs/es:audit-log</node-selector>
      <lpg:constrained/>
    </per-node-capabilities>
    <per-node-capabilities>
      <node-selector>/es:audit-logs/es:audit-log/es:timestamp</node-\
selector>
      <lpg:indexed/>
    </per-node-capabilities>
    <per-node-capabilities>
      <node-selector>/es:audit-logs/es:audit-log/es:member-id</node-\
selector>
      <lpg:indexed/>
    </per-node-capabilities>
    <per-node-capabilities>
      <node-selector>/es:audit-logs/es:audit-log/es:outcome</node-se\
lector>
      <lpg:indexed/>
    </per-node-capabilities>
  </datastore-capabilities>
</system-capabilities>

]]></artwork>
        </section>
        <section numbered="true" toc="default">
          <name>Indicating number remaining in a limited list</name>
          <t>FIXME: valid syntax for 'where'?</t>
        </section>
      </section>
      <section numbered="true" toc="default">
        <name>YANG Module</name>
        <t>This YANG module has normative references to <xref target="RFC7952" format="default"/>
            and <xref target="I-D.ietf-netconf-notification-capabilities" format="default"/>.</t>
        <t keepWithNext="true">&lt;CODE BEGINS&gt; file "ietf-list-pagination@2023-03-11.yang"</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
module ietf-list-pagination {
  yang-version 1.1;
  namespace
    "urn:ietf:params:xml:ns:yang:ietf-list-pagination";
  prefix lpg;

  import ietf-yang-types {
    prefix yang;
    reference
      "RFC 6991: Common YANG Data Types";
  }

  import ietf-yang-metadata {
    prefix md;
    reference
      "RFC 7952: Defining and Using Metadata with YANG";
  }

  import ietf-system-capabilities  {
    prefix sysc;
    reference
      "draft-ietf-netconf-notification-capabilities:
       YANG Modules describing Capabilities for
       Systems and Datastore Update Notifications";
  }

  organization
    "IETF NETCONF (Network Configuration) Working Group";

  contact
    "WG Web:   https://datatracker.ietf.org/wg/netconf
     WG List:  NETCONF WG list <mailto:netconf@ietf.org>";

  description
    "This module is used by servers to 1) indicate they support
     pagination on 'list' and 'leaf-list' resources, 2) define a
     grouping for each list-pagination parameter, and 3) indicate
     which 'config false' lists have constrained 'where' and
     'sort-by' parameters and how they may be used, if at all.

     Copyright (c) 2022 IETF Trust and the persons identified
     as authors of the code. All rights reserved.

     Redistribution and use in source and binary forms, with
     or without modification, is permitted pursuant to, and
     subject to the license terms contained in, the Revised
     BSD License set forth in Section 4.c of the IETF Trust's
     Legal Provisions Relating to IETF Documents
     (https://trustee.ietf.org/license-info).

     This version of this YANG module is part of RFC XXXX
     (https://www.rfc-editor.org/info/rfcXXXX); see the RFC
     itself for full legal notices.

     The key words 'MUST', 'MUST NOT', 'REQUIRED', 'SHALL',
     'SHALL NOT', 'SHOULD', 'SHOULD NOT', 'RECOMMENDED',
     'NOT RECOMMENDED', 'MAY', and 'OPTIONAL' in this document
     are to be interpreted as described in BCP 14 (RFC 2119)
     (RFC 8174) when, and only when, they appear in all
     capitals, as shown here.";

  revision 2023-03-11 {
    description
      "Initial revision.";
    reference
      "RFC XXXX: List Pagination for YANG-driven Protocols";
  }


  // Annotations

  md:annotation remaining {
    type union {
      type uint32;
      type enumeration {
        enum "unknown" {
          description
            "Indicates that number of remaining entries is unknown
             to the server in case, e.g., the server has determined
             that counting would be prohibitively expensive.";
        }
      }
    }
    description
      "This annotation contains the number of elements not included
       in the result set (a positive value) due to a 'limit' or
       'sublist-limit' operation.  If no elements were removed,
       this annotation MUST NOT appear.  The minimum value (0),
       which never occurs in normal operation, is reserved to
       represent 'unknown'.  The maximum value (2^32-1) is
       reserved to represent any value greater than or equal
       to 2^32-1 elements.";
  }

  // Identities

  identity list-pagination-error {
    description
      "Base identity for list-pagination errors.";
  }

  identity offset-out-of-range {
    base list-pagination-error;
    description
      "The 'offset' query parameter value is greater than the number
       of instances in the target list or leaf-list resource.";
  }

  identity cursor-not-found {
    base list-pagination-error;
    description
      "The 'cursor' query parameter value is unknown for the target
       list.";
  }

  // Groupings

  grouping where-param-grouping {
    description
      "This grouping may be used by protocol-specific YANG modules
       to define a protocol-specific query parameter.";
    leaf where {
      type union {
        type yang:xpath1.0;
        type enumeration {
          enum "unfiltered" {
            description
              "Indicates that no entries are to be filtered
               from the working result-set.";
          }
        }
      }
      default "unfiltered";
      description
        "The 'where' parameter specifies a boolean expression
         that result-set entries must match.

         It is an error if the XPath expression references a node
         identifier that does not exist in the schema, is optional
         or conditional in the schema or, for constrained 'config
         false' lists and leaf-lists, if the node identifier does
         not point to a node having the 'indexed' extension
         statement applied to it (see RFC XXXX).";
    }
  }

  grouping sort-by-param-grouping {
    description
      "This grouping may be used by protocol-specific YANG modules
       to define a protocol-specific query parameter.";
    leaf sort-by {
      type union {
        type string {
          // An RFC 7950 'descendant-schema-nodeid'.
          pattern '([0-9a-fA-F]*:)?[0-9a-fA-F]*'
                  + '(/([0-9a-fA-F]*:)?[0-9a-fA-F]*)*';
        }
        type enumeration {
          enum "none" {
            description
              "Indicates that the list or leaf-list's default
               order is to be used, per the YANG 'ordered-by'
               statement.";
          }
        }
      }
      default "none";
      description
        "The 'sort-by' parameter indicates the node in the
         working result-set (i.e., after the 'where' parameter
         has been applied) that entries should be sorted by.

         Sorts are in ascending order (e.g., '1' before '9',
         'a' before 'z', etc.).  Missing values are sorted to
         the end (e.g., after all nodes having values).";
    }
  }

  grouping direction-param-grouping {
    description
      "This grouping may be used by protocol-specific YANG modules
       to define a protocol-specific query parameter.";
    leaf direction {
      type enumeration {
        enum forwards {
          description
             "Indicates that entries should be traversed from
              the first to last item in the working result set.";
        }
        enum backwards {
          description
             "Indicates that entries should be traversed from
              the last to first item in the working result set.";
        }
      }
      default "forwards";
      description
        "The 'direction' parameter indicates how the entries in the
         working result-set (i.e., after the 'sort-by' parameter
         has been applied) should be traversed.";
    }
  }

  grouping cursor-param-grouping {
    description
      "This grouping may be used by protocol-specific YANG modules
       to define a protocol-specific query parameter.";
    leaf cursor {
      type string;
      description
        "The 'cursor' parameter indicates where to start the working
         result-set (i.e. after the 'direction' parameter has been
         applied), the elements before the cursor are skipped over
         when preparing the response. Furthermare the result-set is
         annotated with attributes for the next and previous cursors
         following a result-set constrained with the 'limit' query
         parameter.";
    }
  }

  grouping offset-param-grouping {
    description
      "This grouping may be used by protocol-specific YANG modules
       to define a protocol-specific query parameter.";
    leaf offset {
      type uint32;
      default 0;
      description
        "The 'offset' parameter indicates the number of entries
         in the working result-set (i.e., after the 'direction'
         parameter has been applied) that should be skipped over
         when preparing the response.";
    }
  }

  grouping limit-param-grouping {
    description
      "This grouping may be used by protocol-specific YANG modules
       to define a protocol-specific query parameter.";
    leaf limit {
      type union {
        type uint32 {
          range "1..max";
        }
        type enumeration {
          enum "unbounded" {
            description
              "Indicates that the number of entries that may be
               returned is unbounded.";
          }
        }
      }
      default "unbounded";
      description
        "The 'limit' parameter limits the number of entries returned
         from the working result-set (i.e., after the 'offset'
         parameter has been applied).

         Any result-set that is limited includes, somewhere in its
         encoding, the metadata value 'remaining' to indicate the
         number entries not included in the result set.";
    }
  }

  grouping sublist-limit-param-grouping {
    description
      "This grouping may be used by protocol-specific YANG modules
       to define a protocol-specific query parameter.";
    leaf sublist-limit {
      type union {
        type uint32 {
          range "1..max";
        }
        type enumeration {
          enum "unbounded" {
            description
              "Indicates that the number of entries that may be
               returned is unbounded.";
          }
        }
      }
      default "unbounded";
      description
        "The 'sublist-limit' parameter limits the number of entries
         for descendent lists and leaf-lists.

         Any result-set that is limited includes, somewhere in
         its encoding, the metadata value 'remaining' to indicate
         the number entries not included in the result set.";
    }
  }

  // Protocol-accessible nodes

  augment // FIXME: ensure datastore == <operational>
    "/sysc:system-capabilities/sysc:datastore-capabilities"
    + "/sysc:per-node-capabilities" {
    description
      "Defines some leafs that MAY be used by the server to
       describe constraints imposed of the 'where' filters and
       'sort-by' parameters used in list pagination queries.";
    leaf constrained {
      type empty;
      description
        "Indicates that 'where' filters and 'sort-by' parameters
         on the targeted 'config false' list node are constrained.
         If a list is not 'constrained', then full XPath 1.0
         expressions may be used in 'where' filters and all node
         identifiers are usable by 'sort-by'.";
    }
    leaf indexed {
      type empty;
      description
        "Indicates that the targeted  descendent node of a
         'constrained' list (see the 'constrained' leaf) may be
         used in 'where' filters and/or 'sort-by' parameters.
         If a descendent node of a 'constrained' list is not
         'indexed', then it MUST NOT be used in 'where' filters
         or 'sort-by' parameters.";
    }
  }
}

]]></artwork>
        <t keepWithPrevious="true">&lt;CODE ENDS&gt;</t>
      </section>
    </section>
    <section numbered="true" toc="default">
      <name>IANA Considerations</name>
      <section numbered="true" toc="default">
        <name>The "IETF XML" Registry</name>
        <t>This document registers one URI in the "ns" subregistry of
            the IETF XML Registry <xref target="RFC3688" format="default"/> maintained at
            <eref target="https://www.iana.org/assignments/xml-registry/xml-registry.xhtml#ns"/>.
            Following the format in <xref target="RFC3688" format="default"/>, the following
            registration is requested:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
URI: urn:ietf:params:xml:ns:yang:ietf-list-pagination
Registrant Contact: The IESG.
XML: N/A, the requested URI is an XML namespace.
          ]]></artwork>
      </section>
      <section numbered="true" toc="default">
        <name>The "YANG Module Names" Registry</name>
        <t>This document registers one YANG module in the YANG
          Module Names registry <xref target="RFC6020" format="default"/> maintained at
          <eref target="https://www.iana.org/assignments/yang-parameters/yang-parameters.xhtml"/>.
          Following the format defined in <xref target="RFC6020" format="default"/>,
          the below registration is requested:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
name: ietf-list-pagination
namespace: urn:ietf:params:xml:ns:yang:ietf-list-pagination
prefix: lpg
RFC: XXXX
          ]]></artwork>
      </section>
    </section>
    <section anchor="security" numbered="true" toc="default">
      <name>Security Considerations</name>
      <section numbered="true" toc="default">
        <name>Regarding the "ietf-list-pagination" YANG Module</name>
        <t>Pursuant the template defined in ...FIXME</t>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized.  This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <!-- MUSTs, etc. -->
      <reference anchor="RFC3688" target="https://www.rfc-editor.org/info/rfc3688" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.3688.xml">
          <front>
            <title>The IETF XML Registry</title>
            <author fullname="M. Mealling" initials="M." surname="Mealling"/>
            <date month="January" year="2004"/>
            <abstract>
              <t>This document describes an IANA maintained registry for IETF standards which use Extensible Markup Language (XML) related items such as Namespaces, Document Type Declarations (DTDs), Schemas, and Resource Description Framework (RDF) Schemas.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="81"/>
          <seriesInfo name="RFC" value="3688"/>
          <seriesInfo name="DOI" value="10.17487/RFC3688"/>
        </reference>
        <!-- IETF XML Registry -->
      <reference anchor="RFC7950" target="https://www.rfc-editor.org/info/rfc7950" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7950.xml">
          <front>
            <title>The YANG 1.1 Data Modeling Language</title>
            <author fullname="M. Bjorklund" initials="M." role="editor" surname="Bjorklund"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>YANG is a data modeling language used to model configuration data, state data, Remote Procedure Calls, and notifications for network management protocols.  This document describes the syntax and semantics of version 1.1 of the YANG language.  YANG version 1.1 is a maintenance release of the YANG language, addressing ambiguities and defects in the original specification.  There are a small number of backward incompatibilities from YANG version 1.  This document also specifies the YANG mappings to the Network Configuration Protocol (NETCONF).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7950"/>
          <seriesInfo name="DOI" value="10.17487/RFC7950"/>
        </reference>
        <!-- YANG (curr) -->
      <reference anchor="RFC7952" target="https://www.rfc-editor.org/info/rfc7952" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7952.xml">
          <front>
            <title>Defining and Using Metadata with YANG</title>
            <author fullname="L. Lhotka" initials="L." surname="Lhotka"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>This document defines a YANG extension that allows for defining metadata annotations in YANG modules.  The document also specifies XML and JSON encoding of annotations and other rules for annotating instances of YANG data nodes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7952"/>
          <seriesInfo name="DOI" value="10.17487/RFC7952"/>
        </reference>
        <!-- YANG Metadat -->
      <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <!-- rfc2119 update -->
      <xi:include href="https://datatracker.ietf.org/doc/bibxml3/reference.I-D.ietf-netconf-notification-capabilities.xml"/>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC6020" target="https://www.rfc-editor.org/info/rfc6020" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6020.xml">
          <front>
            <title>YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)</title>
            <author fullname="M. Bjorklund" initials="M." role="editor" surname="Bjorklund"/>
            <date month="October" year="2010"/>
            <abstract>
              <t>YANG is a data modeling language used to model configuration and state data manipulated by the Network Configuration Protocol (NETCONF), NETCONF remote procedure calls, and NETCONF notifications. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6020"/>
          <seriesInfo name="DOI" value="10.17487/RFC6020"/>
        </reference>
        <!-- YANG (orig) -->
      <reference anchor="RFC6241" target="https://www.rfc-editor.org/info/rfc6241" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6241.xml">
          <front>
            <title>Network Configuration Protocol (NETCONF)</title>
            <author fullname="R. Enns" initials="R." role="editor" surname="Enns"/>
            <author fullname="M. Bjorklund" initials="M." role="editor" surname="Bjorklund"/>
            <author fullname="J. Schoenwaelder" initials="J." role="editor" surname="Schoenwaelder"/>
            <author fullname="A. Bierman" initials="A." role="editor" surname="Bierman"/>
            <date month="June" year="2011"/>
            <abstract>
              <t>The Network Configuration Protocol (NETCONF) defined in this document provides mechanisms to install, manipulate, and delete the configuration of network devices.  It uses an Extensible Markup Language (XML)-based data encoding for the configuration data as well as the protocol messages.  The NETCONF protocol operations are realized as remote procedure calls (RPCs).  This document obsoletes RFC 4741. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6241"/>
          <seriesInfo name="DOI" value="10.17487/RFC6241"/>
        </reference>
        <!-- NETCONF -->
      <reference anchor="RFC8040" target="https://www.rfc-editor.org/info/rfc8040" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8040.xml">
          <front>
            <title>RESTCONF Protocol</title>
            <author fullname="A. Bierman" initials="A." surname="Bierman"/>
            <author fullname="M. Bjorklund" initials="M." surname="Bjorklund"/>
            <author fullname="K. Watsen" initials="K." surname="Watsen"/>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document describes an HTTP-based protocol that provides a programmatic interface for accessing data defined in YANG, using the datastore concepts defined in the Network Configuration Protocol (NETCONF).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8040"/>
          <seriesInfo name="DOI" value="10.17487/RFC8040"/>
        </reference>
        <!-- RESTCONF -->
      <reference anchor="RFC8340" target="https://www.rfc-editor.org/info/rfc8340" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8340.xml">
          <front>
            <title>YANG Tree Diagrams</title>
            <author fullname="M. Bjorklund" initials="M." surname="Bjorklund"/>
            <author fullname="L. Berger" initials="L." role="editor" surname="Berger"/>
            <date month="March" year="2018"/>
            <abstract>
              <t>This document captures the current syntax used in YANG module tree diagrams.  The purpose of this document is to provide a single location for this definition.  This syntax may be updated from time to time based on the evolution of the YANG language.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="215"/>
          <seriesInfo name="RFC" value="8340"/>
          <seriesInfo name="DOI" value="10.17487/RFC8340"/>
        </reference>
        <!-- YANG Tree Diagrams -->
      <reference anchor="RFC8342" target="https://www.rfc-editor.org/info/rfc8342" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8342.xml">
          <front>
            <title>Network Management Datastore Architecture (NMDA)</title>
            <author fullname="M. Bjorklund" initials="M." surname="Bjorklund"/>
            <author fullname="J. Schoenwaelder" initials="J." surname="Schoenwaelder"/>
            <author fullname="P. Shafer" initials="P." surname="Shafer"/>
            <author fullname="K. Watsen" initials="K." surname="Watsen"/>
            <author fullname="R. Wilton" initials="R." surname="Wilton"/>
            <date month="March" year="2018"/>
            <abstract>
              <t>Datastores are a fundamental concept binding the data models written in the YANG data modeling language to network management protocols such as the Network Configuration Protocol (NETCONF) and RESTCONF.  This document defines an architectural framework for datastores based on the experience gained with the initial simpler model, addressing requirements that were not well supported in the initial model.  This document updates RFC 7950.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8342"/>
          <seriesInfo name="DOI" value="10.17487/RFC8342"/>
        </reference>
        <!-- NMDA -->
      <reference anchor="RFC8525" target="https://www.rfc-editor.org/info/rfc8525" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8525.xml">
          <front>
            <title>YANG Library</title>
            <author fullname="A. Bierman" initials="A." surname="Bierman"/>
            <author fullname="M. Bjorklund" initials="M." surname="Bjorklund"/>
            <author fullname="J. Schoenwaelder" initials="J." surname="Schoenwaelder"/>
            <author fullname="K. Watsen" initials="K." surname="Watsen"/>
            <author fullname="R. Wilton" initials="R." surname="Wilton"/>
            <date month="March" year="2019"/>
            <abstract>
              <t>This document describes a YANG library that provides information about the YANG modules, datastores, and datastore schemas used by a network management server.  Simple caching mechanisms are provided to allow clients to minimize retrieval of this information.  This version of the YANG library supports the Network Management Datastore Architecture (NMDA) by listing all datastores supported by a network management server and the schema that is used by each of these datastores.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8525"/>
          <seriesInfo name="DOI" value="10.17487/RFC8525"/>
        </reference>
        <!-- YANG Library -->

      <!--
      <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml3/reference.I-D.wwlh-netconf-list-pagination-nc.xml"/>
      <xi:include href="https://xml2rfc.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-netconf-restconf-collection.xml"/>
      -->
      <!-- <?rfc include="reference.RFC.8340.xml"?> Tree Diagrams -->
      <!--<?rfc include="reference.RFC.6991.xml"?> YANG Types-->
    </references>
    </references>
    <section numbered="true" toc="default">
      <name>Vector Tests</name>
      <t>This normative appendix section illustrates every notable
        edge condition conceived during this document's production.</t>
      <t>Test inputs and outputs are provided in a manner that is
        both generic and concise.</t>
      <t>Management protocol specific documents need only reproduce
        as many of these tests as necessary to convey pecularities
        presented by the protocol.</t>
      <t>Implementations are RECOMMENDED to implement the tests
        presented in this document, in addition to any tests that
        may be presented in protocol specific documents.</t>
      <section anchor="example-social-module" numbered="true" toc="default">
        <name>Example YANG Module</name>
        <t>The vector tests assume the "example-social" YANG module
          defined in this section.</t>
        <t>This module has been specially crafted to cover every
          notable edge condition, especially with regards to the
          types of the data nodes.</t>
        <t>Following is the tree diagram <xref target="RFC8340" format="default"/>
            for the "example-social" module:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
module: example-social
  +--rw members
  |  +--rw member* [member-id]
  |     +--rw member-id           string
  |     +--rw email-address       inet:email-address
  |     +--rw password            ianach:crypt-hash
  |     +--rw avatar?             binary
  |     +--rw tagline?            string
  |     +--rw privacy-settings
  |     |  +--rw hide-network?      boolean
  |     |  +--rw post-visibility?   enumeration
  |     +--rw following*          -> /members/member/member-id
  |     +--rw posts
  |     |  +--rw post* [timestamp]
  |     |     +--rw timestamp    yang:date-and-time
  |     |     +--rw title?       string
  |     |     +--rw body         string
  |     +--rw favorites
  |     |  +--rw uint8-numbers*       uint8
  |     |  +--rw uint64-numbers*      uint64
  |     |  +--rw int8-numbers*        int8
  |     |  +--rw int64-numbers*       int64
  |     |  +--rw decimal64-numbers*   decimal64
  |     |  +--rw bits*                bits
  |     +--ro stats
  |        +--ro joined              yang:date-and-time
  |        +--ro membership-level    enumeration
  |        +--ro last-activity?      yang:date-and-time
  +--ro audit-logs
     +--ro audit-log* []
        +--ro timestamp    yang:date-and-time
        +--ro member-id    string
        +--ro source-ip    inet:ip-address
        +--ro request      string
        +--ro outcome      boolean
]]></artwork>
        <t>Following is the YANG <xref target="RFC7950" format="default"/> for
          the "example-social" module:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
module example-social {
  yang-version 1.1;
  namespace "http://example.com/ns/example-social";
  prefix es;

  import ietf-yang-types {
    prefix yang;
    reference
      "RFC 6991: Common YANG Data Types";
  }

  import ietf-inet-types {
    prefix inet;
    reference
      "RFC 6991: Common YANG Data Types";
  }

  import iana-crypt-hash {
    prefix ianach;
    reference
      "RFC 7317: A YANG Data Model for System Management";
  }

  organization "Example, Inc.";
  contact      "support@example.com";
  description  "Example Social Data Model.";

  revision 2023-03-11 {
    description
      "Initial version.";
    reference
      "RFC XXXX: Example social module.";
  }

  container members {
    description
      "Container for list of members.";
    list member {
      key "member-id";
      description
        "List of members.";

      leaf member-id {
        type string {
          length "1..80";
          pattern '.*[\n].*' {
           modifier invert-match;
          }
        }
        description
          "The member's identifier.";
      }

      leaf email-address {
        type inet:email-address;
        mandatory true;
        description
          "The member's email address.";
      }

      leaf password {
        type ianach:crypt-hash;
        mandatory true;
        description
          "The member's hashed-password.";
      }

      leaf avatar {
        type binary;
        description
          "An binary image file.";
      }

      leaf tagline {
        type string {
          length "1..80";
          pattern '.*[\n].*' {
            modifier invert-match;
          }
        }
        description
          "The member's tagline.";
      }

      container privacy-settings {
        leaf hide-network {
          type boolean;
          description
            "Hide who you follow and who follows you.";
        }
        leaf post-visibility {
          type enumeration {
            enum public {
              description
                "Posts are public.";
            }
            enum unlisted {
              description
                "Posts are unlisted, though visable to all.";
            }
            enum followers-only {
              description
                "Posts only visible to followers.";
            }
          }
          default public;
          description
            "The post privacy setting.";
        }
        description
          "Preferences for the member.";
      }

      leaf-list following {
        type leafref {
          path "/members/member/member-id";
        }
        description
          "Other members this members is following.";
      }

      container posts {
        description
          "The member's posts.";
        list post {
          key timestamp;
          leaf timestamp {
            type yang:date-and-time;
            description
              "The timestamp for the member's post.";
          }
          leaf title {
            type string {
              length "1..80";
              pattern '.*[\n].*' {
                modifier invert-match;
              }
            }
            description
              "A one-line title.";
          }
          leaf body {
            type string;
            mandatory true;
            description
              "The body of the post.";
          }
          description
            "A list of posts.";
        }
      }

      container favorites {
        description
          "The member's favorites.";
        leaf-list uint8-numbers {
          type uint8;
          ordered-by user;
          description
            "The member's favorite uint8 numbers.";
        }
        leaf-list uint64-numbers {
          type uint64;
          ordered-by user;
          description
            "The member's favorite uint64 numbers.";
        }
        leaf-list int8-numbers {
          type int8;
          ordered-by user;
          description
            "The member's favorite int8 numbers.";
        }
        leaf-list int64-numbers {
          type int64;
          ordered-by user;
          description
            "The member's favorite uint64 numbers.";
        }
        leaf-list decimal64-numbers {
          type decimal64 {
            fraction-digits 5;
          }
          ordered-by user;
          description
            "The member's favorite decimal64 numbers.";
        }
        leaf-list bits {
          type bits {
            bit zero {
              position 0;
              description "zero";
            }
            bit one {
              position 1;
              description "one";
            }
            bit two {
              position 2;
              description "two";
            }
          }
          ordered-by user;
          description
            "The member's favorite bits.";
        }
      }

      container stats {
        config false;
        description
          "Operational state members values.";
        leaf joined {
          type yang:date-and-time;
          mandatory true;
          description
            "Timestamp when member joined.";
        }
        leaf membership-level {
          type enumeration {
            enum admin {
              description
                "Site administrator.";
            }
            enum standard {
              description
                "Standard membership level.";
            }
            enum pro {
              description
                "Professional membership level.";
            }
          }
          mandatory true;
          description
            "The membership level for this member.";
        }
        leaf last-activity {
          type yang:date-and-time;
          description
            "Timestamp of member's last activity.";
        }
      }
    }
  }

  container audit-logs {
    config false;
    description
      "Audit log configuration";
    list audit-log {
      description
        "List of audit logs.";
      leaf timestamp {
        type yang:date-and-time;
        mandatory true;
        description
          "The timestamp for the event.";
      }
      leaf member-id {
        type string;
        mandatory true;
        description
          "The 'member-id' of the member.";
      }
      leaf source-ip {
        type inet:ip-address;
        mandatory true;
        description
          "The apparent IP address the member used.";
      }
      leaf request {
        type string;
        mandatory true;
        description
          "The member's request.";
      }
      leaf outcome {
        type boolean;
        mandatory true;
        description
          "Indicate if request was permitted.";
      }
    }
  }
}

]]></artwork>
      </section>
      <section numbered="true" toc="default">
        <name>Example Data Set</name>
        <t>The examples assume the server's operational state
          as follows.</t>
        <t>The data is provided in JSON only for convenience and,
          in particular, has no bearing on the "generic" nature
          of the tests themselves.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:members": {
    "member": [
      {
        "member-id": "bob",
        "email-address": "bob@example.com",
        "password": "$0$1543",
        "avatar": "BASE64VALUE=",
        "tagline": "Here and now, like never before.",
        "posts": {
          "post": [
            {
              "timestamp": "2020-08-14T03:32:25Z",
              "body": "Just got in."
            },
            {
              "timestamp": "2020-08-14T03:33:55Z",
              "body": "What's new?"
            },
            {
              "timestamp": "2020-08-14T03:34:30Z",
              "body": "I'm bored..."
            }
          ]
        },
        "favorites": {
          "decimal64-numbers": ["3.14159", "2.71828"]
        },
        "stats": {
          "joined": "2020-08-14T03:30:00Z",
          "membership-level": "standard",
          "last-activity": "2020-08-14T03:34:30Z"
        }
      },
      {
        "member-id": "eric",
        "email-address": "eric@example.com",
        "password": "$0$1543",
        "avatar": "BASE64VALUE=",
        "tagline": "Go to bed with dreams; wake up with a purpose.",
        "following": ["alice"],
        "posts": {
          "post": [
            {
              "timestamp": "2020-09-17T18:02:04Z",
              "title": "Son, brother, husband, father",
              "body": "What's your story?"
            }
          ]
        },
        "favorites": {
          "bits": ["two", "one", "zero"]
        },
        "stats": {
          "joined": "2020-09-17T19:38:32Z",
          "membership-level": "pro",
          "last-activity": "2020-09-17T18:02:04Z"
        }
      },
      {
        "member-id": "alice",
        "email-address": "alice@example.com",
        "password": "$0$1543",
        "avatar": "BASE64VALUE=",
        "tagline": "Every day is a new day",
        "privacy-settings": {
          "hide-network": false,
          "post-visibility": "public"
        },
        "following": ["bob", "eric", "lin"],
        "posts": {
          "post": [
            {
              "timestamp": "2020-07-08T13:12:45Z",
              "title": "My first post",
              "body": "Hiya all!"
            },
            {
              "timestamp": "2020-07-09T01:32:23Z",
              "title": "Sleepy...",
              "body": "Catch y'all tomorrow."
            }
          ]
        },
        "favorites": {
          "uint8-numbers": [17, 13, 11, 7, 5, 3],
          "int8-numbers": [-5, -3, -1, 1, 3, 5]
        },
        "stats": {
          "joined": "2020-07-08T12:38:32Z",
          "membership-level": "admin",
          "last-activity": "2021-04-01T02:51:11Z"
        }
      },
      {
        "member-id": "lin",
        "email-address": "lin@example.com",
        "password": "$0$1543",
        "privacy-settings": {
          "hide-network": true,
          "post-visibility": "followers-only"
        },
        "following": ["joe", "eric", "alice"],
        "stats": {
          "joined": "2020-07-09T12:38:32Z",
          "membership-level": "standard",
          "last-activity": "2021-04-01T02:51:11Z"
        }
      },
      {
        "member-id": "joe",
        "email-address": "joe@example.com",
        "password": "$0$1543",
        "avatar": "BASE64VALUE=",
        "tagline": "Greatness is measured by courage and heart.",
        "privacy-settings": {
          "post-visibility": "unlisted"
        },
        "following": ["bob"],
        "posts": {
          "post": [
            {
              "timestamp": "2020-10-17T18:02:04Z",
              "body": "What's your status?"
            }
          ]
        },
        "stats": {
          "joined": "2020-10-08T12:38:32Z",
          "membership-level": "pro",
          "last-activity": "2021-04-01T02:51:11Z"
        }
      }
    ]
  },
  "example-social:audit-logs": {
    "audit-log": [
      {
        "timestamp": "2020-10-11T06:47:59Z",
        "member-id": "alice",
        "source-ip": "192.168.0.92",
        "request": "POST /groups/group/2043",
        "outcome": true
      },
      {
        "timestamp": "2020-11-01T15:22:01Z",
        "member-id": "bob",
        "source-ip": "192.168.2.16",
        "request": "POST /groups/group/123",
        "outcome": false
      },
      {
        "timestamp": "2020-12-12T21:00:28Z",
        "member-id": "eric",
        "source-ip": "192.168.254.1",
        "request": "POST /groups/group/10",
        "outcome": true
      },
      {
        "timestamp": "2021-01-03T06:47:59Z",
        "member-id": "alice",
        "source-ip": "192.168.0.92",
        "request": "POST /groups/group/333",
        "outcome": true
      },
      {
        "timestamp": "2021-01-21T10:00:00Z",
        "member-id": "bob",
        "source-ip": "192.168.2.16",
        "request": "POST /groups/group/42",
        "outcome": true
      },
      {
        "timestamp": "2020-02-07T09:06:21Z",
        "member-id": "alice",
        "source-ip": "192.168.0.92",
        "request": "POST /groups/group/1202",
        "outcome": true
      },
      {
        "timestamp": "2020-02-28T02:48:11Z",
        "member-id": "bob",
        "source-ip": "192.168.2.16",
        "request": "POST /groups/group/345",
        "outcome": true
      }
    ]
  }
}
]]></artwork>
      </section>
      <section numbered="true" toc="default">
        <name>Example Queries</name>
        <t>The following sections are presented in reverse
          query-parameters processing order.  Starting with
          the simplest (limit) and ending with the most
          complex (where).</t>
        <t>All the vector tests are presented in a protocol-independent
          manner.  JSON is used only for its conciseness.</t>
        <section numbered="true" toc="default">
          <name>The "limit" Parameter</name>
          <t>Noting that "limit" must be a positive number, the edge
            condition values are '1', '2', num-elements-1, num-elements,
            and num-elements+1.</t>
          <aside>
            <t>If '0' were a valid limit value, it would always
              return an empty result set.  Any value greater than or
              equal to num-elements results the entire result set,
              same as when "limit" is unspecified.</t>
          </aside>
          <t>These vector tests assume the target 
            "/example-social:members/member=alice/favorites/uint8-numbers",
            which has six values, thus the edge condition "limit" values
            are: '1', '2', '5', '6', and '7'.</t>
          <section numbered="true" toc="default">
            <name>limit=1</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    -
    Limit:     1
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": [17],
  "@example-social:uint8-numbers": [
     {
        "ietf-list-pagination:remaining": 5
     }
   ]
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>limit=2</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    -
    Limit:     2
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": [17, 13],
  "@example-social:uint8-numbers": [
     {
        "ietf-list-pagination:remaining": 4
     }
   ]
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>limit=5</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    -
    Limit:     5
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": [17, 13, 11, 7, 5],
  "@example-social:uint8-numbers": [
     {
        "ietf-list-pagination:remaining": 1
     }
   ]
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>limit=6</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    -
    Limit:     6
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": [17, 13, 11, 7, 5, 3]
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>limit=7</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    -
    Limit:     7
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": [17, 13, 11, 7, 5, 3]
}
]]></artwork>
          </section>
        </section>
        <section numbered="true" toc="default">
          <name>The "offset" Parameter</name>
          <t>Noting that "offset" must be an unsigned number less than or
            equal to the num-elements, the edge condition values are '0', '1',
            '2', num-elements-1, num-elements, and num-elements+1.</t>
          <t>These vector tests again assume the target 
            "/example-social:members/member=alice/favorites/uint8-numbers",
            which has six values, thus the edge condition "limit" values
            are: '0', '1', '2', '5', '6', and '7'.</t>
          <section numbered="true" toc="default">
            <name>offset=0</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    0
    Limit:     -
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": [17, 13, 11, 7, 5, 3]
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>offset=1</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    1
    Limit:     -
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": [13, 11, 7, 5, 3]
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>offset=2</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    2
    Limit:     -
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": [11, 7, 5, 3]
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>offset=5</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    5
    Limit:     -
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": [3]
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>offset=6</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    6
    Limit:     -
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": []
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>offset=7</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    7
    Limit:     -
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
ERROR
]]></artwork>
          </section>
        </section>
        <section numbered="true" toc="default">
          <name>The "cursor" Parameter</name>
          <t>Noting that "cursor" must be an base64 encoded opaque value which
            addresses an element in a list.</t>
          <aside>
            <t>The default value is empty, which is the same as supplying
              the cursor value for the first element in the list.</t>
          </aside>
          <t>These vector tests assume the target 
              "/example-social:members/member" which has five members.</t>
          <aside>
            <t>Note that response has added attributes describing the result
              set and position in pagination.</t>
          </aside>
          <section numbered="true" toc="default">
            <name>cursor=&amp;limit=2</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    -
    Limit:     2
    Cursor:    -
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:member": [
    {
      "member-id": "bob",
      "email-address": "bob@example.com",
      "password": "$0$1543",
      "avatar": "BASE64VALUE=",
      "tagline": "Here and now, like never before.",
      "posts": {
        "post": [
          {
            "timestamp": "2020-08-14T03:32:25Z",
            "body": "Just got in."
          },
          {
            "timestamp": "2020-08-14T03:33:55Z",
            "body": "What's new?"
          },
          {
            "timestamp": "2020-08-14T03:34:30Z",
            "body": "I'm bored..."
          }
        ]
      },
      "favorites": {
        "decimal64-numbers": ["3.14159", "2.71828"]
      },
      "stats": {
        "joined": "2020-08-14T03:30:00Z",
        "membership-level": "standard",
        "last-activity": "2020-08-14T03:34:30Z"
      }
    },
    {
      "member-id": "eric",
      "email-address": "eric@example.com",
      "password": "$0$1543",
      "avatar": "BASE64VALUE=",
      "tagline": "Go to bed with dreams; wake up with a purpose.",
      "following": ["alice"],
      "posts": {
        "post": [
          {
            "timestamp": "2020-09-17T18:02:04Z",
            "title": "Son, brother, husband, father",
            "body": "What's your story?"
          }
        ]
      },
      "favorites": {
        "bits": ["two", "one", "zero"]
      },
      "stats": {
        "joined": "2020-09-17T19:38:32Z",
        "membership-level": "pro",
        "last-activity": "2020-09-17T18:02:04Z"
      }
    }
  ],
  "@example-social:member": [
    {
      "ietf-list-pagination:remaining": 3,
      "ietf-list-pagination:previous": "",
      "ietf-list-pagination:next": "YWxpY2U=" // alice
    }
  ]
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>cursor="YWxpY2U="&amp;limit=2</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    -
    Limit:     2
    Cursor:    YWxpY2U=
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:member": [
    {
      "member-id": "alice",
      "email-address": "alice@example.com",
      "password": "$0$1543",
      "avatar": "BASE64VALUE=",
      "tagline": "Every day is a new day",
      "privacy-settings": {
        "hide-network": false,
        "post-visibility": "public"
      },
      "following": ["bob", "eric", "lin"],
      "posts": {
        "post": [
          {
            "timestamp": "2020-07-08T13:12:45Z",
            "title": "My first post",
            "body": "Hiya all!"
          },
          {
            "timestamp": "2020-07-09T01:32:23Z",
            "title": "Sleepy...",
            "body": "Catch y'all tomorrow."
          }
        ]
      },
      "favorites": {
        "uint8-numbers": [17, 13, 11, 7, 5, 3],
        "int8-numbers": [-5, -3, -1, 1, 3, 5]
      },
      "stats": {
        "joined": "2020-07-08T12:38:32Z",
        "membership-level": "admin",
        "last-activity": "2021-04-01T02:51:11Z"
      }
    },
    {
      "member-id": "lin",
      "email-address": "lin@example.com",
      "password": "$0$1543",
      "privacy-settings": {
        "hide-network": true,
        "post-visibility": "followers-only"
      },
      "following": ["joe", "eric", "alice"],
      "stats": {
        "joined": "2020-07-09T12:38:32Z",
        "membership-level": "standard",
        "last-activity": "2021-04-01T02:51:11Z"
      }
    }
  ],
  "@example-social:member": [
    {
      "ietf-list-pagination:remaining": 1,
      "ietf-list-pagination:previous": "ZXJpYw==", // eric
      "ietf-list-pagination:next": "am9l" // joe
    }
  ]
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>cursor="am9l"&amp;limit=2</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    -
    Limit:     2
    Cursor:    am9l
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:member": [
    {
      "member-id": "joe",
      "email-address": "joe@example.com",
      "password": "$0$1543",
      "avatar": "BASE64VALUE=",
      "tagline": "Greatness is measured by courage and heart.",
      "privacy-settings": {
        "post-visibility": "unlisted"
      },
      "following": ["bob"],
      "posts": {
        "post": [
          {
            "timestamp": "2020-10-17T18:02:04Z",
            "body": "What's your status?"
          }
        ]
      },
      "stats": {
        "joined": "2020-10-08T12:38:32Z",
        "membership-level": "pro",
        "last-activity": "2021-04-01T02:51:11Z"
      }
    }
  ],
  "@example-social:member": [
    {
      "ietf-list-pagination:remaining": 0,
      "ietf-list-pagination:previous": "bGlu", // lin
      "ietf-list-pagination:next": ""
    }
  ]
}
]]></artwork>
          </section>
        </section>
        <section numbered="true" toc="default">
          <name>The "direction" Parameter</name>
          <t>Noting that "direction" is an enumeration with two values,
            the edge condition values are each defined enumeration.</t>
          <aside>
            <t>The value "forwards" is sometimes known as the "default"
              value, as it produces the same result set as when
              "direction" is unspecified.</t>
          </aside>
          <t>These vector tests again assume the target 
            "/example-social:members/member=alice/favorites/uint8-numbers".
            The number of elements is relevant to the edge condition values.</t>
          <aside>
            <t>It is notable that "uint8-numbers" is an "ordered-by" user
              leaf-list.  Traversals are over the user-specified order,
              not the numerically-sorted order, which is what the "sort-by"
              parameter addresses.  If this were an "ordered-by system"
              leaf-list, then the traversals would be over the system-specified
              order, again not a numerically-sorted order.</t>
          </aside>
          <section numbered="true" toc="default">
            <name>direction=forwards</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: forwards
    Offset:    -
    Limit:     -
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": [17, 13, 11, 7, 5, 3]
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>direction=backwards</name>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: backwards
    Offset:    -
    Limit:     -
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": [3, 5, 7, 11, 13, 17]
}
]]></artwork>
          </section>
        </section>
        <section numbered="true" toc="default">
          <name>The "sort-by" Parameter</name>
          <t>Noting that the "sort-by" parameter is a node identifier,
            there is not so much "edge conditions" as there are "interesting
            conditions".  This section provides examples for some
            interesting conditions.</t>
          <section numbered="true" toc="default">
            <name>the target node's type</name>
            <t>The section provides three examples, one for a "leaf-list" and two
              for a "list", with one using a direct descendent and the other using
              an indirect descendent.</t>
            <section numbered="true" toc="default">
              <name>type is a "leaf-list"</name>
              <t>This example illustrates when the target node's type is a "leaf-list".
                Note that a single period (i.e., '.') is used to represent the nodes
                to be sorted.</t>
              <t>This test again uses the target
                "/example-social:members/member=alice/favorites/uint8-numbers",
                which is a leaf-list.</t>
              <t>REQUEST</t>
              <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member=alice/favorites/uint8-numbers
  Pagination Parameters:
    Where:     -
    Sort-by:   .
    Direction: -
    Offset:    -
    Limit:     -
]]></artwork>
              <t>RESPONSE</t>
              <t>
                <!-- 'ex-direction-backwards' just happens to be the right value -->
              </t>
              <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:uint8-numbers": [3, 5, 7, 11, 13, 17]
}
]]></artwork>
            </section>
            <!-- leaf-list -->
            <section numbered="true" toc="default">
              <name>type is a "list" and sort-by node is a direct descendent</name>
              <t>This example illustrates when the target node's type is a "list" and
                a direct descendent is the "sort-by" node.</t>
              <t>This vector test uses the target "/example-social:members/member",
                which is a "list", and the sort-by descendent node "member-id",
                which is the "key" for the list.</t>
              <t>REQUEST</t>
              <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member
  Pagination Parameters:
    Where:     -
    Sort-by:   member-id
    Direction: -
    Offset:    -
    Limit:     -
]]></artwork>
              <t>RESPONSE</t>
              <aside>
                <t>To make the example more understandable, an ellipse (i.e., "...") is
                  used to represent a missing subtree of data.</t>
              </aside>
              <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:member": [
    {
      "member-id": "alice",
      ...
    },
    {
      "member-id": "bob",
      ...
    },
    {
      "member-id": "eric",
      ...
    },
    {
      "member-id": "joe",
      ...
    },
    {
      "member-id": "lin",
      ...
    }
  ]
}
]]></artwork>
            </section>
            <!-- list and direct descendent -->
            <section numbered="true" toc="default">
              <name>type is a "list" and sort-by node is an indirect descendent</name>
              <t>This example illustrates when the target node's type is a "list" and
                an indirect descendent is the "sort-by" node.</t>
              <t>This vector test uses the target "/example-social:members/member",
                which is a "list", and the sort-by descendent node "stats/joined",
                which is a "config false" descendent leaf.  Due to "joined" being
                a "config false" node, this request would have to target the
                "member" node in the &lt;operational&gt; datastore.</t>
              <t>REQUEST</t>
              <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member
  Pagination Parameters:
    Where:     -
    Sort-by:   stats/joined
    Direction: -
    Offset:    -
    Limit:     -
]]></artwork>
              <t>RESPONSE</t>
              <aside>
                <t>To make the example more understandable, an elipse (i.e., "...") is
                  used to represent a missing subtree of data.</t>
              </aside>
              <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:member": [
    {
      "member-id": "alice",
      ...
    },
    {
      "member-id": "lin",
      ...
    },
    {
      "member-id": "bob",
      ...
    },
    {
      "member-id": "eric",
      ...
    },
    {
      "member-id": "joe",
      ...
    }
  ]
}
]]></artwork>
            </section>
            <!-- list and indirect descendent -->
          </section>
          <!-- target node's type -->

          <section numbered="true" toc="default">
            <name>handling missing entries</name>
            <t>The section provides one example for when the "sort-by"
              node is not present in the data set.</t>
            <t>FIXME: need to finish this section...</t>
          </section>
          <!-- handling missing entries -->

        </section>
        <!-- sort-by" parameter -->

        <section numbered="true" toc="default">
          <name>The "where" Parameter</name>
          <t>The "where" is an XPath 1.0 expression, there are numerous
            edge conditions to consider, e.g., the types of the nodes
            that are targeted by the expression.</t>
          <section numbered="true" toc="default">
            <name>match of leaf-list's values</name>
            <t>FIXME</t>
          </section>
          <section numbered="true" toc="default">
            <name>match on descendent string containing a substring</name>
            <t>This example selects members that have an email address containing "@example.com".</t>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member
  Pagination Parameters:
    Where:     //.[contains (@email-address,'@example.com')]
    Sort-by:   -
    Direction: -
    Offset:    -
    Limit:     -
]]></artwork>
            <t>RESPONSE</t>
            <aside>
              <t>To make the example more understandable, an elipse (i.e., "...") is
                used to represent a missing subtree of data.</t>
            </aside>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:member": [
    {
      "member-id": "bob",
      ...
    },
    {
      "member-id": "eric",
      ...
    },
    {
      "member-id": "alice",
      ...
    },
    {
      "member-id": "joe",
      ...
    },
    {
      "member-id": "lin",
      ...
    }
  ]
}

]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>match on decendent timestamp starting with a substring</name>
            <t>This example selects members that have a posting whose timestamp begins with the string "2020".</t>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Target: /example-social:members/member
  Pagination Parameters:
    Where:     //posts//post[starts-with(@timestamp,'2020')]
    Sort-by:   -
    Direction: -
    Offset:    -
    Limit:     -
]]></artwork>
            <t>RESPONSE</t>
            <aside>
              <t>To make the example more understandable, an elipse (i.e., "...") is
                used to represent a missing subtree of data.</t>
            </aside>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:member": [
    {
      "member-id": "bob",
      ...
    },
    {
      "member-id": "eric",
      ...
    },
    {
      "member-id": "alice",
      ...
    },
    {
      "member-id": "joe",
      ...
    }
  ]
}
]]></artwork>
          </section>
        </section>
        <section anchor="sublist-limit-param" numbered="true" toc="default">
          <name>The "sublist-limit" Parameter</name>
          <t>The "sublist-limit" parameter may be used on any target node.</t>
          <section numbered="true" toc="default">
            <name>target is a list entry</name>
            <t>This example uses the target node '/example-social:members/member=alice' in
              the &lt;intended&gt; datastore.</t>
            <aside>
              <t>The target node is a specific list entry/element node, not the
              YANG "list" node.</t>
            </aside>
            <t>This example sets the sublist-limit value '1', which returns just the
              first entry for all descendent lists and leaf-lists.</t>
            <t>Note that, in the response, the "remaining" metadata value is set on the 
              first element of each descendent list and leaf-list having more
              than one value.</t>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
  Datastore: <intended>
  Target: /example-social:members/member=alice
  Sublist-limit: 1
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    -
    Limit:     -
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:member": [
    {
      "member-id": "alice",
      "email-address": "alice@example.com",
      "password": "$0$1543",
      "avatar": "BASE64VALUE=",
      "tagline": "Every day is a new day",
      "privacy-settings": {
        "hide-network": "false",
        "post-visibility": "public"
      },
      "following": ["bob"],
      "@following": [
        {
          "ietf-list-pagination:remaining": "2"
        }
      ],
      "posts": {
        "post": [
          {
            "@": {
              "ietf-list-pagination:remaining": "1"
            },
            "timestamp": "2020-07-08T13:12:45Z",
            "title": "My first post",
            "body": "Hiya all!"
          }
        ]
      },
      "favorites": {
        "uint8-numbers": [17],
        "int8-numbers": [-5],
        "@uint8-numbers": [
          {
            "ietf-list-pagination:remaining": "5"
          }
        ],
        "@int8-numbers": [
          {
            "ietf-list-pagination:remaining": "5"
          }
        ]
      }
    }
  ]
}
]]></artwork>
          </section>
          <section numbered="true" toc="default">
            <name>target is a datastore</name>
            <t>This example uses the target node &lt;intended&gt;.</t>
            <t>This example sets the sublist-limit value '1', which returns just the
              first entry for all descendent lists and leaf-lists.</t>
            <t>Note that, in the response, the "remaining" metadata value is set on the 
              first element of each descendent list and leaf-list having more
              than one value.</t>
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
  Datastore: <intended>
  Target: /
  Sublist-limit: 1
  Pagination Parameters:
    Where:     -
    Sort-by:   -
    Direction: -
    Offset:    -
    Limit:     -
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[

{
  "example-social:members": {
    "member": [
      {
        "@": {
          "ietf-list-pagination:remaining": "4"
        },
        "member-id": "bob",
        "email-address": "bob@example.com",
        "password": "$0$1543",
        "avatar": "BASE64VALUE=",
        "tagline": "Here and now, like never before.",
        "posts": {
          "post": [
            {
              "@": {
                "ietf-list-pagination:remaining": "2"
              },
              "timestamp": "2020-08-14T03:32:25Z",
              "body": "Just got in."
            }
          ]
        },
        "favorites": {
          "decimal64-numbers": ["3.14159"],
          "@decimal64-numbers": [
            {
              "ietf-list-pagination:remaining": "1"
            }
          ]
        }
      }
    ]
  }
}
]]></artwork>
          </section>
        </section>
        <!-- sublist-limit -->

        <section numbered="true" toc="default">
          <name>Combinations of Parameters</name>
          <section numbered="true" toc="default">
            <name>All six parameters at once</name>
            <!--
            <t>This example uses the target node '/example-social:members/member=alice' in
              the &lt;intended&gt; datastore.</t>
            <aside><t>The target node is a specific list entry/element node, not the
              YANG "list" node.</t></aside>
            <t>This example sets the sublist-limit value '1', which returns just the
              first entry for all descendent lists and leaf-lists.</t>
            <t>Note that, in the response, the "remaining" metadata value is set on the 
              first element of each descendent list and leaf-list having more
              than one value.</t>
            -->
            <t>REQUEST</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
  Datastore: <operational>
  Target: /example-social:members/member
  Sublist-limit: 1
  Pagination Parameters:
    Where:     //stats//joined[starts-with(@timestamp,'2020')]
    Sort-by:   member-id
    Direction: backwards
    Offset:    2
    Limit:     2
]]></artwork>
            <t>RESPONSE</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
{
  "example-social:member": [
    {
      "@": {
        "ietf-list-pagination:remaining": "1"
      },
      "member-id": "eric",
      "email-address": "eric@example.com",
      "password": "$0$1543",
      "avatar": "BASE64VALUE=",
      "tagline": "Go to bed with dreams; wake up with a purpose.",
      "following": ["alice"],
      "posts": {
        "post": [
          {
            "timestamp": "2020-09-17T18:02:04Z",
            "title": "Son, brother, husband, father",
            "body": "What's your story?"
          }
        ]
      },
      "favorites": {
        "bits": ["two"],
        "@bits": [
          {
            "ietf-list-pagination:remaining": "2"
          }
        ]
      },
      "stats": {
        "joined": "2020-09-17T19:38:32Z",
        "membership-level": "pro",
        "last-activity": "2020-09-17T18:02:04Z"
      }
    },
    {
      "member-id": "bob",
      "email-address": "bob@example.com",
      "password": "$0$1543",
      "avatar": "BASE64VALUE=",
      "tagline": "Here and now, like never before.",
      "posts": {
        "post": [
          {
            "@": {
              "ietf-list-pagination:remaining": "2"
            },
            "timestamp": "2020-08-14T03:32:25Z",
            "body": "Just got in."
          }
        ]
      },
      "favorites": {
        "decimal64-numbers": ["3.14159"],
        "@decimal64-numbers": [
          {
            "ietf-list-pagination:remaining": "1"
          }
        ]
      },
      "stats": {
        "joined": "2020-08-14T03:30:00Z",
        "membership-level": "standard",
        "last-activity": "2020-08-14T03:34:30Z"
      }
    }
  }
}

]]></artwork>
          </section>
        </section>
        <!-- uber examples -->


      </section>
      <!-- Example Queries -->

    </section>
    <!-- Vector Tests -->
  


    <!--
    <section title="Contributors" numbered="no">
      <figure>
        <artwork>Per Andersson
perander@cisco.com

David Cornejo
dcornejo@gmail.com</artwork>
      </figure>
    </section>
    -->

    <section numbered="false" toc="default">
      <name>Acknowledgements</name>
      <t>The authors would like to thank the following for lively discussions on
      list (ordered by first name):
        Andy Bierman,
        Martin Björklund,
        and
        Robert Varga.
      </t>
    </section>
  </back>
</rfc>
