<?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-rfc2629 version 1.5.25 (Ruby 3.0.3) -->
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-bormann-cbor-cddl-freezer-09" category="info" tocInclude="true" sortRefs="true" symRefs="true" obsoletes="" updates="" submissionType="IETF" xml:lang="en" version="3">
  <!-- xml2rfc v2v3 conversion 3.11.1 -->
  <front>
    <title abbrev="CDDL feature freezer">A feature freezer for the Concise Data Definition Language (CDDL)</title>
    <seriesInfo name="Internet-Draft" value="draft-bormann-cbor-cddl-freezer-09"/>
    <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="2021" month="December" day="26"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>In defining the Concise Data Definition Language (CDDL), some features
have turned up that would be nice to have.  In the interest of
completing this specification in a timely manner, the present document
was started to collect nice-to-have features that did not make it into the first RFC
for CDDL, RFC 8610, or the specifications exercising its extension points, such
as RFC 9165.</t>
      <t>It is now time to discuss thawing some of the concepts discussed here.
A number of additional proposals have been added.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="intro" toc="default">
      <name>Introduction</name>
      <t>In defining the Concise Data Definition Language (CDDL), some features
have turned up that would be nice to have.  In the interest of
completing this specification in a timely manner, the present document
was started to collect nice-to-have features that did not make it into the first RFC
for CDDL <xref target="RFC8610" format="default"/>, or the specifications exercising its extension points, such
as <xref target="RFC9165" format="default"/>.</t>
      <t>It is now time to discuss thawing some of the concepts discussed here.
A number of additional proposals have been added.</t>
      <t>There is always a danger for a document like this to become a shopping
list; the intention is to develop this document further based on the
rapidly growing real-world experience with the first CDDL standard.</t>
    </section>
    <section anchor="base-language-features" toc="default">
      <name>Base language features</name>
      <section anchor="cuts" toc="default">
        <name>Cuts</name>
        <t><xref section="3.5.4" sectionFormat="of" target="RFC8610" format="default"/> alludes to a new language feature, <em>cuts</em>,
and defines it in a fashion that is rather focused on a single
application in the context of maps and generating better diagnostic
information about them.</t>
        <t>The present document is expected to grow a more complete definition of
cuts, with the expectation that it will be upwards-compatible to the
existing one in <xref target="RFC8610" format="default"/>, before this possibly becomes a mainline
language feature in a future version of CDDL.</t>
      </section>
    </section>
    <section anchor="literal-syntax" toc="default">
      <name>Literal syntax</name>
      <section anchor="tag-oriented-literals" toc="default">
        <name>Tag-oriented Literals</name>
        <t>Some CBOR tags often would be most natural to use in a CDDL spec with a literal
syntax that is tailored to their semantics instead of their
serialization in CBOR.  There is currently no way to add such syntaxes, no
defined extension point either.</t>
        <t>Based on the CoRAL work <xref target="I-D.ietf-core-coral" format="default"/>, the proposal
"Application-Oriented Literals in CBOR Extended Diagnostic Notation"
<xref target="I-D.bormann-cbor-edn-literals" format="default"/> defines application-oriented
literals, e.g., of the form</t>
        <ul empty="true">
          <li>
            <t>dt'2019-07-21T19:53Z'</t>
          </li>
        </ul>
        <t>for datetime items.  With additional considerations for unambiguous
syntax, a similar literal form could be included in CDDL.</t>
      </section>
      <section anchor="regular-expression-literals" toc="default">
        <name>Regular Expression Literals</name>
        <t>Regular expressions currently are notated as strings in CDDL, with all
the string escaping rules applied once.  It might be convenient to
have a more conventional literal format for regular expressions,
possibly also providing a place to add modifiers such as <tt>/i</tt>.
This might also imply <tt>text .regexp ...</tt>, which with the proposal in
<xref target="pcre" format="default"/> then raises the question of how to indicate the regular
expression flavor.</t>
      </section>
      <section anchor="clarifications" toc="default">
        <name>Clarifications</name>
        <t>A number of errata reports have been made around some details of text
string and byte string literal syntax: <xref target="Err6527" format="default"/> and <xref target="Err6543" format="default"/>.
These need to be addressed by re-examining the details of these
literal syntaxes.
Also, <xref target="Err6526" format="default"/> needs to be applied.</t>
        <section anchor="err6527" toc="default">
          <name>Err6527</name>
          <t>The ABNF used in <xref target="RFC8610" format="default"/> for the content of text string literals
is rather permissive:</t>
          <sourcecode type="abnf"><![CDATA[
text = %x22 *SCHAR %x22
SCHAR = %x20-21 / %x23-5B / %x5D-7E / %x80-10FFFD / SESC
SESC = "\" (%x20-7E / %x80-10FFFD)
]]></sourcecode>
          <t>This allows almost any non-C0 character to be escaped by a backslash,
but critically misses out on the <tt>\uXXXX</tt> and <tt>\uHHHH\uLLLL</tt> forms
that JSON allows to specify characters in hex.  Both can be solved by
updating the SESC production to:</t>
          <sourcecode type="abnf"><![CDATA[
SESC = "\" ( %x22 / "/" / "\" /                 ; \" \/ \\
             %x62 / %x66 / %x6E / %x72 / %x74 / ; \b \f \n \r \t
             (%x75 hexchar) )                   ; \u
hexchar = non-surrogate / (high-surrogate "\" %x75 low-surrogate)
non-surrogate = ((DIGIT / "A"/"B"/"C" / "E"/"F") 3HEXDIG) /
               ("D" %x30-37 2HEXDIG )
high-surrogate = "D" ("8"/"9"/"A"/"B") 2HEXDIG
low-surrogate = "D" ("C"/"D"/"E"/"F") 2HEXDIG
]]></sourcecode>
          <t>Now that SESC is more restrictively formulated, this also requires an
update to the BCHAR production used in the ABNF syntax for byte string
literals:</t>
          <sourcecode type="abnf"><![CDATA[
bytes = [bsqual] %x27 *BCHAR %x27
BCHAR = %x20-26 / %x28-5B / %x5D-10FFFD / SESC / CRLF
bsqual = "h" / "b64"
]]></sourcecode>
          <t>The updated version explicit allows <tt>\'</tt>, which is no longer allowed
in the updated SESC:</t>
          <sourcecode type="abnf"><![CDATA[
BCHAR = %x20-26 / %x28-5B / %x5D-10FFFD / SESC / "\'" / CRLF
]]></sourcecode>
        </section>
        <section anchor="err6543" toc="default">
          <name>Err6543</name>
          <t>The ABNF used in <xref target="RFC8610" format="default"/> for the content of byte string literals
lumps together byte strings notated as text with byte strings notated
in base16 (hex) or base64 (but see also updated BCHAR production above):</t>
          <sourcecode type="abnf"><![CDATA[
bytes = [bsqual] %x27 *BCHAR %x27
BCHAR = %x20-26 / %x28-5B / %x5D-10FFFD / SESC / CRLF
]]></sourcecode>
          <t>Errata report 6543 proposes to handle the two cases in separate
productions (where, with an updated SESC, BCHAR obviously needs to be
updated as above):</t>
          <sourcecode type="abnf"><![CDATA[
bytes = %x27 *BCHAR %x27
      / bsqual %x27 *QCHAR %x27
BCHAR = %x20-26 / %x28-5B / %x5D-10FFFD / SESC / CRLF
QCHAR = DIGIT / ALPHA / "+" / "/" / "-" / "_" / "=" / WS
]]></sourcecode>
          <t>This potentially causes a subtle change, which is hidden in the WS production:</t>
          <sourcecode type="abnf"><![CDATA[
WS = SP / NL
SP = %x20
NL = COMMENT / CRLF
COMMENT = ";" *PCHAR CRLF
PCHAR = %x20-7E / %x80-10FFFD
CRLF = %x0A / %x0D.0A
]]></sourcecode>
          <t>This allows any non-C0 character in a comment, so this fragment
becomes possible:</t>
          <sourcecode type="cddl"><![CDATA[
foo = h'
   43424F52 ; 'CBOR'
   0A       ; LF, but don't use CR!
'
]]></sourcecode>
          <t>The current text is not unambiguously saying whether the three apostrophes
need to be escaped with a <tt>\</tt> or not, as in:</t>
          <sourcecode type="cddl"><![CDATA[
foo = h'
   43424F52 ; \'CBOR\'
   0A       ; LF, but don\'t use CR!
'
]]></sourcecode>
          <t>... which would be supported by the existing ABNF in <xref target="RFC8610" format="default"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="controls" toc="default">
      <name>Controls</name>
      <t>Controls are the main extension point of the CDDL language.
It is relatively painless to add controls to CDDL; this mechanism has
been exercised in <xref target="RFC9090" format="default"/> for SDNV <xref target="RFC6256" format="default"/> and ASN.1 OID related byte
strings, and in <xref target="RFC9165" format="default"/> for more generally applicable controls,
including an interface to ABNF <xref target="RFC5234" format="default"/> <xref target="RFC7405" format="default"/>.
Several further candidates have been identified that aren't quite ready for
adoption, of which a few shall be listed here.</t>
      <section anchor="pcre" toc="default">
        <name>Control operator .pcre</name>
        <t>There are many variants of regular expression languages.
<xref section="3.8.3" sectionFormat="of" target="RFC8610" format="default"/> defines the .regexp control, which is
based on <xref target="XSD2" format="default">XSD</xref> regular expressions.
As discussed in that section, the most desirable form of regular
expressions in many cases is the family called "Perl-Compatible
Regular Expressions" (<xref target="PCRE" format="default"/>); however, no formally stable
definition of PCRE is available at this time for normatively
referencing it from an RFC.</t>
        <t>The present document defines the control operator .pcre, which is
similar to .regexp, but uses PCRE2 regular expressions.
More specifically, a <tt>.pcre</tt> control indicates that the text string
given as a target needs to match the PCRE regular expression given as
a value in the control type, where that regular expression is anchored
on both sides.
(If anchoring is not desired for a side, <tt>.*</tt> needs to be inserted
there.)</t>
        <t>Similarly, <tt>.es2018re</tt> could be defined for ECMAscript 2018 regular
expressions with anchors added.</t>
        <t>See also <xref target="I-D.draft-bormann-jsonpath-iregexp" format="default"/>, which could be specifically called out via
<tt>.iregexp</tt> (even though <tt>.regexp</tt> as per <xref section="3.8.3" sectionFormat="of" target="RFC8610" format="default"/>
would also have the same semantics, except for a wider range of regexps).</t>
      </section>
      <section anchor="endianness-in-bits" toc="default">
        <name>Endianness in .bits</name>
        <t>How useful would it be to have another variant of .bits that counts
bits like in RFC box notation?  (Or at least per-byte?  32-bit words
don't always perfectly mesh with byte strings.)</t>
      </section>
      <section anchor="bitfield-control" toc="default">
        <name>.bitfield control</name>
        <t>Provide a way to specify bitfields in byte strings and uints to a
higher level of detail than is possible with .bits.  Strawman:</t>
        <sourcecode type="CDDL"><![CDATA[
Field = uint .bitfield Fieldbits

Fieldbits = [
  flag1: [1, bool],
  val: [4, Vals],
  flag2: [1, bool],
]

Vals = &(A: 0, B: 1, C: 2, D: 3)
]]></sourcecode>
        <t>Note that the group within the controlling array can have choices,
enabling the whole power of a context-free grammar (but not much more).</t>
      </section>
    </section>
    <section anchor="co-occurrence-constraints" toc="default">
      <name>Co-occurrence Constraints</name>
      <t>While there are no co-occurrence constraints in CDDL, many actual use
cases can be addressed by using the fact that a group is a grammar:</t>
      <sourcecode type="CDDL"><![CDATA[
postal = {
  ( street: text,
    housenumber: text) //
  ( pobox: text .regexp "[0-9]+" )
}
]]></sourcecode>
      <t>However, constraints that are not just structural/tree-based but are
predicates combining parts of the structure cannot be expressed:</t>
      <sourcecode type="CDDLx"><![CDATA[
session = {
  timeout: uint,
}

other-session = {
  timeout: uint  .lt [somehow refer to session.timeout],
}
]]></sourcecode>
      <t>As a minimum, this requires the ability to reach over to other parts
of the tree in a control.  Compare JSON Pointer <xref target="RFC6901" format="default"/> and JSON
Relative Pointer <xref target="I-D.handrews-relative-json-pointer" format="default"/>.
Stefan Goessner's jsonpath is a JSON variant of XPath that has not
been formally standardized yet <xref target="jsonpath" format="default"/>.</t>
      <t>More generally, something akin to what Schematron is to Relax-NG may
be needed.</t>
    </section>
    <section anchor="module-superstructure" toc="default">
      <name>Module superstructure</name>
      <t>CDDL rules could be packaged as modules and referenced from other
modules.  There could be some control of namespace pollution, as well
as unambiguous referencing ("versioning").</t>
      <t>This is probably best achieved by a pragma-like syntax which could be
carried in CDDL comments, leaving each module to be valid CDDL (if
missing some rule definitions to be imported).</t>
      <section anchor="namespacing" toc="default">
        <name>Namespacing</name>
        <t>A convention for mapping CDDL-internal names to external ones could be
developed, possibly steered by some pragma-like constructs.  External
names would likely be URI-based, with some conventions as they are
used in RDF or Curies.  Internal names might look similar to XML
QNames.  Note that the identifier character set for CDDL deliberately
includes $ and @, which could be used in such a convention.</t>
      </section>
      <section anchor="cross-universe-references" toc="default">
        <name>Cross-universe references</name>
        <t>Often, a CDDL specfication needs to import from specifications in a
different language or platform.</t>
        <section anchor="iana-references" toc="default">
          <name>IANA references</name>
          <t>In many cases, CDDL specifications make use of values that are
specified in IANA registries.  The <tt>.iana</tt> control operator can be
used to reference such a set of values.</t>
          <t>The reference needs to be able to point to a draft, the registry of
which has not been established yet, as well as to an established IANA registry.</t>
          <t>An example of such a usage might be:</t>
          <sourcecode type="CDDL"><![CDATA[
cose-algorithm = int .iana ["cose", "algorithms", "value"]
]]></sourcecode>
          <t>Unfortunately, the vocabulary employed in IANA registries has not been
designed for machine references.  In this case, the potential values
would come from applying the XPath expression</t>
          <sourcecode type="xpath"><![CDATA[
//iana:registry[@id='algorithms']/iana:record/iana:value
]]></sourcecode>
          <t>to <tt>https://www.iana.org/assignments/cose/cose.xml</tt>, plus some
filtering on the records returned that only leaves actual allocations.
Additional functionality may be needed for filtering with respect to other
columns of the registry record, e.g., <tt>&lt;capabilities&gt;</tt> in the case of
this example.</t>
        </section>
      </section>
      <section anchor="potential-examples" toc="default">
        <name>Potential examples</name>
        <t>This section shows some examples that illustrate potential syntaxes
and semantics to be examined.</t>
        <t>One of the potential objectives here is to keep documents that make
use of this extension generally valid as CDDL 1.0 documents, albeit
possibly with a need to add further CDDL 1.0 rules to obtain a
complete specification.</t>
        <section anchor="how-name-spaces-might-look-like" toc="default">
          <name>How name spaces might look like</name>
          <t>Implicit namespacing might be provided by using a document reference
as a namespace tag:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
RFC8610.int ⬌ int
RFC9090.oid ⬌ oid
]]></artwork>
          <t>Note that this example establishes a namespace for the prelude
(<tt>RFC8610.int</tt>); maybe it is worth to do that more explicitly.</t>
        </section>
        <section anchor="explicitly-interacting-with-namespaces" toc="default">
          <name>Explicitly interacting with namespaces</name>
          <t>New syntax for explicitly interacting with namespaces might be but
into RFC 8610 comments, with a specific prefix (and possibly starting
left-aligned).  Prefixes proposed include <tt>;;&lt;</tt> and <tt>;#</tt>; the below
will use <tt>;#</tt> even though that probably could pose too many conflicts;
it also might be too inconspicuous.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
;# export oid, roid, pen as RFC9090
oid = #6.111(bstr)
roid = #6.110(bstr)
pen = #6.112(bstr)

]]></artwork>
          <t>Besides an implicit import such as</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
; unadorned, just import?
a = [RFC9090.oid]
]]></artwork>
          <t>there also could be an explicit import syntax:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
;# import oid from RFC9090
a = [oid]
]]></artwork>
          <t>Such an explicit syntax might also be able to provide additional
parameters such as in the IANA examples above.</t>
        </section>
        <section anchor="document-references" toc="default">
          <name>Document references</name>
          <t>A convention for establishing RFC references might be easy to
establish, but at least Internet-Draft references and IANA registry
references should also supported.
It is probably worth to add some indirection here, as names of
Internet-Drafts might change (including by becoming RFCs).</t>
        </section>
        <section anchor="add-retroactive-exporting-to-rfcs" toc="default">
          <name>Add retroactive exporting to RFCs</name>
          <t>Existing RFCs with CDDL in them could presume an <tt>export ...all... as RFCnnnn</tt>
(Possibly also per-section exports as in <tt>RFC8610.D</tt> for the prelude?)</t>
          <t>Namespace tags for those exports need to be reserved so they cannot be
occupied by explicit exporting.</t>
          <t>New specifications (including RFCs) can "include"/"import" from these
namespaces, and maybe "export" their own rules in a more considered way.</t>
        </section>
        <section anchor="operations" toc="default">
          <name>Operations</name>
          <ul spacing="normal">
            <li>
              <t>"export":
              </t>
              <ol spacing="normal" type="1"><li>
                  <t>prefix: add a namespace name to "local" rulenames:      </t>
                  <artwork name="" type="" align="left" alt=""><![CDATA[
`oid` ➔ `RFC9090.oid`
]]></artwork>
                </li>
                <li>make that namespace available to other specs</li>
              </ol>
            </li>
            <li>
              <t>"import": include (prefixed) definitions from a source
              </t>
              <ol spacing="normal" type="1"><li>use as is: <tt>RFC9090.oid</tt></li>
                <li>unprefix: <tt>oid</tt></li>
              </ol>
              <t>
Example: prelude processing -- include+unprefix from Appendix D of RFC8610.</t>
            </li>
            <li>"include": find files, turn into namespaces to import from</li>
          </ul>
        </section>
        <section anchor="to-be-discussed" toc="default">
          <name>To be discussed</name>
          <t>How to find the document that exports a namespace
(IANA? Use by other SDOs?  Internal use in an org?
How to transition between these states?)</t>
          <t>Multiple documents exporting into one namespace
(<em>Immutable</em> RFC9090 namespace vs. "OID"-namespace?
Who manages <em>mutable</em> namespaces?)</t>
          <t>Updates, revisions, versions, semver:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
;# insert OID ~> 2.2   ; twiddle-wakka: this version or higher
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="alternative-representations" toc="default">
      <name>Alternative Representations</name>
      <t>For CDDL, alternative representations e.g. in JSON (and thus in YAML)
could be defined, similar to the way YANG defines an XML-based
serialization called YIN in <xref section="11" sectionFormat="of" target="RFC6020" format="default"/>.
One proposal for such a syntax is provided by the <tt>cddlc</tt> tool
<xref target="cddlc" format="default"/>, which is reproduced below.
This could be written up in more detail and agreed upon.</t>
      <sourcecode type="CDDL"><![CDATA[
cddlj = ["cddl", +rule]
rule = ["=" / "/=" / "//=", namep, type]
namep = ["name", id] / ["gen", id, +id]
id = text .regexp "[A-Za-z@_$](([-.])*[A-Za-z0-9@_$])*"
op = ".." / "..." /
  text .regexp "\\.[A-Za-z@_$](([-.])*[A-Za-z0-9@_$])*"
namea = ["name", id] / ["gen", id, +type]
type = value / namea / ["op", op, type, type] /
  ["map", group] / ["ary", group] / ["tcho", 2*type] /
  ["unwrap", namea] / ["enum", group / namea] /
  ["prim", ?(0..7, ?uint)]
group = ["mem", null/type, type] /
  ["rep", uint, uint/false, group] /
  ["seq", 2*group] / ["gcho", 2*group]
value = ["number"/"text"/"bytes", text]
]]></sourcecode>
    </section>
    <section anchor="iana-considerations" toc="default">
      <name>IANA Considerations</name>
      <t>This document makes no requests of IANA.</t>
    </section>
    <section anchor="security-considerations" toc="default">
      <name>Security considerations</name>
      <t>The security considerations of <xref target="RFC8610" format="default"/> apply.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC8610" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="C. Vigano" initials="C." surname="Vigano">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc9165">
          <front>
            <title>Additional Control Operators for the Concise Data Definition Language (CDDL)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <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>
      </references>
      <references>
        <name>Informative References</name>
        <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">
              <organization/>
            </author>
            <author fullname="P. Overell" initials="P." surname="Overell">
              <organization/>
            </author>
            <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>
        <reference anchor="RFC7405" target="https://www.rfc-editor.org/info/rfc7405">
          <front>
            <title>Case-Sensitive String Support in ABNF</title>
            <author fullname="P. Kyzivat" initials="P." surname="Kyzivat">
              <organization/>
            </author>
            <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="RFC9090" target="https://www.rfc-editor.org/info/rfc9090">
          <front>
            <title>Concise Binary Object Representation (CBOR) Tags for Object Identifiers</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <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="RFC6256" target="https://www.rfc-editor.org/info/rfc6256">
          <front>
            <title>Using Self-Delimiting Numeric Values in Protocols</title>
            <author fullname="W. Eddy" initials="W." surname="Eddy">
              <organization/>
            </author>
            <author fullname="E. Davies" initials="E." surname="Davies">
              <organization/>
            </author>
            <date month="May" year="2011"/>
            <abstract>
              <t>Self-Delimiting Numeric Values (SDNVs) have recently been introduced as a field type in proposed Delay-Tolerant Networking protocols. SDNVs encode an arbitrary-length non-negative integer or arbitrary- length bitstring with minimum overhead.  They are intended to provide protocol flexibility without sacrificing economy and to assist in future-proofing protocols under development.  This document describes formats and algorithms for SDNV encoding and decoding, along with notes on implementation and usage.  This document is a product of the Delay-Tolerant Networking Research Group and has been reviewed by that group.  No objections to its publication as an RFC were raised.  This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6256"/>
          <seriesInfo name="DOI" value="10.17487/RFC6256"/>
        </reference>
        <reference anchor="XSD2" target="https://www.w3.org/TR/2004/REC-xmlschema-2-20041028">
          <front>
            <title>XML Schema Part 2: Datatypes Second Edition</title>
            <author fullname="Paul V. Biron" initials="P." surname="Biron">
              <organization/>
            </author>
            <author fullname="Ashok Malhotra" initials="A." surname="Malhotra">
              <organization/>
            </author>
            <date day="28" month="October" year="2004"/>
          </front>
          <seriesInfo name="World Wide Web Consortium Recommendation" value="REC-xmlschema-2-20041028"/>
        </reference>
        <reference anchor="PCRE" target="http://pcre.org/current/doc/html/">
          <front>
            <title>Perl-compatible Regular Expressions (revised API: PCRE2)</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="I-D.draft-bormann-jsonpath-iregexp" target="https://www.ietf.org/archive/id/draft-bormann-jsonpath-iregexp-01.txt">
          <front>
            <title>I-Regexp: An Interoperable Regexp Format</title>
            <author fullname="Carsten Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="13" month="November" year="2021"/>
            <abstract>
              <t>   "Regular expressions" (regexps) are a set of related, widely
   implemented pattern languages used in data modeling formats and query
   languages that is available in many dialects.  This specification
   defines an interoperable flavor of regexps, I-Regexp.

   The present version -01 of this document is a slight update of the
   original trial balloon, meant to determine whether this approach is
   useful for the JSONPath WG.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bormann-jsonpath-iregexp-01"/>
        </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="jsonpath" target="https://jsonpath.com">
          <front>
            <title>jsonpath online evaluator</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Err6526" target="https://www.rfc-editor.org/errata/eid6526">
          <front>
            <title>Errata Report 6526</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
          <seriesInfo name="RFC" value="8610"/>
        </reference>
        <reference anchor="Err6527" target="https://www.rfc-editor.org/errata/eid6527">
          <front>
            <title>Errata Report 6527</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
          <seriesInfo name="RFC" value="8610"/>
        </reference>
        <reference anchor="Err6543" target="https://www.rfc-editor.org/errata/eid6543">
          <front>
            <title>Errata Report 6543</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
          <seriesInfo name="RFC" value="8610"/>
        </reference>
        <reference anchor="I-D.ietf-core-coral" target="https://www.ietf.org/archive/id/draft-ietf-core-coral-04.txt">
          <front>
            <title>The Constrained RESTful Application Language (CoRAL)</title>
            <author fullname="Christian Amsüss">
	 </author>
            <author fullname="Thomas Fossati">
              <organization>ARM</organization>
            </author>
            <date day="25" month="October" year="2021"/>
            <abstract>
              <t>   The Constrained RESTful Application Language (CoRAL) defines a data
   model and interaction model as well as a compact serialization
   formats for the description of typed connections between resources on
   the Web ("links"), possible operations on such resources ("forms"),
   and simple resource metadata.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-coral-04"/>
        </reference>
        <reference anchor="I-D.bormann-cbor-edn-literals" target="https://www.ietf.org/archive/id/draft-bormann-cbor-edn-literals-00.txt">
          <front>
            <title>Application-Oriented Literals in CBOR Extended Diagnostic Notation</title>
            <author fullname="Carsten Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="6" month="October" year="2021"/>
            <abstract>
              <t>   The Concise Binary Object Representation, CBOR (RFC 8949) defines a
   "diagnostic notation" in order to be able to converse about CBOR data
   items without having to resort to binary data.

   This document specifies how to add application-oriented extensions to
   the diagnostic notation.  It then defines two such extensions for the
   use of CBOR diagnostic notation with CoRAL and Constrained Resource
   Identifiers (draft-ietf-core-coral, draft-ietf-core-href).

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bormann-cbor-edn-literals-00"/>
        </reference>
        <reference anchor="RFC6901" target="https://www.rfc-editor.org/info/rfc6901">
          <front>
            <title>JavaScript Object Notation (JSON) Pointer</title>
            <author fullname="P. Bryan" initials="P." role="editor" surname="Bryan">
              <organization/>
            </author>
            <author fullname="K. Zyp" initials="K." surname="Zyp">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <date month="April" year="2013"/>
            <abstract>
              <t>JSON Pointer defines a string syntax for identifying a specific value within a JavaScript Object Notation (JSON) document.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6901"/>
          <seriesInfo name="DOI" value="10.17487/RFC6901"/>
        </reference>
        <reference anchor="I-D.handrews-relative-json-pointer" target="https://www.ietf.org/archive/id/draft-handrews-relative-json-pointer-02.txt">
          <front>
            <title>Relative JSON Pointers</title>
            <author fullname="Geraint Luff">
	 </author>
            <author fullname="Henry Andrews">
	 </author>
            <date day="18" month="September" year="2019"/>
            <abstract>
              <t>   JSON Pointer is a syntax for specifying locations in a JSON document,
   starting from the document root.  This document defines an extension
   to the JSON Pointer syntax, allowing relative locations from within
   the document.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-handrews-relative-json-pointer-02"/>
        </reference>
        <reference anchor="RFC6020" target="https://www.rfc-editor.org/info/rfc6020">
          <front>
            <title>YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)</title>
            <author fullname="M. Bjorklund" initials="M." role="editor" surname="Bjorklund">
              <organization/>
            </author>
            <date month="October" year="2010"/>
            <abstract>
              <t>YANG is a data modeling language used to model configuration and state data manipulated by the Network Configuration Protocol (NETCONF), NETCONF remote procedure calls, and NETCONF notifications. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6020"/>
          <seriesInfo name="DOI" value="10.17487/RFC6020"/>
        </reference>
      </references>
    </references>
    <section numbered="false" anchor="acknowledgements" toc="default">
      <name>Acknowledgements</name>
      <t>Many people have asked for CDDL to be completed, soon.
These are usually also the people who have brought up observations
that led to the proposals discussed here.
Sean Leonard has campaigned for a regexp literal syntax.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
19S/8WbGQP0PCc1YBqpDAAA=

-->

</rfc>
