<?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.3.14 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc symrefs="yes"?>
<?rfc sortrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc toc="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-lpwan-schc-yang-data-model-12" category="std">

  <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="May" day="25"/>

    
    <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>



    </abstract>


  </front>

  <middle>


<section anchor="Introduction" title="Introduction">

<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" title="Requirements Language">

<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 Ò<xref target="RFC2119"/>.</t>

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

<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>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, UDP, CoAP and OSCORE.</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 model allows to select the compression or the fragmentation using the feature command.</t>

<figure title="Feature for compression and fragmentation." anchor="Fig-feature"><artwork><![CDATA[
  feature compression {
    description
      "SCHC compression capabilities are taken into account";
  }

  feature fragmentation {
    description
      "SCHC fragmentation capabilities are taken into account";
  }
]]></artwork></figure>

<section anchor="comp_types" title="Compression Rules">

<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" title="Identifier generation">

<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 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="field-identifier" title="Field Identifier">

<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 model, each field MUST be identified through a global YANG identityref.<vspace />
A YANG field ID for the protocol always derives from the fid-base-type. Then an identity 
for each protocol is specified using the naming convention fid-&lt;&lt;protocol name»-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"/>. The example <xref target="Fig-ex-field-id"/> 
gives the first field ID definitions. 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>

<figure title="Definition of identityref for field IDs" anchor="Fig-ex-field-id"><artwork><![CDATA[
  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";
  }

  identity fid-ipv6-version {
    base fid-ipv6-base-type;
    description
      "IPv6 version field from RFC8200";
  }

  identity fid-ipv6-trafficclass {
    base fid-ipv6-base-type;
    description
      "IPv6 Traffic Class field from RFC8200";
  }

  identity fid-ipv6-trafficclass-ds {
    base fid-ipv6-trafficclass;
    description
      "IPv6 Traffic Class field from RFC8200,
       DiffServ field from RFC3168";
  }
  ...
]]></artwork></figure>

<t>The type associated to this identity is fid-type (cf. <xref target="Fig-field-id-type"/>)</t>

<figure title="Type definition for field IDs" anchor="Fig-field-id-type"><artwork><![CDATA[
  typedef fid-type {
    type identityref {
      base fid-base-type;
    }
    description
      "Field ID generic type.";
  }
]]></artwork></figure>

</section>
<section anchor="field-length" title="Field length">

<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>

<figure title="Definition of identityref for Field Length" anchor="Fig-ex-field-length"><artwork><![CDATA[
  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).";
  }

  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).";
  }
]]></artwork></figure>

<t>The field length function can be defined as an identityref as shown in <xref target="Fig-ex-field-length"/>.</t>

<t>Therefore, the type for field length is a union between an integer giving in bits the size of the length and the identityref (cf. <xref target="Fig-ex-field-length-union"/>).</t>

<figure title="Type definition for field Length" anchor="Fig-ex-field-length-union"><artwork><![CDATA[
  typedef fl-type {
    type union {
      type int64; /* 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.";
  }
]]></artwork></figure>

</section>
<section anchor="field-position" title="Field position">

<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="direction-indicator" title="Direction Indicator">

<t>The Direction Indicator (di) is used to tell if a field appears in both direction (Bi) or only uplink (Up) or Downlink (Dw).</t>

<figure title="Definition of identityref for direction indicators" anchor="Fig-ex-field-DI"><artwork><![CDATA[
  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).";
  }

  identity di-up {
    base di-base-type;
    description
      "Direction Indication of uplink defined in
       RFC 8724 (cf. 7.1).";
  }

  identity di-down {
    base di-base-type;
    description
      "Direction Indication of downlink defined in
       RFC 8724 (cf. 7.1).";
  }
]]></artwork></figure>

<t><xref target="Fig-ex-field-DI"/> gives the identityref for Direction Indicators. The naming convention is “di” followed by the Direction Indicator name.</t>

<t>The type is “di-type” (cf. <xref target="Fig-field-DI-type"/>).</t>

<figure title="Type definition for direction indicators" anchor="Fig-field-DI-type"><artwork><![CDATA[
  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.";
  }
]]></artwork></figure>

</section>
<section anchor="target_value" title="Target Value">

<t>The Target Value is a list of binary sequences of any length, aligned to the left. <xref target="Fig-ex-TV"/> shows the definition of a single element of a Target Value. 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. 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>

<figure title="Definition of target value" anchor="Fig-ex-TV"><artwork><![CDATA[
  grouping tv-struct {
    description
      "Defines the target value element. Always a binary type, 
       strings must be converted to binary. field-id allows the 
       conversion to the appropriate type.";
    leaf value {
      type binary;
      description
        "Target Value";
    }
    leaf index {
      type uint16;
      description
        "Index gives the position in the matching-list. If only one
         element is present, index is 0. Otherwise, indicia is the
         the order in the matching list, starting at 0.";
    }
  }
]]></artwork></figure>

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

<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 as listed in <xref target="Fig-ex-MO"/>.</t>

<figure title="Definition of identityref for Matching Operator " anchor="Fig-ex-MO"><artwork><![CDATA[
  identity mo-base-type {
    description
      "Used to extend Matching Operators with SID values";
  }

  identity mo-equal {
    base mo-base-type;
    description
      "Equal MO as defined in RFC 8724 (cf. 7.3)";
  }

  identity mo-ignore {
    base mo-base-type;
    description
      "Ignore MO as defined in RFC 8724 (cf. 7.3)";
  }

  identity mo-msb {
    base mo-base-type;
    description
      "MSB MO as defined in RFC 8724 (cf. 7.3)";
  }

  identity mo-match-mapping {
    base mo-base-type;
    description
      "match-mapping MO as defined in RFC 8724 (cf. 7.3)";
  }
]]></artwork></figure>

<t>The naming convention is “mo” followed by the MO name.</t>

<t>The type is “mo-type” (cf. <xref target="Fig-MO-type"/>)</t>

<figure title="Type definition for Matching Operator" anchor="Fig-MO-type"><artwork><![CDATA[
  typedef mo-type {
    type identityref {
      base mo-base-type;
    }
    description
      "Matching Operator (MO) to compare fields values with
       target values";
  }
]]></artwork></figure>

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

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

</section>
</section>
<section anchor="compression-decompression-actions" title="Compression Decompression Actions">

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

<t><xref target="Fig-CDA-type"/> shows some CDA definition, the full definition is in <xref target="annexA"/>.</t>

<figure title="Definition of identityref for  Compresion Decompression Action" anchor="Fig-ex-CDA"><artwork><![CDATA[
  identity cda-base-type {
    description
      "Compression Decompression Actions.";
  }

  identity cda-not-sent {
    base cda-base-type;
    description
      "not-sent CDA as defined in RFC 8724 (cf. 7.4).";
  }

  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).";
  }

  identity cda-mapping-sent {
    base cda-base-type;
    description
      "mapping-sent CDA as defined in RFC 8724 (cf. 7.4).";
  }

  identity cda-compute {
    base cda-base-type;
    description
      "compute-* CDA as defined in RFC 8724 (cf. 7.4)";
  }
    ....
]]></artwork></figure>

<t>The naming convention is “cda” followed by the CDA name.</t>

<figure title="Type definition for Compresion Decompression Action" anchor="Fig-CDA-type"><artwork><![CDATA[
  typedef cda-type {
    type identityref {
      base cda-base-type;
    }
    description
      "Compression Decompression Action to compression or
       decompress a field.";
  }
]]></artwork></figure>

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

<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" title="Fragmentation rule">

<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" title="Fragmentation mode">

<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><xref target="Fig-frag-mode"/> shows the definition for identifiers from these three modes.</t>

<figure title="Definition of fragmentation mode identifer" anchor="Fig-frag-mode"><artwork><![CDATA[
  identity fragmentation-mode-base-type {
    description
      "fragmentation mode.";
  }

  identity fragmentation-mode-no-ack {
    base fragmentation-mode-base-type;
    description
      "No-ACK of RFC8724.";
  }

  identity fragmentation-mode-ack-always {
    base fragmentation-mode-base-type;
    description
      "ACK-Always of RFC8724.";
  }

  identity fragmentation-mode-ack-on-error {
    base fragmentation-mode-base-type;
    description
      "ACK-on-Error of RFC8724.";
  }

  typedef fragmentation-mode-type {
    type identityref {
      base fragmentation-mode-base-type;
    }
    description
      "type used in rules";
  }
]]></artwork></figure>

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

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

<t>A data fragment header, starting with the rule ID can be sent on the fragmentation direction. 
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" title="Last fragment format">

<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. The identity of the RCS algorithm is shown in <xref target="Fig-frag-RCS"/>.</t>

<figure title="type definition for RCS" anchor="Fig-frag-RCS"><artwork><![CDATA[
  identity rcs-algorithm-base-type {
    description
      "Identify which algorithm is used to compute RCS.
       The algorithm also defines the size of the RCS field.";
  }

  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>

<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 defined in <xref target="Fig-frag-all1-data"/> allows to define the 
behavior:</t>

<t><list style="symbols">
  <t>all1-data-no: the last fragment contains no data, just the RCS</t>
  <t>all1-data-yes: the last fragment includes a single tile and the RCS</t>
  <t>all1-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>

<figure title="type definition for RCS" anchor="Fig-frag-all1-data"><artwork><![CDATA[
  identity all1-data-base-type {
    description
      "Type to define when to send an Acknowledgment message.";
  }

  identity all1-data-no {
    base all1-data-base-type;
    description
      "All1 contains no tiles.";
  }

  identity all1-data-yes {
    base all1-data-base-type;
    description
      "All1 MUST contain a tile.";
  }

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

  typedef all1-data-type {
    type identityref {
      base all1-data-base-type;
    }
    description
      "Type used in rules.";
  }
]]></artwork></figure>

<t>The naming convention is “all1-data” followed by the behavior identifier.</t>

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

<t>The acknowledgment fragment header goes in the opposite direction of data. The header is 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 following identifiers (cf. <xref target="Fig-frag-ack-behavior"/>) define the acknowledgment behavior.</t>

<figure title="bitmap generation behavior" anchor="Fig-frag-ack-behavior"><artwork><![CDATA[
  identity ack-behavior-base-type {
    description
      "Define when to send an Acknowledgment .";
  }

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

  identity ack-behavior-after-All1 {
    base ack-behavior-base-type;
    description
      "Fragmentation expects Ack after sending All1 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
      "Type used in rules.";
  }
]]></artwork></figure>

<t>The naming convention is “ack-behavior” followed by the algorithm name.</t>

</section>
<section anchor="fragmentation-parameters" title="Fragmentation Parameters">

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

<t><list style="symbols">
  <t>retransmission-timer expresses, in seconds, the duration before sending an ack request (cf. section 8.2.2.4. of <xref target="RFC8724"/>). If specified, value must be higher or equal to 1.</t>
  <t>inactivity-timer expresses, in seconds, 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>
  <t>max-ack-requests expresses the number of attempts before aborting (cf. section 8.2.2.4. of <xref target="RFC8724"/>).</t>
  <t>maximum-packet-size rexpresses, in bytes, the larger packet size that can be reassembled.</t>
</list></t>

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

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

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

<t><list style="symbols">
  <t>l2-word-size: <xref target="RFC8724"/> base fragmentation 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" title="Rule definition">

<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 types 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>

<figure title="Definition of a SCHC Context" anchor="Fig-yang-schc"><artwork><![CDATA[
  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.";
  }

  // SCHC table for a specific device.

  container schc {
    list rule {
      key "rule-id-value rule-id-length";
      uses rule-id-type;
      choice nature {
        case fragmentation {
          if-feature "fragmentation";
          uses fragmentation-content;
        }
        case compression {
          if-feature "compression";
          uses compression-content;
        }
        case no-compression {
          description
            "RFC8724 requires a rule for uncompressed headers.";
        }
        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.";
  }
}
]]></artwork></figure>

<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" title="Compression rule">

<t>A compression rule is composed of entries describing its processing (cf. <xref target="Fig-comp-entry"/>). 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>

<figure title="Definition of a compression entry" anchor="Fig-comp-entry"><artwork><![CDATA[
  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. The content 
         is a YANG identifer.
       - Field Length : either a positive integer of a function 
         defined as a YANG id.
       - Field Position: a positive (and possibly equal to 0) 
         integer.
       - Direction Indicator: a YANG identifier giving the direction.
       - Target value: a value against which the header Field is
         compared.
       - Matching Operator: a YANG id giving the operation, 
         parameters may be associated to that operator.
       - Comp./Decomp. Action: A YANG id giving the compression or
         decompression action, parameters may be associated to that
         action.
      ";
    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 or through a 
         function defined as a YANG referenceid.";
    }
    leaf field-position {
      type uint8;
      mandatory true;
      description
        "Field position in the header is an integer. Position 1 
         matches the first occurence 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, a YANG referenceid to say if the packet
         is bidirectional, up or down";
    }
    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.";
    }
  }

  grouping compression-content {
    list entry {
      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 identifed 
         through a field-id, its position in the packet and 
         its direction.";
    }
    description
      "Define a compression rule composed of a list of entries.";
  }
]]></artwork></figure>

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

<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>

<t>The definition of a Fragmentation rule is divided into three sub-parts (cf. <xref target="Fig-frag-struct"/>):</t>

<t><list style="symbols">
  <t>parameters such as the fragmentation-mode, the l2-word-size and the direction. Since Fragmentation rules are always defined for a specific direction, the value must be either di-up or di-down (di-bidirectional is not allowed).</t>
  <t>parameters defining the Fragmentation header format (dtag-size, w-size, fcn-size and rcs-algorithm).</t>
  <t>Protocol parameters for timers (inactivity-timer, retransmission-timer). <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 milli-seconds for real time systems to several days. <xref target="Fig-timer-duration"/> shows the two parameters defined for timers:
  <list style="symbols">
      <t>the duration of a tick is computed through this formula 2^tick-duration/10^6. When tick-duration is set to 0, the unit is the micro-second. The default value of 20 leads to a unit of about 1.05 second. A value of 32 leads to a tick duration of about 1.19 hours.</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>
  <t>Protocol behavior (maximum-packet-size, max-interleaved-frames, max-ack-requests). If these parameters are specific to a single fragmentation mode, they are grouped in a structure dedicated to that Fragmentation mode. If some parameters can be found in several modes, typically ACK-Always and ACK-on-Error, they are defined in a common part and a when statement indicates which modes are allowed.</t>
</list></t>

<figure title="Timer duration values" anchor="Fig-timer-duration"><artwork><![CDATA[
  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.
      ";
  }
]]></artwork></figure>

<figure title="Fragmentation Parameters" anchor="Fig-frag-struct"><artwork><![CDATA[
  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;
      mandatory true;
      description
        "which fragmentation mode is used (noAck, AckAlways,
         AckonError)";
    }
    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, bidirectionnal is forbiden.";
    }
    // 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(../fragmentation-mode,
                                'fragmentation-mode-ack-on-error')
            or
            derived-from(../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(../fragmentation-mode,
                                'fragmentation-mode-ack-on-error')
            or
            derived-from(../fragmentation-mode,
                                'fragmentation-mode-ack-always') ";
      description
        "Duration in seconds of the retransmission timer.";
    }
    leaf max-ack-requests {
      when "derived-from(../fragmentation-mode,
                                'fragmentation-mode-ack-on-error')
            or
            derived-from(../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(../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-All1 {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type schc:all1-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(../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.";
    }
  }
]]></artwork></figure>

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

<figure 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 (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-All1?       schc:all1-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 value?   binary
        |   |  +-rw index    uint16
        |   +-rw matching-operator           schc:mo-type
        |   +-rw matching-operator-value* [index]
        |   |  +-rw value?   binary
        |   |  +-rw index    uint16
        |   +-rw comp-decomp-action          schc:cda-type
        |   +-rw comp-decomp-action-value* [index]
        |      +-rw value?   binary
        |      +-rw index    uint16
        +-:(no-compression)
]]></artwork></figure>

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

<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" title="IANA Considerations">

<t>This document has no request to IANA.</t>

</section>
<section anchor="SecConsiderations" title="Security considerations">

<t>This document does not have any more Security consideration than the ones already raised in <xref target="RFC8724"/> and <xref target="RFC8824"/>.</t>

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

<t>The authors would like to thank Dominique Barthel, Carsten Bormann, Alexander Pelov for their careful reading and valuable inputs. A special thanks for 
Carl Moberg for his patience and wise advices when building the model.</t>

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

<figure anchor="Fig-schc"><artwork><![CDATA[
<code begins> file ietf-schc@2022-02-15.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) 2021 IETF Trust and the persons identified as
     authors of the code.  All rights reserved.

     Redistribution and use in source and binary forms, with or
     without modification, is permitted pursuant to, and subject to
     the license terms contained in, the Simplified BSD License set
     forth in Section 4.c of the IETF Trust's Legal Provisions
     Relating to IETF Documents
     (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-02-15 {
    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";
  }

  identity fid-ipv6-version {
    base fid-ipv6-base-type;
    description
      "IPv6 version field from RFC8200";
  }

  identity fid-ipv6-trafficclass {
    base fid-ipv6-base-type;
    description
      "IPv6 Traffic Class field from RFC8200";
  }

  identity fid-ipv6-trafficclass-ds {
    base fid-ipv6-trafficclass;
    description
      "IPv6 Traffic Class field from RFC8200,
       DiffServ field from RFC3168";
  }

  identity fid-ipv6-trafficclass-ecn {
    base fid-ipv6-trafficclass;
    description
      "IPv6 Traffic Class field from RFC8200,
       ECN field from RFC3168";
  }

  identity fid-ipv6-flowlabel {
    base fid-ipv6-base-type;
    description
      "IPv6 Flow Label field from RFC8200";
  }

  identity fid-ipv6-payloadlength {
    base fid-ipv6-base-type;
    description
      "IPv6 Payload Length field from RFC8200";
  }

  identity fid-ipv6-nextheader {
    base fid-ipv6-base-type;
    description
      "IPv6 Next Header field from RFC8200";
  }

  identity fid-ipv6-hoplimit {
    base fid-ipv6-base-type;
    description
      "IPv6 Next Header field from RFC8200";
  }

  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.";
  }

  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.";
  }

  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.";
  }

  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.";
  }

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

  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.";
  }

  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.";
  }

  identity fid-udp-length {
    base fid-udp-base-type;
    description
      "UDP length from RFC 768";
  }

  identity fid-udp-checksum {
    base fid-udp-base-type;
    description
      "UDP length from RFC 768";
  }

  identity fid-coap-base-type {
    base fid-base-type;
    description
      "Field ID base type for UDP headers described in RFC 7252";
  }

  identity fid-coap-version {
    base fid-coap-base-type;
    description
      "CoAP version from RFC 7252";
  }

  identity fid-coap-type {
    base fid-coap-base-type;
    description
      "CoAP type from RFC 7252";
  }

  identity fid-coap-tkl {
    base fid-coap-base-type;
    description
      "CoAP token length from RFC 7252";
  }

  identity fid-coap-code {
    base fid-coap-base-type;
    description
      "CoAP code from RFC 7252";
  }

  identity fid-coap-code-class {
    base fid-coap-code;
    description
      "CoAP code class from RFC 7252";
  }

  identity fid-coap-code-detail {
    base fid-coap-code;
    description
      "CoAP code detail from RFC 7252";
  }

  identity fid-coap-mid {
    base fid-coap-base-type;
    description
      "CoAP message ID from RFC 7252";
  }

  identity fid-coap-token {
    base fid-coap-base-type;
    description
      "CoAP token from RFC 7252";
  }

  identity fid-coap-option-if-match {
    base fid-coap-base-type;
    description
      "CoAP option If-Match from RFC 7252";
  }

  identity fid-coap-option-uri-host {
    base fid-coap-base-type;
    description
      "CoAP option URI-Host from RFC 7252";
  }

  identity fid-coap-option-etag {
    base fid-coap-base-type;
    description
      "CoAP option Etag from RFC 7252";
  }

  identity fid-coap-option-if-none-match {
    base fid-coap-base-type;
    description
      "CoAP option if-none-match from RFC 7252";
  }

  identity fid-coap-option-observe {
    base fid-coap-base-type;
    description
      "CoAP option Observe from RFC 7641";
  }

  identity fid-coap-option-uri-port {
    base fid-coap-base-type;
    description
      "CoAP option Uri-Port from RFC 7252";
  }

  identity fid-coap-option-location-path {
    base fid-coap-base-type;
    description
      "CoAP option Location-Path from RFC 7252";
  }

  identity fid-coap-option-uri-path {
    base fid-coap-base-type;
    description
      "CoAP option Uri-Path from RFC 7252";
  }

  identity fid-coap-option-content-format {
    base fid-coap-base-type;
    description
      "CoAP option Content Format from RFC 7252";
  }

  identity fid-coap-option-max-age {
    base fid-coap-base-type;
    description
      "CoAP option Max-Age from RFC 7252";
  }

  identity fid-coap-option-uri-query {
    base fid-coap-base-type;
    description
      "CoAP option Uri-Query from RFC 7252";
  }

  identity fid-coap-option-accept {
    base fid-coap-base-type;
    description
      "CoAP option Accept from RFC 7252";
  }

  identity fid-coap-option-location-query {
    base fid-coap-base-type;
    description
      "CoAP option Location-Query from RFC 7252";
  }

  identity fid-coap-option-block2 {
    base fid-coap-base-type;
    description
      "CoAP option Block2 from RFC 7959";
  }

  identity fid-coap-option-block1 {
    base fid-coap-base-type;
    description
      "CoAP option Block1 from RFC 7959";
  }

  identity fid-coap-option-size2 {
    base fid-coap-base-type;
    description
      "CoAP option size2 from RFC 7959";
  }

  identity fid-coap-option-proxy-uri {
    base fid-coap-base-type;
    description
      "CoAP option Proxy-Uri from RFC 7252";
  }

  identity fid-coap-option-proxy-scheme {
    base fid-coap-base-type;
    description
      "CoAP option Proxy-scheme from RFC 7252";
  }

  identity fid-coap-option-size1 {
    base fid-coap-base-type;
    description
      "CoAP option Size1 from RFC 7252";
  }

  identity fid-coap-option-no-response {
    base fid-coap-base-type;
    description
      "CoAP option No response from RFC 7967";
  }

  identity fid-coap-option-oscore-flags {
    base fid-coap-base-type;
    description
      "CoAP option oscore flags (see RFC 8824, section 6.4)";
  }

  identity fid-coap-option-oscore-piv {
    base fid-coap-base-type;
    description
      "CoAP option oscore flags (see RFC 8824, section 6.4)";
  }

  identity fid-coap-option-oscore-kid {
    base fid-coap-base-type;
    description
      "CoAP option oscore flags (see RFC 8824, section 6.4)";
  }

  identity fid-coap-option-oscore-kidctx {
    base fid-coap-base-type;
    description
      "CoAP option oscore flags (see RFC 8824, section 6.4)";
  }

  //----------------------------------
  // 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).";
  }

  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).";
  }

  //---------------------------------
  // 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).";
  }

  identity di-up {
    base di-base-type;
    description
      "Direction Indication of uplink defined in
       RFC 8724 (cf. 7.1).";
  }

  identity di-down {
    base di-base-type;
    description
      "Direction Indication of downlink defined in
       RFC 8724 (cf. 7.1).";
  }

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

  identity mo-base-type {
    description
      "Used to extend Matching Operators with SID values";
  }

  identity mo-equal {
    base mo-base-type;
    description
      "Equal MO as defined in RFC 8724 (cf. 7.3)";
  }

  identity mo-ignore {
    base mo-base-type;
    description
      "Ignore MO as defined in RFC 8724 (cf. 7.3)";
  }

  identity mo-msb {
    base mo-base-type;
    description
      "MSB MO as defined in RFC 8724 (cf. 7.3)";
  }

  identity mo-match-mapping {
    base mo-base-type;
    description
      "match-mapping MO as defined in RFC 8724 (cf. 7.3)";
  }

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

  identity cda-base-type {
    description
      "Compression Decompression Actions.";
  }

  identity cda-not-sent {
    base cda-base-type;
    description
      "not-sent CDA as defined in RFC 8724 (cf. 7.4).";
  }

  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).";
  }

  identity cda-mapping-sent {
    base cda-base-type;
    description
      "mapping-sent CDA as defined in RFC 8724 (cf. 7.4).";
  }

  identity cda-compute {
    base cda-base-type;
    description
      "compute-* CDA as defined in RFC 8724 (cf. 7.4)";
  }

  identity cda-deviid {
    base cda-base-type;
    description
      "deviid CDA as defined in RFC 8724 (cf. 7.4)";
  }

  identity cda-appiid {
    base cda-base-type;
    description
      "appiid CDA as defined in RFC 8724 (cf. 7.4)";
  }

  // -- type definition

  typedef fid-type {
    type identityref {
      base fid-base-type;
    }
    description
      "Field ID generic type.";
  }

  typedef fl-type {
    type union {
      type int64; /* 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.";
  }

  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.";
  }

  typedef mo-type {
    type identityref {
      base mo-base-type;
    }
    description
      "Matching Operator (MO) to compare fields values with
       target values";
  }

  typedef cda-type {
    type identityref {
      base cda-base-type;
    }
    description
      "Compression Decompression Action to compression or
       decompress a field.";
  }

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

  identity fragmentation-mode-base-type {
    description
      "fragmentation mode.";
  }

  identity fragmentation-mode-no-ack {
    base fragmentation-mode-base-type;
    description
      "No-ACK of RFC8724.";
  }

  identity fragmentation-mode-ack-always {
    base fragmentation-mode-base-type;
    description
      "ACK-Always of RFC8724.";
  }

  identity fragmentation-mode-ack-on-error {
    base fragmentation-mode-base-type;
    description
      "ACK-on-Error of RFC8724.";
  }

  typedef fragmentation-mode-type {
    type identityref {
      base fragmentation-mode-base-type;
    }
    description
      "type used in rules";
  }

  // -- Ack behavior 

  identity ack-behavior-base-type {
    description
      "Define when to send an Acknowledgment .";
  }

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

  identity ack-behavior-after-All1 {
    base ack-behavior-base-type;
    description
      "Fragmentation expects Ack after sending All1 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
      "Type used in rules.";
  }

  // -- All1 with data types

  identity all1-data-base-type {
    description
      "Type to define when to send an Acknowledgment message.";
  }

  identity all1-data-no {
    base all1-data-base-type;
    description
      "All1 contains no tiles.";
  }

  identity all1-data-yes {
    base all1-data-base-type;
    description
      "All1 MUST contain a tile.";
  }

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

  typedef all1-data-type {
    type identityref {
      base all1-data-base-type;
    }
    description
      "Type used 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.";
  }

  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.";
  }

  // --------- 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.
      ";
  }

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

  grouping tv-struct {
    description
      "Defines the target value element. Always a binary type, 
       strings must be converted to binary. field-id allows the 
       conversion to the appropriate type.";
    leaf value {
      type binary;
      description
        "Target Value";
    }
    leaf index {
      type uint16;
      description
        "Index gives the position in the matching-list. If only one
         element is present, index is 0. Otherwise, indicia is the
         the order in the matching list, starting at 0.";
    }
  }

  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. The content 
         is a YANG identifer.
       - Field Length : either a positive integer of a function 
         defined as a YANG id.
       - Field Position: a positive (and possibly equal to 0) 
         integer.
       - Direction Indicator: a YANG identifier giving the direction.
       - Target value: a value against which the header Field is
         compared.
       - Matching Operator: a YANG id giving the operation, 
         parameters may be associated to that operator.
       - Comp./Decomp. Action: A YANG id giving the compression or
         decompression action, parameters may be associated to that
         action.
      ";
    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 or through a 
         function defined as a YANG referenceid.";
    }
    leaf field-position {
      type uint8;
      mandatory true;
      description
        "Field position in the header is an integer. Position 1 
         matches the first occurence 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, a YANG referenceid to say if the packet
         is bidirectional, up or down";
    }
    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.";
    }
  }

  grouping compression-content {
    list entry {
      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 identifed 
         through a field-id, its position in the packet and 
         its direction.";
    }
    description
      "Define a compression rule composed of a list of entries.";
  }

  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;
      mandatory true;
      description
        "which fragmentation mode is used (noAck, AckAlways,
         AckonError)";
    }
    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, bidirectionnal is forbiden.";
    }
    // 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(../fragmentation-mode,
                                'fragmentation-mode-ack-on-error')
            or
            derived-from(../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(../fragmentation-mode,
                                'fragmentation-mode-ack-on-error')
            or
            derived-from(../fragmentation-mode,
                                'fragmentation-mode-ack-always') ";
      description
        "Duration in seconds of the retransmission timer.";
    }
    leaf max-ack-requests {
      when "derived-from(../fragmentation-mode,
                                'fragmentation-mode-ack-on-error')
            or
            derived-from(../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(../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-All1 {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type schc:all1-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(../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.";
    }
  }

  // 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.";
  }

  // SCHC table for a specific device.

  container schc {
    list rule {
      key "rule-id-value rule-id-length";
      uses rule-id-type;
      choice nature {
        case fragmentation {
          if-feature "fragmentation";
          uses fragmentation-content;
        }
        case compression {
          if-feature "compression";
          uses compression-content;
        }
        case no-compression {
          description
            "RFC8724 requires a rule for uncompressed headers.";
        }
        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.";
  }
}
<code ends>
]]></artwork></figure>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<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 initials='A.' surname='Minaburo' fullname='A. Minaburo'><organization /></author>
<author initials='L.' surname='Toutain' fullname='L. Toutain'><organization /></author>
<author initials='C.' surname='Gomez' fullname='C. Gomez'><organization /></author>
<author initials='D.' surname='Barthel' fullname='D. Barthel'><organization /></author>
<author initials='JC.' surname='Zuniga' fullname='JC. Zuniga'><organization /></author>
<date year='2020' month='April' />
<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 initials='A.' surname='Minaburo' fullname='A. Minaburo'><organization /></author>
<author initials='L.' surname='Toutain' fullname='L. Toutain'><organization /></author>
<author initials='R.' surname='Andreasen' fullname='R. Andreasen'><organization /></author>
<date year='2021' month='June' />
<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="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<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>




    </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 initials='Y.' surname='Sheffer' fullname='Y. Sheffer'><organization /></author>
<author initials='A.' surname='Farrel' fullname='A. Farrel'><organization /></author>
<date year='2016' month='July' />
<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="RFC7950" target='https://www.rfc-editor.org/info/rfc7950'>
<front>
<title>The YANG 1.1 Data Modeling Language</title>
<author initials='M.' surname='Bjorklund' fullname='M. Bjorklund' role='editor'><organization /></author>
<date year='2016' month='August' />
<abstract><t>YANG is a data modeling language used to model configuration data, state data, Remote Procedure Calls, and notifications for network management protocols.  This document describes the syntax and semantics of version 1.1 of the YANG language.  YANG version 1.1 is a maintenance release of the YANG language, addressing ambiguities and defects in the original specification.  There are a small number of backward incompatibilities from YANG version 1.  This document also specifies the YANG mappings to the Network Configuration Protocol (NETCONF).</t></abstract>
</front>
<seriesInfo name='RFC' value='7950'/>
<seriesInfo name='DOI' value='10.17487/RFC7950'/>
</reference>



<reference  anchor="RFC9011" target='https://www.rfc-editor.org/info/rfc9011'>
<front>
<title>Static Context Header Compression and Fragmentation (SCHC) over LoRaWAN</title>
<author initials='O.' surname='Gimenez' fullname='O. Gimenez' role='editor'><organization /></author>
<author initials='I.' surname='Petrov' fullname='I. Petrov' role='editor'><organization /></author>
<date year='2021' month='April' />
<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 month="November" day="26" year="2021" />
      <abstract>
	 <t>   This document defines the LPWAN SCHC architecture.

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




    </references>



  </back>

<!-- ##markdown-source:
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
D4/EXtTRLYJkZxOHE1iBKzhaZzULHh3GReJaAwbIoEywCyURQIMeTEaHaU+W
Zt50I6KJjXkhgYE+scRQShEXXka78B/QPv27ry1yGzRB8X1xktNXMeReW6DQ
x+5kMIshnfxpFkO/10AU64MbX+TiL1izZpY6HWQ3wHEBdESLc2fUCG7BazaC
kbIzlhjJN0FhZx5/IvoSfNkQSDYgZGwtxGOgqpL5Al6oT6AboDxUOl/OB5z5
YkC2icJHGYVc9uX4KDAeSNJklJzI0uYhNDkxORmaucl1TA/LrGQXbgmygY5Z
FnQcZdgKxsxi4VD2uX9La9ROzCLqqM0iN0zrKTuJome7A0zBQxPd9wxWzUsM
zgIkJzDlhxVLkEzXc07nVW8EQL0kNXicF3wmTyjbQTNUCoFFPBsPdxkVUwtI
RscpiInkha7JyIRIFQkbnrkxZ4qFkeABooL6FqmQdkhgyfc9A5W84AQBLzOb
5s7YHCP16lZPg8nDzFpcwoe7L3eYfKJu1BAiBs7sZrUivFWh2xIJ8aaUGcAq
Y50Iin+0yac25W5li++tU7pBpUCrmPs2GVM4v6Z+ptfVJpw0zuXYo4nJ9mx7
JmBAGwhtTtNYX/LgosqtBmB3h26CheX7DTIMdiPuIVcNiEW8qyWnBpuvuT1d
JtG84+OxX8v7qxHphM/Xr6QivnAfu5048fXGA08TNDXTs+ezXTOMNGPf4TLn
wz/Lm8DcxDpVhyiJdodqfvZ8i+jYOwL3V3tarJpf7Sx1XUMo56Xkw6x7fJRX
+XI2YYG+CscgeGTC8gk53evnAYd+dL5/urvS+d6j2T6vhX848kbom6hIEuir
0qqfQtrNcAANmRez7YD20jxSqqCk4Rs7UfR0d8OPp70Dch3OIwG9/oGZcrIa
Q/kWakckWyHFjcxdaiMTqLvLNQxudgE9FAFlRdHtbVbvKgq1r3vccDgVvifm
MRSyx1djveAY2sQOSdI9Jhvf8EnAR7tB5hJPfJeI9A9iVcuYMu2SjJtnmP0R
ZPvpoIWav3feolH9O3FKtJpV9q2v/pDNBLnNAZ13msM5P945WJYP2sYLUR1T
nlyjOKmKaU1wMb3DTVLORBuh4cPdb9jzqOZ13KcHNXhzsia44Plp8rptpTMn
qa0/ZFb3LvT7r20nNysW6xtpoUnuzq0W875wE+w2N52O7ROnNb5KK0wUD50U
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

-->

</rfc>

