<?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.3.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-intarea-dispatch-mime-protobuf-00" category="info" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.28.1 -->
  <front>
    <title>Media Type Registration for Protocol Buffers</title>
    <seriesInfo name="Internet-Draft" value="draft-intarea-dispatch-mime-protobuf-00"/>
    <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="May" day="29"/>
    <area>ART</area>
    <workgroup>DISPATCH</workgroup>
    <keyword>MIME</keyword>
    <keyword>protobuf</keyword>
    <keyword>media type</keyword>
    <keyword>application</keyword>
    <abstract>
      <?line 114?>

<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-intarea-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 118?>

<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 multiple 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="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>
      <artwork><![CDATA[
{
  "name": "John Doe",
  "id": 1234,
  "email": "jdoe@example.com"
}
]]></artwork>
    </section>
    <section anchor="encoding">
      <name>Encoding Considerations</name>
      <t>Protobuf supports only 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 <tt>Content-Transfer-Encoding</tt> (xref to <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>Protobuf (without a number), later also referred to as protobuf1, was the original private version of protobuf.  Protobuf2 and protobuf3 came later, with the latter of these being current at the time of writing.</t>
      <t>The number associated with the name refers 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>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, but 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>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>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>. Protobuf implementations should accept all versions of wire encodings defined at the time of implementation.</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>
        <artwork><![CDATA[
 Deprecated alias names for this type: `application/x-protobuf`, `application/x-protobuffer`
 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;</t>
        <t>Change controller: Protobuf &lt;protobuf-team@google.com&gt;</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>. Protobuf implementations should accept all versions of wire encodings defined at the time of implementation.</t>
          </li>
        </ul>
        <t>Encoding considerations: Same as encoding considerations of <tt>application/json</tt> as specified in <xref target="RFC7159"/>, 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;</t>
        <t>Change controller: Protobuf &lt;protobuf-team@google.com&gt;</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="RFC2046">
          <front>
            <title>Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types</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 second document defines the general structure of the MIME media typing system and defines an initial set of media types. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2046"/>
          <seriesInfo name="DOI" value="10.17487/RFC2046"/>
        </reference>
        <reference anchor="RFC2077">
          <front>
            <title>The Model Primary Content Type for Multipurpose Internet Mail Extensions</title>
            <author fullname="S. Nelson" initials="S." surname="Nelson"/>
            <author fullname="C. Parks" initials="C." surname="Parks"/>
            <author>
              <organization>Mitra</organization>
            </author>
            <date month="January" year="1997"/>
            <abstract>
              <t>The purpose of this memo is to propose an update to Internet RFC 2045 to include a new primary content-type to be known as "model". [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2077"/>
          <seriesInfo name="DOI" value="10.17487/RFC2077"/>
        </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="RFC6657">
          <front>
            <title>Update to MIME regarding "charset" Parameter Handling in Textual Media Types</title>
            <author fullname="A. Melnikov" initials="A." surname="Melnikov"/>
            <author fullname="J. Reschke" initials="J." surname="Reschke"/>
            <date month="July" year="2012"/>
            <abstract>
              <t>This document changes RFC 2046 rules regarding default "charset" parameter values for "text/*" media types to better align with common usage by existing clients and servers. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6657"/>
          <seriesInfo name="DOI" value="10.17487/RFC6657"/>
        </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="RFC7303">
          <front>
            <title>XML Media Types</title>
            <author fullname="H. Thompson" initials="H." surname="Thompson"/>
            <author fullname="C. Lilley" initials="C." surname="Lilley"/>
            <date month="July" year="2014"/>
            <abstract>
              <t>This specification standardizes three media types -- application/xml, application/xml-external-parsed-entity, and application/xml-dtd -- for use in exchanging network entities that are related to the Extensible Markup Language (XML) while defining text/xml and text/ xml-external-parsed-entity as aliases for the respective application/ types. This specification also standardizes the '+xml' suffix for naming media types outside of these five types when those media types represent XML MIME entities.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7303"/>
          <seriesInfo name="DOI" value="10.17487/RFC7303"/>
        </reference>
        <reference anchor="RFC8081">
          <front>
            <title>The "font" Top-Level Media Type</title>
            <author fullname="C. Lilley" initials="C." surname="Lilley"/>
            <date month="February" year="2017"/>
            <abstract>
              <t>This memo serves to register and document the "font" top-level media type, under which subtypes for representation formats for fonts may be registered. This document also serves as a registration application for a set of intended subtypes, which are representative of some existing subtypes already in use, and currently registered under the "application" tree by their separate registrations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8081"/>
          <seriesInfo name="DOI" value="10.17487/RFC8081"/>
        </reference>
        <reference anchor="RFC9694">
          <front>
            <title>Guidelines for the Definition of New Top-Level Media Types</title>
            <author fullname="M.J. Dürst" initials="M.J." surname="Dürst"/>
            <date month="March" year="2025"/>
            <abstract>
              <t>This document defines best practices for defining new top-level media types. It also introduces a registry for top-level media types, and contains a short history of top-level media types. It updates RFC 6838.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="9694"/>
          <seriesInfo name="DOI" value="10.17487/RFC9694"/>
        </reference>
        <reference anchor="RFC9695">
          <front>
            <title>The 'haptics' Top-Level Media Type</title>
            <author fullname="Y. K. Muthusamy" initials="Y. K." surname="Muthusamy"/>
            <author fullname="C. Ullrich" initials="C." surname="Ullrich"/>
            <date month="March" year="2025"/>
            <abstract>
              <t>This memo registers and documents the 'haptics' top-level media type, under which subtypes for representation formats for haptics may be registered. This document also serves as a registration for a set of subtypes, which are representative of some existing subtypes already in use.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9695"/>
          <seriesInfo name="DOI" value="10.17487/RFC9695"/>
        </reference>
        <reference anchor="RFC4289">
          <front>
            <title>Multipurpose Internet Mail Extensions (MIME) Part Four: Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <date month="December" year="2005"/>
            <abstract>
              <t>This document specifies IANA registration procedures for MIME external body access types and content-transfer-encodings. 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="13"/>
          <seriesInfo name="RFC" value="4289"/>
          <seriesInfo name="DOI" value="10.17487/RFC4289"/>
        </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="RFC7159">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="March" year="2014"/>
            <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="RFC" value="7159"/>
          <seriesInfo name="DOI" value="10.17487/RFC7159"/>
        </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="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>
      </references>
    </references>
    <?line 289?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Orie Steele provided valuable feedback to this work.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+1bWW8bR9Z9719RoICBNCapzXEc+suMZdmOlVi2YCrj72Ee
VOwukmU3u5iqblEcQfntc+6tpZtajMSYYIBBgiA2e6m6+zn3VmcwGGS1rks1
Er1TVWgpztdLJT6omXa1lbU2lZgaK86sqU1uSvGimU6Vdb0sl7WaGbseCV1N
TZYVJq/kAusUVk7rga5qaZUcFNotZZ3PBwu9UIMlLTNppoO9vcw1k4V2DjvU
2HIkTl6dvxZiS8jSGUijq0ItFf5T1b2+6EG22lgtS/pxcvQCf0Cs3smH89e9
bKtqFhNlR2JvTwwGop5rJ/BvPYcmr4+Fv9sXlan5GksYrg7xT1ZAl1GWm8qp
yjVuJGrbqOxyJA4zUmIkjj6cZytjP8+saZYj8fJkfHZ0fvwm+6zWuFyMMjEQ
pyenr+jPqCP9fcEmJf3ol1wuS52zUbNLVTXYU4jbSwrhzfER2+lqJn6g+7i6
kLqEcYM5n2tVT4fGznBH2nw+EvO6XrrR7u5qtRrGm7v00kJWuyW8SW7aje/T
xrqeN5OR2F19bhbS6l3vuEVjrVw/4De8VsJWrm7388sMc7P4XQtlsqnnxpLl
sKiuYPTTofipyefKytUa13w0nfIqYrx5T3lruGapbOOUfT6jCyQEblpD4ewD
prP8R1qC5Etrf5TWqqq9CouNxA/GzErV7rHih5571YaVqjtLfhiKcWlklVb8
YCbpyr2r2YX79HzGF1naLKuMXSAkLjkYEK0He4+/GSENKJwo9XDTCVkVQlW5
KRARLj33hJ57qaa60pyoZtoJuPTYt9/ycqZQpajNclCqS/ytG5n83P7+d/Tc
T2otKKQdpz1sC03pPrLJiJOqoPil+vBLo61aIDnFW1ov7PbkyTe8289LSil6
hdWwaiYtyS56+Vxap+qeWEoLk9XKijm0K+kmdqrVVd3I8q4eT54ePmU90g3h
lirX05BQ3ka2W7cQa7kqGttZglU8Kgq2F7bplLwxcj6v8XQhxmsUrysxRqnT
V/Htbw/3Dunt/z99e1e6p3tP9+nmaxSzLxj5uyffPabHfmg0vKEr5a3MNWnD
jZVa3buMS+twjLyRy1rn7gs7Pj54yjqfNmWtl41dGnj0pILZEcniFDEpXl3V
qHpswm3y1o44k7aGKg0K6gYQnN0y6OMnj9kn55D/hXRq/0mf/zw86LM36O9P
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

-->

</rfc>
