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


<!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-15" 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="August" day="01"/>

    
    <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 a non formal 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>
  <t>...</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="schc-rules"><name>SCHC rules</name>

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

<t>SCHC compression is generic, the main mechanism does not refer
to a specific protocol. Any header field is abstracted through an ID, a position, a direction, 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 definied for no serveur 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 allows to select the compression or the fragmentation using the feature command.</t>

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

<t><xref target="RFC8724"/> proposes a non formal 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>Identifier used in the SCHC YANG data model are from the identityref statement to ensure to be globally unique and be easily augmented 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[
 // -- 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.";
  }

  identity rcs-RFC8724 {
    base rcs-algorithm-base-type;
    description
      "CRC 32 defined as default RCS in RFC8724. RCS is 4 byte-long";
  }

  typedef rcs-algorithm-type {
    type identityref {
      base rcs-algorithm-base-type;
    }
    description
      "type used 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 derives 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 in bits the size of the length 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 position of a field, 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 an 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 direction (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 allows to specify several values:</t>

<t><list style="symbols">
  <t>For Equal and LSB, 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 a text, the binary sequence uses the same enconding.</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 chapter <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 unidirectionnal, 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 on 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 in 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 defines 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 correctly fragmentation.</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 specified any range for these timers. <xref target="RFC9011"/> recommends a duration of 12 hours. In fact, the value range sould 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"/> recommandation.</t>
</list></t>

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

<t>The SCHC fragmentation protocol specifies the  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 a uncompressed datagram. By default, the value is set to 1280 bytes.</t>
</list></t>

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

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

<t>A rule is idenfied 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 in extenso 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 repectively these three identities :</t>

<t><list style="symbols">
  <t>nature-compresion</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-08-01.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:p-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 proposes a global data model that can be used for
     rule exchanges or modification. It proposes 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-08-01 {
    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 from RFC 8200.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

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

  identity fid-ipv6-trafficclass-ds {
    base fid-ipv6-trafficclass;
    description
      "IPv6 Traffic Class field from RFC 8200,
       DiffServ field from RFC 3168.";
    reference
      "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 from RFC 8200,
       ECN field from RFC 3168.";
    reference
      "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 from RFC8200.";
    reference
      "RFC 8200 Internet Protocol, Version 6 (IPv6) Specification";
  }

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

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

  identity fid-ipv6-hoplimit {
    base fid-ipv6-base-type;
    description
      "IPv6 Next Header field from RFC8200.";
    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 if it is
       respectively 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 prefix of RFC 8200. Depending if it is respectively
       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 if it is respectively
       a downlink or an uplink 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 prefix of RFC 8200. Depending if it is respectively
       a downlink or an uplink 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 from RFC 768, 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 from RFC 768, if uplink or
       downlink communication, respectively.";
    reference
      "RFC 768 User Datagram Protocol";
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  identity fid-coap-option-etag {
    base fid-coap-base-type;
    description
      "CoAP option Etag from RFC 7252.";
    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 from RFC 7252.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

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

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

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

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

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

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

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

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

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

  identity fid-coap-option-block2 {
    base fid-coap-base-type;
    description
      "CoAP option Block2 from RFC 7959.";
    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 from RFC 7959.";
    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 from RFC 7959.";
    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 from RFC 7252.";
    reference
      "RFC 7252 The Constrained Application Protocol (CoAP)";
  }

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

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

  identity fid-coap-option-no-response {
    base fid-coap-base-type;
    description
      "CoAP option No response from RFC 7967.";
    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 by RFC 8824 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 RFC 8824, 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 RFC 8824, 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 RFC 8824, 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 RFC 8824, 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 RFC 8824 (cf. 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 RFC 8824 (cf. 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
       RFC 8724 (cf. 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
       RFC 8724 (cf. 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
       RFC 8724 (cf. 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 RFC 8724 (cf. 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 RFC 8724 (cf. 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 RFC 8724 (cf. 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 RFC 8724 (cf. 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 RFC 8724 (cf. 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 RFC8724 (cf. 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 RFC 8724 (cf. 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 RFC 8724 (cf. 7.4).";
  }

  identity cda-lsb {
    base cda-base-type;
    description
      "LSB CDA as defined in RFC 8724 (cf. 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 RFC 8724 (cf. 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 RFC 8724 (cf. 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 RFC 8724 (cf. 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; /* positive integer, expressing length in bits */
      type identityref { /* function */
        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 of RFC8724.";
    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 of RFC8724.";
    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 of RFC8724.";
    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-RFC8724 {
    base rcs-algorithm-base-type;
    description
      "CRC 32 defined as default RCS in RFC8724. This RCS is
       4 byte-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.";
  }

  // --------- TIMER DURATION -------------------

  grouping timer-duration {
    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;
      description
        "Timer duration = ticks-numbers * 2^ticks-duration / 10^6.";
    }
    description
      "Used by inactivity and retransmission timer. 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.
      ";
    reference
      "RFC 8724 SCHC: Generic Framework for Static Context Header
                Compression and Fragmentation";
  }

  // --------  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 a 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
         referenceid.";
    }
    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
         occurences.
         Position 0 means that this entry matches a field
         irrespective of its position of occurence 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
         consider 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, positions should take consecutive values starting
         from 1.";
    }
    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";
    }
    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;
      mandatory true;
      description
        "CDA: Compression Decompression Action.";
    }
    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. RFC 8724 chap 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 chap 6 of
        RFC 8724.";
    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 chap 6 of
        RFC 8724.";
    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 chap 6 of
        RFC 8724.";
    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
        "Should be up or down, bidirectional is forbidden.";
    }
    // 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-RFC8724";
      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 at most
         max-interleaved-frames must be active at any time.";
    }
    container inactivity-timer {
      uses timer-duration;
      description
        "Duration is seconds of the inactivity timer, 0 indicates
         that the timer is disabled.";
    }
    container retransmission-timer {
      uses timer-duration;
      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.";
    }
    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 conform 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 URIs and one YANG modules.</t>

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

<t>This document requests IANA to register the following four URIs 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 or CORECONF
             . read  delete +=======+   request
             .
          +-------+
      <===| R & D |<===
      ===>| C & F |===>
          +-------+
]]></artwork></figure>

<t>The rule contains some sensible informations such as the application IPv6 address. An attacker by changing a rule content may block the communication or intercept the traffic. Therefore, the identity of the requester must be validated. This can be done through certificates or access lists.</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 control and identities.</t>

</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='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='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'>
	 <organization>Acklio</organization>
      </author>
      <author fullname='Pascal Thubert'>
	 <organization>Cisco Systems</organization>
      </author>
      <author fullname='Ana 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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

-->

</rfc>

