<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.7 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-cbor-cddl-modules-02" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.20.0 -->
  <front>
    <title abbrev="CDDL Module Structure">CDDL Module Structure</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-cbor-cddl-modules-02"/>
    <author initials="C." surname="Bormann" fullname="Carsten Bormann">
      <organization>Universität Bremen TZI</organization>
      <address>
        <postal>
          <street>Postfach 330440</street>
          <city>Bremen</city>
          <code>D-28359</code>
          <country>Germany</country>
        </postal>
        <phone>+49-421-218-63921</phone>
        <email>cabo@tzi.org</email>
      </address>
    </author>
    <author initials="B." surname="Moran" fullname="Brendan Moran">
      <organization>Arm Limited</organization>
      <address>
        <email>brendan.moran.ietf@gmail.com</email>
      </address>
    </author>
    <date year="2024" month="March" day="04"/>
    <area>Applications and Real-Time</area>
    <workgroup>CBOR Maintenance and Extensions</workgroup>
    <keyword>Concise Data Definition Language</keyword>
    <abstract>
      <?line 59?>

<t>At the time of writing,
the Concise Data Definition Language (CDDL) is defined by
RFC 8610 and RFC 9165.
The latter has used the extension point provided in RFC 8610,
the <em>control operator</em>.</t>
      <t>As CDDL is being used in larger projects, the need for
features has become known that cannot be easily
mapped into this single extension point.</t>
      <t>The present document defines a backward- and forward-compatible
way to add a module structure to CDDL.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://cbor-wg.github.io/cddl-modules/draft-ietf-cbor-cddl-modules.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-cbor-cddl-modules/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        CBOR Maintenance and Extensions Working Group mailing list (<eref target="mailto:cbor@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/cbor/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/cbor/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/cbor-wg/cddl-modules"/>.</t>
    </note>
  </front>
  <middle>
    <?line 77?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>At the time of writing,
the Concise Data Definition Language (CDDL) is defined by
RFC 8610 and RFC 9165.
The latter has used the extension point provided in RFC 8610,
the <em>control operator</em>.</t>
      <t>As CDDL is being used in larger projects, the need for
features has become known that cannot be easily
mapped into this single extension point.</t>
      <t>The present document defines a backward- and forward-compatible
way to add a module structure to CDDL.</t>
      <t>The functionality of the present document is considered a core part of
what has colloquially been called CDDL 2.0, and is intended to be used
with (and orthogonal to) other recent specifications such as a small
set of CDDL grammar updates <xref target="I-D.ietf-cbor-update-8610-grammar"/> and an additional exercise of
the control operator extension point <xref target="I-D.ietf-cbor-cddl-more-control"/> (a follow-up to
<xref target="RFC9165"/>).</t>
      <section anchor="conventions-and-definitions">
        <name>Conventions and Definitions</name>
        <t>The Terminology from <xref target="RFC8610"/> applies.</t>
        <t>Some examples use CDDL definitions from <xref target="RFC9052"/>.</t>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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>
        <?line -18?>

</section>
    </section>
    <section anchor="module-superstructure">
      <name>Module superstructure</name>
      <dl>
        <dt><em>Compatibility</em>:</dt>
        <dd>
          <t>bidirectional (both backward and forward)</t>
        </dd>
      </dl>
      <t>Originally, CDDL was used for small data models that could be
expressed in a few lines.  As the size of data models that need to be
expressed in CDDL has increased, the need to modularize and re-use
components is increasing.</t>
      <t>CDDL as documented in <xref target="RFC8610"/> (<em>basic CDDL</em>) has been designed with a crude form of composition:
Concatenating a number of CDDL snippets creates a valid CDDL data
model unless there is a name collision (<em>identical</em> redefinition is
allowed to facilitate this approach).
With larger models, managing the overall name space to avoid collisions
becomes more pressing.</t>
      <t>In CDDL's original composition model,
the knowledge which CDDL snippets need to be concatenated in order to
obtain the desired data model lives entirely outside the CDDL snippets.
With the module structure defined in the present document, rule sets are
packaged as modules and referenced from other
modules, providing methods for control of namespace pollution.</t>
      <t>Further work may be expended on
unambiguous referencing into evolving specifications ("versioning")
and selection of alternatives (as was emulated with snippets in
<xref section="11" sectionFormat="of" target="RFC8428"/>.  Note that one approach for expressing
variants is demonstrated in <xref target="useful"/> based on <xref section="4" sectionFormat="of" target="RFC9165"/>).
Potential further work is outlined in Sections <xref target="I-D.bormann-cbor-cddl-2-draft" section="4" sectionFormat="bare"/> and <xref target="I-D.bormann-cbor-cddl-2-draft" section="A.2" sectionFormat="bare"/> of <xref target="I-D.bormann-cbor-cddl-2-draft"/>.</t>
      <section anchor="compatibility">
        <name>Compatibility</name>
        <t>To achieve the module structure in a way that is friendly to
existing environments that operate with CDDL and basic CDDL
implementations, we add a super-syntax (similar to the way pragmas
are often added to a language), by carrying them in <em>directives</em>.
Directives are parsed as comments in basic CDDL, so that each module
source file can at the same time be basic CDDL on its own.
This enables forward compatibility: a single file can be designed to
serve both as valid basic CDDL and as a module with directives that
specify how additional rule definitions are to be imported from other
source files.</t>
        <t>This bidirectional compatibility is useful to allow CDDL model
designers to start using directives before the bulk of the tools that
process CDDL has been updated to implement the present specification.</t>
      </section>
      <section anchor="namespacing">
        <name>Namespacing</name>
        <t>When importing rules from other modules, there is the potential for
name collisions.  This is exacerbated when the modules evolve, which
may lead to the introduction of a name into an imported module that is
also used (likely in a different way) in the importing module.</t>
        <t>To be able to manage names in such a way that collisions can be
avoided, we introduce means to prepend a prefix to the names of rules
being imported: the "as" clause.</t>
      </section>
      <section anchor="directives-the-module">
        <name>"Directives", the "module"</name>
        <t>This specification introduces <em>directives</em> into CDDL.
A single CDDL file becomes a <em>module</em> by processing the (zero or more)
directives in it.</t>
        <t>The semantics of the module are independent of the module(s) using it,
however, importing a module may involve transforming its rule names
into a new namespace (<xref target="namespacing"/>).</t>
        <t>Directives are parsed as comments in basic CDDL, so they do not interfere
with forward compatibility.</t>
        <t>In the CDDL module structure, lines that start with the prefix <tt>;#</tt> are
parsed as directives.</t>
      </section>
      <section anchor="naming-and-finding-modules">
        <name>Naming and Finding Modules</name>
        <t>We assume that module names are filenames taken from one of several
source directories available to the CDDL module structure processor via the
environment.
This avoids the need to nail down brittle pathnames or (partial?) URIs
into the CDDL files.</t>
        <t>The exact way how these source directories and possibly a precedence
between them are established is intentionally not fully defined in
this specification; it is expected that this will be specified in the
context of the models just as the way they are intended to be used
will be.  (A more formal structure may follow later.)</t>
        <t>In the module structure implementation that is part of the CDDL Tool
described in <xref target="cddlc-tool"/>, the set of sources is
determined from an environment variable, <tt>CDDL_INCLUDE_PATH</tt>, which is
modeled after usual command-line search paths.
It is a colon-separated list of pathnames to directories, with one
special feature: an empty element points to the tool's own collection.
This collection contains fragments of extracted CDDL from published
RFCs, using names such as <tt>rfc9052</tt>.</t>
        <t>(Future versions might augment this with Web extractors and/or ways to
extract CDDL modules from sites such as github and from Internet-Drafts; see
<xref section="A.2" sectionFormat="of" target="I-D.bormann-cbor-cddl-2-draft"/> for some design considerations.)</t>
        <t>The default <tt>CDDL_INCLUDE_PATH</tt> is:</t>
        <artwork><![CDATA[
.:
]]></artwork>
        <t>That is: files are found in the current directory (<tt>.</tt>) and, if not
found there, cddlc’s collection.</t>
        <t>In the examples that follow, a cddlc command line will be shown
(starting with an isolated <tt>$</tt> sign as in a shell command) with the
module-structured CDDL input; the
resulting basic CDDL will be shown separately.</t>
      </section>
      <section anchor="directives">
        <name>Basic Set of Directives</name>
        <t>Two groups of directives are defined at this point:</t>
        <ul spacing="normal">
          <li>
            <t><tt>include</tt>, which includes all the rules from a module (which
includes the ones imported/included there, transitively), or
specific explicitly selected rules (clause ending in "from");</t>
          </li>
          <li>
            <t><tt>import</tt>, which is similar to <tt>include</tt> but includes only those
 rules from the module that are
 referenced from the importing module, implicitly or explicitly
 (clause ending in "from"), including the
 rules that are referenced from these rules, transitively.</t>
          </li>
        </ul>
        <t>The <tt>include</tt> function is more useful for composing a single model
from parts controlled by one author, while the <tt>import</tt> function is
more about treating a module as a library:</t>
        <t>The way an <tt>import</tt> works is shown by this simple example:</t>
        <artwork><![CDATA[
$ cddlc -2tcddl -
start = COSE_Key
;# import rfc9052

]]></artwork>
        <t>This results in the following CDDL 1.0 specification:</t>
        <sourcecode type="cddl"><![CDATA[
start = COSE_Key
COSE_Key = {
  1 => tstr / int,
  ? 2 => bstr,
  ? 3 => tstr / int,
  ? 4 => [+ tstr / int],
  ? 5 => bstr,
  * label => values,
}
label = int / tstr
values = any

]]></sourcecode>
        <t>This is appropriate for using libraries that are well known to the
importing specification.
However, if it is not acceptable that the library can pollute the
namespace of the importing module, the import directive can specify a
namespace prefix ("as" clause):</t>
        <artwork><![CDATA[
$ cddlc -2tcddl -
start = cose.COSE_Key
;# import rfc9052 as cose

]]></artwork>
        <t>This results in the following CDDL 1.0 specification:</t>
        <sourcecode type="cddl"><![CDATA[
start = cose.COSE_Key
cose.COSE_Key = {
  1 => tstr / int,
  ? 2 => bstr,
  ? 3 => tstr / int,
  ? 4 => [+ tstr / int],
  ? 5 => bstr,
  * cose.label => cose.values,
}
cose.label = int / tstr
cose.values = any

]]></sourcecode>
        <t>Note how the imported names are prefixed with <tt>cose.</tt> as specified in
the import directive, but CDDL prelude (<xref section="D" sectionFormat="of" target="RFC8610"/>) names
such as <tt>tstr</tt> and <tt>any</tt> are not.</t>
      </section>
      <section anchor="explicit-selection-of-names">
        <name>Explicit selection of names</name>
        <t>Both <tt>import</tt> and <tt>include</tt> directives can be augmented by an explicit
mentioning of rule names (clause ending in "from").</t>
        <section numbered="false" anchor="include">
          <name><tt>include</tt></name>
          <t>Starting with <tt>include</tt>:</t>
          <artwork><![CDATA[
$ cddlc -2tcddl -
mydata = {* label => values}
;# include label, values from rfc9052

]]></artwork>
          <t>With <tt>include</tt>,
only exactly the rules mentioned are included:</t>
          <sourcecode type="cddl"><![CDATA[
mydata = {* label => values}
label = int / tstr
values = any

]]></sourcecode>
          <t>The module from which rules are explicitly imported can be namespaced:</t>
          <artwork><![CDATA[
$ cddlc -2tcddl -
mydata = {* label => values}
;# include cose.label, cose.values from rfc9052 as cose

]]></artwork>
          <t>Again, only exactly the rules mentioned are included:</t>
          <sourcecode type="cddl"><![CDATA[
mydata = {* label => values}
cose.label = int / tstr
cose.values = any

]]></sourcecode>
        </section>
        <section numbered="false" anchor="import">
          <name><tt>import</tt></name>
          <t>Both examples would work exactly the same with <tt>import</tt>, as the
included rules do not reference anything else from the included
module.</t>
          <t>An import however also draws in the transitive closure of the rules
referenced:</t>
          <artwork><![CDATA[
$ cddlc -2tcddl -
mydata = {Fritz: cose.empty_or_serialized_map}
;# import cose.empty_or_serialized_map from rfc9052 as cose

]]></artwork>
          <t>The transitive closure of the rules mentioned is included:</t>
          <sourcecode type="cddl"><![CDATA[=============== NOTE: '\' line wrapping per RFC 8792 ================

mydata = {Fritz: cose.empty_or_serialized_map}
cose.empty_or_serialized_map = bstr .cbor cose.header_map / bstr .\
                                                               size 0
cose.header_map = {
  cose.Generic_Headers,
  * cose.label => cose.values,
}
cose.Generic_Headers = (
  ? 1 => int / tstr,
  ? 2 => [+ cose.label],
  ? 3 => tstr / int,
  ? 4 => bstr,
  ? (5 => bstr // 6 => bstr),
  )
cose.label = int / tstr
cose.values = any
]]></sourcecode>
          <t>The <tt>import</tt> statement can also request an alias for an imported name:</t>
          <artwork><![CDATA[
$ cddlc -2tcddl -
mydata = {Fritz: cose.empty_or_serialized_map}
;# import empty_or_serialized_map from rfc9052 as cose

]]></artwork>
          <t>Note how an additional rule provides an alias for
<tt>empty_or_serialized_map</tt> that does not have the namespace prefix:</t>
          <sourcecode type="cddl"><![CDATA[=============== NOTE: '\' line wrapping per RFC 8792 ================

mydata = {Fritz: cose.empty_or_serialized_map}
empty_or_serialized_map = cose.empty_or_serialized_map
cose.empty_or_serialized_map = bstr .cbor cose.header_map / bstr .\
                                                               size 0
cose.header_map = {
  cose.Generic_Headers,
  * cose.label => cose.values,
}
cose.Generic_Headers = (
  ? 1 => int / tstr,
  ? 2 => [+ cose.label],
  ? 3 => tstr / int,
  ? 4 => bstr,
  ? (5 => bstr // 6 => bstr),
  )
cose.label = int / tstr
cose.values = any
]]></sourcecode>
        </section>
      </section>
      <section anchor="tool-support-for-command-line-control">
        <name>Tool Support for Command-Line Control</name>
        <t>Tools may provide a convenient way to initiate the processing of
directives from the command line.</t>
        <t>A tool may provide a way to specify a root for the module tree from the command line:</t>
        <artwork><![CDATA[
$ cddlc -2tcddl -icose=rfc9052 -scose.COSE_Key
]]></artwork>
        <t>The command line argument <tt>-icose=rfc9052</tt> is a shortcut for</t>
        <artwork><![CDATA[
;# import rfc9052 as cose
]]></artwork>
        <t>Together with the start (root) rule name, <tt>cose.COSE_Key</tt>, supplied by
<tt>-scose.COSE_Key</tt>, this results in the following CDDL 1.0
specification:</t>
        <sourcecode type="cddl"><![CDATA[
$.start.$ = cose.COSE_Key
cose.COSE_Key = {
  1 => tstr / int,
  ? 2 => bstr,
  ? 3 => tstr / int,
  ? 4 => [+ tstr / int],
  ? 5 => bstr,
  * cose.label => cose.values,
}
cose.label = int / tstr
cose.values = any

]]></sourcecode>
        <t>In other words, the module synthesized from the command line had an
empty CDDL file, which therefore was not provided (no <tt>–</tt> was given on
the command line).</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The module structure specified in this document is not believed to
create additional security considerations beyond the general security
considerations in <xref section="5" sectionFormat="of" target="RFC8610"/>.</t>
      <t>Implementations that employ the module structure defined in this
document need to ascertain the provenance of the modules they combine
into the CDDL models they employ operationally.
This specification does not define how the source directories accessed
via the CDDL_INCLUDE_PATH are populated; this process needs to undergo
the same care and scrutiny as any other introduction of source code
into a build environment; the possibility of supply-chain attacks on
the modules imported needs to be considered.</t>
      <t>Specifically, implementations that rely on model-based input
validation for enforcing certain properties of the data structure
ingested (which, if not validated, could lead to malfunctions such as
crashes and remote code execution) need to be particularly careful
about the data models they apply, including their provenance and
potential changes of these properties that upgrades to the referenced
modules may (inadvertently or as part of an attack) cause.
More generally speaking, implementations should strive to be robust
against limitations of the model-based input validation mechanisms and
their implementations that they employ.</t>
      <t>In applications that dynamically acquire models and dereference module
references in these, the security considerations of dereferenceable
identifiers apply (see <xref target="I-D.bormann-t2trg-deref-id"/> for a more extensive discussion of
dereferenceable identifiers).</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC8610">
          <front>
            <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
            <author fullname="C. Vigano" initials="C." surname="Vigano"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049). Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8610"/>
          <seriesInfo name="DOI" value="10.17487/RFC8610"/>
        </reference>
        <reference anchor="RFC9165">
          <front>
            <title>Additional Control Operators for the Concise Data Definition Language (CDDL)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="December" year="2021"/>
            <abstract>
              <t>The Concise Data Definition Language (CDDL), standardized in RFC 8610, provides "control operators" as its main language extension point.</t>
              <t>The present document defines a number of control operators that were not yet ready at the time RFC 8610 was completed:,, and for the construction of constants; / for including ABNF (RFC 5234 and RFC 7405) in CDDL specifications; and for indicating the use of a non-basic feature in an instance.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9165"/>
          <seriesInfo name="DOI" value="10.17487/RFC9165"/>
        </reference>
        <referencegroup anchor="STD68" target="https://www.rfc-editor.org/info/std68">
          <reference anchor="RFC5234" target="https://www.rfc-editor.org/info/rfc5234">
            <front>
              <title>Augmented BNF for Syntax Specifications: ABNF</title>
              <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker"/>
              <author fullname="P. Overell" initials="P." surname="Overell"/>
              <date month="January" year="2008"/>
              <abstract>
                <t>Internet technical specifications often need to define a formal syntax. Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications. The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power. The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges. This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications. [STANDARDS-TRACK]</t>
              </abstract>
            </front>
            <seriesInfo name="STD" value="68"/>
            <seriesInfo name="RFC" value="5234"/>
            <seriesInfo name="DOI" value="10.17487/RFC5234"/>
          </reference>
        </referencegroup>
        <reference anchor="RFC7405">
          <front>
            <title>Case-Sensitive String Support in ABNF</title>
            <author fullname="P. Kyzivat" initials="P." surname="Kyzivat"/>
            <date month="December" year="2014"/>
            <abstract>
              <t>This document extends the base definition of ABNF (Augmented Backus-Naur Form) to include a way to specify US-ASCII string literals that are matched in a case-sensitive manner.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7405"/>
          <seriesInfo name="DOI" value="10.17487/RFC7405"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="I-D.ietf-cbor-update-8610-grammar">
          <front>
            <title>Updates to the CDDL grammar of RFC 8610</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="2" month="March" year="2024"/>
            <abstract>
              <t>   The Concise Data Definition Language (CDDL), as defined in RFC 8610
   and RFC 9165, provides an easy and unambiguous way to express
   structures for protocol messages and data formats that are
   represented in CBOR or JSON.

   The present document updates RFC 8610 by addressing errata and making
   other small fixes for the ABNF grammar defined for CDDL there.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cbor-update-8610-grammar-04"/>
        </reference>
        <reference anchor="I-D.ietf-cbor-cddl-more-control">
          <front>
            <title>More Control Operators for CDDL</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="26" month="February" year="2024"/>
            <abstract>
              <t>   The Concise Data Definition Language (CDDL), standardized in RFC
   8610, provides "control operators" as its main language extension
   point.  RFCs have added to this extension point both in an
   application-specific and a more general way.

   The present document defines a number of additional generally
   applicable control operators for text conversion (Bytes, Integers,
   JSON, Printf-style formatting), operations on text, and deterministic
   encoding.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cbor-cddl-more-control-03"/>
        </reference>
        <reference anchor="I-D.bormann-cbor-cddl-2-draft">
          <front>
            <title>CDDL 2.0 and beyond -- a draft plan</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="27" month="February" year="2024"/>
            <abstract>
              <t>   The Concise Data Definition Language (CDDL) today is defined by
   RFC 8610 and RFC 9165.  The latter (as well as some more application
   specific specifications such as RFC 9090) have used the extension
   point provided in RFC 8610, the control operator.

   As CDDL is used in larger projects, feature requirements become known
   that cannot be easily mapped into this single extension point.
   Hence, there is a need for evolution of the base CDDL specification
   itself.

   The present document provides a roadmap towards a "CDDL 2.0".  It is
   based on draft-bormann-cbor-cddl-freezer, but is more selective in
   what potential features it takes up and more detailed in their
   discussion.  It is intended to serve as a basis for prototypical
   implementations of CDDL 2.0.  This document is intended to evolve
   over time; it might spawn specific documents and then retire or
   eventually be published as a roadmap document.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bormann-cbor-cddl-2-draft-04"/>
        </reference>
        <reference anchor="I-D.bormann-t2trg-deref-id">
          <front>
            <title>The "dereferenceable identifier" pattern</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <date day="2" month="March" year="2024"/>
            <abstract>
              <t>   In a protocol or an application environment, it is often important to
   be able to create unambiguous identifiers for some meaning (concept
   or some entity).

   Due to the simplicity of creating URIs, these have become popular for
   this purpose.  Beyond the purpose of identifiers to be uniquely
   associated with a meaning, some of these URIs are in principle
   _dereferenceable_, so something can be placed that can be retrieved
   when encountering such a URI.


   // The present -03 revision discusses the continuum between entirely
   // relying on the result of dereferencing an identifier and building
   // in knowledge of all expected identifiers, and it mentions further
   // pitfalls of using dereferenceable identifiers.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bormann-t2trg-deref-id-03"/>
        </reference>
        <reference anchor="useful" target="https://github.com/cbor-wg/cddl/wiki/Useful-CDDL">
          <front>
            <title>Useful CDDL</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="cddlc" target="https://github.com/cabo/cddlc">
          <front>
            <title>CDDL conversion utilities</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC9052">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines the CBOR Object Signing and Encryption (COSE) protocol. This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization. This specification additionally describes how to represent cryptographic keys using CBOR.</t>
              <t>This document, along with RFC 9053, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="96"/>
          <seriesInfo name="RFC" value="9052"/>
          <seriesInfo name="DOI" value="10.17487/RFC9052"/>
        </reference>
        <reference anchor="RFC8428">
          <front>
            <title>Sensor Measurement Lists (SenML)</title>
            <author fullname="C. Jennings" initials="C." surname="Jennings"/>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
            <author fullname="J. Arkko" initials="J." surname="Arkko"/>
            <author fullname="A. Keranen" initials="A." surname="Keranen"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This specification defines a format for representing simple sensor measurements and device parameters in Sensor Measurement Lists (SenML). Representations are defined in JavaScript Object Notation (JSON), Concise Binary Object Representation (CBOR), Extensible Markup Language (XML), and Efficient XML Interchange (EXI), which share the common SenML data model. A simple sensor, such as a temperature sensor, could use one of these media types in protocols such as HTTP or the Constrained Application Protocol (CoAP) to transport the measurements of the sensor or to be configured.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8428"/>
          <seriesInfo name="DOI" value="10.17487/RFC8428"/>
        </reference>
      </references>
    </references>
    <?line 521?>

<section anchor="abnf-specification">
      <name>ABNF Specification</name>
      <t>This section specifies the grammar employed by the module structure
directives using the ABNF language defined in <xref target="STD68"/> and
<xref target="RFC7405"/>.</t>
      <sourcecode type="abnf"><![CDATA[
directive = ";#" RS (%s"import" / %s"include") RS [from-clause]
                    filename [as-clause] CRLF
from-clause = 1*(id [","] RS) %s"from" RS
as-clause = RS %s"as" RS id
filename = 1*("-" / "." / %x30-39 / %x41-5a / "_" / %x61-7a)
id = ("$" / %x40-5a / "_" / %x61-7a)
     *("$" / %x30-39 / %x40-5a / "_" / %x61-7a)
RS = 1*WS
WS = SP
SP = %x20
CRLF = %x0A / %x0D.0A
]]></sourcecode>
    </section>
    <section anchor="cddlc-tool">
      <name>A CDDL Tool that Implements CDDL Module Structure</name>
      <t>This appendix is for information only.</t>
      <t>A CDDL conversion tool is available <xref target="cddlc"/> that can process
module-structured CDDL models into basic CDDL models; the latter can
then be processed by other CDDL tools such as the one described in
<xref section="F" sectionFormat="of" target="RFC8610"/>.</t>
      <t>A typical command line involving both tools mentioned might be:</t>
      <artwork><![CDATA[
cddlc -2 -tcddl mytestfile.cddl | cddl - gp 10
]]></artwork>
      <t>The CDDL conversion tool can be installed on a system with a modern
Ruby (Ruby version ≥ 3.0) via:</t>
      <artwork><![CDATA[
gem install cddlc
]]></artwork>
      <t>The present document assumes the use of <tt>cddlc</tt> of at least version 0.2.5.</t>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
RdJsYmc5a35x8gJQWX3vMFD/A1vIsVdQPwAA

-->

</rfc>
