<?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.29 (Ruby 3.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-dispatch-mime-protobuf-07" category="info" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title>Media Type Registration for Protocol Buffers</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-dispatch-mime-protobuf-07"/>
    <author initials="M." surname="Kucherawy" fullname="Murray S. Kucherawy" role="editor">
      <organization/>
      <address>
        <email>superuser@gmail.com</email>
      </address>
    </author>
    <author initials="W." surname="Kumari" fullname="Warren Kumari">
      <organization>Google</organization>
      <address>
        <email>warren@kumari.net</email>
      </address>
    </author>
    <author initials="R." surname="Sloan" fullname="Rob Sloan">
      <organization>Google</organization>
      <address>
        <email>rmsj@google.com</email>
      </address>
    </author>
    <date year="2025" month="December" day="01"/>
    <area>ART</area>
    <workgroup>DISPATCH</workgroup>
    <keyword>MIME</keyword>
    <keyword>protobuf</keyword>
    <keyword>media type</keyword>
    <keyword>application</keyword>
    <abstract>
      <?line 120?>

<t>This document registers media types for Protocol Buffers, a common extensible mechanism for serializing structured data.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://github.com/wkumari/draft-murray-dispatch-mime-protobuf"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-dispatch-mime-protobuf/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        DISPATCH Working Group mailing list (<eref target="mailto:dispatch@ietf.org"/>),
        which is archived at <eref target="https://www.ietf.org/mailman/listinfo/dispatch"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/dispatch/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com//wkumari/draft-murray-dispatch-mime-protobuf"/>.</t>
    </note>
  </front>
  <middle>
    <?line 124?>

<section anchor="intro">
      <name>Introduction</name>
      <t>Protocol Buffers ("protobufs") were introduced in 2008 as a free, open source, platform-independent mechanism for transport and storage of structured data: their use has become
increasingly common and Protobuf implementations exist in many languages (C++, C#, Dart, Go, Java, Kotlin, Objective-C, Python, JavaScript, Ruby, Swift, and perhaps others). See <xref target="Protobuf"/> for more information.</t>
      <t>Protobuf consists of an interface definition language ("IDL"), wire encoding formats, and language-specific implementations (typically involving a generated API) so that clients and servers can be easily deployed using a common schema. Protobuf supports two wire formats for interchange: <xref target="Binary"/>, which is optimized for wire efficiency, and <xref target="ProtoJSON"/>, which maps the Protobuf schema onto a JSON structure.</t>
      <t>Serialized objects are occasionally transported within media that make use of media types (see <xref target="RFC2045"/> et seq) to identify payloads. Accordingly,
current and historical media types used for this purpose would benefit from registration. This document requests those registrations of IANA.</t>
    </section>
    <section anchor="key-words">
      <name>Key Words</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document
are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals, as shown here.</t>
    </section>
    <section anchor="description">
      <name>Payload Description</name>
      <t>These media types are used in the transport of serialized objects only.  The IDL and object definitions, if transported, would be used with any appropriate text media type.
In the three figures below, only the third of these would ever be used with these media types (a JSON example is depicted).</t>
      <t>An example use of the IDL to specify a "Person" object:</t>
      <artwork><![CDATA[
edition = "2023";

message Person {
  string name = 1;
  int32 id = 2;
  string email = 3;
}
]]></artwork>
      <t>An example of python code that uses code generated from the IDL definition above to create an instance of a "Person" object:</t>
      <sourcecode type="python"><![CDATA[
person = Person()
person.id = 1234
person.name = "John Doe"
person.email = "jdoe@example.com"
]]></sourcecode>
      <t>An example of the above instance expressed in JSON:</t>
      <sourcecode type="json"><![CDATA[
{
  "name": "John Doe",
  "id": 1234,
  "email": "jdoe@example.com"
}
]]></sourcecode>
    </section>
    <section anchor="encoding">
      <name>Encoding Considerations</name>
      <t>Protobuf supports the <xref target="Binary"/> and <xref target="ProtoJSON"/> formats for interchange, both of which are platform-independent.
For binary forms that need to transit non-binary transports, a base64 encoding (e.g., <xref target="RFC4648"/>) is recommended.</t>
      <t>The media type includes an optional "encoding" parameter indicating which encoding format is to be used with that particular payload.  This is included for future extensibility. Valid values for this parameter are "binary" and "json", and other values MUST be treated as an error.  See <xref target="iana"/> for the defaults for each of the two registered media types. Using "binary" for the JSON type or "json" for the binary type MUST be treated as an error.</t>
    </section>
    <section anchor="versions">
      <name>Versions</name>
      <t><xref target="Proto2"/> was the first public version of the Protobuf schema language, and <xref target="Proto3"/> and <xref target="Edition2023"/> came later, with the last of these being current at the time of writing. Future editions of the IDL are expected.</t>
      <t>These versions refer to evolutions of the schema of the IDL, not the wire format. Accordingly, a serialized object generated by any of these is compatible with any other. The media type registrations in <xref target="iana"/> include support for versioning of the wire format, should it ever change, but do not refer to the IDL, which can evolve independently.</t>
      <t>Note that there may be semantic changes implicit in the IDL version which can affect the interpretation of otherwise compatible bits on the wire. For example, in Proto2, unknown values of an enumeration were interpreted as invalid, whereas in Proto3 they are retained.</t>
      <t>Clients MUST reject payloads with an unsupported version number.</t>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <t>The payload for these media types contain no directly executable code. While it is common for a protobuf definition to be used as input to a code generator which then produces something executable, that applies to the schema language, not serializations.</t>
      <t>Protobuf provides no security, privacy, integrity, or compression services: clients or servers for which this is a concern should avail themselves of solutions that provide such capabilities (e.g. <xref target="RFC8446"/>). Implementations should be careful when processing Protobuf like any binary format: a malformed request to a protobuf server could be crafted to, for example, allocate a very large amount of memory, potentially impacting other operations on that server.</t>
      <t>Protobuf supports embedded content in <tt>string</tt> or <tt>bytes</tt> fields: in both cases, applications should ensure that the format of the content is precisely as expected. Note that UTF-8 validation of <tt>string</tt> fields is optional (see <xref target="ProtoFeatures"/>) and a manual well-formedness check may be necessary. Further, handling Unicode text generally can be quite complex with problems discussed, for example, in <xref target="UniChars"/> and <xref target="RFC8264"/>; so it is best to rely on well-supported internationalization libraries whenever possible.</t>
      <t>In order to safely use Protobuf serializations on the web, it is important to ensure that they are not interpreted as another document type, such as JavaScript: we recommend base64-encoding binary Protobuf responses whenever possible to prevent parsing as active content. Servers should generally follow the advice of <xref target="RFC9205"/> to prevent content sniffing for all binary formats.</t>
      <t>Further, when using JSON serializations it is important that it is clear to browsers that the content is pure JSON, so that they can inhibit Cross-Site Script Inclusion or side-channel attacks using techniques such as Cross-Origin Read Blocking (<xref target="CORB"/>). Per <xref target="RFC6839"/>, pure JSON content is indicated by a <tt>+json</tt> subtype suffix (see also <xref target="MIMESNIFF"/>); so when serializing Protobuf content to JSON, users MUST use the <tt>application/protobuf+json</tt> media type. When using JSON, <tt>charset</tt> can prevent certain encoding confusion attacks so users should specify it for all JSON encodings.</t>
      <t>In the <xref target="Any"/> type there is technically a link, which was intended to be dereferenced to obtain schemas for a given type; however this is not supported by widely used Protobuf implementations.</t>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>As per the process defined in <xref target="RFC6838"/>, this document requests the registration of <tt>application/protobuf</tt> and <tt>application/protobuf+json</tt> as media types for Protobuf, and the notation of <tt>application/x-protobuf</tt>, <tt>application/x-protobuffer</tt>, and <tt>application/x-protobuf+json</tt> as deprecated aliases:</t>
      <section anchor="registration-for-the-applicationprotobuf-media-type">
        <name>Registration for the "application/protobuf" Media Type</name>
        <t>Type name: application</t>
        <t>Subtype name: protobuf</t>
        <t>Required parameters: none</t>
        <t>Optional parameters:</t>
        <ul spacing="normal">
          <li>
            <t><tt>encoding</tt>, which indicates the type of Protobuf encoding and is "binary" by default for <tt>application/protobuf</tt>, indicating the <xref target="Binary"/> format. At the time of writing, no other encoding can be used for <tt>application/protobuf</tt> so this parameter is for extensibility.</t>
          </li>
          <li>
            <t><tt>version</tt>, which indicates the version of the wire encoding specification (not the schema language), with default <tt>1</tt>. At the time of writing, no protobuf wire encodings are versioned so this parameter is for extensibility. Unversioned wire encodings should be treated as having version <tt>1</tt>.</t>
          </li>
        </ul>
        <t>Encoding considerations: binary</t>
        <t>Security considerations: see <xref target="security"/></t>
        <t>Interoperability considerations: The Protobuf specification includes versioning provisions to ensure backward compatibility when encountering payloads with unknown properties.</t>
        <t>Published specification: <xref target="Protobuf"/></t>
        <t>Applications that use this media type: Any application with a need to exchange or store structured objects across platforms or implementations.</t>
        <t>Fragment identifier considerations: None.</t>
        <t>Additional information:</t>
        <ul spacing="normal">
          <li>
            <t>Deprecated alias names for this type: <tt>application/x-protobuf</tt>, <tt>application/x-protobuffer</tt></t>
          </li>
          <li>
            <t>Magic number(s):</t>
          </li>
          <li>
            <t>File extension(s):</t>
          </li>
          <li>
            <t>Macintosh file type code(s):</t>
          </li>
        </ul>
        <t>Person &amp; email address to contact for further information: Protobuf &lt;protobuf-team@google.com&gt;</t>
        <t>Intended usage: COMMON</t>
        <t>Restrictions on usage: None</t>
        <t>Author: Rob Sloan &lt;rmsj@google.com&gt;, Protobuf Team &lt;protobuf-team@google.com&gt;</t>
        <t>Change controller: IETF</t>
        <t>Provisional registration? (standards tree only): No</t>
      </section>
      <section anchor="registration-for-applicationprotobufjson-media-type">
        <name>Registration for "application/protobuf+json" Media Type</name>
        <t>Type name: application</t>
        <t>Subtype name: protobuf+json</t>
        <t>Required parameters: <tt>charset</tt>, which must be set to <tt>utf-8</tt> (case-insensitive)</t>
        <t>Optional parameters:</t>
        <ul spacing="normal">
          <li>
            <t><tt>encoding</tt>, which indicates the type of Protobuf encoding and is <tt>json</tt> by default for <tt>application/protobuf+json</tt>, indicating the <xref target="ProtoJSON"/> format. At the time of writing, no other encoding can be used for <tt>application/protobuf+json</tt> so this parameter is for extensibility.</t>
          </li>
          <li>
            <t><tt>version</tt>, which indicates the version of the wire encoding specification (not the schema language), with default <tt>1</tt>. At the time of writing, no protobuf wire encodings are versioned so this parameter is for extensibility. Unversioned wire encodings should be treated as having version <tt>1</tt>.</t>
          </li>
        </ul>
        <t>Encoding considerations: Same as encoding considerations of <tt>application/json</tt> as specified in <xref target="RFC8259"/>, Section 11.</t>
        <t>Security considerations: see <xref target="security"/></t>
        <t>Interoperability considerations: The Protobuf specification includes versioning provisions to ensure backward compatibility when encountering payloads with unknown properties.</t>
        <t>Published specification: <xref target="Protobuf"/></t>
        <t>Applications that use this media type: Any application with a need to exchange or store structured objects across platforms or implementations.</t>
        <t>Fragment identifier considerations: None.</t>
        <t>Additional information:</t>
        <artwork><![CDATA[
 Deprecated alias names for this type: x-protobuf+json
 Magic number(s):
 File extension(s):
 Macintosh file type code(s):
]]></artwork>
        <t>Person &amp; email address to contact for further information: Protobuf &lt;protobuf-team@google.com&gt;</t>
        <t>Intended usage: COMMON</t>
        <t>Restrictions on usage: None</t>
        <t>Author: Rob Sloan &lt;rmsj@google.com&gt;. Protobuf Team &lt;protobuf-team@google.com&gt;</t>
        <t>Change controller: IETF</t>
        <t>Provisional registration? (standards tree only): No</t>
      </section>
    </section>
    <section anchor="contact">
      <name>Contact</name>
      <t>Please contact protobuf-team@google.com for requests to adjust this specification. Issues may be raised at https://github.com/protocolbuffers/protobuf.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2045">
          <front>
            <title>Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="N. Borenstein" initials="N." surname="Borenstein"/>
            <date month="November" year="1996"/>
            <abstract>
              <t>This initial document specifies the various headers used to describe the structure of MIME messages. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2045"/>
          <seriesInfo name="DOI" value="10.17487/RFC2045"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols. This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
        <reference anchor="RFC6839">
          <front>
            <title>Additional Media Type Structured Syntax Suffixes</title>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <author fullname="A. Melnikov" initials="A." surname="Melnikov"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>A content media type name sometimes includes partitioned meta- information distinguished by a structured syntax to permit noting an attribute of the media as a suffix to the name. This document defines several structured syntax suffixes for use with media type registrations. In particular, it defines and registers the "+json", "+ber", "+der", "+fastinfoset", "+wbxml" and "+zip" structured syntax suffixes, and provides a media type structured syntax suffix registration form for the "+xml" structured syntax suffix. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6839"/>
          <seriesInfo name="DOI" value="10.17487/RFC6839"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <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="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>
        <reference anchor="Protobuf" target="https://protobuf.dev/">
          <front>
            <title>Protocol Buffers</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC9205">
          <front>
            <title>Building Protocols with HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>Applications often use HTTP as a substrate to create HTTP-based APIs. This document specifies best practices for writing specifications that use HTTP to define new application protocols. It is written primarily to guide IETF efforts to define application protocols using HTTP for deployment on the Internet but might be applicable in other situations.</t>
              <t>This document obsoletes RFC 3205.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="56"/>
          <seriesInfo name="RFC" value="9205"/>
          <seriesInfo name="DOI" value="10.17487/RFC9205"/>
        </reference>
        <reference anchor="RFC8264">
          <front>
            <title>PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <author fullname="M. Blanchet" initials="M." surname="Blanchet"/>
            <date month="October" year="2017"/>
            <abstract>
              <t>Application protocols using Unicode code points in protocol strings need to properly handle such strings in order to enforce internationalization rules for strings placed in various protocol slots (such as addresses and identifiers) and to perform valid comparison operations (e.g., for purposes of authentication or authorization). This document defines a framework enabling application protocols to perform the preparation, enforcement, and comparison of internationalized strings ("PRECIS") in a way that depends on the properties of Unicode code points and thus is more agile with respect to versions of Unicode. As a result, this framework provides a more sustainable approach to the handling of internationalized strings than the previous framework, known as Stringprep (RFC 3454). This document obsoletes RFC 7564.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8264"/>
          <seriesInfo name="DOI" value="10.17487/RFC8264"/>
        </reference>
        <reference anchor="CORB" target="https://www.chromium.org/Home/chromium-security/corb-for-developers">
          <front>
            <title>Cross-Origin Read Blocking for Web Developers</title>
            <author>
              <organization>Chromium</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="MIMESNIFF" target="https://mimesniff.spec.whatwg.org/#mime-type-groups">
          <front>
            <title>MIME Sniffing: Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Any" target="https://github.com/protocolbuffers/protobuf/blob/main/src/google/protobuf/any.proto">
          <front>
            <title>any.proto Schema Definition</title>
            <author>
              <organization>Protobuf</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Binary" target="https://protobuf.dev/programming-guides/encoding">
          <front>
            <title>Protobuf Binary Wire Encoding Spec</title>
            <author>
              <organization>Protobuf</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ProtoJSON" target="https://protobuf.dev/programming-guides/json">
          <front>
            <title>Protobuf JSON Wire Encoding Spec</title>
            <author>
              <organization>Protobuf</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Proto2" target="https://protobuf.dev/reference/protobuf/proto2-spec">
          <front>
            <title>Proto2 Schema Language Specification</title>
            <author>
              <organization>Protobuf</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Proto3" target="https://protobuf.dev/reference/protobuf/proto3-spec">
          <front>
            <title>Proto3 Schema Language Specification</title>
            <author>
              <organization>Protobuf</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Edition2023" target="https://protobuf.dev/reference/protobuf/edition-2023-spec">
          <front>
            <title>Proto Edition 2023 Schema Language Specification</title>
            <author>
              <organization>Protobuf</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ProtoFeatures" target="https://protobuf.dev/editions/features/">
          <front>
            <title>Protobuf Feature Settings for Editions</title>
            <author>
              <organization>Protobuf</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="UniChars" target="https://datatracker.ietf.org/doc/draft-bray-unichars/">
          <front>
            <title>Unicode Character Repertoire Subsets</title>
            <author>
              <organization>IETF</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <?line 304?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Orie Steele provided valuable feedback to this work.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+1ba28bR5b93r+iQAMDaUNStqTxOPRmNrJsxUqsx5jyGAvk
g4rdRbKiZjdTVS2aYyi/fc+99egmJWUTY7ILDCYYTMR+VN3nuefe6gwGg8xp
V6qR6J2pQktxtV4q8V7NtHVGOl1XYlobcWlqV+d1KV4106kytpfl0qlZbdYj
oatpnWVFnVdygXUKI6duoJWbDgptl9Ll88FCL9RgSWtMmung6V8y20wW2los
77DfSJy+uToR4omQpa0hiq4KtVT4v8r1+qIHwVxttCzpx+nRK/wLMvVO31+d
9LInVbOYKDMST5+KwUC4ubYC/3NzqHFyLPzdvqhqx9dYvHB1iH+yAoqMsryu
rKpsY0fCmUZltyNxkEmj5Egcvb/KVrW5mZm6WY7E69Px5dHV8dvsRq1xuRhl
YiDOTs/e0L+jjvT3gu1J+tEvuVyWOmeLZreqarCnENtLCuHN8RHb6WomvqP7
uLqQuoRlgzm/JeMOazPDHWny+UjMnVva0d7earUaxpt79NJCVnslXEk+2ovv
08bazZvJSOytbpqFNHrPe23RGCPXj/gNr5WwlXXtfn6ZYV4vftdCmWzcvDZk
OSyqKxj9bCh+aPK5MnK1xjUfSme8ihhv3lPeGrZZKtNYZb6d0QUSAjdNTbHs
A6az/EdaguRLa3+UxqiqvQqLjcR3dT0rVbvHih/61qs2rJTrLPl+KMZlLau0
4vt6kq48uJpZ2J++nfFFljbLqtosEBK3HAyI1v2nh38eIQ0onCjvcNMKWRVC
VXldICJseO7Zs6/puR/UWlAMWk5SGAOi0X2Efy1Oq4ICjrL550YbtUA2iXfq
VpVhlecvDl7wbilQhV2qXE9DnPqtTRcL4MJcFY1R7RIsyFEBi+MBWYoOjIyR
SrnD04UYrysnP4kx4EN/im+/ePaXQ3p7UUsT1fJ3Dp8fsmhXyNhX0qpnz/v8
74P9PgtFfz8/FK+lk+LNpm1e7P/56/jq9/JWjnOjl05cTH5SuRPntfOa7Hw/
vjjf9SucVk4hj2Q1U+KErY6lLkO0kmuQl9LMFCK/F0M/BvOwULd7Pf9MANL7
YJlR/m26+sXh4fMo5pWRlV3WBu6Ra2XEWOWN0W4tdq7ejXdb8P07FiPZnw0P
/CJf7z/leHnV6JJMkB61YoXUFG+vri6jVZ6zqS/fvzk+HePa8cX7V161lIz8
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
w2Q+QZkim2g5f3ABoek/cBpm/wMKu2NmDzYAAA==

-->

</rfc>
