<?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.18 (Ruby 3.3.4) -->
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-cbor-cddl-more-control-06" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.21.0 -->
  <front>
    <title abbrev="CDDL control operators">More Control Operators for CDDL</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-cbor-cddl-more-control-06"/>
    <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>
    <date year="2024" month="July" day="21"/>
    <keyword>Concise Data Definition Language</keyword>
    <keyword>Control Operator</keyword>
    <abstract>
      <?line 65?>

<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.</t>
      <t>The present document defines a number of additional generally
applicable control operators for text conversion (Bytes, Integers,
JSON, Printf-style formatting) and for an operation on text.</t>
      <!--
[^status]

[^status]:  Revision –00 of this WG draft ...
 -->



    </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-more-control/"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-cbor-cddl-more-control/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Concise Binary Object Representation (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-more-control"/>.</t>
    </note>
  </front>
  <middle>
    <?line 82?>

<section anchor="intro">
      <name>Introduction</name>
      <t>The Concise Data Definition Language (CDDL), standardized in <xref target="RFC8610"/>,
provides "control operators" as its main language extension point
(<xref section="3.8" sectionFormat="of" target="RFC8610"/>).
RFCs have added to this extension point both in an
application-specific <xref target="RFC9090"/> and a more general <xref target="RFC9165"/> way.</t>
      <t>The present document defines a number of additional generally
applicable control operators:</t>
      <table anchor="tbl-new">
        <name>New control operators in this document,  t = target type (left-hand side), c = controller type (right-hand side)</name>
        <thead>
          <tr>
            <th align="left">Name</th>
            <th align="left">t</th>
            <th align="left">c</th>
            <th align="left">Purpose</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">
              <tt>.b64u</tt>, <tt>.b64c</tt></td>
            <td align="left">text</td>
            <td align="left">bytes</td>
            <td align="left">Base64 representation of byte strings</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.b64u-sloppy</tt>, <tt>.b64c-sloppy</tt></td>
            <td align="left">text</td>
            <td align="left">bytes</td>
            <td align="left">(sloppy-tolerant variants of the above)</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.hex</tt>, <tt>.hexlc</tt>, <tt>.hexuc</tt></td>
            <td align="left">text</td>
            <td align="left">bytes</td>
            <td align="left">Base16 representation of byte strings</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.b32</tt>, <tt>.h32</tt></td>
            <td align="left">text</td>
            <td align="left">bytes</td>
            <td align="left">Base32 representation of byte strings</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.b45</tt></td>
            <td align="left">text</td>
            <td align="left">bytes</td>
            <td align="left">Base45 representation of byte strings</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.decimal</tt></td>
            <td align="left">text</td>
            <td align="left">int</td>
            <td align="left">Text representation of integer numbers</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.printf</tt></td>
            <td align="left">text</td>
            <td align="left">array</td>
            <td align="left">Printf-formatted text representation of data items</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.json</tt></td>
            <td align="left">text</td>
            <td align="left">any</td>
            <td align="left">Text representation of JSON values</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.join</tt></td>
            <td align="left">text or bytes</td>
            <td align="left">array</td>
            <td align="left">Build text or byte string from array of components</td>
          </tr>
        </tbody>
      </table>
      <section anchor="terminology">
        <name>Terminology</name>
        <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 <xref target="BCP14"/> (<xref target="RFC2119"/>) (<xref target="RFC8174"/>) when, and only when, they
appear in all capitals, as shown here.</t>
        <?line -18?>

<t>Regular expressions mentioned in the text are as defined in <xref target="RFC9485"/>.</t>
        <t>This specification uses terminology from <xref target="RFC8610"/>.
In particular, with respect to control operators, "target" refers to
the left-hand side operand, and "controller" to the right-hand side operand.
"Tool" refers to tools along the lines of that described in <xref section="F" sectionFormat="of" target="RFC8610"/>.
Note also that the data model underlying CDDL provides for text
strings as well as byte strings as two separate types, which are
then collectively referred to as "strings".</t>
      </section>
    </section>
    <section anchor="text-conversion">
      <name>Text Conversion</name>
      <section anchor="byte-strings-base16-hex-base32-base45-base64">
        <name>Byte Strings: Base16 (Hex), Base32, Base45, Base64</name>
        <t>A CDDL model often defines data that are byte strings in essence but
need to be transported in various encoded forms, such as base64 or
hex.
This section defines a number of control operators to model these
conversions.</t>
        <t>The control operators generally are of a form that could be used like
this:</t>
        <sourcecode type="cddl" name="example1.cddl"><![CDATA[
signature-for-json = text .b64u signature
signature = bytes .cbor COSE_Sign1
]]></sourcecode>
        <t>The specification of these control operators is complicated by the
large number of transformations in use.  Inspired by Section <xref target="RFC8949" section="8" sectionFormat="bare"/> of RFC 8949 <xref target="STD94"/>, we use representations defined in <xref target="RFC4648"/> with the following
names:</t>
        <table>
          <name>Control Operators for Text Conversion of byte strings</name>
          <thead>
            <tr>
              <th align="left">name</th>
              <th align="left">meaning</th>
              <th align="left">reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">
                <tt>.b64u</tt></td>
              <td align="left">Base64URL, no padding</td>
              <td align="left">
                <xref section="5" sectionFormat="of" target="RFC4648"/></td>
            </tr>
            <tr>
              <td align="left">
                <tt>.b64u-sloppy</tt></td>
              <td align="left">Base64URL, no padding, sloppy</td>
              <td align="left">
                <xref section="5" sectionFormat="of" target="RFC4648"/></td>
            </tr>
            <tr>
              <td align="left">
                <tt>.b64c</tt></td>
              <td align="left">Base64 classic, padding</td>
              <td align="left">
                <xref section="4" sectionFormat="of" target="RFC4648"/></td>
            </tr>
            <tr>
              <td align="left">
                <tt>.b64c-sloppy</tt></td>
              <td align="left">Base64 classic, padding, sloppy</td>
              <td align="left">
                <xref section="4" sectionFormat="of" target="RFC4648"/></td>
            </tr>
            <tr>
              <td align="left">
                <tt>.b32</tt></td>
              <td align="left">Base32, no padding</td>
              <td align="left">
                <xref section="6" sectionFormat="of" target="RFC4648"/></td>
            </tr>
            <tr>
              <td align="left">
                <tt>.h32</tt></td>
              <td align="left">Base32/hex alphabet, no padding</td>
              <td align="left">
                <xref section="7" sectionFormat="of" target="RFC4648"/></td>
            </tr>
            <tr>
              <td align="left">
                <tt>.hex</tt></td>
              <td align="left">Base16 (hex), either case</td>
              <td align="left">
                <xref section="8" sectionFormat="of" target="RFC4648"/></td>
            </tr>
            <tr>
              <td align="left">
                <tt>.hexlc</tt></td>
              <td align="left">Base16 (hex), lower case</td>
              <td align="left">
                <xref section="8" sectionFormat="of" target="RFC4648"/></td>
            </tr>
            <tr>
              <td align="left">
                <tt>.hexuc</tt></td>
              <td align="left">Base16 (hex), upper case</td>
              <td align="left">
                <xref section="8" sectionFormat="of" target="RFC4648"/></td>
            </tr>
            <tr>
              <td align="left">
                <tt>.b45</tt></td>
              <td align="left">Base45</td>
              <td align="left">
                <xref target="RFC9285"/></td>
            </tr>
          </tbody>
        </table>
        <t>Note that this specification is somewhat opinionated here: It does not
provide base64url, base32 or base32hex encoding with padding, or
base64 classic without padding.  Experience indicates that these
combinations only ever occur in error, so the usability of CDDL is
increased by not providing them in the first place.  Also, adding "c"
makes sure that any decision for classic base64 is actively taken.</t>
        <t>These control operators are "strict" in their matching, i.e., they
do validate the mandates of their base documents.
Note that this also means that <tt>.b64u</tt> and <tt>.b64c</tt> only accept the
alphabets defined for each of them, respectively; this is maybe worth
pointing out here explicitly as CDDL's "b64" literal prefix simply
accepts either alphabet and this behavior is different from that of
these control operators.</t>
        <t>The additional designation "sloppy" indicates that the text string is
not validated for any additional bits being zero, in variance to what
is specified in the paragraph behind table 1 in <xref section="4" sectionFormat="of" target="RFC4648"/>.
Note that the present specification is opinionated again in not
specifying a sloppy variant of base32 or base32/hex, as no legacy use
of sloppy base32(/hex) was known at the time of writing.
Base45 is known to be suboptimal for use in environments with limited
data transparency (such as URLs), but is included because of its close
relationship to QR codes and its wide use in health informatics (note
that base45 is strongly specified not to allow sloppy forms
of encoding).</t>
      </section>
      <section anchor="numbers">
        <name>Numbers</name>
        <table>
          <name>Control Operator for Text Conversion of Integers</name>
          <thead>
            <tr>
              <th align="left">name</th>
              <th align="left">meaning</th>
              <th align="left">reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">
                <tt>.decimal</tt></td>
              <td align="left">Decimal Integer</td>
              <td align="left">---</td>
            </tr>
          </tbody>
        </table>
        <t>The control operator <tt>.decimal</tt> allows the modeling of text strings that carry numeric
information in decimal form, such as in the uint64/int64 formats of
YANG-JSON <xref target="RFC7951"/>.</t>
        <sourcecode type="cddl" name="example2.cddl"><![CDATA[
yang-json-sid = text .decimal (0..9223372036854775807)
]]></sourcecode>
        <t>Again, the specification is opinionated by only providing integer numbers
without leading zeros, i.e., the decimal numbers match the regular
expression <tt>0|-?[1-9][0-9]*</tt> (of course, further restricted by the
control type).
See the next section for more flexibility, and for octal, hexadecimal,
or binary conversions.</t>
      </section>
      <section anchor="printf-style-formatting">
        <name>Printf-style Formatting</name>
        <table>
          <name>Control Operator for Printf-formatting of data item(s)</name>
          <thead>
            <tr>
              <th align="left">name</th>
              <th align="left">meaning</th>
              <th align="left">reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">
                <tt>.printf</tt></td>
              <td align="left">Printf-formatting of data item(s)</td>
              <td align="left">---</td>
            </tr>
          </tbody>
        </table>
        <t>The control operator <tt>.printf</tt> allows the modeling of text strings that carry various formatted
information, as long as the format can be represented in Printf-style
formatting strings as they are used in the C language (see Section
7.21.6.1 of <xref target="C"/>).</t>
        <t>The controller (right-hand side) of the <tt>.printf</tt> control is an array
of one Printf-style format string and zero or more data items that fit
the individual conversion specifications in the format string.
The construct matches a text string representing the textual output of
an equivalent C-language <tt>printf</tt> function call that is given the
format string and the data items following it in the array.</t>
        <t>From the printf specification in the C language, length modifiers (paragraph 7)
are not used and <bcp14>MUST NOT</bcp14> be included in the format string.
The 's' conversion specifier (paragraph 8) is used to
interpolate a text string in UTF-8 form.
The 'c' conversion specifier (paragraph 8) represents a single Unicode
scalar value as a UTF-8 character.
The 'p' and 'n' conversion specifiers (paragraph 8) are not used and
<bcp14>MUST NOT</bcp14> be included in the format string.</t>
        <t>In the following example, <tt>my_alg_19</tt> matches the text string <tt>"0x0013"</tt>:</t>
        <sourcecode type="cddl" name="example-printf.cddl"><![CDATA[
my_alg_19 = hexlabel<19>
hexlabel<K> = text .printf (["0x%04x", K])
]]></sourcecode>
        <t>The data items in the controller array do not need to be literals,
as for example in:</t>
        <sourcecode type="cddl" name="example-printf-uint.cddl"><![CDATA[
any_alg = hexlabel<1..20>
hexlabel<K> = text .printf (["0x%04x", K])
]]></sourcecode>
        <t>Here, <tt>any_alg</tt> matches the text strings <tt>"0x0013"</tt> or <tt>"0x0001"</tt> but
not <tt>"0x1234"</tt>.</t>
      </section>
      <section anchor="json-values">
        <name>JSON Values</name>
        <t>Some applications store complete JSON texts into text strings, the
JSON value for which can easily be defined in CDDL.
This is supported by a control operator similar to <tt>.cbor</tt> in <xref section="3.8.4" sectionFormat="of" target="RFC8610"/>.</t>
        <table>
          <name>Control Operator for Text Conversion of JSON values</name>
          <thead>
            <tr>
              <th align="left">name</th>
              <th align="left">meaning</th>
              <th align="left">reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">
                <tt>.json</tt></td>
              <td align="left">JSON</td>
              <td align="left">
                <xref target="STD90"/></td>
            </tr>
          </tbody>
        </table>
        <sourcecode type="cddl" name="example3.cddl"><![CDATA[
embedded-claims = text .json claims
claims = {iss: text, exp: text}
]]></sourcecode>
        <t>Note that a <tt>.jsonseq</tt> is not provided for <xref target="RFC7464"/>, as no use case
for inclusion in CDDL is known yet.</t>
        <t>There is no way to constrain the use of blank space in data items to
be validated; variants (e.g, not providing for any blank space) could
be defined.</t>
      </section>
    </section>
    <section anchor="text-processing">
      <name>Text Processing</name>
      <section anchor="join">
        <name>Join</name>
        <t>Often, text strings need to be constructed out of parts that can best
be modeled as an array.</t>
        <table>
          <name>Control Operator for Text Generation from Arrays</name>
          <thead>
            <tr>
              <th align="left">name</th>
              <th align="left">meaning</th>
              <th align="left">reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">
                <tt>.join</tt></td>
              <td align="left">concatenate elements of an array</td>
              <td align="left">---</td>
            </tr>
          </tbody>
        </table>
        <t>For example, an IPv4 address in dotted-decimal might be modeled as in
<xref target="fig-join-example"/>.</t>
        <figure anchor="fig-join-example">
          <name>Using the .join operator to build dotted-decimal IPv4 addresses</name>
          <sourcecode type="cddl" name="join-example.cddl"><![CDATA[
legacy-ip-address = text .join legacy-ip-address-elements
legacy-ip-address-elements = [bytetext, ".", bytetext, ".",
                              bytetext, ".", bytetext]
bytetext = text .decimal byte
byte = 0..255
]]></sourcecode>
        </figure>
        <t>The elements of the controller array need to be strings (text or byte
strings).
The control operator matches a data item if that data item is also a
string, built by concatenating the strings in the array.
The result of this concatenation is of the same kind of string (text
or bytes) as the first element of the array.
(If there is no element in the array, the <tt>.join</tt> construct matches
either kind of empty string, obviously further constrained by the
control operator target.)
The concatenation is performed on the sequences of bytes in the
strings.
If the result of the concatenation is a text string, the resulting
sequence of bytes <bcp14>MUST</bcp14> be valid UTF-8.</t>
        <t>Note that this control operator is hard to validate in the most
general case, as this would require full parser functionality.
Simple implementation strategies will use array elements with constant
values as guideposts ("markers", such as the <tt>"."</tt> in <xref target="fig-join-example"/>)
for isolating the variable elements that need further validation at
the CDDL data model level.
It is therefore recommended to limit the use of <tt>.join</tt> to simple
arrangements where the array elements are laid out explicitly and
there are no adjacent variable elements without intervening constant
values, and where these constant values do not occur within the text
described by the variable elements.<br/>
If more complex parsing functionality is required, the ABNF control
operators (see <xref section="3" sectionFormat="of" target="RFC9165"/>) may be useful; however, these
cannot reach back into CDDL-specified elements like <tt>.join</tt> can do.</t>
        <aside>
          <t>Implementation note: A validator implementation can use the marker
elements to scan the text, isolating the variable elements.
It also can build a parsing regexp (<xref section="6" sectionFormat="of" target="RFC9485"/>) from the
elements of the controller array, with capture groups for each
element, and validate the captures against the elements of the array.
In the most general case, these implementation strategies can exhibit
false negatives, where the implementation cannot find the structure
that would be successfully validated using the controller; it is
<bcp14>RECOMMENDED</bcp14> that implementations provide full coverage at least for
the marker-based subset outlined in the previous paragraph.</t>
        </aside>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t><cref anchor="to-be-removed">RFC Editor: please replace RFC-XXXX with the RFC
number of this RFC and remove this note.</cref></t>
      <t>This document requests IANA to register the contents of
<xref target="tbl-iana-reqs"/> into the registry
"<xref section="CDDL Control Operators" relative="#cddl-control-operators" sectionFormat="bare" target="IANA.cddl"/>" of <xref target="IANA.cddl"/>:</t>
      <table anchor="tbl-iana-reqs">
        <name>New control operators to be registered</name>
        <thead>
          <tr>
            <th align="left">Name</th>
            <th align="left">Reference</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">
              <tt>.b64u</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.b64u-sloppy</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.b64c</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.b64c-sloppy</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.b45</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.b32</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.h32</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.hex</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.hexlc</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.hexuc</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.decimal</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.printf</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.json</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
          <tr>
            <td align="left">
              <tt>.join</tt></td>
            <td align="left">[RFC-XXXX]</td>
          </tr>
        </tbody>
      </table>
    </section>
    <section removeInRFC="true" anchor="implementation-status">
      <name>Implementation Status</name>
      <!-- RFC7942 -->

<t>In the CDDL tool described in <xref section="F" sectionFormat="of" target="RFC8610"/>,
the control operators defined in the present revision of this
specification are implemented as of version 0.10.4.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security considerations</name>
      <t>The security considerations of <xref target="RFC8610"/> apply.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <referencegroup anchor="STD90" target="https://www.rfc-editor.org/info/std90">
          <reference anchor="RFC8259" target="https://www.rfc-editor.org/info/rfc8259">
            <front>
              <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
              <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
              <date month="December" year="2017"/>
              <abstract>
                <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
                <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
              </abstract>
            </front>
            <seriesInfo name="STD" value="90"/>
            <seriesInfo name="RFC" value="8259"/>
            <seriesInfo name="DOI" value="10.17487/RFC8259"/>
          </reference>
        </referencegroup>
        <referencegroup anchor="STD94" target="https://www.rfc-editor.org/info/std94">
          <reference anchor="RFC8949" target="https://www.rfc-editor.org/info/rfc8949">
            <front>
              <title>Concise Binary Object Representation (CBOR)</title>
              <author fullname="C. Bormann" initials="C." surname="Bormann"/>
              <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
              <date month="December" year="2020"/>
              <abstract>
                <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
                <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049. It does not create a new version of the format.</t>
              </abstract>
            </front>
            <seriesInfo name="STD" value="94"/>
            <seriesInfo name="RFC" value="8949"/>
            <seriesInfo name="DOI" value="10.17487/RFC8949"/>
          </reference>
        </referencegroup>
        <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="IANA.cddl" target="https://www.iana.org/assignments/cddl">
          <front>
            <title>Concise Data Definition Language (CDDL)</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date day="28" month="March" year="2019"/>
          </front>
        </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>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="RFC9285">
          <front>
            <title>The Base45 Data Encoding</title>
            <author fullname="P. Fältström" initials="P." surname="Fältström"/>
            <author fullname="F. Ljunggren" initials="F." surname="Ljunggren"/>
            <author fullname="D.W. van Gulik" initials="D.W." surname="van Gulik"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>This document describes the Base45 encoding scheme, which is built upon the Base64, Base32, and Base16 encoding schemes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9285"/>
          <seriesInfo name="DOI" value="10.17487/RFC9285"/>
        </reference>
        <reference anchor="RFC9485">
          <front>
            <title>I-Regexp: An Interoperable Regular Expression Format</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="T. Bray" initials="T." surname="Bray"/>
            <date month="October" year="2023"/>
            <abstract>
              <t>This document specifies I-Regexp, a flavor of regular expression that is limited in scope with the goal of interoperation across many different regular expression libraries.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9485"/>
          <seriesInfo name="DOI" value="10.17487/RFC9485"/>
        </reference>
        <reference anchor="C" target="https://www.iso.org/standard/74528.html">
          <front>
            <title>Information technology — Programming languages — C</title>
            <author>
              <organization>International Organization for Standardization</organization>
            </author>
            <date year="2018" month="June"/>
          </front>
          <seriesInfo name="ISO/IEC" value="9899:2018"/>
          <annotation>  <!-- work around broken annotation content model -->
Technically equivalent specification text is available at <eref target="https://web.archive.org/web/20181230041359if_/http://www.open-std.org/jtc1/sc22/wg14/www/abq/c17_updated_proposed_fdis.pdf">https://web.archive.org/web/20181230041359if_/http://www.open-std.org/jtc1/sc22/wg14/www/abq/c17_updated_proposed_fdis.pdf</eref></annotation>
          <refcontent>Fourth Edition</refcontent>
        </reference>
        <referencegroup anchor="BCP14" target="https://www.rfc-editor.org/info/bcp14">
          <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
            <front>
              <title>Key words for use in RFCs to Indicate Requirement Levels</title>
              <author fullname="S. Bradner" initials="S." surname="Bradner"/>
              <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" target="https://www.rfc-editor.org/info/rfc8174">
            <front>
              <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
              <author fullname="B. Leiba" initials="B." surname="Leiba"/>
              <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>
        </referencegroup>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC7464">
          <front>
            <title>JavaScript Object Notation (JSON) Text Sequences</title>
            <author fullname="N. Williams" initials="N." surname="Williams"/>
            <date month="February" year="2015"/>
            <abstract>
              <t>This document describes the JavaScript Object Notation (JSON) text sequence format and associated media type "application/json-seq". A JSON text sequence consists of any number of JSON texts, all encoded in UTF-8, each prefixed by an ASCII Record Separator (0x1E), and each ending with an ASCII Line Feed character (0x0A).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7464"/>
          <seriesInfo name="DOI" value="10.17487/RFC7464"/>
        </reference>
        <reference anchor="RFC9090">
          <front>
            <title>Concise Binary Object Representation (CBOR) Tags for Object Identifiers</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="July" year="2021"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR), defined in RFC 8949, is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation.</t>
              <t>This document defines CBOR tags for object identifiers (OIDs) and is the reference document for the IANA registration of the CBOR tags so defined.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9090"/>
          <seriesInfo name="DOI" value="10.17487/RFC9090"/>
        </reference>
        <reference anchor="RFC7951">
          <front>
            <title>JSON Encoding of Data Modeled with YANG</title>
            <author fullname="L. Lhotka" initials="L." surname="Lhotka"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>This document defines encoding rules for representing configuration data, state data, parameters of Remote Procedure Call (RPC) operations or actions, and notifications defined using YANG as JavaScript Object Notation (JSON) text.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7951"/>
          <seriesInfo name="DOI" value="10.17487/RFC7951"/>
        </reference>
      </references>
    </references>
    <?line 418?>

<section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>Henk Birkholz suggested the need for many of the control operators
defined here.</t>
      <!--  LocalWords:  dedenting dedented
 -->

</section>
  </back>
  <!-- ##markdown-source:
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
Ucu/0T0AAA==

-->

</rfc>
