<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.0.2) -->


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

]>

<?rfc strict="yes"?>
<?rfc compact="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-lpwan-schc-yang-data-model-18" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="LPWAN SCHC YANG module">Data Model for Static Context Header Compression (SCHC)</title>

    <author initials="A." surname="Minaburo" fullname="Ana Minaburo">
      <organization>Acklio</organization>
      <address>
        <postal>
          <street>1137A avenue des Champs Blancs</street>
          <city>35510 Cesson-Sevigne Cedex</city>
          <country>France</country>
        </postal>
        <email>ana@ackl.io</email>
      </address>
    </author>
    <author initials="L." surname="Toutain" fullname="Laurent Toutain">
      <organization>Institut MINES TELECOM; IMT Atlantique</organization>
      <address>
        <postal>
          <street>2 rue de la Chataigneraie</street> <street>CS 17607</street>
          <city>35576 Cesson-Sevigne Cedex</city>
          <country>France</country>
        </postal>
        <email>Laurent.Toutain@imt-atlantique.fr</email>
      </address>
    </author>

    <date year="2022" month="September" day="28"/>

    
    <workgroup>lpwan Working Group</workgroup>
    

    <abstract>


<t>This document describes a YANG data model for the SCHC (Static Context Header Compression) 
compression and fragmentation rules.</t>

<t>This document formalizes the description of the rules for better interoperability between SCHC instances either 
to exchange a set of rules or to modify some rules parameters.</t>



    </abstract>



  </front>

  <middle>


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

<t>SCHC is a compression and fragmentation mechanism for constrained networks defined in <xref target="RFC8724"/>.
It is based on a static context shared by two entities at the boundary of the constrained network.
<xref target="RFC8724"/> provides an informal representation of the rules used either for compression/decompression (or C/D)
or fragmentation/reassembly (or F/R). The goal of this document is to formalize the description of the rules to offer:</t>

<t><list style="symbols">
  <t>the same definition on both ends, even if the internal representation is different;</t>
  <t>an update of the other end to set up some specific values (e.g. IPv6 prefix, destination address,...).</t>
</list></t>

<t><xref target="I-D.ietf-lpwan-architecture"/> illustrates the exchange of rules using the YANG data model.</t>

<t>This document defines a YANG module <xref target="RFC7950"/> to represent both compression and fragmentation rules, which leads to common representation for values for all the rules elements.</t>

</section>
<section anchor="requirements-language"><name>Requirements Language</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>

</section>
<section anchor="Term"><name>Terminology</name>

<t>This section defines the terminology and acronyms used in this document.
It extends the terminology of <xref target="RFC8376"/>.</t>

<t><list style="symbols">
  <t>App: LPWAN Application, as defined by <xref target="RFC8376"/>. An application sending/receiving packets to/from the Dev.</t>
  <t>Bi: Bidirectional. Characterizes a Field Descriptor that applies to headers of packets traveling in either direction (Up and Dw, see this glossary).</t>
  <t>CDA: Compression/Decompression Action. Describes the pair of actions that are performed at the compressor to compress a header field and at the decompressor to recover the original value of the header field.</t>
  <t>Context: A set of Rules used to compress/decompress headers.</t>
  <t>Dev: Device, as defined by <xref target="RFC8376"/>.</t>
  <t>DevIID: Device Interface Identifier. The IID that identifies the Dev interface.</t>
  <t>DI: Direction Indicator. This field tells which direction of packet travel (Up, Dw or Bi) a Field Description applies to. This allows for asymmetric processing, using the same Rule.</t>
  <t>Dw: Downlink direction for compression/decompression, from SCHC C/D in the network to SCHC C/D in the Dev.</t>
  <t>FID: Field Identifier. This identifies the protocol and field a Field Description applies to.</t>
  <t>FL: Field Length is the length of the original packet header field. It is expressed as a number of bits for header fields of fixed lengths or as a type (e.g., variable, token length, ...) for field lengths that are unknown at the time of Rule creation. The length of a header field is defined in the corresponding protocol specification (such as IPv6 or UDP).</t>
  <t>FP: when a Field is expected to appear multiple times in a header, Field Position specifies the occurrence this Field Description applies to
(for example, first uri-path option, second uri-path, etc. in a CoAP header), counting from 1. The value 0 is special and means "don't care", see <xref target="RFC8724"/> Section 7.2.</t>
  <t>IID: Interface Identifier. See the IPv6 addressing architecture <xref target="RFC7136"/>.</t>
  <t>L2 Word: this is the minimum subdivision of payload data that the L2 will carry. In most L2 technologies, the L2 Word is an octet.
In bit-oriented radio technologies, the L2 Word might be a single bit.
The L2 Word size is assumed to be constant over time for each device.</t>
  <t>MO: Matching Operator. An operator used to match a value contained in a header field with a value contained in a Rule.</t>
  <t>Rule ID (Rule Identifier): An identifier for a Rule. SCHC C/D on both sides share the same Rule ID for a given packet. A set of Rule IDs are used to support SCHC F/R functionality.</t>
  <t>TV: Target value. A value contained in a Rule that will be matched with the value of a header field.</t>
  <t>Up: Uplink direction for compression/decompression, from the Dev SCHC C/D to the network SCHC C/D.</t>
</list></t>

</section>
<section anchor="schc-rules"><name>SCHC rules</name>

<t>SCHC compression is generic, the main mechanism does not refer
to a specific protocol. Any header field is abstracted through an Field Identifier (FID), a position (FP), a direction (DI), and a value that can be a numerical
value or a string. <xref target="RFC8724"/> and <xref target="RFC8824"/> specify fields for IPv6 <xref target="RFC8200"/>, UDP<xref target="RFC0768"/>, CoAP <xref target="RFC7252"/> including options defined for no server response  <xref target="RFC7967"/> and OSCORE <xref target="RFC8613"/>. For the latter <xref target="RFC8824"/> splits this field into sub-fields.</t>

<t>SCHC fragmentation requires a set of common parameters that are included in a rule. These parameters are defined in <xref target="RFC8724"/>.</t>

<t>The YANG data model enables the compression and the fragmentation selection using the feature statement.</t>

<section anchor="comp_types"><name>Compression Rules</name>

<t><xref target="RFC8724"/> proposes an informal representation of the compression rule.
A compression context for a device is composed of a set of rules. Each rule contains information to
describe a specific field in the header to be compressed.</t>

<figure title="Compression Decompression Context" anchor="Fig-ctxt"><artwork><![CDATA[
  +-----------------------------------------------------------------+
  |                      Rule N                                     |
 +-----------------------------------------------------------------+|
 |                    Rule i                                       ||
+-----------------------------------------------------------------+||
|  (FID)            Rule 1                                        |||
|+-------+--+--+--+------------+-----------------+---------------+|||
||Field 1|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||||
|+-------+--+--+--+------------+-----------------+---------------+|||
||Field 2|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||||
|+-------+--+--+--+------------+-----------------+---------------+|||
||...    |..|..|..|   ...      | ...             | ...           ||||
|+-------+--+--+--+------------+-----------------+---------------+||/
||Field N|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act|||
|+-------+--+--+--+------------+-----------------+---------------+|/
|                                                                 |        
\-----------------------------------------------------------------/  

]]></artwork></figure>

</section>
<section anchor="identifier-generation"><name>Identifier generation</name>

<t>Identifiers used in the SCHC YANG data model are from the identityref statement to ensure global uniqueness and easy augmentation if needed.  The principle to define a new type based on a group of identityref is the following:</t>

<t><list style="symbols">
  <t>define a main identity ending with the keyword base-type.</t>
  <t>derive all the identities used in the Data Model from this base type.</t>
  <t>create a typedef from this base type.</t>
</list></t>

<t>The example (<xref target="Fig-identityref"/>) shows how an identityref is created for RCS (Reassembly Check Sequence) algorithms used during SCHC fragmentation.</t>

<figure title="Principle to define a type based on identityref." anchor="Fig-identityref"><artwork><![CDATA[
  identity rcs-algorithm-base-type {
    description
      "Identify which algorithm is used to compute RCS.
       The algorithm also defines the size of the RCS field.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  identity rcs-crc32 {
    base rcs-algorithm-base-type;
    description
      "CRC 32 defined as default RCS in RFC8724. This RCS is
       4 bytes long.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  typedef rcs-algorithm-type {
    type identityref {
      base rcs-algorithm-base-type;
    }
    description
      "Define the type for RCS algorithm in rules.";
  }
]]></artwork></figure>

</section>
<section anchor="convention-for-field-identifier"><name>Convention for Field Identifier</name>

<t>In the process of compression, the headers of the original packet are first parsed to create a list of fields. This list of fields is matched against the rules to find the appropriate rule and apply compression.  <xref target="RFC8724"/>  does not state how the field ID value is constructed. 
In examples, identification is done through a string indexed by the protocol name (e.g. IPv6.version, CoAP.version,...).</t>

<t>The current YANG data model includes fields definitions found in <xref target="RFC8724"/>, <xref target="RFC8824"/>.</t>

<t>Using the YANG data model, each field MUST be identified through a global YANG identityref.<br />
A YANG field ID for the protocol is always derived from the fid-base-type. Then an identity 
for each protocol is specified using the naming convention fid-&lt;&lt;protocol name&gt;&gt;-base-type. 
All possible fields for this protocol MUST derive from the protocol identity. The naming 
convention is "fid-" followed by the protocol name and the field name. If a field has 
to be divided into sub-fields, the field identity serves as a base.</t>

<t>The full field-id definition is found in <xref target="annexA"/>. A type is defined for IPv6 protocol, and each 
field is based on it. Note that the DiffServ bits derive from the Traffic Class identity.</t>

</section>
<section anchor="convention-for-field-length"><name>Convention for Field length</name>

<t>Field length is either an integer giving the size of a field in bits or a specific function. <xref target="RFC8724"/> defines the
"var" function which allows variable length fields (whose length is expressed in bytes) and <xref target="RFC8824"/> defines the "tkl" function for managing the CoAP
Token length field.</t>

<t>The naming convention is "fl-" followed by the function name.</t>

<t>The field length function can be defined as an identityref as described in <xref target="annexA"/>. Therefore, the type for field length is a union between an integer giving the size of the length in bits and the identityref.</t>

</section>
<section anchor="convention-for-field-position"><name>Convention for Field position</name>

<t>Field position is a positive integer which gives the occurrence times of a
specific field from the header start.  The default value is 1, and incremented at each repetition. 
Value 0 indicates that the position is not important and is not considered during the rule selection process.</t>

<t>Field position is a positive integer. The type is uint8.</t>

</section>
<section anchor="convention-for-direction-indicator"><name>Convention for Direction Indicator</name>

<t>The Direction Indicator (di) is used to tell if a field appears in both directions (Bi) or only uplink (Up) or Downlink (Dw). The naming convention is "di" followed by the Direction Indicator name.</t>

<t>The type is "di-type".</t>

</section>
<section anchor="target_value"><name>Convention for Target Value</name>

<t>The Target Value is a list of binary sequences of any length, aligned to the left. In the rule, the structure will be used as a list, with index as a key. The highest index value is used to compute the size of the index sent in residue for the match-mapping CDA (Compression Decompression Action). The index can specify several values:</t>

<t><list style="symbols">
  <t>For Equal and MSB, Target Value contains a single element. Therefore, the index is set to 0.</t>
  <t>For match-mapping, Target Value can contain several elements. Index values MUST start from 0 and MUST be contiguous.</t>
</list></t>

<t>If the header field contains text, the binary sequence uses the same encoding.</t>

</section>
<section anchor="convention-for-matching-operator"><name>Convention for Matching Operator</name>

<t>Matching Operator (MO) is a function applied between a field value provided by the parsed header and the target value. <xref target="RFC8724"/> defines 4 MO.</t>

<t>The naming convention is "mo-" followed by the MO name.</t>

<t>The type is "mo-type"</t>

<section anchor="matching-operator-arguments"><name>Matching Operator arguments</name>

<t>They are viewed as a list, built with a tv-struct (see <xref target="target_value"/>).</t>

</section>
</section>
<section anchor="convention-for-compression-decompression-actions"><name>Convention for Compression Decompression Actions</name>

<t>Compression Decompression Action (CDA) identifies the function to use for compression or decompression. 
<xref target="RFC8724"/> defines 6 CDA.</t>

<t>The naming convention is "cda-" followed by the CDA name.</t>

<section anchor="compression-decompression-action-arguments"><name>Compression Decompression Action arguments</name>

<t>Currently no CDA requires arguments, but in the future some CDA may require one or several arguments.
They are viewed as a list, of target-value type.</t>

</section>
</section>
<section anchor="frag_types"><name>Fragmentation rule</name>

<t>Fragmentation is optional in the data model and depends on the presence of the "fragmentation" feature.</t>

<t>Most of the fragmentation parameters are listed in Annex D of <xref target="RFC8724"/>.</t>

<t>Since fragmentation rules work for a specific direction, they MUST contain a mandatory direction indicator.
The type is the same as the one used in compression entries, but bidirectional MUST NOT be used.</t>

<section anchor="fragmentation-mode"><name>Fragmentation mode</name>

<t><xref target="RFC8724"/> defines 3 fragmentation modes:</t>

<t><list style="symbols">
  <t>No Ack: this mode is unidirectional, no acknowledgment is sent back.</t>
  <t>Ack Always: each fragmentation window must be explicitly acknowledged before going to the next.</t>
  <t>Ack on Error:  A window is acknowledged only when the receiver detects some missing fragments.</t>
</list></t>

<t>The type is "fragmentation-mode-type". 
The naming convention is "fragmentation-mode-" followed by the fragmentation mode name.</t>

</section>
<section anchor="fragmentation-header"><name>Fragmentation Header</name>

<t>A data fragment header, starting with the rule ID, can be sent in the fragmentation direction. 
<xref target="RFC8724"/> indicates that the SCHC header may be composed of (cf. <xref target="Fig-frag-header-8724"/>):</t>

<t><list style="symbols">
  <t>a Datagram Tag (Dtag) identifying the datagram being fragmented if the fragmentation applies concurrently on several datagrams. This field is optional and its length is defined by the rule.</t>
  <t>a Window (W) used in Ack-Always and Ack-on-Error modes. In Ack-Always, its size is 1. In Ack-on-Error, it depends on the rule. This field is not needed in No-Ack mode.</t>
  <t>a Fragment Compressed Number (FCN) indicating the fragment/tile position within the window. This field is mandatory on all modes defined in <xref target="RFC8724"/>, its size is defined by the rule.</t>
</list></t>

<figure title="Data fragment header from RFC8724" anchor="Fig-frag-header-8724"><artwork><![CDATA[
|-- SCHC Fragment Header ----|
         |-- T --|-M-|-- N --|
+-- ... -+- ... -+---+- ... -+--------...-------+~~~~~~~~~~~~~~~~~~~~
| RuleID | DTag  | W |  FCN  | Fragment Payload | padding (as needed)
+-- ... -+- ... -+---+- ... -+--------...-------+~~~~~~~~~~~~~~~~~~~~

]]></artwork></figure>

</section>
<section anchor="last-fragment-format"><name>Last fragment format</name>

<t>The last fragment of a datagram is sent with an RCS (Reassembly Check Sequence) field to detect residual 
transmission error and possible losses in the last window. <xref target="RFC8724"/> defines a single algorithm based on Ethernet 
CRC computation.</t>

<t>The naming convention is "rcs-" followed by the algorithm name.</t>

<t>For Ack-on-Error mode, the All-1 fragment may just contain the RCS or can include a tile. The parameters define the 
behavior:</t>

<t><list style="symbols">
  <t>all-1-data-no: the last fragment contains no data, just the RCS</t>
  <t>all-1-data-yes: the last fragment includes a single tile and the RCS</t>
  <t>all-1-data-sender-choice: the last fragment may or may not contain a single tile. The receiver can detect if a tile is present.</t>
</list></t>

<t>The naming convention is "all-1-data-" followed by the behavior identifier.</t>

</section>
<section anchor="acknowledgment-behavior"><name>Acknowledgment behavior</name>

<t>The acknowledgment fragment header goes in the opposite direction of data. <xref target="RFC8724"/> defines the header, composed of (see <xref target="Fig-frag-ack"/>):</t>

<t><list style="symbols">
  <t>a Dtag (if present).</t>
  <t>a mandatory window as in the data fragment.</t>
  <t>a C bit giving the status of RCS validation.  In case of failure, a bitmap follows, indicating the received tile.</t>
</list></t>

<figure title="Acknowledgment fragment header for RFC8724" anchor="Fig-frag-ack"><artwork><![CDATA[
|--- SCHC ACK Header ----|
         |-- T --|-M-| 1 |
+-- ... -+- ... -+---+---+~~~~~~~~~~~~~~~~~~
| RuleID |  DTag | W |C=1| padding as needed                (success)
+-- ... -+- ... -+---+---+~~~~~~~~~~~~~~~~~~

+-- ... -+- ... -+---+---+------ ... ------+~~~~~~~~~~~~~~~
| RuleID |  DTag | W |C=0|Compressed Bitmap| pad. as needed (failure)
+-- ... -+- ... -+---+---+------ ... ------+~~~~~~~~~~~~~~~

]]></artwork></figure>

<t>For Ack-on-Error, SCHC defines when an acknowledgment can be sent. This can be at any time defined by the layer 2, at the end of a window (FCN all-0) 
or as a response to receiving the last fragment (FCN all-1). The naming convention is "ack-behavior" followed by the algorithm name.</t>

</section>
<section anchor="timer-values"><name>Timer values</name>

<t>The state machine requires some common values to handle fragmentation correctly.</t>

<t><list style="symbols">
  <t>retransmission-timer gives the duration before sending an ack request (cf. section 8.2.2.4. of <xref target="RFC8724"/>). If specified, value MUST be strictly positive.</t>
  <t>inactivity-timer gives  the duration before aborting a fragmentation session (cf. section 8.2.2.4. of <xref target="RFC8724"/>). The value 0 explicitly indicates that this timer is disabled.</t>
</list></t>

<t><xref target="RFC8724"/> do not specify any range for these timers. <xref target="RFC9011"/> recommends a duration of 12 hours. In fact, the value range should be between milliseconds for real time systems to several days. To allow a large range of applications, two parameters must be specified:</t>

<t><list style="symbols">
  <t>the duration of a tick. It is computed by this formula 2^tick-duration/10^6. When tick-duration is set to 0, the unit is the microsecond. The default value of 20 leads to a unit of 1.048575 second. A value of 32 leads to a tick duration of about 1 hour 11 minutes.</t>
  <t>the number of ticks in the predefined unit. With the default tick-duration value of 20, the timers can cover a range between 1.0 sec and 19 hours covering <xref target="RFC9011"/> recommendation.</t>
</list></t>

</section>
<section anchor="fragmentation-parameter"><name>Fragmentation Parameter</name>

<t>The SCHC fragmentation protocol specifies the number of attempts before aborting through the parameter:</t>

<t><list style="symbols">
  <t>max-ack-requests  (cf. section 8.2.2.4. of <xref target="RFC8724"/>).</t>
</list></t>

</section>
<section anchor="layer-2-parameters"><name>Layer 2 parameters</name>

<t>The data model includes two parameters needed for fragmentation:</t>

<t><list style="symbols">
  <t>l2-word-size: <xref target="RFC8724"/> base fragmentation, in bits,  on a layer 2 word which can be of any length. The default value is 8 and correspond 
to the default value for byte aligned layer 2. A value of 1 will indicate that there is no alignment and no need for padding.</t>
  <t>maximum-packet-size: defines the maximum size of an uncompressed datagram. By default, the value is set to 1280 bytes.</t>
</list></t>

<t>They are defined as unsigned integers, see <xref target="annexA"/>.</t>

</section>
</section>
</section>
<section anchor="rule-definition"><name>Rule definition</name>

<t>A rule is identified by a unique rule identifier (rule ID) comprising both a Rule ID value and a Rule ID length. 
The YANG grouping rule-id-type defines the structure used to represent a rule ID. A length of 0 is allowed to represent an implicit rule.</t>

<t>Three natures of rules are defined in <xref target="RFC8724"/>:</t>

<t><list style="symbols">
  <t>Compression: a compression rule is associated with the rule ID.</t>
  <t>No compression: this identifies the default rule used to send a packet integrally when no compression rule was found (see <xref target="RFC8724"/> section 6).</t>
  <t>Fragmentation: fragmentation parameters are associated with the rule ID. Fragmentation is optional and feature "fragmentation" should be set.</t>
</list></t>

<t>The YANG data model introduces respectively these three identities :</t>

<t><list style="symbols">
  <t>nature-compression</t>
  <t>nature-no-compression</t>
  <t>nature-fragmentation</t>
</list></t>

<t>The naming convention is "nature-" followed by the nature identifier.</t>

<t>To access a specific rule, the rule ID length and value are used as a key. The rule is either
a compression or a fragmentation rule.</t>

<section anchor="compression-rule"><name>Compression rule</name>

<t>A compression rule is composed of entries describing its processing. An entry  contains all the information defined in <xref target="Fig-ctxt"/> with the types defined above.</t>

<t>The compression rule described <xref target="Fig-ctxt"/> is defined by compression-content. It defines a list of
compression-rule-entry, indexed by their field id, position and direction. The compression-rule-entry 
element represent a line of the table <xref target="Fig-ctxt"/>. Their type reflects the identifier types defined in
<xref target="comp_types"/></t>

<t>Some checks are performed on the values:</t>

<t><list style="symbols">
  <t>target value MUST be present for MO different from ignore.</t>
  <t>when MSB MO is specified, the matching-operator-value must be present</t>
</list></t>

</section>
<section anchor="fragmentation-rule"><name>Fragmentation rule</name>

<t>A Fragmentation rule is composed of entries describing the protocol behavior. Some on them are numerical entries,
others are identifiers defined in <xref target="frag_types"/>.</t>

</section>
<section anchor="yang-tree"><name>YANG Tree</name>

<t>The YANG data model described in this document conforms to the
Network Management Datastore Architecture defined in <xref target="RFC8342"/>.</t>

<figure title="Overview of SCHC data model" anchor="Fig-model-overview"><artwork><![CDATA[
module: ietf-schc
  +--rw schc
     +--rw rule* [rule-id-value rule-id-length]
        +--rw rule-id-value                   uint32
        +--rw rule-id-length                  uint8
        +--rw rule-nature                     nature-type
        +--rw (nature)?
           +--:(fragmentation) {fragmentation}?
           |  +--rw fragmentation-mode
           |  |       schc:fragmentation-mode-type
           |  +--rw l2-word-size?             uint8
           |  +--rw direction                 schc:di-type
           |  +--rw dtag-size?                uint8
           |  +--rw w-size?                   uint8
           |  +--rw fcn-size                  uint8
           |  +--rw rcs-algorithm?            rcs-algorithm-type
           |  +--rw maximum-packet-size?      uint16
           |  +--rw window-size?              uint16
           |  +--rw max-interleaved-frames?   uint8
           |  +--rw inactivity-timer
           |  |  +--rw ticks-duration?   uint8
           |  |  +--rw ticks-numbers?    uint16
           |  +--rw retransmission-timer
           |  |  +--rw ticks-duration?   uint8
           |  |  +--rw ticks-numbers?    uint16
           |  +--rw max-ack-requests?         uint8
           |  +--rw (mode)?
           |     +--:(no-ack)
           |     +--:(ack-always)
           |     +--:(ack-on-error)
           |        +--rw tile-size?          uint8
           |        +--rw tile-in-all-1?      schc:all-1-data-type
           |        +--rw ack-behavior?       schc:ack-behavior-type
           +--:(compression) {compression}?
              +--rw entry*
                      [field-id field-position direction-indicator]
                 +--rw field-id                    schc:fid-type
                 +--rw field-length                schc:fl-type
                 +--rw field-position              uint8
                 +--rw direction-indicator         schc:di-type
                 +--rw target-value* [index]
                 |  +--rw index    uint16
                 |  +--rw value?   binary
                 +--rw matching-operator           schc:mo-type
                 +--rw matching-operator-value* [index]
                 |  +--rw index    uint16
                 |  +--rw value?   binary
                 +--rw comp-decomp-action          schc:cda-type
                 +--rw comp-decomp-action-value* [index]
                    +--rw index    uint16
                    +--rw value?   binary
]]></artwork></figure>

</section>
</section>
<section anchor="annexA"><name>YANG Module</name>

<figure anchor="Fig-schc"><artwork><![CDATA[
<CODE BEGINS> file "ietf-schc@2022-09-22.yang"
module ietf-schc {
  yang-version 1.1;
  namespace "urn:ietf:params:xml:ns:yang:ietf-schc";
  prefix schc;

  organization
    "IETF IPv6 over Low Power Wide-Area Networks (lpwan) working
     group";
  contact
    "WG Web:   <https://datatracker.ietf.org/wg/lpwan/about/>
     WG List:  <mailto:lp-wan@ietf.org>
     Editor:   Laurent Toutain
       <mailto:laurent.toutain@imt-atlantique.fr>
     Editor:   Ana Minaburo
       <mailto:ana@ackl.io>";
  description
    "
     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.

     ***************************************************************

     Generic Data model for Static Context Header Compression Rule
     for SCHC, based on RFC 8724 and RFC8824. Include compression,
     no compression and fragmentation rules.

     This module is a YANG model for SCHC rules (RFC 8724 and
     RFC8824). RFC 8724 describes compression rules in a abstract
     way through a table.

 |-----------------------------------------------------------------|
 |  (FID)            Rule 1                                        |
 |+-------+--+--+--+------------+-----------------+---------------+|
 ||Field 1|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||
 |+-------+--+--+--+------------+-----------------+---------------+|
 ||Field 2|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||
 |+-------+--+--+--+------------+-----------------+---------------+|
 ||...    |..|..|..|   ...      | ...             | ...           ||
 |+-------+--+--+--+------------+-----------------+---------------+|
 ||Field N|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||
 |+-------+--+--+--+------------+-----------------+---------------+|
 |-----------------------------------------------------------------|

     This module specifies a global data model that can be used for
     rule exchanges or modification. It specifies both the data model
     format and the global identifiers used to describe some
     operations in fields.
     This data model applies to both compression and fragmentation.";

  revision 2022-09-22 {
    description
      "Initial version from RFC XXXX.";
    reference
      "RFC XXX: Data Model for Static Context Header Compression
       (SCHC)";
  }

  feature compression {
    description
      "SCHC compression capabilities are taken into account.";
  }

  feature fragmentation {
    description
      "SCHC fragmentation capabilities are taken into account.";
  }

  // -------------------------
  //  Field ID type definition
  //--------------------------
  // generic value TV definition 

  identity fid-base-type {
    description
      "Field ID base type for all fields.";
  }

  identity fid-ipv6-base-type {
    base fid-base-type;
    description
      "Field ID base type for IPv6 headers described in RFC 8200.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

  identity fid-ipv6-version {
    base fid-ipv6-base-type;
    description
      "IPv6 version field.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

  identity fid-ipv6-trafficclass {
    base fid-ipv6-base-type;
    description
      "IPv6 Traffic Class field.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

  identity fid-ipv6-trafficclass-ds {
    base fid-ipv6-trafficclass;
    description
      "IPv6 Traffic Class field: DiffServ field.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification,
       RFC 3168 The Addition of Explicit Congestion Notification
                (ECN) to IP";
  }

  identity fid-ipv6-trafficclass-ecn {
    base fid-ipv6-trafficclass;
    description
      "IPv6 Traffic Class field: ECN field.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification,
       RFC 3168 The Addition of Explicit Congestion Notification
                (ECN) to IP";
  }

  identity fid-ipv6-flowlabel {
    base fid-ipv6-base-type;
    description
      "IPv6 Flow Label field.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

  identity fid-ipv6-payload-length {
    base fid-ipv6-base-type;
    description
      "IPv6 Payload Length field.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

  identity fid-ipv6-nextheader {
    base fid-ipv6-base-type;
    description
      "IPv6 Next Header field.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

  identity fid-ipv6-hoplimit {
    base fid-ipv6-base-type;
    description
      "IPv6 Next Header field.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

  identity fid-ipv6-devprefix {
    base fid-ipv6-base-type;
    description
      "Corresponds to either the source address or the destination
       address prefix of RFC 8200 depending on whether it is an 
       uplink or a downlink message.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

  identity fid-ipv6-deviid {
    base fid-ipv6-base-type;
    description
      "Corresponds to either the source address or the destination
       address IID of RFC 8200 depending on whether it is an uplink 
       or a downlink message.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

  identity fid-ipv6-appprefix {
    base fid-ipv6-base-type;
    description
      "Corresponds to either the source address or the destination
       address prefix of RFC 8200 depending on whether it is an 
       uplink or a downlink message.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

  identity fid-ipv6-appiid {
    base fid-ipv6-base-type;
    description
      "Corresponds to either the source address or the destination
       address IID of RFC 8200 depending on whether it is an uplink 
       or a downlink message.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

  identity fid-udp-base-type {
    base fid-base-type;
    description
      "Field ID base type for UDP headers described in RFC 768.";
    reference
      "RFC 768 User Datagram Protocol";
  }

  identity fid-udp-dev-port {
    base fid-udp-base-type;
    description
      "UDP source or destination port, if uplink or downlink 
       communication, respectively.";
    reference
      "RFC 768 User Datagram Protocol";
  }

  identity fid-udp-app-port {
    base fid-udp-base-type;
    description
      "UDP destination or source port, if uplink or downlink 
       communication, respectively.";
    reference
      "RFC 768 User Datagram Protocol";
  }

  identity fid-udp-length {
    base fid-udp-base-type;
    description
      "UDP length.";
    reference
      "RFC 768 User Datagram Protocol";
  }

  identity fid-udp-checksum {
    base fid-udp-base-type;
    description
      "UDP length.";
    reference
      "RFC 768 User Datagram Protocol";
  }

  identity fid-coap-base-type {
    base fid-base-type;
    description
      "Field ID base type for UDP headers described.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-version {
    base fid-coap-base-type;
    description
      "CoAP version.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-type {
    base fid-coap-base-type;
    description
      "CoAP type.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-tkl {
    base fid-coap-base-type;
    description
      "CoAP token length.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-code {
    base fid-coap-base-type;
    description
      "CoAP code.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-code-class {
    base fid-coap-code;
    description
      "CoAP code class.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-code-detail {
    base fid-coap-code;
    description
      "CoAP code detail.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-mid {
    base fid-coap-base-type;
    description
      "CoAP message ID.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-token {
    base fid-coap-base-type;
    description
      "CoAP token.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-if-match {
    base fid-coap-base-type;
    description
      "CoAP option If-Match.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-uri-host {
    base fid-coap-base-type;
    description
      "CoAP option URI-Host.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-etag {
    base fid-coap-base-type;
    description
      "CoAP option Etag.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-if-none-match {
    base fid-coap-base-type;
    description
      "CoAP option if-none-match.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-observe {
    base fid-coap-base-type;
    description
      "CoAP option Observe.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-uri-port {
    base fid-coap-base-type;
    description
      "CoAP option Uri-Port.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-location-path {
    base fid-coap-base-type;
    description
      "CoAP option Location-Path.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-uri-path {
    base fid-coap-base-type;
    description
      "CoAP option Uri-Path.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-content-format {
    base fid-coap-base-type;
    description
      "CoAP option Content Format.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-max-age {
    base fid-coap-base-type;
    description
      "CoAP option Max-Age.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-uri-query {
    base fid-coap-base-type;
    description
      "CoAP option Uri-Query.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-accept {
    base fid-coap-base-type;
    description
      "CoAP option Accept.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-location-query {
    base fid-coap-base-type;
    description
      "CoAP option Location-Query.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-block2 {
    base fid-coap-base-type;
    description
      "CoAP option Block2.";
    reference
      "RFC 7959 Block-Wise Transfers in the Constrained
                Application Protocol (CoAP)";
  }

  identity fid-coap-option-block1 {
    base fid-coap-base-type;
    description
      "CoAP option Block1.";
    reference
      "RFC 7959 Block-Wise Transfers in the Constrained
                Application Protocol (CoAP)";
  }

  identity fid-coap-option-size2 {
    base fid-coap-base-type;
    description
      "CoAP option size2.";
    reference
      "RFC 7959 Block-Wise Transfers in the Constrained
                Application Protocol (CoAP)";
  }

  identity fid-coap-option-proxy-uri {
    base fid-coap-base-type;
    description
      "CoAP option Proxy-Uri.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-proxy-scheme {
    base fid-coap-base-type;
    description
      "CoAP option Proxy-scheme.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-size1 {
    base fid-coap-base-type;
    description
      "CoAP option Size1.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-no-response {
    base fid-coap-base-type;
    description
      "CoAP option No response.";
    reference
      "RFC 7967 Constrained Application Protocol (CoAP)
                Option for No Server Response";
  }

  identity fid-oscore-base-type {
    base fid-coap-type;
    description
      "OSCORE options (RFC8613) split in sub options.";
    reference
      "RFC 8824 Static Context Header Compression (SCHC) for the
                Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-oscore-flags {
    base fid-oscore-base-type;
    description
      "CoAP option oscore flags (see section 6.4).";
    reference
      "RFC 8824 Static Context Header Compression (SCHC) for the
                Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-oscore-piv {
    base fid-oscore-base-type;
    description
      "CoAP option oscore flags (see section 6.4).";
    reference
      "RFC 8824 Static Context Header Compression (SCHC) for the
                Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-oscore-kid {
    base fid-oscore-base-type;
    description
      "CoAP option oscore flags (see section 6.4).";
    reference
      "RFC 8824 Static Context Header Compression (SCHC) for the
                Constrained Application Protocol (CoAP)";
  }

  identity fid-coap-option-oscore-kidctx {
    base fid-oscore-base-type;
    description
      "CoAP option oscore flags (see section 6.4).";
    reference
      "RFC 8824 Static Context Header Compression (SCHC) for the
                Constrained Application Protocol (CoAP)";
  }

  //----------------------------------
  // Field Length type definition
  //----------------------------------

  identity fl-base-type {
    description
      "Used to extend field length functions.";
  }

  identity fl-variable {
    base fl-base-type;
    description
      "Residue length in Byte is sent as defined
       for CoAP in section 5.3.";
    reference
      "RFC 8824 Static Context Header Compression (SCHC) for the
                Constrained Application Protocol (CoAP)";
  }

  identity fl-token-length {
    base fl-base-type;
    description
      "Residue length in Byte is sent as defined
       for CoAP in section 4.5.";
    reference
      "RFC 8824 Static Context Header Compression (SCHC) for the
                Constrained Application Protocol (CoAP)";
  }

  //---------------------------------
  // Direction Indicator type
  //---------------------------------

  identity di-base-type {
    description
      "Used to extend direction indicators.";
  }

  identity di-bidirectional {
    base di-base-type;
    description
      "Direction Indication of bidirectionality in
       section 7.1.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity di-up {
    base di-base-type;
    description
      "Direction Indication of uplink defined in
       section 7.1.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity di-down {
    base di-base-type;
    description
      "Direction Indication of downlink defined in
       section 7.1.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  //----------------------------------
  // Matching Operator type definition
  //----------------------------------

  identity mo-base-type {
    description
      "Matching Operator: used in the rule selection process
       defined in section 7.2 to check is a Target Value
       matches the field's value.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity mo-equal {
    base mo-base-type;
    description
      "equal MO as defined in section 7.3.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity mo-ignore {
    base mo-base-type;
    description
      "ignore MO as defined in section 7.3.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity mo-msb {
    base mo-base-type;
    description
      "MSB MO as defined in section 7.3.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity mo-match-mapping {
    base mo-base-type;
    description
      "match-mapping MO as defined in section 7.3.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  //------------------------------
  // CDA type definition
  //------------------------------

  identity cda-base-type {
    description
      "Compression Decompression Actions. Specify the action to
       be applied to the field's value in a specific rule as
       defined in section 7.2";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity cda-not-sent {
    base cda-base-type;
    description
      "not-sent CDA as defined in section 7.4.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity cda-value-sent {
    base cda-base-type;
    description
      "value-sent CDA as defined in section 7.4.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity cda-lsb {
    base cda-base-type;
    description
      "LSB CDA as defined in section 7.4.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity cda-mapping-sent {
    base cda-base-type;
    description
      "mapping-sent CDA as defined in RFC 8724 (cf. 7.4).";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity cda-compute {
    base cda-base-type;
    description
      "compute-* CDA as defined in section 7.4.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity cda-deviid {
    base cda-base-type;
    description
      "DevIID CDA as defined in section 7.4.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  identity cda-appiid {
    base cda-base-type;
    description
      "AppIID CDA as defined in section 7.4.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context
                Header Compression and Fragmentation";
  }

  // -- type definition

  typedef fid-type {
    type identityref {
      base fid-base-type;
    }
    description
      "Field ID generic type.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  typedef fl-type {
    type union {
      type uint64 {
        range 1..max;
      }
      type identityref { 
        base fl-base-type;
      }
    }
    description
      "Field length either a positive integer expressing the size in
       bits or a function defined through an identityref.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  typedef di-type {
    type identityref {
      base di-base-type;
    }
    description
      "Direction in LPWAN network, up when emitted by the device,
       down when received by the device, bi when emitted or
       received by the device.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  typedef mo-type {
    type identityref {
      base mo-base-type;
    }
    description
      "Matching Operator (MO) to compare fields values with
       target values.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  typedef cda-type {
    type identityref {
      base cda-base-type;
    }
    description
      "Compression Decompression Action to compression or
       decompress a field.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  // -- FRAGMENTATION TYPE
  // -- fragmentation modes

  identity fragmentation-mode-base-type {
    description
      "Define the fragmentation mode.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  identity fragmentation-mode-no-ack {
    base fragmentation-mode-base-type;
    description
      "No-ACK mode.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  identity fragmentation-mode-ack-always {
    base fragmentation-mode-base-type;
    description
      "ACK-Always mode.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  identity fragmentation-mode-ack-on-error {
    base fragmentation-mode-base-type;
    description
      "ACK-on-Error mode.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  typedef fragmentation-mode-type {
    type identityref {
      base fragmentation-mode-base-type;
    }
    description
      "Define the type used for fragmentation mode in rules.";
  }

  // -- Ack behavior 

  identity ack-behavior-base-type {
    description
      "Define when to send an Acknowledgment .";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  identity ack-behavior-after-all-0 {
    base ack-behavior-base-type;
    description
      "Fragmentation expects Ack after sending All-0 fragment.";
  }

  identity ack-behavior-after-all-1 {
    base ack-behavior-base-type;
    description
      "Fragmentation expects Ack after sending All-1 fragment.";
  }

  identity ack-behavior-by-layer2 {
    base ack-behavior-base-type;
    description
      "Layer 2 defines when to send an Ack.";
  }

  typedef ack-behavior-type {
    type identityref {
      base ack-behavior-base-type;
    }
    description
      "Define the type used for Ack behavior in rules.";
  }

  // -- All-1 with data types

  identity all-1-data-base-type {
    description
      "Type to define when to send an Acknowledgment message.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  identity all-1-data-no {
    base all-1-data-base-type;
    description
      "All-1 contains no tiles.";
  }

  identity all-1-data-yes {
    base all-1-data-base-type;
    description
      "All-1 MUST contain a tile.";
  }

  identity all-1-data-sender-choice {
    base all-1-data-base-type;
    description
      "Fragmentation process chooses to send tiles or not in All-1.";
  }

  typedef all-1-data-type {
    type identityref {
      base all-1-data-base-type;
    }
    description
      "Define the type used for All-1 format in rules.";
  }

  // -- RCS algorithm types

  identity rcs-algorithm-base-type {
    description
      "Identify which algorithm is used to compute RCS.
       The algorithm also defines the size of the RCS field.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  identity rcs-crc32 {
    base rcs-algorithm-base-type;
    description
      "CRC 32 defined as default RCS in RFC8724. This RCS is
       4 bytes long.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  typedef rcs-algorithm-type {
    type identityref {
      base rcs-algorithm-base-type;
    }
    description
      "Define the type for RCS algorithm in rules.";
  }

  // --------  RULE ENTRY DEFINITION ------------

  grouping tv-struct {
    description
      "Defines the target value element. If the header field
       contains a text, the binary sequence uses the same encoding.
       field-id allows the conversion to the appropriate type.";
    leaf index {
      type uint16;
      description
        "Index gives the position in the matching-list. If only one
         element is present, index is 0. Otherwise, index is the
         the order in the matching list, starting at 0.";
    }
    leaf value {
      type binary;
      description
        "Target Value content as an untyped binary value.";
    }
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  grouping compression-rule-entry {
    description
      "These entries defines a compression entry (i.e. a line)
       as defined in RFC 8724.

   +-------+--+--+--+------------+-----------------+---------------+
   |Field 1|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act|
   +-------+--+--+--+------------+-----------------+---------------+

       An entry in a compression rule is composed of 7 elements:
       - Field ID: The header field to be compressed.
       - Field Length : Either a positive integer of a function.
       - Field Position: A positive (and possibly equal to 0)
         integer.
       - Direction Indicator: An indication in which direction
         compression and decompression process is effective.
       - Target value: A value against which the header Field is
         compared.
       - Matching Operator: The comparison operation and optional
         associate parameters.
       - Comp./Decomp. Action: The compression or decompression
         action, and optional parameters.
      ";
    leaf field-id {
      type schc:fid-type;
      mandatory true;
      description
        "Field ID, identify a field in the header with a YANG
         identity reference.";
    }
    leaf field-length {
      type schc:fl-type;
      mandatory true;
      description
        "Field Length, expressed in number of bits if the length is
         known when the Rule is created or through a specific
         function if the length is variable.";
    }
    leaf field-position {
      type uint8;
      mandatory true;
      description
        "Field position in the header is an integer. Position 1
         matches the first occurrence of a field in the header,
         while incremented position values match subsequent
         occurrences.
         Position 0 means that this entry matches a field
         irrespective of its position of occurrence in the
         header.
         Be aware that the decompressed header may have
         position-0 fields ordered differently than they
         appeared in the original packet.";
    }
    leaf direction-indicator {
      type schc:di-type;
      mandatory true;
      description
        "Direction Indicator, indicate if this field must be
         considered for rule selection or ignored based on the
         direction (bi directionnal, only uplink, or only
         downlink).";
    }
    list target-value {
      key "index";
      uses tv-struct;
      description
        "A list of value to compare with the header field value.
         If target value is a singleton, position must be 0.
         For use as a matching list for the mo-match-mapping matching
         operator, index should take consecutive values starting
         from 0.";
    }
    leaf matching-operator {
      type schc:mo-type;
      must "../target-value or derived-from-or-self(., 
                                                   'mo-ignore')" {
        error-message
          "mo-equal, mo-msb and mo-match-mapping need target-value";
        description
          "target-value is not required for mo-ignore.";
      }
      must "not (derived-from-or-self(., 'mo-msb')) or
            ../matching-operator-value" {
        error-message "mo-msb requires length value";
      }
      mandatory true;
      description
        "MO: Matching Operator (cf. Section 7.3).";
    }
    list matching-operator-value {
      key "index";
      uses tv-struct;
      description
        "Matching Operator Arguments, based on TV structure to allow
         several arguments.
         In RFC 8724, only the MSB matching operator needs arguments
         (a single argument, which is the number of most significant
         bits to be matched).";
    }
    leaf comp-decomp-action {
      type schc:cda-type;
      must "../target-value or 
                derived-from-or-self(., 'cda-value-sent') or
                derived-from-or-self(., 'cda-compute') or
                derived-from-or-self(., 'cda-appiid') or
                derived-from-or-self(., 'cda-deviid')" {
        error-message
          "cda-not-sent, cda-lsb, cda-mapping-sent need
           target-value";
        description
          "target-value is not required for some CDA.";
        }
      mandatory true;
      description
        "CDA: Compression Decompression Action (cf. Section 7.4).";
    }
    list comp-decomp-action-value {
      key "index";
      uses tv-struct;
      description
        "CDA arguments, based on a TV structure, in order to allow
         for several arguments. The CDAs specified in RFC 8724
         require no argument.";
    }
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  // --Rule nature

  identity nature-base-type {
    description
      "A rule, identified by its RuleID, are used for a single
       purpose. Section 6. defines 2 natures: 
       compression, no compression and fragmentation.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  identity nature-compression {
    base nature-base-type;
    description
      "Identify a compression rule, as defined in section 6";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  identity nature-no-compression {
    base nature-base-type;
    description
      "Identify a no compression rule, as defined in section 6.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  identity nature-fragmentation {
    base nature-base-type;
    description
      "Identify a fragmentation rule, as defined in section 6.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  typedef nature-type {
    type identityref {
      base nature-base-type;
    }
    description
      "defines the type to indicate the nature of the rule.";
  }

  grouping compression-content {
    list entry {
      must "derived-from-or-self(../rule-nature,
                                        'nature-compression')" {
        error-message "Rule nature must be compression";
      }
      key "field-id field-position direction-indicator";
      uses compression-rule-entry;
      description
        "A compression rule is a list of rule entries, each
         describing a header field. An entry is identified
         through a field-id, its position in the packet, and
         its direction.";
    }
    description
      "Define a compression rule composed of a list of entries.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  grouping fragmentation-content {
    description
      "This grouping defines the fragmentation parameters for
       all the modes (No-ACK, ACK-Always and ACK-on-Error) specified
       in RFC 8724.";
    leaf fragmentation-mode {
      type schc:fragmentation-mode-type;
      must "derived-from-or-self(../rule-nature,
                                        'nature-fragmentation')" {
        error-message "Rule nature must be fragmentation";
      }
      mandatory true;
      description
        "Which fragmentation mode is used (No-Ack, ACK-Always,
         ACK-on-Error).";
    }
    leaf l2-word-size {
      type uint8;
      default "8";
      description
        "Size, in bits, of the layer 2 word.";
    }
    leaf direction {
      type schc:di-type;
      must "derived-from-or-self(., 'di-up') or
            derived-from-or-self(., 'di-down')" {
        error-message
          "Direction for fragmentation rules are up or down.";
      }
      mandatory true;
      description
        "MUST be up or down, bidirectional MUST NOT be used.";
    }
    // SCHC Frag header format 
    leaf dtag-size {
      type uint8;
      default "0";
      description
        "Size, in bits, of the DTag field (T variable from
         RFC8724).";
    }
    leaf w-size {
      when "derived-from-or-self(../fragmentation-mode,
                                'fragmentation-mode-ack-on-error')
            or
            derived-from-or-self(../fragmentation-mode,
                                'fragmentation-mode-ack-always') ";
      type uint8;
      description
        "Size, in bits, of the window field (M variable from
         RFC8724).";
    }
    leaf fcn-size {
      type uint8;
      mandatory true;
      description
        "Size, in bits, of the FCN field (N variable from RFC8724).";
    }
    leaf rcs-algorithm {
      type rcs-algorithm-type;
      default "schc:rcs-crc32";
      description
        "Algorithm used for RCS. The algorithm specifies the RCS
         size.";
    }
    // SCHC fragmentation protocol parameters
    leaf maximum-packet-size {
      type uint16;
      default "1280";
      description
        "When decompression is done, packet size must not
         strictly exceed this limit, expressed in bytes.";
    }
    leaf window-size {
      type uint16;
      description
        "By default, if not specified 2^w-size - 1. Should not exceed
         this value. Possible FCN values are between 0 and
         window-size - 1.";
    }
    leaf max-interleaved-frames {
      type uint8;
      default "1";
      description
        "Maximum of simultaneously fragmented frames. Maximum value
         is 2^dtag-size. All DTAG values can be used, but more than
         max-interleaved-frames MUST NOT be active at any time";
    }
    container inactivity-timer {
      leaf ticks-duration {
        type uint8;
        default "20";
        description
          "Duration of one tick in micro-seconds:
              2^ticks-duration/10^6 = 1.048s.";
      }
      leaf ticks-numbers {
        type uint16 {
          range "0..max";
        }
        description
          "Timer duration = ticks-numbers*2^ticks-duration / 10^6.";
      }

      description
        "Duration is seconds of the inactivity timer, 0 indicates
         that the timer is disabled.
         
         Allows a precision from micro-second to year by sending the
         tick-duration value. For instance:

       tick-duration /  smallest value          highest value
       v
       20: 00y 000d 00h 00m 01s.048575<->00y 000d 19h 05m 18s.428159
       21: 00y 000d 00h 00m 02s.097151<->00y 001d 14h 10m 36s.856319
       22: 00y 000d 00h 00m 04s.194303<->00y 003d 04h 21m 13s.712639
       23: 00y 000d 00h 00m 08s.388607<->00y 006d 08h 42m 27s.425279
       24: 00y 000d 00h 00m 16s.777215<->00y 012d 17h 24m 54s.850559
       25: 00y 000d 00h 00m 33s.554431<->00y 025d 10h 49m 49s.701119

        Note that the smallest value is also the incrementation step,
        so the timer precision.";
    }
    container retransmission-timer {
      leaf ticks-duration {
        type uint8;
        default "20";
        description
          "Duration of one tick in micro-seconds:
              2^ticks-duration/10^6 = 1.048s.";
      }
      leaf ticks-numbers {
        type uint16 {
          range "1..max";
        }
        description
          "Timer duration = ticks-numbers*2^ticks-duration / 10^6.";
      }

      when "derived-from-or-self(../fragmentation-mode,
                                'fragmentation-mode-ack-on-error')
            or
            derived-from-or-self(../fragmentation-mode,
                                'fragmentation-mode-ack-always') ";
      description
        "Duration in seconds of the retransmission timer. 
         See inactivity timer.";
    }
    leaf max-ack-requests {
      when "derived-from-or-self(../fragmentation-mode,
                                'fragmentation-mode-ack-on-error')
            or
            derived-from-or-self(../fragmentation-mode,
                                'fragmentation-mode-ack-always') ";
      type uint8 {
        range "1..max";
      }
      description
        "The maximum number of retries for a specific SCHC ACK.";
    }
    choice mode {
      case no-ack;
      case ack-always;
      case ack-on-error {
        leaf tile-size {
          when "derived-from-or-self(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type uint8;
          description
            "Size, in bits, of tiles. If not specified or set to 0,
             tiles fill the fragment.";
        }
        leaf tile-in-all-1 {
          when "derived-from-or-self(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type schc:all-1-data-type;
          description
            "Defines whether the sender and receiver expect a tile in
             All-1 fragments or not, or if it is left to the sender's
             choice.";
        }
        leaf ack-behavior {
          when "derived-from-or-self(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type schc:ack-behavior-type;
          description
            "Sender behavior to acknowledge, after All-0, All-1 or
             when the LPWAN allows it.";
        }
      }
      description
        "RFC 8724 defines 3 fragmentation modes.";
    }
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  // Define rule ID. Rule ID is composed of a RuleID value and a 
  // Rule ID Length

  grouping rule-id-type {
    leaf rule-id-value {
      type uint32;
      description
        "Rule ID value, this value must be unique, considering its
         length.";
    }
    leaf rule-id-length {
      type uint8 {
        range "0..32";
      }
      description
        "Rule ID length, in bits. The value 0 is for implicit
         rules.";
    }
    description
      "A rule ID is composed of a value and a length, expressed in
       bits.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  // SCHC table for a specific device.

  container schc {
    list rule {
      key "rule-id-value rule-id-length";
      uses rule-id-type;
      leaf rule-nature {
        type nature-type;
        mandatory true;
        description
          "Specify the rule's nature.";
      }
      choice nature {
        case fragmentation {
          if-feature "fragmentation";
          uses fragmentation-content;
        }
        case compression {
          if-feature "compression";
          uses compression-content;
        }
        description
          "A rule is for compression, for no-compression or for
           fragmentation.";
      }
      description
        "Set of rules compression, no compression or fragmentation
         rules identified by their rule-id.";
    }
    description
      "A SCHC set of rules is composed of a list of rules which are
       used for compression, no-compression or fragmentation.";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }
}
<CODE ENDS>
]]></artwork></figure>

</section>
<section anchor="implementation-status"><name>Implementation Status</name>

<!--NOTE TO RFC EDITOR:  remove the entire section before
   publication, as well as the reference to RFC 7942. -->

<t>This section records the status of known implementations of the
protocol defined by this specification at the time of posting of
this Internet-Draft, and is based on a proposal described in
<xref target="RFC7942"/>.  The description of implementations in this section is
intended to assist the IETF in its decision processes in
progressing drafts to RFCs.  Please note that the listing of any
individual implementation here does not imply endorsement by the
IETF.  Furthermore, no effort has been spent to verify the
information presented here that was supplied by IETF contributors.
This is not intended as, and must not be construed to be, a
catalog of available implementations or their features.  Readers
are advised to note that other implementations may exist.</t>

<t>According to <xref target="RFC7942"/>, "this will allow reviewers and working
groups to assign due consideration to documents that have the
benefit of running code, which may serve as evidence of valuable
experimentation and feedback that have made the implemented
protocols more mature.  It is up to the individual working groups
to use this information as they see fit".</t>

<t><list style="symbols">
  <t>Openschc is implementing the conversion between the local rule 
representation and the representation conforming to the data model 
in JSON and CBOR (following -08 draft).</t>
</list></t>

</section>
<section anchor="iana-considerations"><name>IANA Considerations</name>

<t>This document registers one URI and one YANG modules.</t>

<section anchor="uri-registration"><name>  URI Registration</name>

<t>This document requests IANA to register the following  URI in the "IETF XML Registry" <xref target="RFC3688"/>:</t>

<ul empty="true"><li>
  <t>URI:  urn:ietf:params:xml:ns:yang:ietf-schc</t>
</li></ul>

<ul empty="true"><li>
  <t>Registrant Contact:  The IESG.</t>
</li></ul>

<ul empty="true"><li>
  <t>XML:  N/A; the requested URI is an XML namespace.</t>
</li></ul>

</section>
<section anchor="yang-module-name-registration"><name>  YANG Module Name Registration</name>

<t>This document registers the following one YANG modules in the "YANG Module Names" registry <xref target="RFC6020"/>.</t>

<ul empty="true"><li>
  <t>name:           ietf-schc</t>
</li></ul>

<ul empty="true"><li>
  <t>namespace:      urn:ietf:params:xml:ns:yang:ietf-schc</t>
</li></ul>

<ul empty="true"><li>
  <t>prefix:         schc</t>
</li></ul>

<ul empty="true"><li>
  <t>reference:      RFC XXXX Data Model for Static Context Header Compression (SCHC)</t>
</li></ul>

</section>
</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t>The YANG module specified in this document defines a schema 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>This data model formalizes the rules elements described in <xref target="RFC8724"/> for compression, and fragmentation. As explained in the architecture document <xref target="I-D.ietf-lpwan-architecture"/>, a rule can be read, created, updated or deleted in response to a management request. These actions can be done between two instances of SCHC or between a SCHC instance and a rule repository.</t>

<figure><artwork><![CDATA[
                     create
          (-------)  read   +=======+ *
          ( rules )<------->|Rule   |<--|-------->
          (-------)  update |Manager|   NETCONF, RESTCONF,...
             . read  delete +=======+   request
             .
          +-------+
      <===| R & D |<===
      ===>| C & F |===>
          +-------+
]]></artwork></figure>

<t>The rule contains sensitive information such as the application IPv6 address where the device's data will be sent after decompression. A device may try to modify other devices' rules by changing the application address and may block communication or allows traffic eavesdropping. Therefore, a device must be allowed to modify only its own rules on the remote SCHC instance. The identity of the requester must be validated. This can be done through certificates or access lists. By reading a module, an attacker may know the traffic a device can generate and learn about application addresses or REST API.</t>

<t>The full tree is sensitive, since it represents all the elements that can be managed.  This module aims to be encapsulated into a YANG module including access controls and identities.</t>

</section>
<section anchor="annex-a-example"><name>Annex A : Example</name>

<t>The informal rules given <xref target="Fig-example-rules"/> will represented in XML as shown in <xref target="Fig-XML-rules"/>.</t>

<figure title="Rules example" anchor="Fig-example-rules"><artwork><![CDATA[
/-------------------------\
|Rule 6/3            110  |
|---------------+---+--+--+----------------+-------+----------------\
|IPV6.VER       |  4| 1|BI|               6|EQUAL  |NOT-SENT        |
|IPV6.TC        |  8| 1|BI|               0|EQUAL  |NOT-SENT        |
|IPV6.FL        | 20| 1|BI|               0|IGNORE |NOT-SENT        |
|IPV6.LEN       | 16| 1|BI|                |IGNORE |COMPUTE-LENGTH  |
|IPV6.NXT       |  8| 1|BI|              58|EQUAL  |NOT-SENT        |
|IPV6.HOP_LMT   |  8| 1|BI|             255|IGNORE |NOT-SENT        |
|IPV6.DEV_PREFIX| 64| 1|BI|200104701f2101d2|EQUAL  |NOT-SENT        |
|IPV6.DEV_IID   | 64| 1|BI|0000000000000003|EQUAL  |NOT-SENT        |
|IPV6.APP_PREFIX| 64| 1|BI|                |IGNORE |VALUE-SENT      |
|IPV6.APP_IID   | 64| 1|BI|                |IGNORE |VALUE-SENT      |
\---------------+---+--+--+----------------+-------+----------------/
/-------------------------\
|Rule 12/11     00001100  |
!=========================+=========================================\
!^ Fragmentation mode : NoAck   header dtag 2 Window  0 FCN  3  UP ^!
!^ No Tile size specified                                          ^!
!^ RCS Algorithm: RCS_CRC32                                        ^!
\===================================================================/
/-------------------------\
|Rule 100/8     01100100  |
| NO COMPRESSION RULE     |
\-------------------------/

]]></artwork></figure>

<figure title="XML representation of the rules." anchor="Fig-XML-rules"><artwork><![CDATA[
<?xml version='1.0' encoding='UTF-8'?>
  <schc xmlns="urn:ietf:params:xml:ns:yang:ietf-schc">
  <rule>
    <rule-id-value>6</rule-id-value>
    <rule-id-length>3</rule-id-length>
    <rule-nature>nature-compression</rule-nature>
    <entry>
      <field-id>fid-ipv6-version</field-id>
      <field-length>4</field-length>
      <field-position>1</field-position>
      <direction-indicator>di-bidirectional</direction-indicator>
      <matching-operator>mo-equal</matching-operator>
      <comp-decomp-action>cda-not-sent</comp-decomp-action>
      <target-value>
        <index>0</index>
        <value>AAY=</value>
      </target-value>
    </entry>
    <entry>
      <field-id>fid-ipv6-trafficclass</field-id>
      <field-length>8</field-length>
      <field-position>1</field-position>
      <direction-indicator>di-bidirectional</direction-indicator>
      <matching-operator>mo-equal</matching-operator>
      <comp-decomp-action>cda-not-sent</comp-decomp-action>
      <target-value>
        <index>0</index>
        <value>AA==</value>
      </target-value>
    </entry>
    <entry>
      <field-id>fid-ipv6-flowlabel</field-id>
      <field-length>20</field-length>
      <field-position>1</field-position>
      <direction-indicator>di-bidirectional</direction-indicator>
      <matching-operator>mo-ignore</matching-operator>
      <comp-decomp-action>cda-not-sent</comp-decomp-action>
      <target-value>
        <index>0</index>
        <value>AA==</value>
      </target-value>
    </entry>
    <entry>
      <field-id>fid-ipv6-payload-length</field-id>
      <field-length>16</field-length>
      <field-position>1</field-position>
      <direction-indicator>di-bidirectional</direction-indicator>
      <matching-operator>mo-ignore</matching-operator>
      <comp-decomp-action>cda-compute</comp-decomp-action>
    </entry>
    <entry>
      <field-id>fid-ipv6-nextheader</field-id>
      <field-length>8</field-length>
      <field-position>1</field-position>
      <direction-indicator>di-bidirectional</direction-indicator>
      <matching-operator>mo-equal</matching-operator>
      <comp-decomp-action>cda-not-sent</comp-decomp-action>
      <target-value>
        <index>0</index>
        <value>ADo=</value>
      </target-value>
    </entry>
    <entry>
      <field-id>fid-ipv6-hoplimit</field-id>
      <field-length>8</field-length>
      <field-position>1</field-position>
      <direction-indicator>di-bidirectional</direction-indicator>
      <matching-operator>mo-ignore</matching-operator>
      <comp-decomp-action>cda-not-sent</comp-decomp-action>
      <target-value>
        <index>0</index>
        <value>AP8=</value>
      </target-value>
    </entry>
    <entry>
      <field-id>fid-ipv6-devprefix</field-id>
      <field-length>64</field-length>
      <field-position>1</field-position>
      <direction-indicator>di-bidirectional</direction-indicator>
      <matching-operator>mo-equal</matching-operator>
      <comp-decomp-action>cda-not-sent</comp-decomp-action>
      <target-value>
        <index>0</index>
        <value>IAEEcB8hAdI=</value>
      </target-value>
    </entry>
    <entry>
      <field-id>fid-ipv6-deviid</field-id>
      <field-length>64</field-length>
      <field-position>1</field-position>
      <direction-indicator>di-bidirectional</direction-indicator>
      <matching-operator>mo-equal</matching-operator>
      <comp-decomp-action>cda-not-sent</comp-decomp-action>
      <target-value>
        <index>0</index>
        <value>AAAAAAAAAAM=</value>
      </target-value>
    </entry>
    <entry>
      <field-id>fid-ipv6-appprefix</field-id>
      <field-length>64</field-length>
      <field-position>1</field-position>
      <direction-indicator>di-bidirectional</direction-indicator>
      <matching-operator>mo-ignore</matching-operator>
      <comp-decomp-action>cda-value-sent</comp-decomp-action>
    </entry>
    <entry>
      <field-id>fid-ipv6-appiid</field-id>
      <field-length>64</field-length>
      <field-position>1</field-position>
      <direction-indicator>di-bidirectional</direction-indicator>
      <matching-operator>mo-ignore</matching-operator>
      <comp-decomp-action>cda-value-sent</comp-decomp-action>
    </entry>
  </rule>
  <rule>
    <rule-id-value>12</rule-id-value>
    <rule-id-length>11</rule-id-length>
    <rule-nature>nature-fragmentation</rule-nature>
    <direction>di-up</direction>
    <rcs-algorithm>rcs-crc32</rcs-algorithm>
    <dtag-size>2</dtag-size>
    <fcn-size>3</fcn-size>
    <fragmentation-mode>fragmentation-mode-no-ack</fragmentation-mode>
  </rule>
  <rule>
    <rule-id-value>100</rule-id-value>
    <rule-id-length>8</rule-id-length>
    <rule-nature>nature-no-compression</rule-nature>
  </rule>
 </schc>

]]></artwork></figure>

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

<t>The authors would like to thank Dominique Barthel, Carsten Bormann, Ivan Martinez, Alexander Pelov for their careful reading and valuable inputs. A special thanks for 
Joe Clarke, Carl Moberg, Tom Petch, Martin Thomson, 
and Eric Vyncke for their explanations and wise advices when building the model.</t>

</section>


  </middle>

  <back>


    <references title='Normative References'>





<reference anchor='RFC0768' target='https://www.rfc-editor.org/info/rfc768'>
<front>
<title>User Datagram Protocol</title>
<author fullname='J. Postel' initials='J.' surname='Postel'><organization/></author>
<date month='August' year='1980'/>
</front>
<seriesInfo name='STD' value='6'/>
<seriesInfo name='RFC' value='768'/>
<seriesInfo name='DOI' value='10.17487/RFC0768'/>
</reference>



<reference anchor='RFC2119' target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author fullname='S. Bradner' initials='S.' surname='Bradner'><organization/></author>
<date month='March' year='1997'/>
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference anchor='RFC3688' target='https://www.rfc-editor.org/info/rfc3688'>
<front>
<title>The IETF XML Registry</title>
<author fullname='M. Mealling' initials='M.' surname='Mealling'><organization/></author>
<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' target='https://www.rfc-editor.org/info/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'><organization/></author>
<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='RFC7136' target='https://www.rfc-editor.org/info/rfc7136'>
<front>
<title>Significance of IPv6 Interface Identifiers</title>
<author fullname='B. Carpenter' initials='B.' surname='Carpenter'><organization/></author>
<author fullname='S. Jiang' initials='S.' surname='Jiang'><organization/></author>
<date month='February' year='2014'/>
<abstract><t>The IPv6 addressing architecture includes a unicast interface identifier that is used in the creation of many IPv6 addresses. Interface identifiers are formed by a variety of methods.  This document clarifies that the bits in an interface identifier have no meaning and that the entire identifier should be treated as an opaque value.  In particular, RFC 4291 defines a method by which the Universal and Group bits of an IEEE link-layer address are mapped into an IPv6 unicast interface identifier.  This document clarifies that those two bits are significant only in the process of deriving interface identifiers from an IEEE link-layer address, and it updates RFC 4291 accordingly.</t></abstract>
</front>
<seriesInfo name='RFC' value='7136'/>
<seriesInfo name='DOI' value='10.17487/RFC7136'/>
</reference>



<reference anchor='RFC7252' target='https://www.rfc-editor.org/info/rfc7252'>
<front>
<title>The Constrained Application Protocol (CoAP)</title>
<author fullname='Z. Shelby' initials='Z.' surname='Shelby'><organization/></author>
<author fullname='K. Hartke' initials='K.' surname='Hartke'><organization/></author>
<author fullname='C. Bormann' initials='C.' surname='Bormann'><organization/></author>
<date month='June' year='2014'/>
<abstract><t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks.  The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s.  The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t><t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types.  CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t></abstract>
</front>
<seriesInfo name='RFC' value='7252'/>
<seriesInfo name='DOI' value='10.17487/RFC7252'/>
</reference>



<reference anchor='RFC8174' target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author fullname='B. Leiba' initials='B.' surname='Leiba'><organization/></author>
<date month='May' year='2017'/>
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>



<reference anchor='RFC8200' target='https://www.rfc-editor.org/info/rfc8200'>
<front>
<title>Internet Protocol, Version 6 (IPv6) Specification</title>
<author fullname='S. Deering' initials='S.' surname='Deering'><organization/></author>
<author fullname='R. Hinden' initials='R.' surname='Hinden'><organization/></author>
<date month='July' year='2017'/>
<abstract><t>This document specifies version 6 of the Internet Protocol (IPv6). It obsoletes RFC 2460.</t></abstract>
</front>
<seriesInfo name='STD' value='86'/>
<seriesInfo name='RFC' value='8200'/>
<seriesInfo name='DOI' value='10.17487/RFC8200'/>
</reference>



<reference anchor='RFC8342' target='https://www.rfc-editor.org/info/rfc8342'>
<front>
<title>Network Management Datastore Architecture (NMDA)</title>
<author fullname='M. Bjorklund' initials='M.' surname='Bjorklund'><organization/></author>
<author fullname='J. Schoenwaelder' initials='J.' surname='Schoenwaelder'><organization/></author>
<author fullname='P. Shafer' initials='P.' surname='Shafer'><organization/></author>
<author fullname='K. Watsen' initials='K.' surname='Watsen'><organization/></author>
<author fullname='R. Wilton' initials='R.' surname='Wilton'><organization/></author>
<date month='March' year='2018'/>
<abstract><t>Datastores are a fundamental concept binding the data models written in the YANG data modeling language to network management protocols such as the Network Configuration Protocol (NETCONF) and RESTCONF. This document defines an architectural framework for datastores based on the experience gained with the initial simpler model, addressing requirements that were not well supported in the initial model.  This document updates RFC 7950.</t></abstract>
</front>
<seriesInfo name='RFC' value='8342'/>
<seriesInfo name='DOI' value='10.17487/RFC8342'/>
</reference>



<reference anchor='RFC8613' target='https://www.rfc-editor.org/info/rfc8613'>
<front>
<title>Object Security for Constrained RESTful Environments (OSCORE)</title>
<author fullname='G. Selander' initials='G.' surname='Selander'><organization/></author>
<author fullname='J. Mattsson' initials='J.' surname='Mattsson'><organization/></author>
<author fullname='F. Palombini' initials='F.' surname='Palombini'><organization/></author>
<author fullname='L. Seitz' initials='L.' surname='Seitz'><organization/></author>
<date month='July' year='2019'/>
<abstract><t>This document defines Object Security for Constrained RESTful Environments (OSCORE), a method for application-layer protection of the Constrained Application Protocol (CoAP), using CBOR Object Signing and Encryption (COSE).  OSCORE provides end-to-end protection between endpoints communicating using CoAP or CoAP-mappable HTTP. OSCORE is designed for constrained nodes and networks supporting a range of proxy operations, including translation between different transport protocols.</t><t>Although an optional functionality of CoAP, OSCORE alters CoAP options processing and IANA registration.  Therefore, this document updates RFC 7252.</t></abstract>
</front>
<seriesInfo name='RFC' value='8613'/>
<seriesInfo name='DOI' value='10.17487/RFC8613'/>
</reference>



<reference anchor='RFC8724' target='https://www.rfc-editor.org/info/rfc8724'>
<front>
<title>SCHC: Generic Framework for Static Context Header Compression and Fragmentation</title>
<author fullname='A. Minaburo' initials='A.' surname='Minaburo'><organization/></author>
<author fullname='L. Toutain' initials='L.' surname='Toutain'><organization/></author>
<author fullname='C. Gomez' initials='C.' surname='Gomez'><organization/></author>
<author fullname='D. Barthel' initials='D.' surname='Barthel'><organization/></author>
<author fullname='JC. Zuniga' initials='JC.' surname='Zuniga'><organization/></author>
<date month='April' year='2020'/>
<abstract><t>This document defines the Static Context Header Compression and fragmentation (SCHC) framework, which provides both a header compression mechanism and an optional fragmentation mechanism. SCHC has been designed with Low-Power Wide Area Networks (LPWANs) in mind.</t><t>SCHC compression is based on a common static context stored both in the LPWAN device and in the network infrastructure side. This document defines a generic header compression mechanism and its application to compress IPv6/UDP headers.</t><t>This document also specifies an optional fragmentation and reassembly mechanism. It can be used to support the IPv6 MTU requirement over the LPWAN technologies. Fragmentation is needed for IPv6 datagrams that, after SCHC compression or when such compression was not possible, still exceed the Layer 2 maximum payload size.</t><t>The SCHC header compression and fragmentation mechanisms are independent of the specific LPWAN technology over which they are used. This document defines generic functionalities and offers flexibility with regard to parameter settings and mechanism choices. This document standardizes the exchange over the LPWAN between two SCHC entities. Settings and choices specific to a technology or a product are expected to be grouped into profiles, which are specified in other documents. Data models for the context and profiles are out of scope.</t></abstract>
</front>
<seriesInfo name='RFC' value='8724'/>
<seriesInfo name='DOI' value='10.17487/RFC8724'/>
</reference>



<reference anchor='RFC8824' target='https://www.rfc-editor.org/info/rfc8824'>
<front>
<title>Static Context Header Compression (SCHC) for the Constrained Application Protocol (CoAP)</title>
<author fullname='A. Minaburo' initials='A.' surname='Minaburo'><organization/></author>
<author fullname='L. Toutain' initials='L.' surname='Toutain'><organization/></author>
<author fullname='R. Andreasen' initials='R.' surname='Andreasen'><organization/></author>
<date month='June' year='2021'/>
<abstract><t>This document defines how to compress Constrained Application Protocol (CoAP) headers using the Static Context Header Compression and fragmentation (SCHC) framework. SCHC defines a header compression mechanism adapted for Constrained Devices. SCHC uses a static description of the header to reduce the header's redundancy and size. While RFC 8724 describes the SCHC compression and fragmentation framework, and its application for IPv6/UDP headers, this document applies SCHC to CoAP headers. The CoAP header structure differs from IPv6 and UDP, since CoAP uses a flexible header with a variable number of options, themselves of variable length. The CoAP message format is asymmetric: the request messages have a header format different from the format in the response messages. This specification gives guidance on applying SCHC to flexible headers and how to leverage the asymmetry for more efficient compression Rules.</t></abstract>
</front>
<seriesInfo name='RFC' value='8824'/>
<seriesInfo name='DOI' value='10.17487/RFC8824'/>
</reference>



<reference anchor='RFC6241' target='https://www.rfc-editor.org/info/rfc6241'>
<front>
<title>Network Configuration Protocol (NETCONF)</title>
<author fullname='R. Enns' initials='R.' role='editor' surname='Enns'><organization/></author>
<author fullname='M. Bjorklund' initials='M.' role='editor' surname='Bjorklund'><organization/></author>
<author fullname='J. Schoenwaelder' initials='J.' role='editor' surname='Schoenwaelder'><organization/></author>
<author fullname='A. Bierman' initials='A.' role='editor' surname='Bierman'><organization/></author>
<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='RFC8040' target='https://www.rfc-editor.org/info/rfc8040'>
<front>
<title>RESTCONF Protocol</title>
<author fullname='A. Bierman' initials='A.' surname='Bierman'><organization/></author>
<author fullname='M. Bjorklund' initials='M.' surname='Bjorklund'><organization/></author>
<author fullname='K. Watsen' initials='K.' surname='Watsen'><organization/></author>
<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='RFC6242' target='https://www.rfc-editor.org/info/rfc6242'>
<front>
<title>Using the NETCONF Protocol over Secure Shell (SSH)</title>
<author fullname='M. Wasserman' initials='M.' surname='Wasserman'><organization/></author>
<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='RFC8446' target='https://www.rfc-editor.org/info/rfc8446'>
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
<author fullname='E. Rescorla' initials='E.' surname='Rescorla'><organization/></author>
<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='RFC8341' target='https://www.rfc-editor.org/info/rfc8341'>
<front>
<title>Network Configuration Access Control Model</title>
<author fullname='A. Bierman' initials='A.' surname='Bierman'><organization/></author>
<author fullname='M. Bjorklund' initials='M.' surname='Bjorklund'><organization/></author>
<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>




    </references>

    <references title='Informative References'>





<reference anchor='RFC7942' target='https://www.rfc-editor.org/info/rfc7942'>
<front>
<title>Improving Awareness of Running Code: The Implementation Status Section</title>
<author fullname='Y. Sheffer' initials='Y.' surname='Sheffer'><organization/></author>
<author fullname='A. Farrel' initials='A.' surname='Farrel'><organization/></author>
<date month='July' year='2016'/>
<abstract><t>This document describes a simple process that allows authors of Internet-Drafts to record the status of known implementations by including an Implementation Status section.  This will allow reviewers and working groups to assign due consideration to documents that have the benefit of running code, which may serve as evidence of valuable experimentation and feedback that have made the implemented protocols more mature.</t><t>This process is not mandatory.  Authors of Internet-Drafts are encouraged to consider using the process for their documents, and working groups are invited to think about applying the process to all of their protocol specifications.  This document obsoletes RFC 6982, advancing it to a Best Current Practice.</t></abstract>
</front>
<seriesInfo name='BCP' value='205'/>
<seriesInfo name='RFC' value='7942'/>
<seriesInfo name='DOI' value='10.17487/RFC7942'/>
</reference>



<reference anchor='RFC7967' target='https://www.rfc-editor.org/info/rfc7967'>
<front>
<title>Constrained Application Protocol (CoAP) Option for No Server Response</title>
<author fullname='A. Bhattacharyya' initials='A.' surname='Bhattacharyya'><organization/></author>
<author fullname='S. Bandyopadhyay' initials='S.' surname='Bandyopadhyay'><organization/></author>
<author fullname='A. Pal' initials='A.' surname='Pal'><organization/></author>
<author fullname='T. Bose' initials='T.' surname='Bose'><organization/></author>
<date month='August' year='2016'/>
<abstract><t>There can be machine-to-machine (M2M) scenarios where server responses to client requests are redundant.  This kind of open-loop exchange (with no response path from the server to the client) may be desired to minimize resource consumption in constrained systems while updating many resources simultaneously or performing high-frequency updates. CoAP already provides Non-confirmable (NON) messages that are not acknowledged by the recipient.  However, the request/response semantics still require the server to respond with a status code indicating &quot;the result of the attempt to       understand and satisfy the request&quot;, per RFC 7252.</t><t>This specification introduces a CoAP option called 'No-Response'. Using this option, the client can explicitly express to the server its disinterest in all responses against the particular request. This option also provides granular control to enable expression of disinterest to a particular response class or a combination of response classes.  The server MAY decide to suppress the response by not transmitting it back to the client according to the value of the No-Response option in the request.  This option may be effective for both unicast and multicast requests.  This document also discusses a few examples of applications that benefit from this option.</t></abstract>
</front>
<seriesInfo name='RFC' value='7967'/>
<seriesInfo name='DOI' value='10.17487/RFC7967'/>
</reference>



<reference anchor='RFC7950' target='https://www.rfc-editor.org/info/rfc7950'>
<front>
<title>The YANG 1.1 Data Modeling Language</title>
<author fullname='M. Bjorklund' initials='M.' role='editor' surname='Bjorklund'><organization/></author>
<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='RFC8376' target='https://www.rfc-editor.org/info/rfc8376'>
<front>
<title>Low-Power Wide Area Network (LPWAN) Overview</title>
<author fullname='S. Farrell' initials='S.' role='editor' surname='Farrell'><organization/></author>
<date month='May' year='2018'/>
<abstract><t>Low-Power Wide Area Networks (LPWANs) are wireless technologies with characteristics such as large coverage areas, low bandwidth, possibly very small packet and application-layer data sizes, and long battery life operation.  This memo is an informational overview of the set of LPWAN technologies being considered in the IETF and of the gaps that exist between the needs of those technologies and the goal of running IP in LPWANs.</t></abstract>
</front>
<seriesInfo name='RFC' value='8376'/>
<seriesInfo name='DOI' value='10.17487/RFC8376'/>
</reference>



<reference anchor='RFC9011' target='https://www.rfc-editor.org/info/rfc9011'>
<front>
<title>Static Context Header Compression and Fragmentation (SCHC) over LoRaWAN</title>
<author fullname='O. Gimenez' initials='O.' role='editor' surname='Gimenez'><organization/></author>
<author fullname='I. Petrov' initials='I.' role='editor' surname='Petrov'><organization/></author>
<date month='April' year='2021'/>
<abstract><t>The Static Context Header Compression and fragmentation (SCHC) specification (RFC 8724) describes generic header compression and fragmentation techniques for Low-Power Wide Area Network (LPWAN) technologies. SCHC is a generic mechanism designed for great flexibility so that it can be adapted for any of the LPWAN technologies.</t><t>This document defines a profile of SCHC (RFC 8724) for use in LoRaWAN networks and provides elements such as efficient parameterization and modes of operation.</t></abstract>
</front>
<seriesInfo name='RFC' value='9011'/>
<seriesInfo name='DOI' value='10.17487/RFC9011'/>
</reference>


<reference anchor='I-D.ietf-lpwan-architecture'>
   <front>
      <title>LPWAN Static Context Header Compression (SCHC) Architecture</title>
      <author fullname='Alexander Pelov' initials='A.' surname='Pelov'>
         <organization>Acklio</organization>
      </author>
      <author fullname='Pascal Thubert' initials='P.' surname='Thubert'>
         <organization>Cisco Systems</organization>
      </author>
      <author fullname='Ana Minaburo' initials='A.' surname='Minaburo'>
         <organization>Acklio</organization>
      </author>
      <date day='30' month='June' year='2022'/>
      <abstract>
	 <t>   This document defines the LPWAN SCHC architecture.

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




    </references>



  </back>

<!-- ##markdown-source:
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
CmB2Ua3WaDQE5r7V/j/g3j+TSysBAA==

-->

</rfc>

