<?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.21 (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-07" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.23.0 -->
  <front>
    <title abbrev="CDDL control operators">More Control Operators for CDDL</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-cbor-cddl-more-control-07"/>
    <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="November" day="03"/>
    <keyword>Concise Data Definition Language</keyword>
    <keyword>Control Operator</keyword>
    <abstract>
      <?line 67?>

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

<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="base">
        <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 anchor="tbl-text-conv">
          <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
only match base encodings that conform to the mandates of their
defining documents.
Note that this also means that <tt>.b64u</tt> and <tt>.b64c</tt> only match text
strings composed of the set of characters defined for each of them,
respectively.
(This is maybe worth pointing out here explicitly as this contrasts
with the "b64" literal prefix that can be used to notate byte strings
in CDDL source code, which simply accepts characters from either alphabet.
This behavior is different from the matching behavior of the four
base64 control operators defined here.)</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 anchor="tbl-num">
          <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 anchor="tbl-printf">
          <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 <xref target="STD90"/> into text strings, the
JSON value for which can easily be defined in CDDL by using the default
JSON-to-CBOR conversion rules provided by Section <xref target="RFC8949" section="6.2" sectionFormat="bare"/> of RFC 8949 <xref target="STD94"/>.
This is supported by a control operator similar to <tt>.cbor</tt> as defined in <xref section="3.8.4" sectionFormat="of" target="RFC8610"/>.</t>
        <table anchor="tbl-json">
          <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>Notes:</t>
        <ul spacing="normal">
          <li>
            <t>JSON has known interoperability problems <xref target="RFC7493"/>.
While <xref section="4" sectionFormat="of" target="RFC7493"/> probably is not relevant to this
specification, <xref section="2" sectionFormat="of" target="RFC7493"/> provides requirements that
need to be followed to make use of the generic data model underlying
CDDL.
Note that the intention of <xref section="2.2" sectionFormat="of" target="RFC7493"/> is directly
supported by Section <xref target="RFC8949" section="6.2" sectionFormat="bare"/> of RFC 8949 <xref target="STD94"/>.
The recommendation to use text strings for representing numbers
outside JSON's interoperable range is a requirement on the
application data model and therefore needs to be reflected on the
right-hand side of the <tt>.json</tt> control operator.</t>
          </li>
          <li>
            <t>This control operator provides no way to constrain the use of blank
space or other serialization variants in the JSON representation of
the data items; restrictions on the serialization to specific
variants (e.g, not providing for the addition of any insignificant
blank space, prescribing an order in which map entries are
serialized) could be defined in future control operators.</t>
          </li>
          <li>
            <t>A <tt>.jsonseq</tt> is not provided in this document for <xref target="RFC7464"/>, as no
use case for inclusion in CDDL is known at the time of writing;
again, future control operators could address this use case.</t>
          </li>
        </ul>
      </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 anchor="tbl-join">
          <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 only matches the target data item if that result is
a valid text string (i.e., valid UTF-8; note that in contrast to the
algorithm used in Section <xref target="RFC8949" section="3.2.3" sectionFormat="bare"/> of RFC 8949 <xref target="STD94"/> there is no need
that all individual byte sequences going into the concatenation
constitute valid text strings).</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"/>; see also
<xref section="8" sectionFormat="of" target="RFC9485"/> for security considerations related to
regexps) 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 in <xref section="5" sectionFormat="of" target="RFC8610"/> apply, as well as those
in <xref section="12" sectionFormat="of" target="RFC4648"/> for the control operators defined in <xref target="base"/>.</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>
          </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:.plus,.cat, and.det for the construction of constants;.abnf/.abnfb for including ABNF (RFC 5234 and RFC 7405) in CDDL specifications; and.feature 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="RFC7493">
          <front>
            <title>The I-JSON Message Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="March" year="2015"/>
            <abstract>
              <t>I-JSON (short for "Internet JSON") is a restricted profile of JSON designed to maximize interoperability and increase confidence that software can process it successfully with predictable results.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7493"/>
          <seriesInfo name="DOI" value="10.17487/RFC7493"/>
        </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 451?>

<section numbered="false" anchor="list-of-figures">
      <name>List of Figures</name>
      <ol spacing="normal" type="1"><li>
          <t><xref target="fig-join-example">Using the .join operator to build dotted-decimal IPv4 addresses</xref></t>
        </li>
      </ol>
    </section>
    <section numbered="false" anchor="list-of-tables">
      <name>List of Tables</name>
      <ol spacing="normal" type="1"><li>
          <t><xref target="tbl-new">New Control Operators in this Document</xref></t>
        </li>
        <li>
          <t><xref target="tbl-text-conv">Control Operators for Text Conversion of Byte Strings</xref></t>
        </li>
        <li>
          <t><xref target="tbl-num">Control Operator for Text Conversion of Integers</xref></t>
        </li>
        <li>
          <t><xref target="tbl-printf">Control Operator for Printf-formatting of Data Item(s)</xref></t>
        </li>
        <li>
          <t><xref target="tbl-json">Control Operator for Text Conversion of JSON Values</xref></t>
        </li>
        <li>
          <t><xref target="tbl-join">Control Operator for Text Generation from Arrays</xref></t>
        </li>
        <li>
          <t><xref target="tbl-iana-reqs">New Control Operators To Be Registered</xref></t>
        </li>
      </ol>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t><contact fullname="Henk Birkholz"/> suggested the need for many of the control operators
defined here.
The author would like to thank
<contact fullname="Laurence Lundblade"/> and <contact fullname="Jeremy O'Donoghue"/> for sharpening some of
the mandates,
<contact fullname="Mikolai Gütschow"/> for improvements to some examples,
<contact fullname="A.J. Stein"/> for serving as shepherd for this document and for his
shepherd review,
and <contact fullname="Orie Steele"/> for serving as responsible AD and for providing a
detailed AD review.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
