<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 2.7.0) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-netconf-transaction-id-04" category="std" consensus="true" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.2 -->
  <front>
    <title abbrev="NCTID">Transaction ID Mechanism for NETCONF</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-netconf-transaction-id-04"/>
    <author initials="J." surname="Lindblad" fullname="Jan Lindblad">
      <organization>Cisco Systems</organization>
      <address>
        <email>jlindbla@cisco.com</email>
      </address>
    </author>
    <date year="2024" month="June" day="19"/>
    <area>General</area>
    <workgroup>NETCONF</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>NETCONF clients and servers often need to have a synchronized view of
the server's configuration data stores.  The volume of configuration
data in a server may be very large, while data store changes typically
are small when observed at typical client resynchronization intervals.</t>
      <t>Rereading the entire data store and analyzing the response for changes
is an inefficient mechanism for synchronization.  This document
specifies an extension to NETCONF that allows clients and servers to
keep synchronized with a much smaller data exchange and without any
need for servers to store information about the clients.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Network Configuration Working Group mailing list (netconf@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/netconf/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/netconf-wg/transaction-id"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>When a NETCONF client wishes to initiate a new configuration transaction
with a NETCONF server, a frequently occurring use case is for the
client to find out if the configuration has changed since the client
last communicated with the server.  Such changes could occur for
example if another NETCONF client has made changes, or another system
or operator made changes through other means than NETCONF.</t>
      <t>One way of detecting a change for a client would be to
retrieve the entire configuration from the server, then compare
the result with a previously stored copy at the client side.  This
approach is not popular with most NETCONF users, however, since it
would often be very expensive in terms of communications and
computation cost.</t>
      <t>Furthermore, even if the configuration is reported to be unchanged,
that will not guarantee that the configuration remains unchanged
when a client sends a subsequent change request, a few moments later.</t>
      <t>In order to simplify the task of tracking changes, a NETCONF server
could implement a meta level transaction tag or timestamp for an entire
configuration datastore or YANG subtree, and offer clients a way to
read and compare this tag or timestamp.  If the tag or timestamp is
unchanged, clients can avoid performing expensive operations.  Such
tags and timestamps are referred to as a transaction id (txid) in this
document.</t>
      <t>Evidence of a transaction id feature being demanded by clients is that
several server implementors have built proprietary and mutually
incompatible mechanisms for obtaining a transaction id from a NETCONF
server.</t>
      <t>RESTCONF, <xref target="RFC8040"/>,
defines a mechanism for detecting changes in configuration subtrees
based on Entity-Tags (ETags) and Last-Modified txid values.</t>
      <t>In conjunction with this, RESTCONF
provides a way to make configuration changes conditional on the server
configuration being untouched by others.  This mechanism leverages
<xref target="RFC7232"/>
"Hypertext Transfer Protocol (HTTP/1.1): Conditional Requests".</t>
      <t>This document defines similar functionality for NETCONF,
<xref target="RFC6241"/>, for config true data.  It also ties this in
with YANG-Push, <xref target="RFC8641"/>, and "Comparison of Network
Management Datastore Architecture (NMDA) Datastores",
<xref target="RFC9144"/>.  Config false data (operational data, state, statistics)
is left out of scope from this document.</t>
      <t>This document does not change the RESTCONF protocol in any way, and
is carefully written to allow implementations to share much of the
code between NETCONF and RESTCONF.  Note that the NETCONF txid
mechanism described in this document uses XML attributes, but the
RESTCONF mechanism relies on HTTP Headers instead, and use none of
the XML attributes described in this document, nor JSON Metadata
(see <xref target="RFC7952"/>).</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</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"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <t>This document uses the terminology defined in
<xref target="RFC6241"/>,
<xref target="RFC7950"/>,
<xref target="RFC7952"/>,
<xref target="RFC8040"/>,
<xref target="RFC8641"/>, and
<xref target="RFC9144"/>.</t>
      <t>In addition, this document defines the following terms:</t>
      <dl>
        <dt>Versioned node</dt>
        <dd>
          <t>A node in the instantiated YANG data tree for which
the server maintains a transaction id (txid) value.</t>
        </dd>
        <dt>Transaction-id Mechanism</dt>
        <dd>
          <t>A protocol implementation that fulfills the principles described in
the first part, <xref target="netconf-txid-extension">NETCONF Txid Extension</xref>, of
this document.</t>
        </dd>
        <dt>Txid</dt>
        <dd>
          <t>Abbreviation of Transaction-id</t>
        </dd>
        <dt>C-txid</dt>
        <dd>
          <t>Client side transaction-id, i.e. a txid value maintained or provided
by a NETCONF client application.</t>
        </dd>
        <dt>S-txid</dt>
        <dd>
          <t>Server side transaction-id, i.e. a txid value maintained or sent by
a NETCONF server.</t>
        </dd>
        <dt>Txid History</dt>
        <dd>
          <t>Temporally ordered list of txid values used by the server.  Allows
the server to determine if a given txid occurred more recently than
another txid.</t>
        </dd>
      </dl>
    </section>
    <section anchor="netconf-txid-extension">
      <name>NETCONF Txid Extension</name>
      <t>This document describes a NETCONF extension which modifies the
behavior of get-config, get-data, edit-config, edit-data,
discard-changes, copy-config, delete-config and commit such
that clients are able to conditionally retrieve and update the
configuration in a NETCONF server.</t>
      <t>For servers implementing YANG-Push, an extension for conveying txid
updates as part of subscription updates is also defined.  A similar
extension is also defined for servers implememnting
"Comparison of NMDA Datastores".</t>
      <t>Several low level mechanisms could be defined to fulfill the
requirements for efficient client-server txid synchronization.
This document defines two such mechanisms, the etag txid mechanism
and the last-modified txid mechanism. Additional mechanisms could
be added in future.  This document is therefore divided into a two
parts; the first part discusses the txid mechanism in an abstract,
protocol-neutral way.  The second part,
<xref target="txid-mechanisms">Txid Mechanisms</xref>, then adds the protocol layer,
and provides concrete encoding examples.</t>
      <section anchor="use-cases">
        <name>Use Cases</name>
        <t>The common use cases for txid mecahnisms are briefly discussed here.</t>
        <dl>
          <dt>Initial configuration retrieval</dt>
          <dd>
            <t>When the client initially connects to a server, it may be interested
to acquire a current view of (parts of) the server's configuration.
In order to be able to efficiently detect changes later, it may also
be interested to store meta level txid information for
subtrees of the configuration.</t>
          </dd>
          <dt>Subsequent configuration retrieval</dt>
          <dd>
            <t>When a client needs to reread (parts of) the server's configuration,
it may be interested to leverage the txid meta data it has
stored by requesting the server to prune the response so that it does
not repeat configuration data that the client is already aware of.</t>
          </dd>
          <dt>Configuration update with txid return</dt>
          <dd>
            <t>When a client issues a transaction towards a server, it may be
interested to also learn the new txid meta data the server
has stored for the updated parts of the configuration.</t>
          </dd>
          <dt>Conditional configuration change</dt>
          <dd>
            <t>When a client issues a transaction towards a server, it may specify
txid meta data for the transaction in order to allow the server to
verify that the client is up to date with any changes in the parts of
the configuration that it is concerned with.  If the txid
meta data in the server is different than the client expected, the
server rejects the transaction with a specific error message.</t>
          </dd>
          <dt>Subscribe to configuration changes with txid return</dt>
          <dd>
            <t>When a client subscribes to configuration change updates through
YANG-Push, it may be interested to also learn the the updated txid
meta data for the changed data trees.</t>
          </dd>
        </dl>
      </section>
      <section anchor="general-txid-principles">
        <name>General Txid Principles</name>
        <t>All servers implementing a txid mechanism MUST maintain a top level
server side txid meta data value for each configuration datastore
supported by the server.  Server side txid is often abbreviated s-txid.
Txid mechanism implementations MAY also maintain txid
meta data values for nodes deeper in the YANG data tree.  The nodes
for which the server maintains txids are collectively referred to as
the "Versioned Nodes".</t>
        <t>Server implementors MAY use the YANG extension statement
ietf-netconf-txid:versioned-node to inform potential clients about
which YANG nodes the server maintains a txid value for.  Another way
to discover (a partial) set of Versioned Nodes is for a client to
request the current configuration with txids.  The returned
configuration will then have the Versioned Nodes decorated with their
txid values.</t>
        <t>Regardless of whether the server declares the Versioned Nodes or not,
the set of Versioned Nodes in the server's YANG tree MUST remain
constant, except at system redefining events, such as software upgrades
or entitlement installations or removals.</t>
        <t>The server returning txid values for the Versioned Nodes
MUST ensure the txid values are changed every time there has
been a configuration change at or below the node associated with
the txid value.  This means any update of a config true node will
result in a new txid value for all ancestor Versioned Nodes, up
to and including the datastore root itself.</t>
        <t>This also means a server MUST update the txid value for any
nodes that change as a result of a configuration change, and their
ancestors, regardless
of source, even if the changed nodes are not explicitly part
of the change payload.  An example of this is dependent data under
YANG <xref target="RFC7950"/> when- or choice-statements.</t>
        <t>The server MUST NOT change the txid value of a versioned node
unless the node itself or a child node of that node has
been changed.  The server MUST NOT change any txid values due to
changes in config false data, or any kind of metadata that the
server may maintain for YANG data tree nodes.</t>
      </section>
      <section anchor="initial-configuration-retrieval">
        <name>Initial Configuration Retrieval</name>
        <t>When a NETCONF server receives a get-config or get-data request
containing requests for txid values, it MUST, in the reply, return
txid values for all Versioned Nodes below the point requested by
the client.</t>
        <t>The exact encoding varies by mechanism, but all txid mechanisms
would have a special "txid-request" txid value (e.g. "?") which is
guaranteed to never be used as a normal txid value.  Clients MAY use
this special txid value associated with one or more nodes in the
data tree to indicate to the server that they are interested in
txid values below that point of the data tree.</t>
        <figure anchor="fig-baseline">
          <name>Initial Configuration Retrieval.  The client annotated the get-config request itself with the txid request value, which makes the server return all txid values in the entire datastore, that also fall within the requested subtree filter.  The most recent change seems to have been an update to ace R8 and R9.</name>
          <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   get-config (txid: ?)                          |
       |     acls                                        |
       |                                                 |
       |   <------------------------------------------   |
       |   data (txid: 5152)                             |
       |     acls (txid: 5152)                           |
       |       acl A1 (txid: 4711)                       |
       |         aces (txid: 4711)                       |
       |           ace R1 (txid: 4711)                   |
       |             matches ipv4 protocol 17            |
       |             actions forwarding accept           |
       |       acl A2 (txid: 5152)                       |
       |         aces (txid: 5152)                       |
       |           ace R7 (txid: 4711)                   |
       |             matches ipv4 dscp 10                |
       |             actions forwarding accept           |
       |           ace R8 (txid: 5152)                   |
       |             matches udp source-port port 22     |
       |             actions forwarding accept           |
       |           ace R9 (txid: 5152)                   |
       |             matches tcp source-port port 22     |
       |             actions forwarding accept           |
       v                                                 v
]]></artwork>
        </figure>
        <t>In the call flow examples in this document we are using a 4-digit,
monotonously increasing integer as txid.  This is convenient and
enhances readability of the examples, but does not necessarily
reflect a typical implementation.</t>
        <t>In principle, txid values are opaque strings that uniquely identify
a particular configuration state.  Servers are expected to know which
txid values it has used in the recent past, and in which order they
were assigned to configuration change transactions.  This information
is known as the server's Txid History.</t>
        <t>How many historical txid values to track is up to each server
implementor to decide, and a server MAY decide not to store any
historical txid values at all.  The more txid values in the server's
Txid History, the more efficient the client synchronization may be, as
described in the coming sections.</t>
        <t>Some server implementors may decide to use a monotonically increasing
integer as the txid value, or a timestamp.  Doing so obviously makes
it very easy for the server to determine the sequence of historical
transaction ids.</t>
        <t>Some server implementors may decide to use a completely different txid
value sequence, to the point that the sequence may appear completely
random to outside observers.  Clients MUST NOT generally assume that
servers use a txid value scheme that reveals information about the
temporal sequence of txid values.</t>
      </section>
      <section anchor="subsequent-configuration-retrieval">
        <name>Subsequent Configuration Retrieval</name>
        <t>Clients MAY request the server to return txid values in the response
by adding one or more txid values received previously in get-config or
get-data requests.  Txid values sent by a client are often abbreviated
c-txid.</t>
        <t>When a client sends in a c-txid value of a node that matches the
server's s-txid value for that Versioned Node, or matches a more recent
s-txid value in the server's Txid History,
the server prunes (does not return) that subtree from
the response.  Since the client already knows the txid for this part
of the data tree, or a txid that occurred more recently, it
is obviosuly already up to date with that part of the configuration.
Sending it again would be a waste of time and energy.</t>
        <t>The table below describes in detail how the client side (c-txid) and
server side txid (s-txid) values are determined and compared when the
server processes each data tree reply node from a get-config or
get-data request.</t>
        <t>Servers MUST process each of the config true nodes as follows:</t>
        <table>
          <name>The Txid rules for response pruning.</name>
          <thead>
            <tr>
              <th align="left">Case</th>
              <th align="left">Condition</th>
              <th align="left">Behavior</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">1. NO CLIENT TXID</td>
              <td align="left">In its request, the client did not specify a c-txid value for the current node, nor any ancestor of this node.</td>
              <td align="left">In this case, the server MUST return the current node according to the normal NETCONF specifications.  The rules below do not apply to the current node.  Any child nodes MUST also be evaluated with respect to these rules.</td>
            </tr>
            <tr>
              <td align="left">2. CLIENT ANCESTOR TXID</td>
              <td align="left">The client did not specify a c-txid value for the current node, but did specify a c-txid value for one or more ancestors of this node.</td>
              <td align="left">In this case, the current node MUST inherit the c-txid value of the closest ancestor node in the client's request that has a c-txid value.  Processing of the current node continues according to the rules below.</td>
            </tr>
            <tr>
              <td align="left">3. SERVER ANCESTOR TXID</td>
              <td align="left">The node is not a Versioned Node, i.e. the server does not maintain a s-txid value for this node.</td>
              <td align="left">In this case, the current node MUST inherit the server's s-txid value of the closest ancestor that is a Versioned Node (has a server side s-txid value).  The datastore root is always a Versioned Node.  Processing of the current node continues according to the rules below.</td>
            </tr>
            <tr>
              <td align="left">4. CLIENT TXID UP TO DATE</td>
              <td align="left">The client specified c-txid for the current node value is "up to date", i.e. it matches the server's s-txid value, or matches a s-txid value from the server's Txid History that is more recent than the server's s-txid value for this node.</td>
              <td align="left">In this case the server MUST return the node decorated with a special "txid-match" txid value (e.g. "=") to the matching node, pruning any value and child nodes.</td>
            </tr>
            <tr>
              <td align="left">5. CLIENT TXID OUT OF DATE</td>
              <td align="left">The specified c-txid is "outdated" or "unknown" to the server, i.e. it does not match the server's s-txid value for this node, nor does the client c-txid value match any s-txid value in the server's Txid History that is more recent than the server's s-txid value for this node.</td>
              <td align="left">In this case the server MUST return the current node according to the normal NETCONF specifications.  If the current node is a Versioned Node, it MUST be decorated with the s-txid value.  Any child nodes MUST also be evaluated with respect to these rules.</td>
            </tr>
          </tbody>
        </table>
        <t>For list elements, pruning child nodes means that top-level
key nodes MUST be included in the response, and other child nodes
MUST NOT be included.  For containers, child nodes MUST NOT
be included.</t>
        <t>Here follows a couple of examples of how the rules above are applied.
See <xref target="fig-baseline">the example above</xref> for the most recent server
configuration state that the client is aware of, before this happens:</t>
        <figure>
          <name>Response Pruning.  Client sends get-config request with known txid values.  Server prunes response where the c-txid matches expectations.  In this case, the server had no changes, and pruned the response at the earliest point offered by the client.</name>
          <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   get-config                                    |
       |     acls (txid: 5152)                           |
       |       acl A1 (txid: 4711)                       |
       |         aces (txid: 4711)                       |
       |       acl A2 (txid: 5152)                       |
       |         aces (txid: 5152)                       |
       |                                                 |
       |   <------------------------------------------   |
       |   data                                          |
       |     acls (txid: =)                              |
       v                                                 v
]]></artwork>
        </figure>
        <t>In this case, the server's txid-based pruning saved a substantial
amount of information that is already known by the client to be sent
to and processed by the client.</t>
        <t>In the following example someone has made a change to the
configuration on the server.  This server has chosen to implement
a Txid History with up to 5 entries.  The 5 most recently used
s-txid values on this example server are currently: 4711, 5152, 5550,
6614, 7770 (most recent).  Then a client sends this request:</t>
        <figure>
          <name>Out of band change detected.  Client sends get-config request with known txid values.  Server provides updates only where changes have happened.</name>
          <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   get-config                                    |
       |     acls (txid: 5152)                           |
       |       acl A1 (txid: 4711)                       |
       |       acl A2 (txid: 5152)                       |
       |                                                 |
       |   <------------------------------------------   |
       |   data                                          |
       |     acls (txid: 6614)                           |
       |       acl A1 (txid: =)                          |
       |       acl A2 (txid: 6614)                       |
       |         aces (txid: 6614)                       |
       |           ace R7 (txid: =)                      |
       |           ace R8 (txid: =)                      |
       |           ace R9 (txid: 6614)                   |
       |             matches tcp source-port port 830    |
       |             actions forwarding accept           |
       v                                                 v
]]></artwork>
        </figure>
        <t>In the example above, the server returns the acls container because
the client supplied c-txid value (5152) differs from the s-txid value
held by the server (6614), and 5152 is less recent in the server's
Txid History than 6614.  The client is apparently unaware of the
latest config developments in this part of the server config tree.</t>
        <t>The server prunes list entry acl A1 is because it has the same s-txid
value as the c-txid supplied by the client (4711). The server returns
the list entry acl A2 because 5152 (specified by the client) is less
recent than 6614 (held by the server).</t>
        <t>The container aces under acl A2 is returned because 5152 is less recent
than 6614. The server prunes ace R7 because the c-txid for this
node is 5152 (from acl A2), and 5152 is more recent than the closest
ancestor Versioned Node (with txid 4711).</t>
        <t>The server also prunes acl R8 because the server and client txids
exactly match (5152). Finally, acl R9 is returned because of its less
recent c-txid value given by the client (5152, on the closest ancestor
acl A2) than the s-txid held on the server (6614).</t>
        <t>In the next example, the client specifies the c-txid for a node that
the server does not maintain a s-txid for, i.e. it's not a
Versioned Node.</t>
        <figure>
          <name>Versioned Nodes.  Server lookup of dscp txid gives 4711, as closest ancestor is ace R7 with txid 4711.  Since the server's and client's txid match, the etag value is '=', and the leaf value is pruned.</name>
          <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   get-config                                    |
       |     acls                                        |
       |       acls A2                                   |
       |         aces                                    |
       |           ace R7                                |
       |             matches                             |
       |               ipv4                              |
       |                 dscp (txid: 4711)               |
       |                                                 |
       |   <------------------------------------------   |
       |   data                                          |
       |     acls                                        |
       |       acl A2                                    |
       |         aces                                    |
       |           ace R7                                |
       |             matches                             |
       |               ipv4                              |
       |                 dscp (txid: =)                  |
       v                                                 v
]]></artwork>
        </figure>
        <t>Here, the server looks up the closest ancestor node that is a
Versioned Node.  This particular server has chosen to keep a s-txid
for the list entry ace R7, but not for any of its children.  Thus
the server finds the server side s-txid value to be 4711 (from ace R7),
which matches the client's c-txid value of 4711.</t>
        <t>Servers MUST NOT ever use the special txid values, txid-match, txid-request, txid-unknown (e.g. "=", "?", "!") as actual
txid values.</t>
      </section>
      <section anchor="candidate-datastore-configuration-retrieval">
        <name>Candidate Datastore Configuration Retrieval</name>
        <t>When a client retrieves the configuration from the (or a) candidate
datastore, some of the configuration nodes may hold the same data as
the corresponding node in the running datastore.  In such cases, the
server MUST return the same s-txid value for nodes in the candidate
datastore as in the running datastore.</t>
        <t>If a node in the candidate datastore holds different data than in the
running datastore, the server has a choice of what to return.</t>
        <ul spacing="normal">
          <li>The server MAY return a txid-unknown value (e.g. "!").  This may
be convenient in servers that do not know a priori what txids will
be used in a future, possible commit of the canidate.</li>
          <li>If the txid-unknown value is not returned, the server MUST return
 the s-txid value the node will have after commit, assuming the client
 makes no further changes of the candidate datastore.  If a client
 makes further changes in the candidate datastore, the s-txid value
 MAY change.</li>
        </ul>
        <t>See the example in
<xref target="candidate-datastore-transactions">Candidate Datastore Transactions</xref>.</t>
      </section>
      <section anchor="conditional-transactions">
        <name>Conditional Transactions</name>
        <t>Conditional transactions are useful when a client is interested
to make a configuration change, being sure that relevant parts of
the server configuration have not changed since the client last
inspected it.</t>
        <t>By supplying the latest c-txid values known to the client
in its change requests (edit-config etc.), it can request the server
to reject the transaction in case any relevant changes have occurred
at the server that the client is not yet aware of.</t>
        <t>This allows a client to reliably compute and send configuration
changes to a server without either acquiring a global datastore lock
for a potentially extended period of time, or risk that a change
from another client disrupts the intent in the time window between a
read (get-config etc.) and write (edit-config etc.) operation.</t>
        <t>Clients that are also interested to know the s-txid assigned to the
modified Versioned Nodes in the model immediately in the
response could set a flag in the rpc message to request the server
to return the new s-txid with the ok message.</t>
        <figure anchor="base-edit-config">
          <name>Conditional transaction towards the Running datastore successfully executed.  As all the txid values specified by the client matched those on the server, the transaction was successfully executed.</name>
          <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   edit-config (request new txid in response)    |
       |     config (txid: 5152)                         |
       |       acls (txid: 5152)                         |
       |         acl A1 (txid: 4711)                     |
       |           aces (txid: 4711)                     |
       |             ace R1 (txid: 4711)                 |
       |               matches ipv4 protocol 6           |
       |               actions forwarding accept         |
       |                                                 |
       |   <------------------------------------------   |
       |   ok (txid: 7688)                               |
       v                                                 v
]]></artwork>
        </figure>
        <t>After the above edit-config, the client might issues a get-config to
observe the change.  It would look like this:</t>
        <figure>
          <name>The txids are updated on all Versioned Nodes that were modified themselves or have a child node that was modified.</name>
          <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   get-config                                    |
       |     acls (txid: ?)                              |
       |                                                 |
       |   <------------------------------------------   |
       |   data                                          |
       |     acls (txid: 7688)                           |
       |       acl A1 (txid: 7688)                       |
       |         aces (txid: 7688)                       |
       |           ace R1 (txid: 7688)                   |
       |             matches ipv4 protocol 6             |
       |             actions forwarding accept           |
       |       acl A2 (txid: 6614)                       |
       |         aces (txid: 6614)                       |
       |           ace R7 (txid: 4711)                   |
       |             matches ipv4 dscp 10                |
       |             actions forwarding accept           |
       |           ace R8 (txid: 5152)                   |
       |             matches udp source-port port 22     |
       |             actions forwarding accept           |
       |           ace R9 (txid: 6614)                   |
       |             matches tcp source-port port 830    |
       |             actions forwarding accept           |
       v                                                 v
]]></artwork>
        </figure>
        <t>When a client sends in a c-txid value of a node, the server MUST consider it a match if the server's s-txid value is identical to the client, or if the server's value is found earlier in the server's Txid History than the value supplied by the client.</t>
        <section anchor="error-response-on-out-of-band-change">
          <name>Error response on Out of band change</name>
          <t>If the server rejects the transaction because one or more of the
configuration s-txid value(s) differs from the client's expectation,
the server MUST return at least one rpc-error with the following
values:</t>
          <artwork><![CDATA[
   error-tag:      operation-failed
   error-type:     protocol
   error-severity: error
]]></artwork>
          <t>Additionally, the error-info tag MUST contain an sx:structure <xref target="RFC8791"/>
containing relevant details about one of the mismatching txids.
A server MAY send multiple rpc-errors when multiple txid mismatches
are detected.</t>
          <figure>
            <name>Conditional transaction that fails a txid check.  The client wishes to ensure there has been no changes to the particular acl entry it edits, and therefore sends the c-txid it knows for this part of the configuration.  Since the s-txid has changed (out of band), the server rejects the configuration change request and reports an error with details about where the mismatch was detected.</name>
            <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   edit-config                                   |
       |     config                                      |
       |       acls                                      |
       |         acl A1 (txid: 4711)                     |
       |           aces (txid: 4711)                     |
       |             ace R1 (txid: 4711)                 |
       |               matches ipv4 dscp 20              |
       |               actions forwarding accept         |
       |                                                 |
       |   <------------------------------------------   |
       |   rpc-error                                     |
       |     error-tag       operation-failed            |
       |     error-type      protocol                    |
       |     error-severity  error                       |
       |     error-info                                  |
       |       mismatch-path /acls/acl[A1]               |
       |       mismatch-etag-value 6912                  |
       v                                                 v
]]></artwork>
          </figure>
        </section>
        <section anchor="txid-history-size-consideration">
          <name>Txid History size consideration</name>
          <t>It may be tempting for a client implementor to send only the top
level c-txid value for the tree being edited.  In most cases, that
would certainly work just fine.  This is a way for the client to
request the server to go ahead with the change as long as there
has not been any changes more recent than the client provided c-txid.</t>
          <t>Here the client is sending the same change as in
<xref target="base-edit-config">the example above</xref>, but with only one top level
c-txid value.</t>
          <figure>
            <name>Conditional transaction towards the Running datastore successfully executed.  As all the c-txid values specified by the client were the same or more recent in the server's Txid History, so the transaction was successfully executed.</name>
            <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   edit-config (request new txid in response)    |
       |     config (txid: 5152)                         |
       |       acls                                      |
       |         acl A1                                  |
       |           aces                                  |
       |             ace R1                              |
       |               matches ipv4 protocol 6           |
       |               actions forwarding accept         |
       |                                                 |
       |   <------------------------------------------   |
       |   ok (txid: 7688)                               |
       v                                                 v
]]></artwork>
          </figure>
          <t>This approach works well because the top level value is inherited
down in the child nodes and the server finds this value to either
match exactly or be a more recent s-txid value in the server's Txid
History.</t>
          <t>The only caveat is that by relying on the server's Txid History being
long enough, the change could be rejected if the top level c-txid has
fallen out of the server's Txid History.  Some servers may have a
Txid History size of zero.  A client specifying a single top-level
c-txid value towards such a server would not be able to get the
transaction accepted.</t>
        </section>
      </section>
      <section anchor="candidate-datastore-transactions">
        <name>Candidate Datastore Transactions</name>
        <t>When working with the (or a) Candidate datastore, the txid validation
happens at commit time, rather than at individual edit-config or
edit-data operations.  Clients add their c-txid attributes to the
configuration payload the same way.  In case a client specifies
different c-txid values for the same element in successive edit-config
or edit-data operations, the c-txid value specified last MUST be used
by the server at commit time.</t>
        <figure>
          <name>Conditional transaction towards the Candidate datastore successfully executed.  As all the c-txid values specified by the client matched those on the server at the time of the commit, the transaction was successfully executed.  If a client issues a get-config towards the candidate datastore, the server may choose to return the special txid-unknown value (e.g. "!") or the s-txid value that would be used if the candidate was committed without further changes (when that s-txid value is known in advance by the server).</name>
          <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   edit-config (operation: merge)                |
       |     config (txid: 5152)                         |
       |       acls (txid: 5152)                         |
       |         acl A1 (txid: 4711)                     |
       |           type ipv4                             |
       |                                                 |
       |   <------------------------------------------   |
       |   ok                                            |
       |                                                 |
       |   ------------------------------------------>   |
       |   edit-config (operation: merge)                |
       |     config                                      |
       |       acls                                      |
       |         acl A1                                  |
       |           aces (txid: 4711)                     |
       |             ace R1 (txid: 4711)                 |
       |               matches ipv4 protocol 6           |
       |               actions forwarding accept         |
       |                                                 |
       |   <------------------------------------------   |
       |   ok                                            |
       |                                                 |
       |   ------------------------------------------>   |
       |   get-config                                    |
       |     config                                      |
       |       acls                                      |
       |         acl A1                                  |
       |           aces (txid: ?)                        |
       |                                                 |
       |   <------------------------------------------   |
       |     config                                      |
       |       acls                                      |
       |         acl A1                                  |
       |           aces (txid: 7688  or !)               |
       |             ace R1 (txid: 7688 or !)            |
       |               matches ipv4 protocol 6           |
       |               actions forwarding accept         |
       |             ace R2 (txid: 2219)                 |
       |               matches ipv4 dscp 21              |
       |               actions forwarding accept         |
       |                                                 |
       |   ------------------------------------------>   |
       |   commit (request new txid in response)         |
       |                                                 |
       |   <------------------------------------------   |
       |   ok (txid: 7688)                               |
       v                                                 v
]]></artwork>
        </figure>
      </section>
      <section anchor="dependencies-within-transactions">
        <name>Dependencies within Transactions</name>
        <t>YANG modules that contain when-statements referencing remote
parts of the model will cause the s-txid to change even in parts of the
data tree that were not modified directly.</t>
        <t>Let's say there is an energy-example.yang module that defines a
mechanism for clients to request the server to measure the amount of
energy that is consumed by a given access control rule.  The
energy-example module augments the access control module as follows:</t>
        <sourcecode type="yang"><![CDATA[
module energy-example {
...

  container energy {
    leaf metering-enabled {
      type boolean;
      default false;
    }
  }

  augment /acl:acls/acl:acl {
    when /energy-example:energy/energy-example:metering-enabled;
    leaf energy-tracing {
      type boolean;
      default false;
    }
    leaf energy-consumption {
      config false;
      type uint64;
      units J;
    }
  }
}
]]></sourcecode>
        <t>This means there is a system wide switch leaf metering-enabled in
energy-example which disables all energy measurements in the system when
set to false, and that there is a boolean leaf energy-tracing that
controls whether energy measurement is happening for each acl rule
individually.</t>
        <t>In this example, we have an initial configuration like this:</t>
        <figure>
          <name>Initial configuration for the energy example.  Note the energy metering-enabled leaf at the top and energy-tracing leafs under each acl.</name>
          <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   get-config                                    |
       |     energy (txid: ?)                            |
       |     acls (txid: ?)                              |
       |                                                 |
       |   <------------------------------------------   |
       |   data (txid: 7688)                             |
       |     energy metering-enabled true (txid: 4711)   |
       |     acls (txid: 7688)                           |
       |       acl A1 (txid: 7688)                       |
       |         energy-tracing false                    |
       |         aces (txid: 7688)                       |
       |           ace R1 (txid: 7688)                   |
       |             matches ipv4 protocol 6             |
       |             actions forwarding accept           |
       |       acl A2 (txid: 6614)                       |
       |         energy-tracing true                     |
       |         aces (txid: 6614)                       |
       |           ace R7 (txid: 4711)                   |
       |             matches ipv4 dscp 10                |
       |             actions forwarding accept           |
       |           ace R8 (txid: 5152)                   |
       |             matches udp source-port port 22     |
       |             actions forwarding accept           |
       |           ace R9 (txid: 6614)                   |
       |             matches tcp source-port port 830    |
       |             actions forwarding accept           |
       v                                                 v
]]></artwork>
        </figure>
        <t>At this point, a client updates metering-enabled to false.  This causes
the when-expression on energy-tracing to turn false, removing the leaf
entirely.  This counts as a configuration change, and the s-txid MUST
be updated appropriately.</t>
        <figure>
          <name>Transaction changing a single leaf.  This leaf is the target of a when-statement, however, which means other leafs elsewhere may be indirectly modified by this change.  Such indirect changes will also result in s-txid changes.</name>
          <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   edit-config (request new txid in response)    |
       |     config                                      |
       |       energy metering-enabled false             |
       |                                                 |
       |   <------------------------------------------   |
       |   ok (txid: 9118)                               |
       v                                                 v
]]></artwork>
        </figure>
        <t>After the transaction above, the new configuration state has the
energy-tracing leafs removed.  Every such removal or (re)introduction
of a node counts as a configuration change from a txid perspective,
regardless of whether the change has any net configuration change
effect in the server.</t>
        <figure>
          <name>The txid for the energy subtree has changed since that was the target of the edit-config.  The txids of the ACLs have also changed since the energy-tracing leafs are now removed by the now false when-expression.  Both acl A1 and acl A2 have their txids updated, even though energy-tracing was already false for acl A1.</name>
          <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   get-config                                    |
       |     energy (txid: ?)                            |
       |     acls (txid: ?)                              |
       |                                                 |
       |   <------------------------------------------   |
       |   data (txid: 9118)                             |
       |     energy metering-enabled false (txid: 9118)  |
       |     acls (txid: 9118)                           |
       |       acl A1 (txid: 9118)                       |
       |         aces (txid: 7688)                       |
       |           ace R1 (txid: 7688)                   |
       |             matches ipv4 protocol 6             |
       |             actions forwarding accept           |
       |       acl A2 (txid: 9118)                       |
       |         aces (txid: 6614)                       |
       |           ace R7 (txid: 4711)                   |
       |             matches ipv4 dscp 10                |
       |             actions forwarding accept           |
       |           ace R8 (txid: 5152)                   |
       |             matches udp source-port port 22     |
       |             actions forwarding accept           |
       |           ace R9 (txid: 6614)                   |
       |             matches tcp source-port port 830    |
       |             actions forwarding accept           |
       v                                                 v
]]></artwork>
        </figure>
      </section>
      <section anchor="other-netconf-operations">
        <name>Other NETCONF Operations</name>
        <dl>
          <dt>discard-changes</dt>
          <dd>
            <t>The discard-changes operation resets the candidate datastore to the
contents of the running datastore.  The server MUST ensure the
txid values in the candidate datastore get the same txid values
as in the running datastore when this operation runs.</t>
          </dd>
          <dt>copy-config</dt>
          <dd>
            <t>The copy-config operation can be used to copy contents between
datastores.  The server MUST ensure the txid values are retained
and changed as if the data being copied had been sent in through an
edit-config operation.</t>
          </dd>
          <dt>delete-config</dt>
          <dd>
            <t>The server MUST ensure the datastore txid value is changed, unless it
was already empty.</t>
          </dd>
          <dt>commit</dt>
          <dd>
            <t>At commit, with regards to the txid values, the server MUST
treat the contents of the candidate datastore as if any txid
value provided by the client when updating the candidate was provided
in a single edit-config towards the running datastore.  If the
transaction is rejected due to txid value mismatch,
an rpc-error as described in section
<xref target="conditional-transactions">Conditional Transactions</xref> MUST be sent.</t>
          </dd>
        </dl>
      </section>
      <section anchor="yang-push-subscriptions">
        <name>YANG-Push Subscriptions</name>
        <t>A client issuing a YANG-Push establish-subscription or
modify-subscription request towards a server that supports
ietf-netconf-txid-yang-push.yang MAY request that the server
provides updated txid values in YANG-Push on-change subscription
updates.</t>
        <t>This functionality pertains only to on-change updates.  This RPC may
also be invoked over RESTCONF or other protocols, and might
therefore be encoded in JSON.</t>
        <t>To request txid values (e.g. etag), the client adds a flag in the
request (e.g. with-etag).  The server then returns the txid
(e.g. etag) value in the yang-patch payload (e.g. as etag-value).</t>
        <figure>
          <name>A client requests a YANG-Push subscription for a given path with txid value included.  When the server delivers a push-change-update notification, the txid value pertaining to the entire patch is included.</name>
          <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   rpc                                           |
       |     establish-subscription                      |
       |       datastore running                         |
       |       datastore-xpath-filter /acls              |
       |       on-change                                 |
       |       with-etag true                            |
       |                                                 |
       |   <------------------------------------------   |
       |   ok                                            |
       |                                                 |
       |   <------------------------------------------   |
       |   notification                                  |
       |     eventTime 2022-04-04T06:00:24.16Z           |
       |     push-change-update                          |
       |       id 89                                     |
       |       datastore-changes                         |
       |         yang-patch                              |
       |           patch-id 0                            |
       |           edit                                  |
       |             edit-id edit1                       |
       |             operation delete                    |
       |             target /acls/acl[A1]                |
       |           edit                                  |
       |             edit-id edit2                       |
       |             operation merge                     |
       |             target /acls/acl[A2]/ace[R7]        |
       |               value                             |
       |                 matches ipv4 dscp 10            |
       |                 actions forwarding accept       |
       |           etag-value 8008                       |
       |                                                 |
       v                                                 v
]]></artwork>
        </figure>
      </section>
      <section anchor="comparing-yang-datastores">
        <name>Comparing YANG Datastores</name>
        <t>A client issuing an NMDA Datastore compare request towards a server
that supports ietf-netconf-txid-nmda-compare.yang MAY request that
the server provides updated txid values in the compare reply.
Besides NETCONF, this RPC may also be invoked over RESTCONF or other
protocols, and might therefore be encoded in JSON.</t>
        <t>To request txid values (e.g. etag), the client adds a flag in the
request (e.g. with-etag).  The server then returns the txid
(e.g. etag) value in the yang-patch payload (e.g. as etag-value).</t>
        <t>The txid value returned by the server MUST be the txid value
pertaining to the target node in the source or target datastores
that is the most recent.  If one of the datastores being
compared is not a configuration datastore, the txid in the
configuration datastore MUST be used.  If none of the datastores
being compared are a configuration datastore, then txid values
MUST NOT be returned at all.</t>
        <t>The txid to return is the one that pertains to the target node, or
in the case of delete, the closest surviving ancestor of the target
node.</t>
        <figure>
          <name>A client requests a NMDA Datastore compare for a given path with txid values included. When the server delivers the reply, the txid is included for each edit.</name>
          <artwork type="call-flow"><![CDATA[
     Client                                            Server
       |                                                 |
       |   ------------------------------------------>   |
       |   rpc                                           |
       |     compare                                     |
       |       source ds:running                         |
       |       target ds:operational                     |
       |       with-etag true                            |
       |                                                 |
       |   <------------------------------------------   |
       |   differences                                   |
       |     yang-patch                                  |
       |       patch-id 0                                |
       |       edit                                      |
       |         edit-id edit1                           |
       |         operation delete                        |
       |         target /acls/acl[A1]                    |
       |         etag-value 8008                         |
       |       edit                                      |
       |         edit-id edit2                           |
       |         operation merge                         |
       |         target /acls/acl[A2]/ace[R7]            |
       |           value                                 |
       |             matches ipv4 dscp 10                |
       |             actions forwarding accept           |
       |         etag-value 8008                         |
       |                                                 |
       v                                                 v
]]></artwork>
        </figure>
      </section>
    </section>
    <section anchor="txid-mechanisms">
      <name>Txid Mechanisms</name>
      <t>This document defines two txid mechanisms:</t>
      <ul spacing="normal">
        <li>The etag attribute txid mechanism</li>
        <li>The last-modified attribute txid mechanism</li>
      </ul>
      <t>Servers implementing this specification MUST support the etag
attribute txid mechanism and MAY support the last-modified
attribute txid mechanism.</t>
      <t>Section <xref target="netconf-txid-extension">NETCONF Txid Extension</xref> describes
the logic that governs all txid mechanisms.  This section describes
the mapping from the generic logic to specific mechanism and encoding.</t>
      <t>If a client uses more than one txid mechanism, such as both etag and
last-modified in a particular message to a server, or patricular
commit, the result is undefined.</t>
      <section anchor="the-etag-attribute-txid-mechanism">
        <name>The etag attribute txid mechanism</name>
        <t>The etag txid mechanism described in this section is centered around
a meta data XML attribute called "etag".  The etag attribute is
defined in the namespace "urn:ietf:params:xml:ns:netconf:txid:1.0".
The etag attribute is added to XML elements in the NETCONF payload
in order to indicate the txid value for the YANG node represented by
the element.</t>
        <t>NETCONF servers that support this extension MUST announce the
capability "urn:ietf:params:netconf:capability:txid:etag:1.0".</t>
        <t>The etag attribute values are opaque strings chosen freely.  They MUST
consist of ASCII printable characters (VCHAR), except that the etag
string MUST NOT contain space, backslash or double quotes. The point of
these restrictions is to make it easy to reuse implementations that
adhere to section 2.3.1 in <xref target="RFC7232"/>.  The probability
SHOULD be made very low that an etag value that has been used
historically by a server is used again by that server if the
configuration is different.</t>
        <t>It is RECOMMENDED that the same etag txid values are used across all
management interfaces (i.e. NETCONF, RESTCONF and any other the server
might implement), if it implements more than one.  It is RECOMMENDED
that the etag txid has an encoding specific suffix, especially when it
is not encoded in XML.  E.g. a response encoded in JSON might append
"+json" at the end of the etag value. This is in line with the language
in <xref target="RFC7232"/> and traditions in the HTTP world at large.</t>
        <t>The detailed rules for when to update the etag value are described in
section <xref target="general-txid-principles">General Txid Principles</xref>.  These
rules are chosen to be consistent with the ETag mechanism in
RESTCONF, <xref target="RFC8040"/>,
specifically sections 3.4.1.2, 3.4.1.3 and 3.5.2.</t>
      </section>
      <section anchor="the-last-modified-attribute-txid-mechanism">
        <name>The last-modified attribute txid mechanism</name>
        <t>The last-modified txid mechanism described in this section is
centered around a meta data XML attribute called "last-modified".
The last-modified attribute is defined in the namespace
"urn:ietf:params:xml:ns:netconf:txid:1.0".  The last-modified
attribute is added to XML elements in the NETCONF payload in
order to indicate the txid value for the YANG node represented by
the element.</t>
        <t>NETCONF servers that support this extension MUST announce the
feature last-modified defined in ietf-netconf-txid.yang.</t>
        <t>The last-modified attribute values are yang:date-and-time values as
defined in ietf-yang-types.yang, <xref target="RFC6991"/>.</t>
        <t>"2022-04-01T12:34:56.123456Z" is an example of what this time stamp
format looks like.  It is RECOMMENDED that the time stamps provided
by the server closely match the real world clock.  Servers
MUST ensure the timestamps provided are monotonously increasing for
as long as the server's operation is maintained.</t>
        <t>It is RECOMMENDED that server implementors choose the number of
digits of precision used for the fractional second timestamps
high enough so that there is no risk that multiple transactions on
the server would get the same timestamp.</t>
        <t>It is RECOMMENDED that the same last-modified txid values are used
across all management interfaces (i.e. NETCONF and any other the
server might implement), except RESTCONF.</t>
        <t>RESTCONF, as defined in
<xref target="RFC8040"/>,
is using a different format for the time stamps which is
limited to one second resolution.  Server implementors that support
the Last-Modified txid mechanism over both RESTCONF and other
management protocols are RECOMMENDED to use Last-Modified timestamps
that match the point in time referenced over RESTCONF, with the
fractional seconds part added.</t>
        <t>The detailed rules for when to update the last-modified value are
described in section
<xref target="general-txid-principles">General Txid Principles</xref>.  These rules
are chosen to be consistent with the Last-Modified mechanism in
RESTCONF, <xref target="RFC8040"/>,
specifically sections 3.4.1.1, 3.4.1.3 and 3.5.1.</t>
      </section>
      <section anchor="common-features-to-both-etag-and-last-modified-txid-mechanisms">
        <name>Common features to both etag and last-modified txid mechanisms</name>
        <t>Clients MAY add etag or last-modified attributes to zero or
more individual elements in the get-config or get-data filter, in
which case they pertain to the subtree(s) rooted at the element(s)
with the attributes.</t>
        <t>Clients MAY also add such attributes directly to the get-config or
get-data tags (e.g. if there is no filter), in which case it
pertains to the txid value of the datastore root.</t>
        <t>Clients might wish to send a txid value that is guaranteed to never
match a server constructed txid.  With both the etag and
last-modified txid mechanisms, such a txid-request value is "?".</t>
        <t>Clients MAY add etag or last-modified attributes to the payload
of edit-config or edit-data requests, in which case they indicate
the client's txid value of that element.</t>
        <t>Clients MAY request servers that also implement YANG-Push to return
configuration change subsription updates with etag or
last-modified txid attributes.  The client requests this service by
adding a with-etag or with-last-modified flag with the value 'true'
to the subscription request or yang-push configuration.  The server
MUST then return such txids on the YANG Patch edit tag and to the
child elements of the value tag.  The txid attribute on the edit tag
reflects the txid associated with the changes encoded in this edit
section, as well as parent nodes.  Later edit sections in the same
push-update or push-change-update may still supercede the txid value
for some or all of the nodes in the current edit section.</t>
        <t>Servers returning txid values in get-config, edit-config, get-data,
edit-data and commit operations MUST do so by adding etag and/or
last-modified txid attributes to the data and ok tags.  When
servers prune output due to a matching txid value, the server
MUST add a txid-match attribute to the pruned element, and MUST set
the attribute value to "=", and MUST NOT send any element value.</t>
        <t>Servers returning a txid mismatch error MUST return an rpc-error
as defined in section
<xref target="conditional-transactions">Conditional Transactions</xref> with an
error-info tag containing a txid-value-mismatch-error-info
structure.</t>
        <section anchor="candidate-datastore">
          <name>Candidate Datastore</name>
          <t>When servers return txid values in get-config and get-data operations
towards the candidate datastore, the txid values returned MUST adhere
to the following rules:</t>
          <ul spacing="normal">
            <li>If the versioned node holds the same data as in the running
datastore, the same txid value as the versioned node in running
MUST be used.</li>
            <li>If the versioned node is different in the candidate store
than in the running datastore, the server has a choice of what
to return. The server MAY return the special "txid-unknown" value "!".
If the txid-unknown value is not returned, the server MUST return
the txid value the versioned node will have if the client decides to
commit the candidate datastore without further updates.</li>
          </ul>
        </section>
        <section anchor="namespaces-and-attribute-placement">
          <name>Namespaces and Attribute Placement</name>
          <t>The txid attributes are valid on the following NETCONF tags,
where xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0" <xref target="RFC4741"/> <xref target="RFC6241"/>,
xmlns:ncds="urn:ietf:params:xml:ns:yang:ietf-netconf-nmda" <xref target="RFC8526"/>,
xmlns:sn="urn:ietf:params:xml:ns:yang:ietf-subscribed-notifications" <xref target="RFC8639"/>,
xmlns:yp="urn:ietf:params:xml:ns:yang:ietf-yang-push" <xref target="RFC8641"/> and
xmlns:ypatch="urn:ietf:params:xml:ns:yang:ietf-yang-patch" <xref target="RFC8072"/>:</t>
          <t>In client messages sent to a server:</t>
          <ul spacing="normal">
            <li>/nc:rpc/nc:get-config</li>
            <li>/nc:rpc/nc:get-config/nc:filter//*</li>
            <li>/nc:rpc/ncds:get-data</li>
            <li>/nc:rpc/ncds:get-data/ncds:subtree-filter//*</li>
            <li>/nc:rpc/ncds:get-data/ncds:xpath-filter//*</li>
            <li>/nc:rpc/nc:edit-config/nc:config</li>
            <li>/nc:rpc/nc:edit-config/nc:config//*</li>
            <li>/nc:rpc/ncds:edit-data/ncds:config</li>
            <li>/nc:rpc/ncds:edit-data/ncds:config//*</li>
          </ul>
          <t>In server messages sent to a client:</t>
          <ul spacing="normal">
            <li>/nc:rpc-reply/nc:data</li>
            <li>/nc:rpc-reply/nc:data//*</li>
            <li>/nc:rpc-reply/ncds:data</li>
            <li>/nc:rpc-reply/ncds:data//*</li>
            <li>/nc:rpc-reply/nc:ok</li>
            <li>/yp:push-update/yp:datastore-contents/ypatch:yang-patch/
ypatch:edit</li>
            <li>/yp:push-update/yp:datastore-contents/ypatch:yang-patch/
ypatch:edit/ypatch:value//*</li>
            <li>/yp:push-change-update/yp:datastore-contents/ypatch:yang-patch/
ypatch:edit</li>
            <li>/yp:push-change-update/yp:datastore-contents/ypatch:yang-patch/
ypatch:edit/ypatch:value//*</li>
          </ul>
        </section>
      </section>
    </section>
    <section anchor="txid-mechanism-examples">
      <name>Txid Mechanism Examples</name>
      <section anchor="initial-configuration-response">
        <name>Initial Configuration Response</name>
        <section anchor="with-etag">
          <name>With etag</name>
          <t>NOTE: In the etag examples below, we have chosen to use a txid
value consisting of "nc" followed by a monotonously increasing
integer.  This is convenient for the reader trying to make sense
of the examples, but is not an implementation requirement.  An
etag would often be implemented as a "random" string of characters.</t>
          <t>To retrieve etag attributes across the entire NETCONF server
configuration, a client might send:</t>
          <sourcecode type="xml"><![CDATA[
<rpc xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="1"
     xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <get-config txid:etag="?"/>
</rpc>
]]></sourcecode>
          <t>The server's reply might then be:</t>
          <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="1"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <data txid:etag="nc5152">
    <acls xmlns=
            "urn:ietf:params:xml:ns:yang:ietf-access-control-list"
          txid:etag="nc5152">
      <acl txid:etag="nc4711">
        <name>A1</name>
        <aces txid:etag="nc4711">
          <ace txid:etag="nc4711">
            <name>R1</name>
            <matches>
              <ipv4>
                <protocol>17</protocol>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
      <acl txid:etag="nc5152">
        <name>A2</name>
        <aces txid:etag="nc5152">
          <ace txid:etag="nc4711">
            <name>R7</name>
            <matches>
              <ipv4>
                <dscp>10</dscp>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
          <ace txid:etag="nc5152">
            <name>R8</name>
            <matches>
              <udp>
                <source-port>
                  <port>22</port>
                </source-port>
              </udp>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
          <ace txid:etag="nc5152">
            <name>R9</name>
            <matches>
              <tcp>
                <source-port>
                  <port>22</port>
                </source-port>
              </tcp>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
    </acls>
    <nacm xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-acm"
          txid:etag="nc3072">
      <groups txid:etag="nc3072">
        <group txid:etag="nc3072">
          <name>admin</name>
          <user-name>sakura</user-name>
          <user-name>joe</user-name>
        </group>
      </groups>
    </nacm>
  </data>
</rpc>
]]></sourcecode>
          <t>To retrieve etag attributes for a specific ACL using an xpath
filter, a client might send:</t>
          <sourcecode type="xml"><![CDATA[
<rpc xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="2"
     xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <get-config>
    <source>
      <running/>
    </source>
    <filter type="xpath"
      xmlns:acl=
        "urn:ietf:params:xml:ns:yang:ietf-access-control-list"
      select="/acl:acls/acl:acl[acl:name='A1']"
      txid:etag="?"/>
  </get-config>
</rpc>
]]></sourcecode>
          <t>To retrieve etag attributes for "acls", but not for "nacm",
a client might send:</t>
          <sourcecode type="xml"><![CDATA[
<rpc xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="3"
     xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <get-config>
    <source>
      <running/>
    </source>
    <filter>
      <acls
        xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list"
        txid:etag="?"/>
      <nacm xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-acm"/>
    </filter>
  </get-config>
</rpc>
]]></sourcecode>
          <t>If the server considers "acls", "acl", "aces" and "acl" to be
Versioned Nodes, the server's response to the request above
might look like:</t>
          <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="3"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <data>
    <acls xmlns=
            "urn:ietf:params:xml:ns:yang:ietf-access-control-list"
          txid:etag="nc5152">
      <acl txid:etag="nc4711">
        <name>A1</name>
        <aces txid:etag="nc4711">
          <ace txid:etag="nc4711">
            <name>R1</name>
            <matches>
              <ipv4>
                <protocol>17</protocol>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
      <acl txid:etag="nc5152">
        <name>A2</name>
        <aces txid:etag="nc5152">
          <ace txid:etag="nc4711">
            <name>R7</name>
            <matches>
              <ipv4>
                <dscp>10</dscp>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
          <ace txid:etag="nc5152">
            <name>R8</name>
            <matches>
              <udp>
                <source-port>
                  <port>22</port>
                </source-port>
              </udp>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
          <ace txid:etag="nc5152">
            <name>R9</name>
            <matches>
              <tcp>
                <source-port>
                  <port>22</port>
                </source-port>
              </tcp>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
    </acls>
    <nacm xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-acm"/>
      <groups>
        <group>
          <name>admin</name>
          <user-name>sakura</user-name>
          <user-name>joe</user-name>
        </group>
      </groups>
    </nacm>
  </data>
</rpc>
]]></sourcecode>
        </section>
        <section anchor="with-last-modified">
          <name>With last-modified</name>
          <t>To retrieve last-modified attributes for "acls", but not for "nacm",
a client might send:</t>
          <sourcecode type="xml"><![CDATA[
<rpc xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="4"
     xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <get-config>
    <source>
      <running/>
    </source>
    <filter>
      <acls
        xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list"
        txid:last-modified="?"/>
      <nacm xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-acm"/>
    </filter>
  </get-config>
</rpc>
]]></sourcecode>
          <t>If the server considers "acls", "acl", "aces" and "acl" to be
Versioned Nodes, the server's response to the request above
might look like:</t>
          <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="4"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <data>
    <acls
      xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list"
      txid:last-modified="2022-04-01T12:34:56.789012Z">
      <acl txid:last-modified="2022-03-20T16:20:11.333444Z">
        <name>A1</name>
        <aces txid:last-modified="2022-03-20T16:20:11.333444Z">
          <ace txid:last-modified="2022-03-20T16:20:11.333444Z">
            <name>R1</name>
            <matches>
              <ipv4>
                <protocol>17</protocol>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
      <acl txid:last-modified="2022-04-01T12:34:56.789012Z">
        <name>A2</name>
        <aces txid:last-modified="2022-04-01T12:34:56.789012Z">
          <ace txid:last-modified="2022-03-20T16:20:11.333444Z">
            <name>R7</name>
            <matches>
              <ipv4>
                <dscp>10</dscp>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
          <ace txid:last-modified="2022-04-01T12:34:56.789012Z">
            <name>R8</name>
            <matches>
              <udp>
                <source-port>
                  <port>22</port>
                </source-port>
              </udp>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
          <ace txid:last-modified="2022-04-01T12:34:56.789012Z">
            <name>R9</name>
            <matches>
              <tcp>
                <source-port>
                  <port>22</port>
                </source-port>
              </tcp>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
    </acls>
    <nacm xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-acm"/>
      <groups>
        <group>
          <name>admin</name>
          <user-name>sakura</user-name>
          <user-name>joe</user-name>
        </group>
      </groups>
    </nacm>
  </data>
</rpc>
]]></sourcecode>
        </section>
      </section>
      <section anchor="configuration-response-pruning">
        <name>Configuration Response Pruning</name>
        <t>A NETCONF client that already knows some txid values MAY request that
the configuration retrieval request is pruned with respect to the
client's prior knowledge.</t>
        <t>To retrieve only changes for "acls" that do not have the
last known etag txid value, a client might send:</t>
        <sourcecode type="xml"><![CDATA[
<rpc xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="6"
     xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <get-config>
    <source>
      <running/>
    </source>
    <filter>
      <acls
        xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list"
        txid:etag="nc5152">
        <acl txid:etag="nc4711">
          <name>A1</name>
          <aces txid:etag="nc4711"/>
        </acl>
        <acl txid:etag="nc5152">
          <name>A2</name>
          <aces txid:etag="nc5152"/>
        </acl>
    </filter>
  </get-config>
</rpc>
]]></sourcecode>
        <t>Assuming the NETCONF server configuration is the same as
in the previous rpc-reply example, the server's response to request
above might look like:</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="6"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <data>
    <acls
      xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list"
      txid:etag="="/>
  </data>
</rpc>
]]></sourcecode>
        <t>Or, if a configuration change has taken place under /acls since the
client was last updated, the server's response may look like:</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="6"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <data>
    <acls
      xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list"
      txid:etag="nc6614">
      <acl txid:etag="=">
        <name>A1</name>
      </acl>
      <acl txid:etag="nc6614">
        <name>A2</name>
        <aces txid:etag="nc6614">
          <ace txid:etag="nc4711">
            <name>R7</name>
            <matches>
              <ipv4>
                <dscp>10</dscp>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
          <ace txid:etag="nc5152">
            <name>R8</name>
            <matches>
              <ipv4>
                <source-port>
                  <port>22</port>
                </source-port>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
          <ace txid:etag="nc6614">
            <name>R9</name>
            <matches>
              <ipv4>
                <source-port>
                  <port>830</port>
                </source-port>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
    </acls>
  </data>
</rpc>
]]></sourcecode>
        <t>In case the client provides a txid value for a non-versioned node,
the server needs to treat the node as having the same txid value as
the closest ancestor that does have a txid value.</t>
        <sourcecode type="xml"><![CDATA[
<rpc xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="7"
     xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <get-config>
    <source>
      <running/>
    </source>
    <filter>
      <acls
        xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list">
        <acl>
          <name>A2</name>
          <aces>
            <ace>
              <name>R7</name>
              <matches>
                <ipv4>
                  <dscp txid:etag="nc4711"/>
                </ipv4>
              </matches>
            </ace>
          </aces>
        </acl>
      </acls>
    </filter>
  </get-config>
</rpc>
]]></sourcecode>
        <t>If a txid value is specified for a leaf, and the txid value matches
(i.e. is identical to the server's txid value, or found earlier in
the server's Txid History), the leaf value is pruned.</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="7"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <data>
    <acls
      xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list">
      <acl>
        <name>A2</name>
        <aces>
          <ace>
            <name>R7</name>
            <matches>
              <ipv4>
                <dscp txid:etag="="/>
              </ipv4>
            </matches>
          </ace>
        </aces>
      </acl>
    </acls>
  </data>
</rpc-reply>
]]></sourcecode>
      </section>
      <section anchor="configuration-change">
        <name>Configuration Change</name>
        <t>A client that wishes to update the ace R1 protocol to tcp might send:</t>
        <sourcecode type="xml"><![CDATA[
<rpc xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="8">
  <edit-config xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
               xmlns:ietf-netconf-txid=
                "urn:ietf:params:xml:ns:yang:ietf-netconf-txid">
    <target>
      <running/>
    </target>
    <test-option>test-then-set</test-option>
    <ietf-netconf-txid:with-etag>true</ietf-netconf-txid:with-etag>
    <config>
      <acls
        xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list"
        txid:etag="nc5152">
        <acl txid:etag="nc4711">
          <name>A1</name>
          <aces txid:etag="nc4711">
            <ace txid:etag="nc4711">
              <matches>
                <ipv4>
                  <protocol>6</protocol>
                </ipv4>
              </matches>
              <actions>
                <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                  acl:accept
                <forwarding>
              </actions>
            </ace>
          </aces>
        </acl>
      </acls>
    </config>
  </edit-config>
</rpc>
]]></sourcecode>
        <t>The server would update the protocol leaf in the running datastore,
and return an rpc-reply as follows:</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="8"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <ok txid:etag="nc7688"/>
</rpc-reply>
]]></sourcecode>
        <t>A subsequent get-config request for "acls", with txid:etag="?" might
then return:</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="9"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <data>
    <acls
      xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list"
      txid:etag="nc7688">
      <acl txid:etag="nc7688">
        <name>A1</name>
        <aces txid:etag="nc7688">
          <ace txid:etag="nc7688">
            <name>R1</name>
            <matches>
              <ipv4>
                <protocol>6</protocol>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
      <acl txid:etag="nc6614">
        <name>A2</name>
        <aces txid:etag="nc6614">
          <ace txid:etag="nc4711">
            <name>R7</name>
            <matches>
              <ipv4>
                <dscp>10</dscp>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
          <ace txid:etag="nc5152">
            <name>R8</name>
            <matches>
              <udp>
                <source-port>
                  <port>22</port>
                </source-port>
              </udp>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
          <ace txid:etag="nc6614">
            <name>R9</name>
            <matches>
              <tcp>
                <source-port>
                  <port>830</port>
                </source-port>
              </tcp>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
    </acls>
  </data>
</rpc>
]]></sourcecode>
        <t>In case the server at this point received a configuration change from
another source, such as a CLI operator, removing ace R8 and R9 in
acl A2, a subsequent get-config request for acls, with txid:etag="?"
might then return:</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="9"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <data>
    <acls
      xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list"
      txid:etag="cli2222">
      <acl txid:etag="nc7688">
        <name>A1</name>
        <aces txid:etag="nc7688">
          <ace txid:etag="nc7688">
            <name>R1</name>
            <matches>
              <ipv4>
                <protocol>6</protocol>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
      <acl txid:etag="cli2222">
        <name>A2</name>
        <aces txid:etag="cli2222">
          <ace txid:etag="nc4711">
            <name>R7</name>
            <matches>
              <ipv4>
                <dscp>10</dscp>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
    </acls>
  </data>
</rpc>
]]></sourcecode>
      </section>
      <section anchor="conditional-configuration-change">
        <name>Conditional Configuration Change</name>
        <t>If a client wishes to delete acl A1 if and only if its configuration
has not been altered since this client last synchronized its
configuration with the server, at which point it received the etag
"nc7688" for acl A1, regardless of any possible changes to other
acls, it might send:</t>
        <sourcecode type="xml"><![CDATA[
<rpc xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="10"
     xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0"
     xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0"
     xmlns:ietf-netconf-txid=
       "urn:ietf:params:xml:ns:yang:ietf-netconf-txid">
  <edit-config>
    <target>
      <running/>
    </target>
    <test-option>test-then-set</test-option>
    <ietf-netconf-txid:with-etag>true</ietf-netconf-txid:with-etag>
    <config>
      <acls xmlns=
          "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
        <acl nc:operation="delete"
             txid:etag="nc7688">
          <name>A1</name>
        </acl>
      </acls>
    </config>
  </edit-config>
</rpc>
]]></sourcecode>
        <t>If acl A1 now has the etag txid value "nc7688", as expected by the
client, the transaction goes through, and the server responds
something like:</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="10"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <ok txid:etag="nc8008"/>
</rpc-reply>
]]></sourcecode>
        <t>A subsequent get-config request for acls, with txid:etag="?" might
then return:</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="11"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <data>
    <acls
      xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list"
      txid:etag="nc8008">
      <acl txid:etag="cli2222">
        <name>A2</name>
        <aces txid:etag="cli2222">
          <ace txid:etag="nc4711">
            <name>R7</name>
            <matches>
              <ipv4>
                <dscp>10</dscp>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
    </acls>
  </data>
</rpc>
]]></sourcecode>
        <t>In case acl A1 did not have the expected etag txid value "nc7688"
when the server processed this request, nor was the client's txid
value found later in the server's Txid History, then the server
rejects the transaction, and might send:</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:acl=
            "urn:ietf:params:xml:ns:yang:ietf-access-control-list"
           xmlns:ietf-netconf-txid=
             "urn:ietf:params:xml:ns:yang:ietf-netconf-txid"
           message-id="11">
  <rpc-error>
    <error-type>protocol</error-type>
    <error-tag>operation-failed</error-tag>
    <error-severity>error</error-severity>
    <error-info>
      <ietf-netconf-txid:txid-value-mismatch-error-info>
        <ietf-netconf-txid:mismatch-path>
          /acl:acls/acl:acl[acl:name="A1"]
        </ietf-netconf-txid:mismatch-path>
        <ietf-netconf-txid:mismatch-etag-value>
          cli6912
        </ietf-netconf-txid:mismatch-etag-value>
      </ietf-netconf-txid:txid-value-mismatch-error-info>
    </error-info>
  </rpc-error>
</rpc-reply>
]]></sourcecode>
      </section>
      <section anchor="reading-from-the-candidate-datastore">
        <name>Reading from the Candidate Datastore</name>
        <t>Let's assume that a get-config towards the running datastore
currently contains the following data and txid values:</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="12"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <data>
    <acls
      xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list"
      txid:etag="nc4711">
      <acl txid:etag="nc4711">
        <name>A1</name>
        <aces txid:etag="nc4711">
          <ace txid:etag="nc4711">
            <name>R1</name>
            <matches>
              <ipv4>
                <protocol>17</protocol>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
          <ace txid:etag="nc2219">
            <name>R2</name>
            <matches>
              <ipv4>
                <dscp>21</dscp>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
    </acls>
  </data>
</rpc-reply>
]]></sourcecode>
        <t>A client issues discard-changes (to make the candidate datastore
equal to the running datastore), and issues an edit-config to
change the R1 protocol from udp (17) to tcp (6), and then executes a
get-config with the txid-request attribute "?" set on the acl A1,
the server might respond:</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="13"
           xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
           xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <data>
    <acls
      xmlns="urn:ietf:params:xml:ns:yang:ietf-access-control-list">
      <acl txid:etag="!">
        <name>A1</name>
        <aces txid:etag="!">
          <ace txid:etag="!">
            <name>R1</name>
            <matches>
              <ipv4>
                <protocol>6</protocol>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
          <ace txid:etag="nc2219">
            <name>R2</name>
            <matches>
              <ipv4>
                <dscp>21</dscp>
              </ipv4>
            </matches>
            <actions>
              <forwarding xmlns:acl=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
                acl:accept
              <forwarding>
            </actions>
          </ace>
        </aces>
      </acl>
    </acls>
  </data>
</rpc-reply>
]]></sourcecode>
        <t>Here, the txid-unknown value "!" is sent by the server.  This
particular server implementation does not know beforehand which
txid value would be used for this versioned node after commit.
It will be a value different from the current corresponding
txid value in the running datastore.</t>
        <t>In case the server is able to predict the txid value that would
be used for the versioned node after commit, it could respond
with that value instead.  Let's say the server knows the txid
would be "7688" if the candidate datastore was committed without
further changes, then it would respond with that value in each
place where the example shows "!" above.</t>
      </section>
      <section anchor="commit">
        <name>Commit</name>
        <t>The client MAY request that the new etag txid value is returned as an
attribute on the ok response for a successful commit.  The client
requests this by adding with-etag to the commit operation.</t>
        <t>For example, a client might send:</t>
        <sourcecode type="xml"><![CDATA[
<rpc message-id="14"
    xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
    xmlns:ietf-netconf-txid=
      "urn:ietf:params:xml:ns:yang:ietf-netconf-txid"
  <commit>
    <ietf-netconf-txid:with-etag>true</ietf-netconf-txid:with-etag>
  </commit>
</rpc>
]]></sourcecode>
        <t>Assuming the server accepted the transaction, it might respond:</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply message-id="14"
    xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
    xmlns:txid="urn:ietf:params:xml:ns:netconf:txid:1.0">
  <ok txid:etag="nc8008"/>
</rpc-reply>
]]></sourcecode>
      </section>
      <section anchor="yang-push">
        <name>YANG-Push</name>
        <t>A client MAY request that the updates for one or more YANG-Push
subscriptions are annotated with the txid values.  The request might
look like this:</t>
        <sourcecode type="xml"><![CDATA[
<netconf:rpc message-id="16"
             xmlns:netconf="urn:ietf:params:xml:ns:netconf:base:1.0">
  <establish-subscription
      xmlns=
        "urn:ietf:params:xml:ns:yang:ietf-subscribed-notifications"
      xmlns:yp="urn:ietf:params:xml:ns:yang:ietf-yang-push"
      xmlns:ietf-netconf-txid-yp=
        "urn:ietf:params:xml:ns:yang:ietf-txid-yang-push">
    <yp:datastore
        xmlns:ds="urn:ietf:params:xml:ns:yang:ietf-datastores">
      ds:running
    </yp:datastore>
    <yp:datastore-xpath-filter
        xmlns:acl=
          "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
      /acl:acls
    </yp:datastore-xpath-filter>
    <yp:on-change/>
    <ietf-netconf-txid-yp:with-etag>
      true
    </ietf-netconf-txid-yp:with-etag>
  </establish-subscription>
</netconf:rpc>
]]></sourcecode>
        <t>A server might send a subscription update like this:</t>
        <sourcecode type="xml"><![CDATA[
<notification
  xmlns="urn:ietf:params:xml:ns:netconf:notification:1.0"
  xmlns:ietf-netconf-txid-yp=
    "urn:ietf:params:xml:ns:yang:ietf-netconf-txid-yang-push">
  <eventTime>2022-04-04T06:00:24.16Z</eventTime>
  <push-change-update
      xmlns="urn:ietf:params:xml:ns:yang:ietf-yang-push">
    <id>89</id>
    <datastore-changes>
      <yang-patch>
        <patch-id>0</patch-id>
        <edit>
          <edit-id>edit1</edit-id>
          <operation>delete</operation>
          <target xmlns:acl=
            "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
            /acl:acls
          </target>
          <value>
            <acl xmlns=
              "urn:ietf:params:xml:ns:yang:ietf-access-control-list">
              <name>A1</name>
            </acl>
          </value>
        </edit>
        <ietf-netconf-txid-yp:etag-value>
          nc8008
        </ietf-netconf-txid-yp:etag-value>
      </yang-patch>
    </datastore-changes>
  </push-change-update>
</notification>
]]></sourcecode>
        <t>In case a client wishes to modify a previous subscription request in
order to no longer receive YANG-Push subscription updates, the request
might look like this:</t>
        <sourcecode type="xml"><![CDATA[
<rpc message-id="17"
    xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
  <modify-subscription
      xmlns=
        "urn:ietf:params:xml:ns:yang:ietf-subscribed-notifications"
      xmlns:yp="urn:ietf:params:xml:ns:yang:ietf-yang-push"
      xmlns:ietf-netconf-txid-yp=
        "urn:ietf:params:xml:ns:yang:ietf-txid-yang-push">
    <id>1011</id>
    <yp:datastore
        xmlns:ds="urn:ietf:params:xml:ns:yang:ietf-datastores">
      ds:running
    </yp:datastore>
    <ietf-netconf-txid-yp:with-etag>
      false
    </ietf-netconf-txid-yp:with-etag>
  </modify-subscription>
</rpc>
]]></sourcecode>
      </section>
      <section anchor="nmda-compare">
        <name>NMDA Compare</name>
        <t>The following example is taken from section 5 of <xref target="RFC9144"/>.
It compares the difference between the operational and intended
datastores for a subtree under "interfaces".</t>
        <t>In this version of the example, the client requests that txid
values, in this case etag-values, are annotated to the result.</t>
        <sourcecode type="xml"><![CDATA[
<rpc message-id="101"
    xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
  <compare xmlns="urn:ietf:params:xml:ns:yang:ietf-nmda-compare"
      xmlns:ds="urn:ietf:params:xml:ns:yang:ietf-datastores"
      xmlns:ietf-netconf-txid-nmda-compare=
        "urn:ietf:params:xml:ns:yang:ietf-netconf-txid-nmda-compare">
    <source>ds:operational</source>
    <target>ds:intended</target>
    <report-origin/>
    <ietf-netconf-txid-nmda-compare:with-etag>
      true
    </ietf-netconf-txid-nmda-compare:with-etag>
    <xpath-filter
        xmlns:if="urn:ietf:params:xml:ns:yang:ietf-interfaces">
      /if:interfaces
    </xpath-filter>
  </compare>
</rpc>
]]></sourcecode>
        <t>RPC reply when a difference is detected:</t>
        <sourcecode type="xml"><![CDATA[
<rpc-reply
    xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"
    message-id="101">
  <differences
    xmlns="urn:ietf:params:xml:ns:yang:ietf-nmda-compare"
    xmlns:or="urn:ietf:params:xml:ns:yang:ietf-origin"
    xmlns:ietf-netconf-txid-nmda-compare=
      "urn:ietf:params:xml:ns:yang:ietf-netconf-txid-nmda-compare">
    <yang-patch>
      <patch-id>interface status</patch-id>
      <comment>
        diff between operational (source) and intended (target),
        with txid values taken from intended.
      </comment>
      <edit>
        <edit-id>1</edit-id>
        <operation>replace</operation>
        <target>/ietf-interfaces:interface=eth0/enabled</target>
        <value>
          <if:enabled>false</if:enabled>
        </value>
        <source-value>
          <if:enabled or:origin="or:learned">true</if:enabled>
        </source-value>
        <ietf-netconf-txid-nmda-compare:etag-value>
          4004
        </ietf-netconf-txid-nmda-compare:etag-value>
      </edit>
      <edit>
        <edit-id>2</edit-id>
        <operation>create</operation>
        <target>/ietf-interfaces:interface=eth0/description</target>
        <value>
          <if:description>ip interface</if:description>
        </value>
        <ietf-netconf-txid-nmda-compare:etag-value>
          8008
        </ietf-netconf-txid-nmda-compare:etag-value>
      </edit>
    </yang-patch>
  </differences>
</rpc-reply>
]]></sourcecode>
        <t>The same response in RESTCONF (using JSON format):</t>
        <sourcecode type="http"><![CDATA[
HTTP/1.1 200 OK
Date: Thu, 24 Jan 2019 20:56:30 GMT
Server: example-server
Content-Type: application/yang-data+json

{ "ietf-nmda-compare:output" : {
    "differences" : {
      "ietf-yang-patch:yang-patch" : {
        "patch-id" : "interface status",
        "comment" : "diff between intended (source) and operational",
        "edit" : [
          {
            "edit-id" : "1",
            "operation" : "replace",
            "target" : "/ietf-interfaces:interface=eth0/enabled",
            "value" : {
              "ietf-interfaces:interface/enabled" : "false"
            },
            "source-value" : {
              "ietf-interfaces:interface/enabled" : "true",
              "@ietf-interfaces:interface/enabled" : {
                "ietf-origin:origin" : "ietf-origin:learned"
              }
            },
            "ietf-netconf-txid-nmda-compare:etag-value": "4004"
          },
          {
            "edit-id" : "2",
            "operation" : "create",
            "target" : "/ietf-interfaces:interface=eth0/description",
            "value" : {
              "ietf-interface:interface/description" : "ip interface"
            },
            "ietf-netconf-txid-nmda-compare:etag-value": "8008"
          }
        ]
      }
    }
  }
}
]]></sourcecode>
      </section>
    </section>
    <section anchor="yang-modules">
      <name>YANG Modules</name>
      <section anchor="base-module-for-txid-in-netconf">
        <name>Base module for txid in NETCONF</name>
        <sourcecode type="yang" markers="true" name="ietf-netconf-txid@2023-03-01.yang"><![CDATA[
module ietf-netconf-txid {
  yang-version 1.1;
  namespace 
    'urn:ietf:params:xml:ns:yang:ietf-netconf-txid';
  prefix ietf-netconf-txid;

  import ietf-netconf {
    prefix nc;
  }

  import ietf-netconf-nmda {
    prefix ncds;
  }

  import ietf-yang-structure-ext {
    prefix sx;
  }

  import ietf-yang-types {
    prefix yang;
  }

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

  contact
    "WG Web:   <http://tools.ietf.org/wg/netconf/>
     WG List:  <netconf@ietf.org>

     Author:   Jan Lindblad
               <mailto:jlindbla@cisco.com>";

  description
    "NETCONF Transaction ID aware operations for NMDA.

     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-01 {
    description
      "Initial revision";
    reference
      "RFC XXXX: Xxxxxxxxx";
  }

  feature last-modified {
    description "Servers implementing this module MUST support the
      etag txid mechanism.  Servers MAY also support the 
      last-modified txid mechanism.  Support is shown by announcing
      this feature.";
  }

  extension versioned-node {
    description "This statement is used by servers to declare that a
      the server is maintaining a Txid for the YANG node with this
      statement.  Which YANG nodes are versioned nodes may be useful
      information for clients (especially during development).
      
      Servers are not required to use this statement to declare
      which nodes are versioned nodes.
      
      Example of use:

      container interfaces {
        ietf-netconf-txid:versioned-node;
        ...
      }
      ";
  }

  typedef etag-t {
    type string {
      pattern ".* .*" {
        modifier invert-match;
      }
      pattern '.*".*' {
        modifier invert-match;
      }
      pattern ".*\\.*" {
        modifier invert-match;
      }
    }
    description 
      "Unique Entity-tag txid value representing a specific 
      transaction.  Could be any string that does not contain 
      spaces, double quotes or backslash.  The txid values '?',
      '!' and '=' have special meaning.";
  }

  typedef last-modified-t {
    type union {
      type yang:date-and-time;
      type enumeration {
        enum ? {
          description "Txid value used by clients that is 
            guaranteed not to match any txid on the server.";
        }
        enum ! {
          description "Txid value used by servers to indicate 
            the node in the candidate datastore has changed
            relative the running datastore, but not yet received
            a new txid value on the server.";
        }
        enum = {
          description "Txid value used by servers to indicate 
            that contents has been pruned due to txid match
            between client and server.";
        }
      }
    }
    description
      "Last-modified txid value representing a specific transaction.
       The txid values '?', '!' and '=' have special meaning.";
  }

  grouping txid-grouping {
    leaf with-etag {
      type boolean;
      description
        "Indicates whether the client requests the server to include
         a txid:etag txid attribute when the configuration has 
         changed.";
    }
    leaf with-last-modified {
      if-feature last-modified;
      type boolean;
      description 
        "Indicates whether the client requests the server to include
         a txid:last-modified attribute when the configuration has 
         changed.";
    }
    description
      "Grouping for txid mechanisms, to be augmented into 
       rpcs that modify configuration data stores.";
  }

  grouping txid-value-grouping {
    leaf etag-value {
      type etag-t;
      description
        "Indicates server's txid value for a YANG node.";
    }
    leaf last-modified-value {
      if-feature last-modified;
      type last-modified-t;
      description
        "Indicates server's txid value for a YANG node.";
    }
    description
      "Grouping for txid mechanisms, to be augmented into 
       output of rpcs that return txid metadata for configuration
       data stores.";
  }

  augment /nc:edit-config/nc:input {
    uses txid-grouping;
    description
      "Injects the txid mechanisms into the 
      edit-config operation";
  }

  augment /nc:commit/nc:input {
    uses txid-grouping;
    description
      "Injects the txid mechanisms into the 
      commit operation";
  }

  augment /ncds:edit-data/ncds:input {
    uses txid-grouping;
    description
      "Injects the txid mechanisms into the 
      edit-data operation";
  }

  sx:structure txid-value-mismatch-error-info {
    container txid-value-mismatch-error-info {
      description
         "This error is returned by a NETCONF server when a client
          sends a configuration change request, with the additonal
          condition that the server aborts the transaction if the
          server's configuration has changed from what the client
          expects, and the configuration is found not to actually
          not match the client's expectation.";
      leaf mismatch-path {
        type instance-identifier;
        description
          "Indicates the YANG path to the element with a mismatching
           etag txid value.";
      }
      leaf mismatch-etag-value {
        type etag-t;
        description
          "Indicates server's txid value of the etag 
          attribute for one mismatching element.";
      }
      leaf mismatch-last-modified-value {
        if-feature last-modified;
        type last-modified-t;
        description
          "Indicates server's txid value of the last-modified 
          attribute for one mismatching element.";
      }
    }
  }
}
]]></sourcecode>
      </section>
      <section anchor="additional-support-for-txid-in-yang-push">
        <name>Additional support for txid in YANG-Push</name>
        <sourcecode type="yang" markers="true" name="ietf-netconf-txid-yang-push@2022-04-01.yang"><![CDATA[
module ietf-netconf-txid-yang-push {
  yang-version 1.1;
  namespace 
    'urn:ietf:params:xml:ns:yang:ietf-netconf-txid-yang-push';
  prefix ietf-netconf-txid-yp;

  import ietf-subscribed-notifications {
    prefix sn;
    reference
      "RFC 8639: Subscription to YANG Notifications";
  }

  import ietf-yang-push {
    prefix yp;
    reference
      "RFC 8641: Subscriptions to YANG Datastores";
  }

  import ietf-netconf-txid {
    prefix ietf-netconf-txid;
    reference
      "RFC XXXX: Xxxxxxxxx";
  }

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

  contact
    "WG Web:   <http://tools.ietf.org/wg/netconf/>
     WG List:  <netconf@ietf.org>

     Author:   Jan Lindblad
               <mailto:jlindbla@cisco.com>";

  description
    "NETCONF Transaction ID aware operations for YANG Push.

     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 2022-04-01 {
    description
      "Initial revision";
    reference
      "RFC XXXX: Xxxxxxxxx";
  }

  augment "/sn:establish-subscription/sn:input" {
    description
      "This augmentation adds additional subscription parameters
       that apply specifically to datastore updates to RPC input.";
    uses ietf-netconf-txid:txid-grouping;
  }
  augment "/sn:modify-subscription/sn:input" {
    description
      "This augmentation adds additional subscription parameters
       specific to datastore updates.";
    uses ietf-netconf-txid:txid-grouping;
  }
  augment "/sn:subscriptions/sn:subscription" {
    description
      "This augmentation adds additional subscription parameters
       specific to datastore updates.";
    uses ietf-netconf-txid:txid-grouping;
  }
  augment "/yp:push-change-update/yp:datastore-changes/" +
          "yp:yang-patch" {
    description
      "This augmentation makes it possible for servers to return
      txid-values.";
    uses ietf-netconf-txid:txid-value-grouping;
  }
}
]]></sourcecode>
      </section>
      <section anchor="additional-support-for-txid-in-nmda-compare">
        <name>Additional support for txid in NMDA Compare</name>
        <sourcecode type="yang" markers="true" name="ietf-netconf-txid-nmda-compare@2023-05-01.yang"><![CDATA[
module ietf-netconf-txid-nmda-compare {
  yang-version 1.1;
  namespace 
    'urn:ietf:params:xml:ns:yang:ietf-netconf-txid-nmda-compare';
  prefix ietf-netconf-txid-nmda-compare;

  import ietf-nmda-compare {
    prefix cmp;
    reference
      "RFC 9144: Comparison of Network Management Datastore 
       Architecture (NMDA) Datastores";
  }

  import ietf-netconf-txid {
    prefix ietf-netconf-txid;
    reference
      "RFC XXXX: Xxxxxxxxx";
  }

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

  contact
    "WG Web:   <http://tools.ietf.org/wg/netconf/>
     WG List:  <netconf@ietf.org>

     Author:   Jan Lindblad
               <mailto:jlindbla@cisco.com>";

  description
    "NETCONF Transaction ID aware operations for NMDA Compare.

     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-05-01 {
    description
      "Initial revision";
    reference
      "RFC XXXX: Xxxxxxxxx";
  }

  augment "/cmp:compare/cmp:input" {
    description
      "This augmentation makes it possible for clients to request
       txids to be returned.";
    uses ietf-netconf-txid:txid-grouping;
  }
  augment "/cmp:compare/cmp:output/cmp:compare-response/" +
          "cmp:differences/cmp:differences/cmp:yang-patch/cmp:edit" {
    description
      "This augmentation makes it possible for servers to return
      txid-values.";
    container most-recent {
      description "The txid value returned by the server MUST be the
        txid value pertaining to the target node in the source or 
        target datastores that is the most recent.";
      uses ietf-netconf-txid:txid-value-grouping;
    }
  }
}
]]></sourcecode>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The YANG modules specified in this document define YANG types, groupings, structures and additional RPC parameters for data that is designed to be accessed via network management protocols such as NETCONF <xref target="RFC6241"/> or RESTCONF <xref target="RFC8040"/>. The lowest NETCONF layer is the secure transport layer, and the mandatory-to-implement secure transport is Secure Shell (SSH) <xref target="RFC6242"/>. The lowest RESTCONF layer is HTTPS, and the mandatory-to-implement secure transport is TLS <xref target="RFC8446"/>.</t>
      <t>The Network Configuration Access Control Model (NACM) <xref target="RFC8341"/> provides the means to restrict access for particular NETCONF or RESTCONF users to a preconfigured subset of all available NETCONF or RESTCONF protocol operations and content.</t>
      <t>In the YANG modules published with this document, there is no configuration, state data, new RPCs or notifications.  This document defines additional XML attributes and headers, however, that merit consideration from a security perspective.</t>
      <section anchor="nacm-access-control">
        <name>NACM Access Control</name>
        <t>NACM, <xref target="RFC8341"/>, access control
processing happens as usual, independently of any txid handling, if
supported by the server and enabled by the NACM configuration.</t>
        <t>It should be pointed out however, that when txid information is added
to a reply, it may occasionally be possible for a client to deduce
that a configuration change has happened in some part of the
configuration to which it has no access rights.</t>
        <t>For example, a client may notice that the root node txid has changed
while none of the subtrees it has access to have changed, and thereby
conclude that someone else has made a change to some part of the
configuration that is not acessible by the client.</t>
        <section anchor="hash-based-txid-algorithms">
          <name>Hash-based Txid Algorithms</name>
          <t>Servers that implement NACM and choose to implement a hash-based txid
algorithm over the configuration may reveal to a client that the
configuration of a subtree that the client has no access to is the
same as it was at an earlier point in time.</t>
          <t>For example, a client with partial access to the configuration might
observe that the root node txid was 1234. After a few configuration
changes by other parties, the client may again observe that the root
node txid is 1234.  It may then deduce that the configuration is the
same as earlier, even in the parts of the configuration it has no
access to.</t>
          <t>In some use cases, this behavior may be considered a feature, since it
allows a security client to verify that the configuration is the same
as expected, without transmitting or storing the actual configuration.</t>
        </section>
      </section>
      <section anchor="unchanged-configuration">
        <name>Unchanged Configuration</name>
        <t>It will also be possible for clients to deduce that a configuration
change has not happened during some period, by simply observing that
the root node (or other subtree) txid remains unchanged.  This is
true regardless of NACM being deployed or choice of txid algorithm.</t>
        <t>Again, there may be use cases where this behavior may be considered a
feature, since it allows a security client to verify that the
configuration is the same as expected, without transmitting or storing
the actual configuration.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document registers the following capability identifier URN in
the 'Network Configuration Protocol (NETCONF) Capability URNs'
registry:</t>
      <artwork><![CDATA[
  urn:ietf:params:netconf:capability:txid:1.0
]]></artwork>
      <t>This document registers four XML namespace URNs in the 'IETF XML
registry', following the format defined in
<xref target="RFC3688"/>.</t>
      <artwork><![CDATA[
  URI: urn:ietf:params:xml:ns:netconf:txid:1.0

  URI: urn:ietf:params:xml:ns:yang:ietf-netconf-txid

  URI: urn:ietf:params:xml:ns:yang:ietf-netconf-txid-yang-push

  URI: urn:ietf:params:xml:ns:yang:ietf-netconf-txid-nmda-compare

  Registrant Contact: The IESG.

  XML: N/A, the requested URIs are XML namespaces.
]]></artwork>
      <t>This document registers three module names in the 'YANG Module Names'
registry, defined in <xref target="RFC6020"/>.</t>
      <artwork><![CDATA[
  name: ietf-netconf-txid

  prefix: ietf-netconf-txid

  namespace: urn:ietf:params:xml:ns:yang:ietf-netconf-txid

  RFC: XXXX
]]></artwork>
      <t>and</t>
      <artwork><![CDATA[
  name: ietf-netconf-txid-yp

  prefix: ietf-netconf-txid-yp

  namespace: urn:ietf:params:xml:ns:yang:ietf-netconf-txid-yang-push

  RFC: XXXX
]]></artwork>
      <t>and</t>
      <artwork><![CDATA[
  name: ietf-netconf-txid-nmda-compare

  prefix: ietf-netconf-txid-nmda-compare

  namespace:
    urn:ietf:params:xml:ns:yang:ietf-netconf-txid-nmda-compare

  RFC: XXXX
]]></artwork>
    </section>
    <section anchor="changes">
      <name>Changes</name>
      <section anchor="major-changes-in-04-since-03">
        <name>Major changes in -04 since -03</name>
        <ul spacing="normal">
          <li>Updated security considerations.</li>
          <li>Added several normative RFC references.</li>
        </ul>
      </section>
      <section anchor="major-changes-in-03-since-02">
        <name>Major changes in -03 since -02</name>
        <ul spacing="normal">
          <li>Updated language slightly regarding format of etag values, and some
recommendations for implementors that support etags in multiple management
protocols (NETCONF, RESTCONF, ...) and encodings (XML, JSON, ...).</li>
          <li>Added missing normative RFC references.</li>
          <li>Corrected the YANG-push namespace reference.</li>
        </ul>
      </section>
      <section anchor="major-changes-in-02-since-01">
        <name>Major changes in -02 since -01</name>
        <ul spacing="normal">
          <li>Added optional to implement Txid History concept in order to make
the algorithm both more efficient and less verbose.  Servers may
still choose a Txid History size of zero, which makes the server
behavior the same as in earlier versions of this document.
Implementations that use txids consisting of a monotonically
increasing integer or timestamp will be able to determine the sequnce
of transactions in the history directly, making this trivially simple
to implement.</li>
          <li>Added extension statement versioned-node, which servers may use to
declare which YANG tree nodes are Versioned Nodes.  This is entirely
optional, however, but possibly useful to client developers.</li>
          <li>Renamed YANG feature ietf-netconf-txid:txid-last-modified to
ietf-netconf-txid:last-modified in order to reduce redundant mentions
of "txid".</li>
        </ul>
      </section>
      <section anchor="major-changes-in-01-since-00">
        <name>Major changes in -01 since -00</name>
        <ul spacing="normal">
          <li>Changed YANG-push txid mechanism to use a simple leaf rather than
an attribute to convey txid information.  This is preferable since
YANG-push content may be requested using other protocols than NETCONF
and other encodings than XML.  By removing the need for XML
attributes in this context, the mechanism becomes significantly
more portable.</li>
          <li>Added a section and YANG module augmenting the RFC9144 NMDA
datastore compare operation to allow request and reply with txid
information.  This too is done with augments of plain leafs for
maximum portability.</li>
          <li>Added note clarifying that the txid attributes used in the XML
encoding are never used in JSON (since RESTCONF uses HTTP headers
instead).</li>
          <li>Added note clarifying that pruning happens when client and server
txids <em>match</em>, since the server sending information to the client
only makes sense when the information on the client is out of date.</li>
          <li>Added note clarifying that this entire document is about config
true data only.</li>
          <li>Rephrased slightly when referring to the candidate datastore to
keep making sense in the event that private candidate datastores
become a reality in the future.</li>
          <li>Added a note early on to more clearly lay out the structure of this
document, with a first part about the generic mechanism part, and a
second part about the two specific txid mechanisms.</li>
          <li>Corrected acl data model examples to conform to their YANG module.</li>
        </ul>
      </section>
      <section anchor="major-changes-in-draft-ietf-netconf-transaction-id-00-since-02">
        <name>Major changes in draft-ietf-netconf-transaction-id-00 since -02</name>
        <ul spacing="normal">
          <li>Changed the logic around how txids are handled in the candidate
datastore, both when reading (get-config, get-data) and writing
(edit-config, edit-data). Introduced a special "txid-unknown"
value "!".</li>
          <li>Changed the logic of copy-config to be similar to edit-config.</li>
          <li>Clarified how txid values interact with when-dependencies
together with default values.</li>
          <li>Added content to security considerations.</li>
          <li>Added a high-level example for YANG-Push subscriptions with txid.</li>
          <li>Updated language about error-info sent at txid mismatch in an
edit-config: error-info with mismatch details MUST be sent when
mismatch detected, and that the server can choose one of the txid
mismatch occurrences if there is more than one.</li>
          <li>Some rewording and minor additions for clarification, based
on mailing list feedback.</li>
          <li>Divided RFC references into normative and informative.</li>
          <li>Corrected a logic error in the second figure (figure 6) in the
"Conditional Transactions" section</li>
        </ul>
      </section>
      <section anchor="major-changes-in-02-since-01-1">
        <name>Major changes in -02 since -01</name>
        <ul spacing="normal">
          <li>A last-modified txid mechanism has been added (back).  This
mechanism aligns well with the Last-Modified mechanism defined in
RESTCONF <xref target="RFC8040"/>,
but is not a carbon copy.</li>
          <li>YANG-Push functionality has been added.  This allows YANG-Push
users to receive txid updates as part of the configuration updates.
This functionality comes in a separate YANG module, to allow
implementors to cleanly keep all this functionality out.</li>
          <li>Changed name of "versioned elements". They are now called
"Versioned Nodes".</li>
          <li>Clarified txid behavior for transactions toward the Candidate
datastore, and some not so common situations, such
as when a client specifies a txid for a non-versioned node, and
when there are when-statement dependencies across subtrees.</li>
          <li>Examples provided for the abstract mechanism level with simple
message flow diagrams.</li>
          <li>More examples on protocol level, and with ietf-interfaces as
example target module replaced with ietf-access-control to reduce
confusion.</li>
          <li>Explicit list of XPaths to clearly state where etag or
last-modified attributes may be added by clients and servers.</li>
          <li>Document introduction restructured to remove duplication between
sections and to allow multiple (etag and last-modified) txid
mechanisms.</li>
          <li>Moved the actual YANG module code into proper module files that
are included in the source document.  These modules can be compiled
as proper modules without any extraction tools.</li>
        </ul>
      </section>
      <section anchor="major-changes-in-01-since-00-1">
        <name>Major changes in -01 since -00</name>
        <ul spacing="normal">
          <li>Updated the text on numerous points in order to answer questions
that appeared on the mailing list.</li>
          <li>Changed the document structure into a general transaction id part
and one etag specific part.</li>
          <li>Renamed entag attribute to etag, prefix to txid, namespace to
urn:ietf:params:xml:ns:yang:ietf-netconf-txid.</li>
          <li>Set capability string to
urn:ietf:params:netconf:capability:txid:1.0</li>
          <li>Changed YANG module name, namespace and prefix to match names above.</li>
          <li>Harmonized/slightly adjusted etag value space with RFC 7232 and
RFC 8040.</li>
          <li>Removed all text discussing etag values provided by the client
(although this is still an interesting idea, if you ask the author)</li>
          <li>Clarified the etag attribute mechanism, especially when it comes to
matching against non-versioned elements, its cascading upwards in the
tree and secondary effects from when- and choice-statements.</li>
          <li>Added a mechanism for returning the server assigned etag value in
get-config and get-data.</li>
          <li>Added section describing how the NETCONF discard-changes,
copy-config, delete-config and commit operations work with respect to
etags.</li>
          <li>Added IANA Considerations section.</li>
          <li>Removed all comments about open questions.</li>
        </ul>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC4741">
          <front>
            <title>NETCONF Configuration Protocol</title>
            <author fullname="R. Enns" initials="R." role="editor" surname="Enns"/>
            <date month="December" year="2006"/>
            <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 on top of a simple Remote Procedure Call (RPC) layer. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4741"/>
          <seriesInfo name="DOI" value="10.17487/RFC4741"/>
        </reference>
        <reference anchor="RFC6241">
          <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>
        <reference anchor="RFC6242">
          <front>
            <title>Using the NETCONF Protocol over Secure Shell (SSH)</title>
            <author fullname="M. Wasserman" initials="M." surname="Wasserman"/>
            <date month="June" year="2011"/>
            <abstract>
              <t>This document describes a method for invoking and running the Network Configuration Protocol (NETCONF) within a Secure Shell (SSH) session as an SSH subsystem. This document obsoletes RFC 4742. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6242"/>
          <seriesInfo name="DOI" value="10.17487/RFC6242"/>
        </reference>
        <reference anchor="RFC6991">
          <front>
            <title>Common YANG Data Types</title>
            <author fullname="J. Schoenwaelder" initials="J." role="editor" surname="Schoenwaelder"/>
            <date month="July" year="2013"/>
            <abstract>
              <t>This document introduces a collection of common data types to be used with the YANG data modeling language. This document obsoletes RFC 6021.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6991"/>
          <seriesInfo name="DOI" value="10.17487/RFC6991"/>
        </reference>
        <reference anchor="RFC7950">
          <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>
        <reference anchor="RFC8040">
          <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>
        <reference anchor="RFC8072">
          <front>
            <title>YANG Patch Media Type</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="February" year="2017"/>
            <abstract>
              <t>This document describes a method for applying patches to configuration datastores using data defined with the YANG data modeling language.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8072"/>
          <seriesInfo name="DOI" value="10.17487/RFC8072"/>
        </reference>
        <reference anchor="RFC8341">
          <front>
            <title>Network Configuration Access Control Model</title>
            <author fullname="A. Bierman" initials="A." surname="Bierman"/>
            <author fullname="M. Bjorklund" initials="M." surname="Bjorklund"/>
            <date month="March" year="2018"/>
            <abstract>
              <t>The standardization of network configuration interfaces for use with the Network Configuration Protocol (NETCONF) or the RESTCONF protocol requires a structured and secure operating environment that promotes human usability and multi-vendor interoperability. There is a need for standard mechanisms to restrict NETCONF or RESTCONF protocol access for particular users to a preconfigured subset of all available NETCONF or RESTCONF protocol operations and content. This document defines such an access control model.</t>
              <t>This document obsoletes RFC 6536.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="91"/>
          <seriesInfo name="RFC" value="8341"/>
          <seriesInfo name="DOI" value="10.17487/RFC8341"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC8526">
          <front>
            <title>NETCONF Extensions to Support the Network Management Datastore Architecture</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="2019"/>
            <abstract>
              <t>This document extends the Network Configuration Protocol (NETCONF) defined in RFC 6241 in order to support the Network Management Datastore Architecture (NMDA) defined in RFC 8342.</t>
              <t>This document updates RFCs 6241 and 7950. The update to RFC 6241 adds new and operations and augments existing,, and operations. The update to RFC 7950 requires the usage of the YANG library (described in RFC 8525) by NETCONF servers implementing the NMDA.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8526"/>
          <seriesInfo name="DOI" value="10.17487/RFC8526"/>
        </reference>
        <reference anchor="RFC8639">
          <front>
            <title>Subscription to YANG Notifications</title>
            <author fullname="E. Voit" initials="E." surname="Voit"/>
            <author fullname="A. Clemm" initials="A." surname="Clemm"/>
            <author fullname="A. Gonzalez Prieto" initials="A." surname="Gonzalez Prieto"/>
            <author fullname="E. Nilsen-Nygaard" initials="E." surname="Nilsen-Nygaard"/>
            <author fullname="A. Tripathy" initials="A." surname="Tripathy"/>
            <date month="September" year="2019"/>
            <abstract>
              <t>This document defines a YANG data model and associated mechanisms enabling subscriber-specific subscriptions to a publisher's event streams. Applying these elements allows a subscriber to request and receive a continuous, customized feed of publisher-generated information.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8639"/>
          <seriesInfo name="DOI" value="10.17487/RFC8639"/>
        </reference>
        <reference anchor="RFC8641">
          <front>
            <title>Subscription to YANG Notifications for Datastore Updates</title>
            <author fullname="A. Clemm" initials="A." surname="Clemm"/>
            <author fullname="E. Voit" initials="E." surname="Voit"/>
            <date month="September" year="2019"/>
            <abstract>
              <t>This document describes a mechanism that allows subscriber applications to request a continuous and customized stream of updates from a YANG datastore. Providing such visibility into updates enables new capabilities based on the remote mirroring and monitoring of configuration and operational state.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8641"/>
          <seriesInfo name="DOI" value="10.17487/RFC8641"/>
        </reference>
        <reference anchor="RFC8791">
          <front>
            <title>YANG Data Structure Extensions</title>
            <author fullname="A. Bierman" initials="A." surname="Bierman"/>
            <author fullname="M. Björklund" initials="M." surname="Björklund"/>
            <author fullname="K. Watsen" initials="K." surname="Watsen"/>
            <date month="June" year="2020"/>
            <abstract>
              <t>This document describes YANG mechanisms for defining abstract data structures with YANG.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8791"/>
          <seriesInfo name="DOI" value="10.17487/RFC8791"/>
        </reference>
        <reference anchor="RFC9144">
          <front>
            <title>Comparison of Network Management Datastore Architecture (NMDA) Datastores</title>
            <author fullname="A. Clemm" initials="A." surname="Clemm"/>
            <author fullname="Y. Qu" initials="Y." surname="Qu"/>
            <author fullname="J. Tantsura" initials="J." surname="Tantsura"/>
            <author fullname="A. Bierman" initials="A." surname="Bierman"/>
            <date month="December" year="2021"/>
            <abstract>
              <t>This document defines a Remote Procedure Call (RPC) operation to compare management datastores that comply with the Network Management Datastore Architecture (NMDA).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9144"/>
          <seriesInfo name="DOI" value="10.17487/RFC9144"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC3688">
          <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>
        <reference anchor="RFC6020">
          <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>
        <reference anchor="RFC7232">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Conditional Requests</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application- level protocol for distributed, collaborative, hypertext information systems. This document defines HTTP/1.1 conditional requests, including metadata header fields for indicating state changes, request header fields for making preconditions on such state, and rules for constructing the responses to a conditional request when one or more preconditions evaluate to false.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7232"/>
          <seriesInfo name="DOI" value="10.17487/RFC7232"/>
        </reference>
        <reference anchor="RFC7952">
          <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>
      </references>
    </references>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The author wishes to thank Benoit Claise for making this work happen,
and the following individuals, who all provided helpful comments:
Per Andersson, James Cumming, Kent Watsen, Andy Bierman, Robert Wilton,
Qiufang Ma, Jason Sterne and Robert Varga.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+192XYb17Xg+/mKCvwgMhcAB9EaYEkJTcmR0pquSCe5cXv1
KqIKZFlAFVKnQArxZb6lv6A/ovvHek9nqgEEScmWFXIlFlCoM++z52EwGChd
xXnyv+JpkaejqCoXqcrmJX3S1e729sPtXVVl1RR+7B2Vca7jcZUVefTiafQq
HZ/GeaZn0aQoo9fPjg7evP6up+Lj4zI9g9dfHxy9eNpT47hKT4pyOYp0lSi9
OJ5lWkMX1XIOnb54dvSdiss0HkV/SvO0jKfqvCjfn5TFYj4ynSqVFOM8nsH7
SRlPqkGWVpNBnlbjIp8MKjetQZYMtveUmsb5yShKc/U+XUJ3yUhF0SB6kVdp
Ca0GT7ETpeYZP6+KMf2ri7Iq04nmL8sZfVZ5Uc7iKjtL8eV33x3s7uw8lI97
9/d25OO9Xf/jrvn48KF5ev/h19vy8cH2nvt437z74K7t4cHe3j3z8etd+/He
3Yf2o3v3vh3i4c7e3kipLJ/Upnz33oMHZkbbu2bs+7t3d93k4KOKF9VpUfKm
ZLkeRX8eRi+zPDmexgk8jCI+gz/Hefi4KE8AEP4Z4xGMooNMj4vocKmrdKbp
93QWZ9NR9NOUG/1xjG8Mx8VMqcFgEMXHGs5wDCci5x2Np1maVzoC0Ix0Wp6l
pY6KSZXmUZ6mCRxYdBqfpVEMp5SPT8sCBofHZ1l6Dq+p6jSVVnd0hCCSnSxK
mlyUxBU0qooy1cMoOoIXz4rpYpZCs/BNRW9mOY5BXUWzeBkdw/tpuYymcXmS
9qPz02yaen1GeCFOUh0BbGfjeDpdImhHegYf4WWYfnFMvSVRXJmXZLERTMku
hiebIbyexVM9VOpdCnckyfKTCFcH72dlMDLuVJzH0+U/zTvQ37zIdUq3Uyam
MtxT6DidTLIxDTsLbnFtCrRH0AauH2xSXik9T8fZJEupm/QDnAheZTwQc3TV
KSwN1luc69ZjrAq4lOk8PLnzrDqFnZ4txqe8W7DftLj0A8+cusC3igX0ni8V
wQHN2PYrO2HBH+YVH+P7uBsylSFD3CxLkmmq1FeIE8oiWRD2UOqveEZxFIIh
jKtPUxohy7MqA3wG7+QAayFseXhIyYJMRzzJPjyZlOk/FtDpdBkV4/GiLPG4
FnBK4xj+A1uNa4IJKxkbBp3ArYlwHdmElxKMehprOV3Y4ywfp95yAQ/qCt6f
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
W6dxZ9ABAA==

-->

</rfc>
