<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt"?>
<!DOCTYPE rfc SYSTEM 'rfc2629.dtd'>
<?rfc toc="yes"?>
<?rfc compact="no"?>
<?rfc subcompact="no"?>
<?rfc symrefs="yes" ?>
<?rfc sortrefs="yes"?>
<?rfc iprnotified="no"?>
<?rfc strict="yes"?>
<rfc ipr="trust200902"   category="std"
    docName="draft-ietf-netconf-yang-patch-12" >
    <front>
    <title abbrev="YANG Patch">YANG Patch Media Type</title>

    <author initials="A" surname="Bierman" fullname='Andy Bierman' >
      <organization>YumaWorks</organization>
      <address>
        <email>andy@yumaworks.com</email>
      </address>
    </author>
    <author initials="M" surname="Bjorklund" fullname='Martin Bjorklund' >
      <organization>Tail-f Systems</organization>
      <address>
        <email>mbj@tail-f.com</email>
      </address>
    </author>
    <author initials="K" surname="Watsen" fullname='Kent Watsen' >
      <organization>Juniper Networks</organization>
      <address>
        <email>kwatsen@juniper.net</email>
      </address>
    </author>
	<date/>
    <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>
<middle>
<section title="Introduction">
    <t>
There is a need for standard mechanisms to patch
datastores defined in <xref target="RFC6241"/>,
which contain conceptual data that conforms to
schema specified with YANG <xref target="RFC7950"/>.
An &quot;ordered edit list&quot;
approach is needed to provide RESTCONF client developers with
more precise RESTCONF client control of the edit procedure than
existing mechanisms found in <xref target="I-D.ietf-netconf-restconf"/>.
    </t>
    <t>
This document defines a media type for a YANG-based editing
mechanism that can be used with the HTTP PATCH method <xref target="RFC5789"/>.
YANG Patch is designed to support the RESTCONF protocol,
defined in <xref target="I-D.ietf-netconf-restconf"/>.
    </t>
    <t>
It may be possible to use YANG Patch with other protocols
besides RESTCONF. This is outside the scope of this document.
It may be possible to use YANG Patch with datastore
types other than a configuration datastore.
This is outside the scope of this document.
    </t>
<section title="Terminology">
    <t>
The keywords &quot;MUST&quot;, &quot;MUST NOT&quot;, &quot;REQUIRED&quot;, &quot;SHALL&quot;, &quot;SHALL NOT&quot;,
&quot;SHOULD&quot;, &quot;SHOULD NOT&quot;, &quot;RECOMMENDED&quot;, &quot;NOT RECOMMENDED&quot;, &quot;MAY&quot;, and
&quot;OPTIONAL&quot; in this document are to be interpreted as described in BCP
14, <xref target="RFC2119"/>.
    </t>
<section title="NETCONF">
    <t>
The following terms are defined in <xref target="RFC6241"/>:
    </t>
<t>
 <list style="symbols">
 <t>
configuration data
 </t>
 <t>
datastore
 </t>
 <t>
configuration datastore
 </t>
 <t>
protocol operation
 </t>
 <t>
running configuration datastore
 </t>
 <t>
state data
 </t>
 <t>
user
 </t>
 </list>
</t>
</section>
<section title="HTTP">
    <t>
The following terms are defined in <xref target="RFC7230"/>:
    </t>
<t>
 <list style="symbols">
 <t>
header field
 </t>
 <t>
message-body
 </t>
 <t>
query
 </t>
 <t>
request URI
 </t>
 </list>
</t>
    <t>
The following terms are defined in <xref target="RFC7231"/>:
    </t>
<t>
 <list style="symbols">
 <t>
method
 </t>
 <t>
request
 </t>
 <t>
resource
 </t>
 </list>
</t>
</section>
<section title="YANG">
    <t>
The following terms are defined in <xref target="RFC7950"/>:
    </t>
<t>
 <list style="symbols">
 <t>
container
 </t>
 <t>
data node
 </t>
 <t>
leaf
 </t>
 <t>
leaf-list
 </t>
 <t>
list
 </t>
 <t>
RPC operation (now called protocol operation)
 </t>
 </list>
</t>
</section>
<section title="RESTCONF">
    <t>
The following terms are defined in <xref target="I-D.ietf-netconf-restconf"/>:
    </t>
<t>
 <list style="symbols">
 <t>
application/yang-data+xml
 </t>
 <t>
application/yang-data+json
 </t>
 <t>
data resource
 </t>
 <t>
datastore resource
 </t>
 <t>
patch
 </t>
 <t>
RESTCONF capability
 </t>
 <t>
target resource
 </t>
 <t>
YANG data template
 </t>
 </list>
</t>
</section>
<section title="YANG Patch">
    <t>
The following terms are used within this document:
    </t>
<t>
 <list style="symbols">
 <t>
RESTCONF client: a client which implements the RESTCONF protocol.
 </t>
 <t>
RESTCONF server: a server which implements the RESTCONF protocol.
 </t>
 <t>
YANG Patch: a conceptual edit request using the &quot;yang&#8209;patch&quot;
YANG Patch template, defined in <xref target="module"/>.
In HTTP, refers to a PATCH method where a representation uses
either the media type &quot;application/yang&#8209;patch+xml&quot; or &quot;application/yang&#8209;patch+json&quot;.
 </t>
 <t>
YANG Patch Status: a conceptual edit status response using
the YANG &quot;yang&#8209;patch&#8209;status&quot; YANG data template, defined in <xref target="module"/>.
In HTTP, refers to a response message for a PATCH method,
where it has a representation with either the media type
&quot;application/yang&#8209;data+xml&quot; or &quot;application/yang&#8209;data+json&quot;.
 </t>
 <t>
YANG Patch template: this is similar to a YANG data template, except
it has a representation with the media type &quot;application/yang&#8209;patch+xml&quot;
or &quot;application/yang&#8209;patch+json&quot;.
 </t>
 </list>
</t>
</section>
<section title="Examples" anchor="examples">
    <t>
Some protocol message lines within examples throughout the document
are split into multiple lines for display purposes only.
When a line ends with backslash (&apos;\&apos;) as the last character,
the line is wrapped for display purposes.  It is to be
considered to be joined to the next line by deleting the
backslash, the following line break,
and the leading whitespace of the next line.
    </t>
</section>
<section title="Tree Diagram Notations">
    <t>
A simplified graphical representation of the data model is used in
this document.  The meaning of the symbols in these
diagrams is as follows:
    </t>
<t>
 <list style="symbols">
 <t>
Brackets &quot;[&quot; and &quot;]&quot; enclose list keys.
 </t>
 <t>
Abbreviations before data node names: &quot;rw&quot; means configuration
data (read-write), &quot;ro&quot; state data (read-only), and &quot;x&quot;
operation resource (executable)
 </t>
 <t>
Symbols after data node names: &quot;?&quot; means an optional node and &quot;*&quot;
denotes a &quot;list&quot; and &quot;leaf&#8209;list&quot;.
 </t>
 <t>
Parentheses enclose choice and case nodes, and case nodes are also
marked with a colon (&quot;:&quot;).
 </t>
 <t>
Ellipsis (&quot;...&quot;) stands for contents of subtrees that are not shown.
 </t>
 </list>
</t>
</section>
</section>
</section>
<section title="YANG Patch" anchor="yang-patch">
    <t>
A &quot;YANG Patch&quot; is an ordered list of edits that are applied
to the target datastore by the RESTCONF server. The specific fields
are defined in the YANG module in <xref target="module"/>.
    </t>
    <t>
The YANG Patch operation is invoked
by the RESTCONF client by sending a PATCH method request with
a representation using either the &quot;application/yang&#8209;patch+xml&quot;
or &quot;application/yang&#8209;patch+json&quot; media type. A message-body representing the
YANG Patch input parameters MUST be provided.
    </t>
    <t>
YANG Patch has some features that are not possible with
the PATCH method in RESTCONF:
    </t>
<t>
 <list style="symbols">
 <t>
YANG Patch allows multiple sub-resources to be edited at
within the same PATCH method.
 </t>
 <t>
YANG Patch allows more precise edit operations than RESTCONF.
There are 7 operations supported
(create, delete, insert, merge, move, replace, remove).
 </t>
 <t>
YANG Patch uses an edit list with an explicit processing order.
The edits are processed in client-specified order, and error
processing can be precise even when multiple errors occur
in the same patch request.
 </t>
 </list>
</t>
    <t>
The YANG Patch &quot;patch&#8209;id&quot; may be useful for debugging,
and SHOULD be present in any audit audit logging records
generated by the RESTCONF server for a patch.
    </t>
    <t>
The RESTCONF server MUST return the Accept-Patch header field
in an OPTIONS response, as specified in <xref target="RFC5789"/>,
which includes the media type for YANG Patch.
    </t>
    <t>
Note that YANG Patch can only edit data resources.
The PATCH method cannot be used to replace the datastore resource.
Although the &quot;ietf&#8209;yang&#8209;patch&quot; YANG module is written using
YANG version 1.1 <xref target="RFC7950"/>, an implementation
of YANG Patch can be used with content defined in YANG version 1 <xref target="RFC6020"/>
as well.
    </t>
    <t>
Example:
    </t>
	<figure>
	    <artwork><![CDATA[
  Accept-Patch: application/yang-patch+xml,application/yang-patch+json
	    ]]></artwork>
	</figure>
    <t>
A YANG Patch can be encoded in XML format according
to <xref target="W3C.REC-xml-20081126"/>. It can also be encoded in
JSON, according to &quot;JSON Encoding of Data Modeled with YANG&quot;
<xref target="RFC7951"/>.  If any meta-data needs to
be sent in a JSON message, it is encoded according
to &quot;Defining and Using Metadata with YANG&quot; <xref target="RFC7952"/>.
    </t>
<section title="Target Resource">
    <t>
The YANG Patch operation uses the RESTCONF target resource URI
to identify the resource that will be patched.
This can be the datastore resource itself, i.e., &quot;{+restconf}/data&quot;,
to edit top-level configuration data resources,
or it can be a configuration data resource within the
datastore resource, e.g., &quot;{+restconf}/data/ietf&#8209;interfaces:interfaces&quot;,
to edit sub-resources within a top-level configuration
data resource.
    </t>
    <t>
The target resource MUST identify exactly one resource instance.
If more than one resource instance is identified, then
the request MUST NOT be processed, and
a &quot;400 Bad Request&quot; error response MUST be sent by the server.
If the target resource does not identify any existing
resource instance then
the request MUST NOT be processed, and
a &quot;404 Not Found&quot; error response MUST be sent by the server.
    </t>
    <t>
Each edit with a YANG Patch identifies a target data node
for the associated edit. This is described in <xref target="target-data-node"/>.
    </t>
</section>
<section title="yang-patch Request">
    <t>
A YANG patch is optionally identified by a unique &quot;patch&#8209;id&quot; and it
may have an optional comment.  A patch is an ordered collection of
edits. Each edit is identified by an &quot;edit&#8209;id&quot; and it has an edit
operation (create, delete, insert, merge, move, replace, remove)
that is applied to the target resource.  Each edit can be applied
to a sub-resource &quot;target&quot; within the target resource.
If the operation is &quot;insert&quot; or &quot;move&quot;, then the &quot;where&quot;
parameter indicates how the node is inserted or moved.
For values &quot;before&quot; and &quot;after&quot;, the &quot;point&quot; parameter
specifies the data node insertion point.
    </t>
    <t>
The merge, replace, create, delete, and remove edit operations
have the exact same meaning
as defined for the &quot;operation&quot; attribute in section 7.2 of <xref target="RFC6241"/>.
    </t>
    <t>
Each edit within a YANG Patch MUST identify exactly one data
resource instance.
If an edit represents more than one resource instance, then
the request MUST NOT be processed, and
a &quot;400 Bad Request&quot; error response MUST be sent by the server.
If the edit does not identify any existing resource instance,
and the operation for the edit is not &quot;create&quot;, then
the request MUST NOT be processed, and
a &quot;404 Not Found&quot; error response MUST be sent by the server.
A &quot;yang&#8209;patch&#8209;status&quot; response MUST be sent by the server identifying
the edit(s) that are not valid.
    </t>
    <t>
YANG Patch does not provide any access to specific datastores.
It is am implementation detail how a server processes an edit
if it is co-located with a NETCONF server that does provide
access to individual datastores. A complete datastore cannot
be replaced in the same manner as provided by
the &quot;copy&#8209;config&quot; operation defined in section 7.3 of <xref target="RFC6241"/>.
Only the specified nodes in a YANG Patch are affected.
    </t>
    <t>
A message-body representing the YANG Patch is sent
by the RESTCONF client to specify the edit operation request.
When used with the HTTP PATCH method, this data is identified
by the YANG Patch media type.
    </t>
    <t>
YANG tree diagram for &quot;yang&#8209;patch&quot; Container
    </t>
	<figure>
	    <artwork><![CDATA[
  +---- yang-patch
        +---- patch-id    string
        +---- comment?    string
        +---- edit* [edit-id]
           +---- edit-id?     string
           +---- operation    enumeration
           +---- target       target-resource-offset
           +---- point?       target-resource-offset
           +---- where?       enumeration
           +---- value?
	    ]]></artwork>
	</figure>
</section>
<section title="yang-patch-status Response">
    <t>
A message-body representing the YANG Patch Status is returned
to the RESTCONF client to report the detailed status of the edit operation.
When used with the HTTP PATCH method, this data is identified
by the YANG Patch Status media type, and the syntax specification
is defined in <xref target="module"/>.
    </t>
    <t>
YANG tree diagram for &quot;yang&#8209;patch&#8209;status&quot; Container:
    </t>
	<figure>
	    <artwork><![CDATA[
  +---- yang-patch-status
        +---- patch-id?      string
        +---- (global-status)?
        |  +--:(global-errors)
        |  |  +---- errors
        |  |     +---- error*
        |  |        +---- error-type       enumeration
        |  |        +---- error-tag        string
        |  |        +---- error-app-tag?   string
        |  |        +---- error-path?      instance-identifier
        |  |        +---- error-message?   string
        |  |        +---- error-info?
        |  +--:(ok)
        |     +---- ok?            empty
        +---- edit-status
           +---- edit* [edit-id]
              +---- edit-id?   string
              +---- (edit-status-choice)?
                 +--:(ok)
                 |  +---- ok?        empty
                 +--:(errors)
                    +---- errors
                       +---- error*
                          +---- error-type       enumeration
                          +---- error-tag        string
                          +---- error-app-tag?   string
                          +---- error-path?      instance-identifier
                          +---- error-message?   string
                          +---- error-info?
	    ]]></artwork>
	</figure>
</section>
<section title="Target Data Node" anchor="target-data-node">
    <t>
The target data node for each edit operation is determined
by the value of the target resource in the request and the
&quot;target&quot; leaf within each &quot;edit&quot; entry.
    </t>
    <t>
If the target resource specified in the request URI identifies
a datastore resource, then the path string in the &quot;target&quot; leaf
is treated as an absolute path expression identifying the
target data node for the corresponding edit. The first node specified
in the &quot;target&quot; leaf is a top-level data node defined within
a YANG module. The &quot;target&quot; leaf MUST NOT contain a single
forward slash &quot;/&quot;, since this would identify the datastore resource,
not a data resource.
    </t>
    <t>
If the target resource specified in the request URI identifies
a configuration data resource, then the path string in the &quot;target&quot; leaf
is treated as a relative path expression. The first node specified
in the &quot;target&quot; leaf is a child configuration data node of
the data node associated with the target resource.
If the &quot;target&quot; leaf contains a single
forward slash &quot;/&quot;, then the target data node is
the target resource data node.
    </t>
</section>
<section title="Edit Operations">
    <t>
Each YANG patch edit specifies one edit operation on
the target data node. The set of operations is aligned
with the NETCONF edit operations, but also includes
some new operations.
    </t>
<?rfc compact="yes"?><texttable title="YANG Patch Edit Operations">
<ttcol align='left'> Operation</ttcol>
<ttcol align='left'>Description</ttcol>
<c>create</c>
<c>create a new data resource if it does not already exist or error</c>
<c>delete</c>
<c>delete a data resource if it already exists or error</c>
<c>insert</c>
<c>insert a new user-ordered data resource</c>
<c>merge</c>
<c>merge the edit value with the target data resource; create if it does not already exist</c>
<c>move</c>
<c>re-order the target data resource</c>
<c>replace</c>
<c>replace the target data resource with the edit value</c>
<c>remove</c>
<c>remove a data resource if it already exists</c>
</texttable>
<?rfc compact="no"?></section>
<section title="Successful Edit Response Handling">
    <t>
If a YANG Patch is completed without errors, the RESTCONF server SHOULD
return a &quot;yang&#8209;patch&#8209;status&quot; message.
    </t>
    <t>
The RESTCONF server will save the running datastore to non-volatile storage
if it supports non-volatile storage, and if the running datastore
contents have changed, as specified in <xref target="I-D.ietf-netconf-restconf"/>.
    </t>
    <t>
Refer to <xref target="success-example"/> for a example of a successful
YANG Patch response.
    </t>
</section>
<section title="Error Handling">
    <t>
If a well-formed, schema-valid YANG Patch message is received, then
the RESTCONF server will process the supplied edits in ascending order.
The following error modes apply to the processing of this edit list:
    </t>
    <t>
If a YANG Patch is completed with errors, the RESTCONF server SHOULD
return a &quot;yang&#8209;patch&#8209;status&quot; message.
    </t>
    <t>
Refer to <xref target="error-example"/> for a example of an error
YANG Patch response.
    </t>
</section>
<section title="yang-patch RESTCONF Capability">
    <t>
A URI is defined to identify the YANG Patch extension to
the base RESTCONF protocol.  If the RESTCONF server supports the
YANG Patch media type, then the &quot;yang&#8209;patch&quot; RESTCONF capability
defined in <xref target="capability-uri-def"/> MUST be present in the
&quot;capability&quot; leaf-list in the
&quot;ietf&#8209;restconf&#8209;monitoring&quot; module defined in <xref target="I-D.ietf-netconf-restconf"/>.
    </t>
</section>
</section>
<section title="YANG Module" anchor="module">
    <t>
The &quot;ietf&#8209;yang&#8209;patch&quot; module defines conceptual definitions
with the &apos;yang&#8209;data&apos; extension statements,
which are not meant to be implemented
as datastore contents by a RESTCONF server.
    </t>
    <t>
The &quot;ietf&#8209;restconf&quot; module from <xref target="I-D.ietf-netconf-restconf"/>
is used by this module for the &apos;yang&#8209;data&apos; extension definition.
    </t>
    <t>
RFC Ed.: update the date below with the date of RFC publication and
remove this note.
    </t>
<t>&lt;CODE BEGINS> file "ietf-yang-patch@2016-09-26.yang"</t>
	<figure>
	    <artwork><![CDATA[
module ietf-yang-patch {
  yang-version 1.1;
  namespace "urn:ietf:params:xml:ns:yang:ietf-yang-patch";
  prefix "ypatch";

  import ietf-restconf { prefix rc; }

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

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

     Author:   Andy Bierman
               <mailto:andy@yumaworks.com>

     Author:   Martin Bjorklund
               <mailto:mbj@tail-f.com>

     Author:   Kent Watsen
               <mailto:kwatsen@juniper.net>";

  description
    "This module contains conceptual YANG specifications
     for the YANG Patch and YANG Patch Status data structures.

     Note that the YANG definitions within this module do not
     represent configuration data of any kind.
     The YANG grouping statements provide a normative syntax
     for XML and JSON message encoding purposes.

     Copyright (c) 2016 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 Simplified BSD License
     set forth in Section 4.c of the IETF Trust's Legal Provisions
     Relating to IETF Documents
     (http://trustee.ietf.org/license-info).

     This version of this YANG module is part of RFC XXXX; see
     the RFC itself for full legal notices.";

  // RFC Ed.: replace XXXX with actual RFC number and remove this
  // note.

  // RFC Ed.: remove this note
  // Note: extracted from draft-ietf-netconf-yang-patch-12.txt

  // RFC Ed.: update the date below with the date of RFC publication
  // and remove this note.
  revision 2016-09-26 {
    description
      "Initial revision.";
    reference
      "RFC XXXX: YANG Patch Media Type.";
  }

  typedef target-resource-offset {
    type string;
    description
      "Contains a data resource identifier string representing
       a sub-resource within the target resource.
       The document root for this expression is the
       target resource that is specified in the
       protocol operation (e.g., the URI for the PATCH request).

       This string is encoded according the same rules as
       a data resource identifier in a RESTCONF Request URI.";

  // RFC Ed.: replace "draft-ietf-netconf-restconf" below
  // with RFC XXXX, where XXXX is the number of the RESTCONF RFC,
  // and remove this note.

    reference
       "draft-ietf-netconf-restconf, section 3.5.3";
  }

  rc:yang-data "yang-patch" {
    uses yang-patch;
  }

  rc:yang-data "yang-patch-status" {
    uses yang-patch-status;
  }

  grouping yang-patch {

    description
      "A grouping that contains a YANG container
       representing the syntax and semantics of a
       YANG Patch edit request message.";

    container yang-patch {
      description
        "Represents a conceptual sequence of datastore edits,
         called a patch. Each patch is given a client-assigned
         patch identifier. Each edit MUST be applied
         in ascending order, and all edits MUST be applied.
         If any errors occur, then the target datastore MUST NOT
         be changed by the patch operation.

         YANG datastore validation is performed before any edits
         have been applied to the running datastore.

         It is possible for a datastore constraint violation to occur
         due to any node in the datastore, including nodes not
         included in the edit list. Any validation errors MUST
         be reported in the reply message.";

      reference
        "draft-ietf-netmod-rfc6020bis, section 8.3.";

      leaf patch-id {
        type string;
        mandatory true;
        description
          "An arbitrary string provided by the client to identify
           the entire patch.  Error messages returned by the server
           pertaining to this patch will be identified by this
           patch-id value.";
      }

      leaf comment {
        type string;
        description
          "An arbitrary string provided by the client to describe
           the entire patch.  This value SHOULD be present in any
           audit logging records generated by the server for the
           patch.";
      }

      list edit {
        key edit-id;
        ordered-by user;

        description
          "Represents one edit within the YANG Patch
           request message.  The edit list is applied
           in the following manner:

             - The first edit is conceptually applied to a copy
               of the existing target datastore, e.g., the
               running configuration datastore.
             - Each ascending edit is conceptually applied to
               the result of the previous edit(s).
             - After all edits have been successfully processed,
               the result is validated according to YANG constraints.
             - If successful, the server will attempt to apply
               the result to the target datastore. ";

        leaf edit-id {
          type string;
          description
            "Arbitrary string index for the edit.
             Error messages returned by the server pertaining
             to a specific edit will be identified by this
             value.";
        }

        leaf operation {
          type enumeration {
            enum create {
              description
                "The target data node is created using the supplied
                 value, only if it does not already exist. The
                 'target' leaf identifies the data node to be created,
                 not the parent data node.";
            }
            enum delete {
              description
                "Delete the target node, only if the data resource
                 currently exists, otherwise return an error.";
            }
            enum insert {
              description
                "Insert the supplied value into a user-ordered
                 list or leaf-list entry. The target node must
                 represent a new data resource. If the 'where'
                 parameter is set to 'before' or 'after', then
                 the 'point' parameter identifies the insertion
                 point for the target node.";
            }
            enum merge {
              description
                "The supplied value is merged with the target data
                 node.";
            }
            enum move {
              description
                "Move the target node. Reorder a user-ordered
                 list or leaf-list. The target node must represent
                 an existing data resource. If the 'where' parameter
                 is set to 'before' or 'after', then the 'point'
                 parameter identifies the insertion point to move
                 the target node.";
            }
            enum replace {
              description
                "The supplied value is used to replace the target
                 data node.";
            }
            enum remove {
              description
                "Delete the target node if it currently exists.";
            }
          }
          mandatory true;
          description
            "The datastore operation requested for the associated
             edit entry";
        }

        leaf target {
          type target-resource-offset;
          mandatory true;
          description
            "Identifies the target data node for the edit
             operation. If the target has the value '/', then
             the target data node is the target resource.
             The target node MUST identify a data resource,
             not the datastore resource.";
        }

        leaf point {
          when "(../operation = 'insert' or ../operation = 'move') "
             + "and (../where = 'before' or ../where = 'after')" {
            description
              "Point leaf only applies for insert or move
               operations, before or after an existing entry.";
          }
          type target-resource-offset;
          description
            "The absolute URL path for the data node that is being
             used as the insertion point or move point for the
             target of this edit entry.";
        }

        leaf where {
          when "../operation = 'insert' or ../operation = 'move'" {
            description
              "Where leaf only applies for insert or move
               operations.";
          }
          type enumeration {
            enum before {
              description
                "Insert or move a data node before the data resource
                 identified by the 'point' parameter.";
            }
            enum after {
              description
                "Insert or move a data node after the data resource
                 identified by the 'point' parameter.";
            }
            enum first {
              description
                "Insert or move a data node so it becomes ordered
                 as the first entry.";
            }
            enum last {
              description
                "Insert or move a data node so it becomes ordered
                 as the last entry.";
            }
          }
          default last;
          description
            "Identifies where a data resource will be inserted or
             moved. YANG only allows these operations for
             list and leaf-list data nodes that are ordered-by
             user.";
        }

        anydata value {
          when "../operation = 'create' "
             + "or ../operation = 'merge' "
             + "or ../operation = 'replace' "
             + "or ../operation = 'insert'" {
            description
              "Value node only used for create, merge,
               replace, and insert operations";
          }
          description
            "Value used for this edit operation.  The anydata 'value'
             contains the target resource associated with the
             'target' leaf.

             For example, suppose the target node is a YANG container
             named foo:

                 container foo {
                   leaf a { type string; }
                   leaf b { type int32; }
                 }

             The 'value' node contains one instance of foo:

                 <value>
                    <foo xmlns='example-foo-namespace'>
                       <a>some value</a>
                       <b>42</b>
                    </foo>
                 </value>
              ";
        }
      }
    }

  } // grouping yang-patch


  grouping yang-patch-status {

    description
      "A grouping that contains a YANG container
       representing the syntax and semantics of
       YANG Patch status response message.";

    container yang-patch-status {
      description
        "A container representing the response message
         sent by the server after a YANG Patch edit
         request message has been processed.";

      leaf patch-id {
        type string;
        description
          "The patch-id value used in the request.
           If there was no patch-id present in the request
           then this field will not be present.";
      }

      choice global-status {
        description
          "Report global errors or complete success.
           If there is no case selected then errors
           are reported in the edit-status container.";

        case global-errors {
          uses rc:errors;
          description
            "This container will be present if global
             errors that are unrelated to a specific edit
             occurred.";
        }
        leaf ok {
          type empty;
          description
            "This leaf will be present if the request succeeded
             and there are no errors reported in the edit-status
             container.";
        }
      }

      container edit-status {
        description
          "This container will be present if there are
           edit-specific status responses to report.
           If all edits succeeded and the 'global-status'
           returned  is 'ok', then a server MAY omit this
           container";

        list edit {
          key edit-id;

          description
            "Represents a list of status responses,
             corresponding to edits in the YANG Patch
             request message.  If an edit entry was
             skipped or not reached by the server,
             then this list will not contain a corresponding
             entry for that edit.";

          leaf edit-id {
            type string;
             description
               "Response status is for the edit list entry
                with this edit-id value.";
          }
          choice edit-status-choice {
            description
              "A choice between different types of status
               responses for each edit entry.";
            leaf ok {
              type empty;
              description
                "This edit entry was invoked without any
                 errors detected by the server associated
                 with this edit.";
            }
            case errors {
              uses rc:errors;
              description
                "The server detected errors associated with the
                  edit identified by the same edit-id value.";
            }
          }
        }
      }
    }
  }  // grouping yang-patch-status

}
	    ]]></artwork>
	</figure>
<t>&lt;CODE ENDS></t>
</section>
<section title="IANA Considerations" anchor="iana">
<section title="YANG Module Registry">
    <t>
This document registers one URI as a namespace in the IETF XML registry
<xref target="RFC3688"/>. Following the format in RFC 3688, the following
registration is requested to be made.
    </t>
	<figure>
	    <artwork><![CDATA[
      URI: urn:ietf:params:xml:ns:yang:ietf-yang-patch
      Registrant Contact: The NETCONF WG of the IETF.
      XML: N/A, the requested URI is an XML namespace.
	    ]]></artwork>
	</figure>
    <t>
This document registers one YANG module in the YANG Module Names
registry <xref target="RFC6020"/>.
    </t>
	<figure>
	    <artwork><![CDATA[
      name:         ietf-yang-patch
      namespace:    urn:ietf:params:xml:ns:yang:ietf-yang-patch
      prefix:       ypatch
      // RFC Ed.: replace XXXX with RFC number and remove this note
      reference:    RFC XXXX
	    ]]></artwork>
	</figure>
</section>
<section title="Media Types" anchor="media-types">
<section title="Media Type application/yang-patch+xml" anchor="yang-patch-xml">
	<figure>
	    <artwork><![CDATA[
   Type name: application

   Subtype name: yang-patch

   Required parameters: None

   Optional parameters: None

  // RFC Ed.: replace 'XXXX' with the real RFC number,
  // and remove this note

   Encoding considerations: 8-bit
      Each conceptual YANG data node is encoded according to the
      XML Encoding Rules and Canonical Format for the specific
      YANG data node type defined in [RFC7950].
      In addition, the "yang-patch" YANG Patch template found
      in [RFCXXXX] defines the structure of a YANG Patch request.

  // RFC Ed.: replace 'NN' in Section NN of [RFCXXXX] with the
  // section number for Security Considerations
  // Replace 'XXXX' in Section NN of [RFCXXXX] with the actual
  // RFC number, and remove this note.

   Security considerations: Security considerations related
      to the generation and consumption of RESTCONF messages
      are discussed in Section NN of [RFCXXXX].
      Additional security considerations are specific to the
      semantics of particular YANG data models. Each YANG module
      is expected to specify security considerations for the
      YANG data defined in that module.

  // RFC Ed.: replace XXXX with actual RFC number and remove this
  // note.

   Interoperability considerations: [RFCXXXX] specifies the format
      of conforming messages and the interpretation thereof.

  // RFC Ed.: replace XXXX with actual RFC number and remove this
  // note.

   Published specification: RFC XXXX

   Applications that use this media type: Instance document
     data parsers used within a protocol or automation tool
     that utilize the YANG Patch data structure.

   Fragment identifier considerations: Fragment identifiers
      for this type are not defined.

   Additional information:

     Deprecated alias names for this type: N/A
     Magic number(s): N/A
     File extension(s): .xml
     Macintosh file type code(s): "TEXT"

  // RFC Ed.: replace XXXX with actual RFC number and remove this
  // note.

   Person & email address to contact for further information: See
      Authors' Addresses section of [RFCXXXX].

   Intended usage: COMMON

   Restrictions on usage: N/A

  // RFC Ed.: replace XXXX with actual RFC number and remove this
  // note.

   Author: See Authors' Addresses section of [RFCXXXX].

   Change controller: Internet Engineering Task Force
      (mailto:iesg&ietf.org).

   Provisional registration? (standards tree only): no
	    ]]></artwork>
	</figure>
</section>
<section title="Media Type application/yang-patch+json" anchor="yang-patch-json">
	<figure>
	    <artwork><![CDATA[
   Type name: application

   Subtype name: yang-patch+json

   Required parameters: None

   Optional parameters: None

  // RFC Ed.: replace draft-ietf-netmod-yang-json with
  // the actual RFC reference for JSON Encoding of YANG Data,
  //  and remove this note.

  // RFC Ed.: replace draft-ietf-netmod-yang-metadata with
  // the actual RFC reference for JSON Encoding of YANG Data,
  //  and remove this note.

  // RFC Ed.: replace 'XXXX' with the real RFC number,
  // and remove this note

   Encoding considerations: 8-bit
      Each conceptual YANG data node is encoded according to
      [draft-ietf-netmod-yang-json]. A data annotation is
      encoded according to [draft-ietf-netmod-yang-metadata]
      In addition, the "yang-patch" YANG Patch template found
      in [RFCXXXX] defines the structure of a YANG Patch request.

  // RFC Ed.: replace 'NN' in Section NN of [RFCXXXX] with the
  // section number for Security Considerations
  // Replace 'XXXX' in Section NN of [RFCXXXX] with the actual
  // RFC number, and remove this note.

   Security considerations: Security considerations related
      to the generation and consumption of RESTCONF messages
      are discussed in Section NN of [RFCXXXX].
      Additional security considerations are specific to the
      semantics of particular YANG data models. Each YANG module
      is expected to specify security considerations for the
      YANG data defined in that module.

  // RFC Ed.: replace XXXX with actual RFC number and remove this
  // note.

   Interoperability considerations: [RFCXXXX] specifies the format
      of conforming messages and the interpretation thereof.

  // RFC Ed.: replace XXXX with actual RFC number and remove this
  // note.

   Published specification: RFC XXXX

   Applications that use this media type: Instance document
     data parsers used within a protocol or automation tool
     that utilize the YANG Patch data structure.

   Fragment identifier considerations: The syntax and semantics
      of fragment identifiers are the same as specified for the
     "application/json" media type.

   Additional information:

     Deprecated alias names for this type: N/A
     Magic number(s): N/A
     File extension(s): .json
     Macintosh file type code(s): "TEXT"

  // RFC Ed.: replace XXXX with actual RFC number and remove this
  // note.

   Person & email address to contact for further information: See
      Authors' Addresses section of [RFCXXXX].

   Intended usage: COMMON

   Restrictions on usage: N/A

  // RFC Ed.: replace XXXX with actual RFC number and remove this
  // note.

   Author: See Authors' Addresses section of [RFCXXXX].

   Change controller: Internet Engineering Task Force
      (mailto:iesg&ietf.org).

   Provisional registration? (standards tree only): no
	    ]]></artwork>
	</figure>
</section>
</section>
<section title="RESTCONF Capability URNs" anchor="capability-uri-def">
    <t>
This document registers one capability identifier in
&quot;RESTCONF Protocol Capability URNs&quot; registry
    </t>
	<figure>
	    <artwork><![CDATA[
  Index
     Capability Identifier
  ------------------------

  :yang-patch
      urn:ietf:params:restconf:capability:yang-patch:1.0
	    ]]></artwork>
	</figure>
</section>
</section>
<section title="Security Considerations">
    <t>
The YANG Patch media type does not introduce any significant
new security threats, beyond what is described in
<xref target="I-D.ietf-netconf-restconf"/>.
This document defines edit processing instructions for a
variant of the PATCH method, as used within the RESTCONF protocol.
    </t>
    <t>
It may be possible to use YANG Patch with other protocols
besides RESTCONF, which is outside the scope of this document.
    </t>
    <t>
It is important for RESTCONF server implementations to carefully
validate all the edit request parameters in some manner.
If the entire YANG Patch request cannot be completed,
then no configuration changes to the system are done.
A PATCH request MUST be applied atomically, as specified
in section 2 of <xref target="RFC5789"/>.
    </t>
    <t>
A RESTCONF server implementation SHOULD attempt to prevent
system disruption due to partial processing of the
YANG Patch edit list.  It may be possible to construct
an attack on such a RESTCONF server, which relies on the
edit processing order mandated by YANG Patch.
    </t>
    <t>
A RESTCONF server implementation SHOULD attempt to prevent
system disruption due to excessive resource consumption
required to fulfill YANG Patch edit requests.
It may be possible to construct
an attack on such a RESTCONF server, which attempts to
consume all available memory or other resource types.
    </t>
</section>
</middle>
<back>
<references title="Normative References">

  <reference anchor="RFC2119">
    <front>
      <title>Key words for use in RFCs to Indicate Requirement Levels</title>
      <author initials="S." surname="Bradner" fullname="S.  Bradner">
        <organization>Harvard University</organization>
      </author>
      <date month="March" year="1997"/>
      <abstract>
        <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized.  This document defines these words as they should be interpreted in IETF documents.</t>
      </abstract>
    </front>
    <seriesInfo name="BCP" value="14"/>
    <seriesInfo name="RFC" value="2119"/>
    <format type="TXT" octets="4723" target="ftp://ftp.isi.edu/in-notes/rfc2119.txt"/>
  </reference>

<reference anchor="RFC7230" target="http://www.rfc-editor.org/info/rfc7230">
<front>
<title>
Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing
</title>
<author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
<organization/>
</author>
<author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
<organization/>
</author>
<date year="2014" month="June"/>
<abstract>
<t>
The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document provides an overview of HTTP architecture and its associated terminology, defines the "http" and "https" Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.
</t>
</abstract>
</front>
<seriesInfo name="RFC" value="7230"/>
<seriesInfo name="DOI" value="10.17487/RFC7230"/>
</reference>


<reference anchor='RFC7231'>

<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding'>
<organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke'>
<organization /></author>
<date year='2014' month='June' />
<abstract>
<t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t></abstract></front>

<seriesInfo name='RFC' value='7231' />
<format type='TXT' octets='235053' target='http://www.rfc-editor.org/rfc/rfc7231.txt' />
</reference>


<reference anchor="RFC3688" target="http://www.rfc-editor.org/info/rfc3688">
<front>
<title>The IETF XML Registry</title>
<author initials="M." surname="Mealling" fullname="M. Mealling">
<organization/>
</author>
<date year="2004" month="January"/>
<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="RFC5789">

<front>
<title>PATCH Method for HTTP</title>
<author initials="L." surname="Dusseault" fullname="L. Dusseault">
<organization/></author>
<author initials="J." surname="Snell" fullname="J. Snell">
<organization/></author>
<date year="2010" month="March"/>
<abstract>
<t>Several applications extending the Hypertext Transfer Protocol (HTTP) require a feature to do partial resource modification.  The existing HTTP PUT method only allows a complete replacement of a document.  This proposal adds a new HTTP method, PATCH, to modify an existing HTTP resource. [STANDARDS-TRACK]</t></abstract></front>

<seriesInfo name="RFC" value="5789"/>
<format type="TXT" octets="21706" target="http://www.rfc-editor.org/rfc/rfc5789.txt"/>
</reference>

<!--
<reference anchor='RFC5785'>
<front>
<title>Defining Well-Known Uniform Resource Identifiers (URIs)</title>
<author initials='M.' surname='Nottingham' fullname='M. Nottingham'>
<organization /></author>
<author initials='E.' surname='Hammer-Lahav' fullname='E. Hammer-Lahav'>
<organization /></author>
<date year='2010' month='April' />
<abstract>
<t>This memo defines a path prefix for "well-known locations", "/.well-known/", in selected Uniform Resource Identifier (URI) schemes. [STANDARDS-TRACK]</t></abstract></front>
<seriesInfo name='RFC' value='5785' />
<format type='TXT' octets='13779' target='http://www.rfc-editor.org/rfc/rfc5785.txt' />
</reference>
-->

  <reference anchor='RFC6241'>
      <front>
        <title>Network Configuration Protocol (NETCONF)</title>
        <author initials='R.' surname='Enns' fullname='R. Enns' role="editor">
          <organization/>
        </author>
        <author initials='M.' surname='Bjorklund' fullname='M. Bjorklund' role="editor">
          <organization/>
        </author>
        <author initials='J.' surname='Schoenwaelder' fullname='J. Schoenwaelder' role="editor">
          <organization/>
        </author>
        <author initials='A.' surname='Bierman' fullname='A. Bierman' role="editor">
          <organization/>
        </author>
        <date year='2011' month='June'/>
      </front>
      <seriesInfo name='RFC' value='6241'/>
  </reference>


  <reference anchor="RFC6020">
    <front>
      <title>YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)</title>
      <author initials="M." surname="Bjorklund" fullname="M. Bjorklund">
        <organization/>
      </author>
      <date year="2010" month="October"/>
      <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"/>
    <format type="TXT" octets="324178" target="http://www.rfc-editor.org/rfc/rfc6020.txt"/>
  </reference>

<reference anchor="RFC7950" target="http://www.rfc-editor.org/info/rfc7950">
  <front>
    <title>The YANG 1.1 Data Modeling Language</title>
    <author initials="M." surname="Bjorklund" fullname="M. Bjorklund" role="editor">
      <organization/>
    </author>
    <date year="2016" month="August"/>
    <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="RFC6536">

<front>
<title>Network Configuration Protocol (NETCONF) Access Control Model</title>
<author initials="A." surname="Bierman" fullname="A. Bierman">
<organization/></author>
<author initials="M." surname="Bjorklund" fullname="M. Bjorklund">
<organization/></author>
<date year="2012" month="March"/>
<abstract>
<t>The standardization of network configuration interfaces for use with the Network Configuration Protocol (NETCONF) 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 protocol access for particular users to a pre-configured subset of all available NETCONF protocol operations and content.  This document defines such an access control model. [STANDARDS-TRACK]</t></abstract></front>

<seriesInfo name="RFC" value="6536"/>
<format type="TXT" octets="90803" target="http://www.rfc-editor.org/rfc/rfc6536.txt"/>
</reference>
-->


<!--
<reference anchor='RFC6991'>

<front>
<title>Common YANG Data Types</title>
<author initials='J.' surname='Schoenwaelder' fullname='J. Schoenwaelder'>
<organization /></author>
<date year='2013' month='July' />
<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' />
<format type='TXT' octets='60242' target='http://www.rfc-editor.org/rfc/rfc6991.txt' />
</reference>
 -->

<reference anchor="I-D.ietf-netconf-restconf">
    <front>
      <title>RESTCONF Protocol</title>
      <author initials="A." surname="Bierman" fullname="A. Bierman">
        <organization>YumaWorks</organization>
      </author>
      <author initials="M." surname="Bjorklund" fullname="M. Bjorklund">
        <organization>Tail-f Systems</organization>
      </author>
      <author initials="K." surname="Watsen" fullname="K. Watsen">
        <organization>Juniper Networks</organization>
      </author>
      <date year="2016" month="April"/>
    </front>
    <seriesInfo name="Internet-Draft"
                value="draft-ietf-netconf-restconf-13"/>
    <format type='TXT'
    target='http://www.ietf.org/id/draft-ietf-netconf-restconf-13.txt'/>
</reference>
<!-- END RESTCONF -->


<reference anchor="RFC7951" target="http://www.rfc-editor.org/info/rfc7951">
  <front>
    <title>JSON Encoding of Data Modeled with YANG</title>
    <author initials="L." surname="Lhotka" fullname="L. Lhotka">
      <organization/>
    </author>
    <date year="2016" month="August"/>
    <abstract>
      <t>This document defines encoding rules for representing configuration data, state data, parameters of Remote Procedure Call (RPC) operations or actions, and notifications defined using YANG as JavaScript Object Notation (JSON) text.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7951"/>
  <seriesInfo name="DOI" value="10.17487/RFC7951"/>
</reference>

<reference anchor="RFC7952" target="http://www.rfc-editor.org/info/rfc7952">
  <front>
    <title>Defining and Using Metadata with YANG</title>
    <author initials="L." surname="Lhotka" fullname="L. Lhotka">
      <organization/>
    </author>
    <date year="2016" month="August"/>
    <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>

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

<reference anchor='W3C.REC-xml-20081126'
           target='http://www.w3.org/TR/2008/REC-xml-20081126'>
<front>
<title>Extensible Markup Language (XML) 1.0 (Fifth Edition)</title>

<author initials='F.' surname='Yergeau' fullname='François Yergeau'>
    <organization />
</author>

<author initials='E.' surname='Maler' fullname='Eve Maler'>
    <organization />
</author>

<author initials='J.' surname='Paoli' fullname='Jean Paoli'>
    <organization />
</author>

<author initials='C.' surname='Sperberg-McQueen' fullname='C. M. Sperberg-McQueen'>
    <organization />
</author>

<author initials='T.' surname='Bray' fullname='Tim Bray'>
    <organization />
</author>

<date month='November' day='26' year='2008' />
</front>

<seriesInfo name='World Wide Web Consortium Recommendation' value='REC-xml-20081126' />
<format type='HTML' target='http://www.w3.org/TR/2008/REC-xml-20081126' />
</reference>

</references>
<section title="Acknowledgements">
    <t>
The authors would like to thank the following people for
their contributions to this document: Rex Fernando.
    </t>
    <t>
Contributions to this material by Andy Bierman are based upon work
supported by the The Space &amp; Terrestrial Communications Directorate
(S&amp;TCD) under Contract No. W15P7T-13-C-A616. Any opinions, findings
and conclusions or recommendations expressed in this material are
those of the author(s) and do not necessarily reflect the views of
The Space &amp; Terrestrial Communications Directorate (S&amp;TCD).
    </t>
</section>
<section title="Change Log">
	<figure>
	    <artwork><![CDATA[
    -- RFC Ed.: remove this section before publication.  
	    ]]></artwork>
	</figure>
    <t>
The YANG Patch issue tracker can be found here:
https://github.com/netconf-wg/yang-patch/issues
    </t>
<section title="v11 to v12">
<t>
 <list style="symbols">
 <t>
clarify target resource must exist
 </t>
 <t>
fix errors in some examples
 </t>
 <t>
change application/yang-patch-xml to application/yang-patch+xml
 </t>
 <t>
clarified some section titles
 </t>
 <t>
clarified error responses for multiple edit instances
 </t>
 <t>
made patch-id field mandatory
 </t>
 <t>
referenced NETCONF operation attribute
 </t>
 </list>
</t>
</section>
<section title="v10 to v11">
<t>
 <list style="symbols">
 <t>
change application/yang-patch to application/yang-patch-xml
 </t>
 <t>
change server to RESTCONF server and remove NETCONF server term
 </t>
 <t>
change client to RESTCONF client and remove NETCONF client term
 </t>
 <t>
clarified that YANG 1.0 content can be used in a YANG Patch
implementation
 </t>
 <t>
clarified more terminology
 </t>
 <t>
fixed missing keys in edit examples
 </t>
 <t>
added insert list example
 </t>
 </list>
</t>
</section>
<section title="v09 to v10">
<t>
 <list style="symbols">
 <t>
change yang-patch+xml to yang-patch
 </t>
 <t>
clarify application/yang-patch+json media type
 </t>
 <t>
add edit datastore example
 </t>
 <t>
change data-resource-offset typedef so it is consistent for XML and JSON
 </t>
 </list>
</t>
</section>
<section title="v08 to v09">
<t>
 <list style="symbols">
 <t>
change RFC 7158 reference to RFC 7159 reference
 </t>
 <t>
change RFC 2616 reference to RFC 7230 reference
 </t>
 <t>
remove unused HTTP terms
 </t>
 <t>
remove import-by-revision of ietf-restconf; not needed
 </t>
 <t>
change application/yang.patch media type to application/yang-patch
 </t>
 <t>
remove application/yang.patch-status media type; use application/yang-data
instead
 </t>
 </list>
</t>
</section>
<section title="v07 to v08">
<t>
 <list style="symbols">
 <t>
clarified target datastore and target data node terms
 </t>
 <t>
clarified that target leaf can be single forward slash &apos;/&apos;
 </t>
 <t>
added Successful edit response handling section
 </t>
 <t>
clarified that YANG Patch draft is for RESTCONF protocol only
but may be defined for other protocols outside this document
 </t>
 <t>
clarified that YANG Patch draft is for configuration datastores
only but may be defined for other datastore types outside this document
 </t>
 <t>
fixed typos
 </t>
 </list>
</t>
</section>
<section title="v06 to v07">
<t>
 <list style="symbols">
 <t>
converted YANG module to YANG 1.1
 </t>
 <t>
changed anyxml value to anydata value
 </t>
 <t>
updated import revision date for ietf-restconf
 </t>
 <t>
updated revision date for ietf-yang-patch because import-by-revision date
needed to be changed
 </t>
 </list>
</t>
</section>
<section title="v05 to v06">
<t>
 <list style="symbols">
 <t>
changed errors example so a full request and error
response is shown in XML format
 </t>
 <t>
fixed error-path to match instance-identifier encoding
for both XML and JSON
 </t>
 <t>
added references for YANG to JSON and YANG Metadata drafts
 </t>
 <t>
clarified that YANG JSON drafts are used for encoding, not plain JSON
 </t>
 </list>
</t>
</section>
<section title="v04 to v05">
<t>
 <list style="symbols">
 <t>
updated reference to RESTCONF
 </t>
 </list>
</t>
</section>
<section title="v03 to v04">
<t>
 <list style="symbols">
 <t>
removed NETCONF specific text
 </t>
 <t>
changed data-resource-offset typedef from a relative URI
to an XPath absolute path expression
 </t>
 <t>
clarified insert operation
 </t>
 <t>
removed requirement that edits MUST be applied in ascending order
 </t>
 <t>
change SHOULD keep datastore unchanged on error
to MUST (this is required by HTTP PATCH)
 </t>
 <t>
removed length restriction on &apos;comment&apos; leaf
 </t>
 <t>
updated YANG tree for example-jukebox library
 </t>
 </list>
</t>
</section>
<section title="v02 to v03">
<t>
 <list style="symbols">
 <t>
added usage of restconf-media-type extension to map
the yang-patch and yang-patch-status groupings
to media types
 </t>
 <t>
added yang-patch RESTCONF capability URI
 </t>
 <t>
Added sub-section for terms used from RESTCONF
 </t>
 <t>
filled in security considerations section
 </t>
 </list>
</t>
</section>
<section title="v01 to v02">
<t>
 <list style="symbols">
 <t>
Reversed order of change log
 </t>
 <t>
Clarified anyxml structure of &quot;value&quot; parameter within
a YANG patch request (github issue #1)
 </t>
 <t>
Updated RESTCONF reference
 </t>
 <t>
Added note to open issues section to check github instead
 </t>
 </list>
</t>
</section>
<section title="v00 to v01">
<t>
 <list style="symbols">
 <t>
Added text requiring support for Accept-Patch header field,
and removed &apos;Identification of YANG Patch capabilities&apos; open
issue.
 </t>
 <t>
Removed &apos;location&apos; leaf from yang-patch-status grouping
 </t>
 <t>
Removed open issue &apos;Protocol independence&apos; because the
location leaf was removed.
 </t>
 <t>
Removed open issue &apos;RESTCONF coupling&apos; because there is no
concern about a normative reference to RESTCONF.
There may need to be a YANG 1.1 mechanism to allow protocol
template usage (instead of grouping wrapper).
 </t>
 <t>
Removed open issue &apos;Is the delete operation needed&apos;.
It was decided that both delete and remove should remain
as operations and clients can choose which one to use.
This is not an implementation burden on the server.
 </t>
 <t>
Removed open issue &apos;global-errors needed&apos;.
It was decided that they are needed as defined
because the global &lt;ok/&gt; is needed and the special
key value for edit=global error only allows for 1 global error.
 </t>
 <t>
Removed open issue &apos;Is location leaf needed&apos;.
It was decided that it is not needed so this leaf has been removed.
 </t>
 <t>
Removed open issue &apos;Bulk editing support in yang-patch-status&apos;.
The &apos;location&apos; leaf has been removed so this issue is no longer
applicable.
 </t>
 <t>
Removed open issue &apos;Edit list mechanism&apos;.
Added text to the &apos;edit&apos; list description-stmt
about how the individual edits must be processed.
There is no concern about duplicate edits which cause
intermediate results to be altered by subsequent edits
in the same edit list.
 </t>
 </list>
</t>
</section>
<section title="bierman:yang-patch-00 to ietf:yang-patch-00">
<t>
 <list style="symbols">
 <t>
Created open issues section
 </t>
 </list>
</t>
</section>
</section>
<section title="Open Issues">
	<figure>
	    <artwork><![CDATA[
    -- RFC Ed.: remove this section before publication.  
	    ]]></artwork>
	</figure>
    <t>
Refer to the github issue tracker for any open issues:
    </t>
	<figure>
	    <artwork><![CDATA[
   https://github.com/netconf-wg/yang-patch/issues
	    ]]></artwork>
	</figure>
</section>
<section title="Example YANG Module">
    <t>
The example YANG module used in this document represents
a simple media jukebox interface. The &quot;example&#8209;jukebox&quot;
YANG module is defined in <xref target="I-D.ietf-netconf-restconf"/>.
    </t>
    <t>
YANG tree diagram for &quot;example&#8209;jukebox&quot; Module:
    </t>
	<figure>
	    <artwork><![CDATA[
   +--rw jukebox!
      +--rw library
      |  +--rw artist* [name]
      |  |  +--rw name     string
      |  |  +--rw album* [name]
      |  |     +--rw name     string
      |  |     +--rw genre?   identityref
      |  |     +--rw year?    uint16
      |  |     +--rw admin
      |  |     |  +--rw label?              string
      |  |     |  +--rw catalogue-number?   string
      |  |     +--rw song* [name]
      |  |        +--rw name        string
      |  |        +--rw location    string
      |  |        +--rw format?     string
      |  |        +--rw length?     uint32
      |  +--ro artist-count?   uint32
      |  +--ro album-count?    uint32
      |  +--ro song-count?     uint32
      +--rw playlist* [name]
      |  +--rw name           string
      |  +--rw description?   string
      |  +--rw song* [index]
      |     +--rw index    uint32
      |     +--rw id       leafref
      +--rw player
         +--rw gap?   decimal64
	    ]]></artwork>
	</figure>
	<figure>
	    <artwork><![CDATA[
  rpcs:
	    ]]></artwork>
	</figure>
	<figure>
	    <artwork><![CDATA[
   +---x play
      +--ro input
         +--ro playlist       string
         +--ro song-number    uint32
	    ]]></artwork>
	</figure>
<section title="YANG Patch Examples">
    <t>
This section includes RESTCONF examples.
Most examples are shown in JSON encoding <xref target="RFC7159"/>, and some
are shown in XML encoding <xref target="W3C.REC-xml-20081126"/>.
    </t>
<section title="Add Resources: Error" anchor="error-example">
    <t>
The following example shows several songs being added to
an existing album. Each edit contains one song.
The first song already exists, so an error will be
reported for that edit. The rest of the edits were not attempted,
since the first edit failed.  The XML encoding is used in this example.
    </t>
    <t>
Request from the RESTCONF client:
    </t>
	<figure>
	    <artwork><![CDATA[
   PATCH /restconf/data/example-jukebox:jukebox/\
      library/artist=Foo%20Fighters/album=Wasting%20Light HTTP/1.1
   Host: example.com
   Accept: application/yang-data+xml
   Content-Type: application/yang-patch+xml
	    ]]></artwork>
	</figure>
	<figure>
	    <artwork><![CDATA[
   <yang-patch xmlns="urn:ietf:params:xml:ns:yang:ietf-yang-patch">
     <patch-id>add-songs-patch</patch-id>
     <edit>
       <edit-id>edit1</edit-id>
       <operation>create</operation>
       <target>/song=Bridge%20Burning</target>
       <value>
         <song xmlns="http://example.com/ns/example-jukebox">
           <name>Bridge Burning</name>
           <location>/media/bridge_burning.mp3</location>
           <format>MP3</format>
           <length>288</length>
         </song>
       </value>
     </edit>
     <edit>
       <edit-id>edit2</edit-id>
       <operation>create</operation>
       <target>/song=Rope</target>
       <value>
         <song xmlns="http://example.com/ns/example-jukebox">
           <name>Rope</name>
           <location>/media/rope.mp3</location>
           <format>MP3</format>
           <length>259</length>
         </song>
       </value>
     </edit>
     <edit>
       <edit-id>edit3</edit-id>
       <operation>create</operation>
       <target>/song=Dear%20Rosemary</target>
       <value>
         <song xmlns="http://example.com/ns/example-jukebox">
           <name>Dear Rosemary</name>
           <location>/media/dear_rosemary.mp3</location>
           <format>MP3</format>
           <length>269</length>
         </song>
       </value>
     </edit>
   </yang-patch>
	    ]]></artwork>
	</figure>
    <t>
XML Response from the RESTCONF server:
    </t>
	<figure>
	    <artwork><![CDATA[
   HTTP/1.1 409 Conflict
   Date: Mon, 23 Apr 2012 13:01:20 GMT
   Server: example-server
   Last-Modified: Mon, 23 Apr 2012 13:01:20 GMT
   Content-Type: application/yang-data+xml
	    ]]></artwork>
	</figure>
	<figure>
	    <artwork><![CDATA[
   <yang-patch-status
      xmlns="urn:ietf:params:xml:ns:yang:ietf-yang-patch">
     <patch-id>add-songs-patch</patch-id>
     <edit-status>
       <edit>
          <edit-id>edit1</edit-id>
          <errors>
             <error>
                <error-type>application</error-type>
                <error-tag>data-exists</error-tag>
                <error-path
                  xmlns:jb="http://example.com/ns/example-jukebox">
                  /jb:jukebox/jb:library
                  /jb:artist[jb:name='Foo Fighters']
                  /jb:album[jb:name='Wasting Light']
                  /jb:song[jb:name='Burning Light']
                </error-path>
                <error-message>
                  Data already exists, cannot be created
                </error-message>
             </error>
          </errors>
       </edit>
    </edit-status>
  </yang-patch-status>
	    ]]></artwork>
	</figure>
    <t>
JSON Response from the RESTCONF server:
    </t>
    <t>
The following response is shown in JSON format to highlight the
difference in the &quot;error&#8209;path&quot; object encoding. For JSON, the
instance-identifier encoding in the &quot;JSON Encoding of YANG
Data&quot; draft is used.
    </t>
	<figure>
	    <artwork><![CDATA[
   HTTP/1.1 409 Conflict
   Date: Mon, 23 Apr 2012 13:01:20 GMT
   Server: example-server
   Last-Modified: Mon, 23 Apr 2012 13:01:20 GMT
   Content-Type: application/yang-data+json

   {
     "ietf-yang-patch:yang-patch-status" : {
       "patch-id" : "add-songs-patch",
       "edit-status" : {
         "edit" : [
           {
             "edit-id" : "edit1",
             "errors" : {
               "error" : [
                 {
                   "error-type": "application",
                   "error-tag": "data-exists",
                   "error-path": "/example-jukebox:jukebox/library\
                      /artist[name='Foo Fighters']\
                      /album[name='Wasting Light']\
                      /song[name='Burning Light']",
                   "error-message":
                     "Data already exists, cannot be created"
                 }
               ]
             }
           }
         ]
       }
     }
   }
	    ]]></artwork>
	</figure>
</section>
<section title="Add Resources: Success" anchor="success-example">
    <t>
The following example shows several songs being added to
an existing album.
    </t>
<t>
 <list style="symbols">
 <t>
Each of 2 edits contains one song.
 </t>
 <t>
Both edits succeed and new sub-resources are created
 </t>
 </list>
</t>
    <t>
Request from the RESTCONF client:
    </t>
	<figure>
	    <artwork><![CDATA[
   PATCH /restconf/data/example-jukebox:jukebox/\
      library/artist=Foo%20Fighters/album=Wasting%20Light \
      HTTP/1.1
   Host: example.com
   Accept: application/yang-data+json
   Content-Type: application/yang-patch+json

   {
     "ietf-yang-patch:yang-patch" : {
       "patch-id" : "add-songs-patch-2",
       "edit" : [
         {
           "edit-id" : "edit1",
           "operation" : "create",
           "target" : "/song=Rope",
           "value" : {
             "song" : {
               "name" : "Rope",
               "location" : "/media/rope.mp3",
               "format" : "MP3",
               "length" : 259
             }
           }
         },
         {
           "edit-id" : "edit2",
           "operation" : "create",
           "target" : "/song=Dear%20Rosemary",
           "value" : {
             "song" : {
               "name" : "Dear Rosemary",
               "location" : "/media/dear_rosemary.mp3",
               "format" : "MP3",
               "length" : 269
             }
           }
         }
       ]
     }
   }
	    ]]></artwork>
	</figure>
    <t>
Response from the RESTCONF server:
    </t>
	<figure>
	    <artwork><![CDATA[
   HTTP/1.1 200 OK
   Date: Mon, 23 Apr 2012 13:01:20 GMT
   Server: example-server
   Last-Modified: Mon, 23 Apr 2012 13:01:20 GMT
   Content-Type: application/yang-data+json

   {
     "ietf-yang-patch:yang-patch-status" : {
       "patch-id" : "add-songs-patch-2",
       "ok" : [null]
     }
   }
	    ]]></artwork>
	</figure>
</section>
<section title="Insert list entry example">
    <t>
The following example shows a song being inserted within
an existing playlist. Song &quot;6&quot; in playlist &quot;Foo&#8209;One&quot; is
being inserted after song &quot;5&quot; in the playlist.
The operation succeeds, so a non-error reply example can be shown.
    </t>
	<figure>
	    <artwork><![CDATA[
 Request from the RESTCONF client:

   PATCH /restconf/data/example-jukebox:jukebox/\
     playlist=Foo-One HTTP/1.1
   Host: example.com
   Accept: application/yang-data+json
   Content-Type: application/yang-patch+json

   {
     "ietf-yang-patch:yang-patch" : {
       "patch-id" : "move-song-patch",
       "comment" : "Insert song 6 after song 5",
       "edit" : [
         {
           "edit-id" : "edit1",
           "operation" : "insert",
           "target" : "/song=6",
           "point" : "/song=5",
           "where" : "after",
           "value" : {
             "example-jukebox:song" : {
               "name" : "Dear Prudence",
               "location" : "/media/dear_prudence.mp3",
               "format" : "MP3",
               "length" : 236
             }
           }
         }
       ]
     }
   }

 Response from the RESTCONF server:

   HTTP/1.1 200 OK
   Date: Mon, 23 Apr 2012 13:01:20 GMT
   Server: example-server
   Last-Modified: Mon, 23 Apr 2012 13:01:20 GMT
   Content-Type: application/yang-data+json

   {
     "ietf-yang-patch:yang-patch-status" : {
       "patch-id" : "move-song-patch",
       "ok" : [null]
     }
   }
	    ]]></artwork>
	</figure>
</section>
<section title="Move list entry example">
    <t>
The following example shows a song being moved within
an existing playlist. Song &quot;1&quot; in playlist &quot;Foo&#8209;One&quot; is
being moved after song &quot;3&quot; in the playlist.
Note that no &quot;value&quot; parameter is needed for a &quot;move&quot; operation.
The operation succeeds, so a non-error reply example can be shown.
    </t>
    <t>
Request from the RESTCONF client:
    </t>
	<figure>
	    <artwork><![CDATA[
   PATCH /restconf/data/example-jukebox:jukebox/\
     playlist=Foo-One HTTP/1.1
   Host: example.com
   Accept: application/yang-data+json
   Content-Type: application/yang-patch+json

   {
     "ietf-yang-patch:yang-patch" : {
       "patch-id" : "move-song-patch",
       "comment" : "Move song 1 after song 3",
       "edit" : [
         {
           "edit-id" : "edit1",
           "operation" : "move",
           "target" : "/song=1",
           "point" : "/song=3",
           "where" : "after"
         }
       ]
     }
   }
	    ]]></artwork>
	</figure>
    <t>
Response from the RESTCONF server:
    </t>
	<figure>
	    <artwork><![CDATA[
   HTTP/1.1 200 OK
   Date: Mon, 23 Apr 2012 13:01:20 GMT
   Server: example-server
   Last-Modified: Mon, 23 Apr 2012 13:01:20 GMT
   Content-Type: application/yang-data+json

   {
     "ietf-restconf:yang-patch-status" : {
       "patch-id" : "move-song-patch",
       "ok" : [null]
     }
   }
	    ]]></artwork>
	</figure>
</section>
<section title="Edit datastore resource example">
    <t>
The following example shows how 3 top-level data nodes from
different modules can be edited at the same time.
    </t>
    <t>
Example module &quot;foo&quot; defines leaf X.
Example module &quot;bar&quot; defines container Y, with child leafs A and B.
Example module &quot;baz&quot; defines list Z, with key C and child leafs D and E.
    </t>
    <t>
Request from the RESTCONF client:
    </t>
	<figure>
	    <artwork><![CDATA[
   PATCH /restconf/data HTTP/1.1
   Host: example.com
   Accept: application/yang-data+json
   Content-Type: application/yang-patch+json

   {
     "ietf-yang-patch:yang-patch" : {
       "patch-id" : "datastore-patch-1",
       "comment" : "Edit 3 top-level data nodes at once",
       "edit" : [
         {
           "edit-id" : "edit1",
           "operation" : "create",
           "target" : "/foo:X",
           "value" : {
             "foo:X" : 42
           }
         },
         {
           "edit-id" : "edit2",
           "operation" : "merge",
           "target" : "/bar:Y",
           "value" : {
             "bar:Y" : {
               "A" : "test1",
               "B" : 99
             }
           }
         },
         {
           "edit-id" : "edit3",
           "operation" : "replace",
           "target" : "/baz:Z=2",
           "value" : {
             "baz:Z" : {
               "C" : 2,
               "D" : 100,
               "E" : false
             }
           }
         }
       ]
     }
   }
	    ]]></artwork>
	</figure>
    <t>
Response from the RESTCONF server:
    </t>
	<figure>
	    <artwork><![CDATA[
   HTTP/1.1 200 OK
   Date: Mon, 23 Apr 2012 13:02:20 GMT
   Server: example-server
   Last-Modified: Mon, 23 Apr 2012 13:01:20 GMT
   Content-Type: application/yang-data+json

   {
     "ietf-yang-patch:yang-patch-status" : {
       "patch-id" : "datastore-patch-1",
       "ok" : [null]
     }
   }
	    ]]></artwork>
	</figure>
</section>
</section>
</section>
</back></rfc>
