<?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.6.10 (Ruby 3.0.4) -->
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpbis-retrofit-03" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.7 -->
  <front>
    <title abbrev="Retrofit Structured Fields">Retrofit Structured Fields for HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-retrofit-03"/>
    <author initials="M." surname="Nottingham" fullname="Mark Nottingham">
      <organization/>
      <address>
        <postal>
          <postalLine>Prahran</postalLine>
          <postalLine>Australia</postalLine>
        </postal>
        <email>mnot@mnot.net</email>
        <uri>https://www.mnot.net/</uri>
      </address>
    </author>
    <date/>
    <keyword>structured fields</keyword>
    <keyword>http</keyword>
    <abstract>
      <t>This specification nominates a selection of existing HTTP fields as having syntax that is compatible with Structured Fields, so that they can be handled as such (subject to certain caveats).</t>
      <t>To accommodate some additional fields whose syntax is not compatible, it also defines mappings of their semantics into new Structured Fields. It does not specify how to negotiate their use.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-retrofit/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        HTTP Working Group mailing list (<eref target="mailto:ietf-http-wg@w3.org"/>),
        which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/"/>.
        Working Group information can be found at <eref target="https://httpwg.org/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/httpwg/http-extensions/labels/retrofit"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Structured Field Values for HTTP <xref target="STRUCTURED-FIELDS"/> introduced a data model with associated parsing and serialization algorithms for use by new HTTP field values. Fields that are defined as Structured Fields can realise a number of benefits, including:</t>
      <ul spacing="normal">
        <li>Improved interoperability and security: precisely defined parsing and serialisation algorithms are typically not available for fields defined with just ABNF and/or prose.</li>
        <li>Reuse of common implementations: many parsers for other fields are specific to a single field or a small family of fields.</li>
        <li>Canonical form: because a deterministic serialisation algorithm is defined for each type, Structure Fields have a canonical representation.</li>
        <li>Enhanced API support: a regular data model makes it easier to expose field values as a native data structure in implementations.</li>
        <li>Alternative serialisations: While <xref target="STRUCTURED-FIELDS"/> defines a textual serialisation of that data model, other, more efficient serialisations of the underlying data model are also possible.</li>
      </ul>
      <t>However, a field needs to be defined as a Structured Field for these benefits to be realised. Many existing fields are not, making up the bulk of header and trailer fields seen in HTTP traffic on the internet.</t>
      <t>This specification defines how a selection of existing HTTP fields can be handled as Structured Fields, so that these benefits can be realised -- thereby making them Retrofit Structured Fields.</t>
      <t>It does so using two techniques. <xref target="compatible"/> lists compatible fields -- those that can be handled as if they were Structured Fields due to the similarity of their defined syntax to that in Structured Fields. <xref target="mapped"/> lists mapped fields -- those whose syntax needs to be transformed into an underlying data model which is then mapped into that defined by Structured Fields.</t>
      <t>Note that while implementations can parse and serialise compatible fields as Structured Fields subject to the caveats in <xref target="compatible"/>, a sender cannot generate mapped fields from <xref target="mapped"/> and expect them to be understood and acted upon by the recipient without prior negotiation. This specification does not define such a mechanism.</t>
      <section anchor="notational-conventions">
        <name>Notational Conventions</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      </section>
    </section>
    <section anchor="compatible">
      <name>Compatible Fields</name>
      <t>The HTTP fields listed in <xref target="compatible-fields"/> can usually have their values handled as Structured Fields according to the listed parsing and serialisation algorithms in <xref target="STRUCTURED-FIELDS"/>, subject to the listed caveats.</t>
      <t>The listed types are chosen for compatibility with the defined syntax of the field as well as with actual internet traffic. However, not all instances of these fields will successfully parse. This might be because the field value is clearly invalid, or it might be because it is valid but not parseable as a Structured Field.</t>
      <t>An application using this specification will need to consider how to handle such field values. Depending on its requirements, it might be advisable to reject such values, treat them as opaque strings, or attempt to recover a structured value from them in an ad hoc fashion.</t>
      <table anchor="compatible-fields">
        <name>Compatible Fields</name>
        <thead>
          <tr>
            <th align="left">Field Name</th>
            <th align="left">Structured Type</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Accept</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Accept-Encoding</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Accept-Language</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Accept-Patch</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Accept-Post</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Accept-Ranges</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Access-Control-Allow-Credentials</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Access-Control-Allow-Headers</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Access-Control-Allow-Methods</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Access-Control-Allow-Origin</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Access-Control-Expose-Headers</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Access-Control-Max-Age</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Access-Control-Request-Headers</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Access-Control-Request-Method</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Age</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Allow</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">ALPN</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Alt-Svc</td>
            <td align="left">Dictionary</td>
          </tr>
          <tr>
            <td align="left">Alt-Used</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Cache-Control</td>
            <td align="left">Dictionary</td>
          </tr>
          <tr>
            <td align="left">CDN-Loop</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Clear-Site-Data</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Connection</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Content-Encoding</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Content-Language</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Content-Length</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Content-Type</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Cross-Origin-Resource-Policy</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Expect</td>
            <td align="left">Dictionary</td>
          </tr>
          <tr>
            <td align="left">Expect-CT</td>
            <td align="left">Dictionary</td>
          </tr>
          <tr>
            <td align="left">Forwarded</td>
            <td align="left">Dictionary</td>
          </tr>
          <tr>
            <td align="left">Host</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Keep-Alive</td>
            <td align="left">Dictionary</td>
          </tr>
          <tr>
            <td align="left">Max-Forwards</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Origin</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Pragma</td>
            <td align="left">Dictionary</td>
          </tr>
          <tr>
            <td align="left">Prefer</td>
            <td align="left">Dictionary</td>
          </tr>
          <tr>
            <td align="left">Preference-Applied</td>
            <td align="left">Dictionary</td>
          </tr>
          <tr>
            <td align="left">Retry-After</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Sec-WebSocket-Extensions</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Sec-WebSocket-Protocol</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Sec-WebSocket-Version</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Server-Timing</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Surrogate-Control</td>
            <td align="left">Dictionary</td>
          </tr>
          <tr>
            <td align="left">TE</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Timing-Allow-Origin</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Trailer</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Transfer-Encoding</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Vary</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">X-Content-Type-Options</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">X-Frame-Options</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">X-XSS-Protection</td>
            <td align="left">List</td>
          </tr>
        </tbody>
      </table>
      <t>Note the following caveats regarding compatibility:</t>
      <dl>
        <dt>Parameter and Dictionary keys:</dt>
        <dd>
          <t>HTTP parameter names are case-insensitive (per <xref section="5.6.6" sectionFormat="of" target="HTTP"/>), but Structured Fields require them to be all-lowercase. Although the vast majority of parameters seen in typical traffic are all-lowercase, compatibility can be improved by force-lowercasing parameters when parsing.
Likewise, many Dictionary-based fields (e.g., Cache-Control, Expect-CT, Pragma, Prefer, Preference-Applied, Surrogate-Control) have case-insensitive keys, and compatibility can be improved by force-lowercasing them when parsing.</t>
        </dd>
        <dt>Parameter delimitation:</dt>
        <dd>
          <t>The parameters rule in HTTP (see <xref section="5.6.6" sectionFormat="of" target="HTTP"/>) allows whitespace before the ";" delimiter, but Structured Fields does not. Compatibility can be improved by allowing such whitespace when parsing.</t>
        </dd>
        <dt>String quoting:</dt>
        <dd>
          <t><xref section="5.6.4" sectionFormat="of" target="HTTP"/> allows backslash-escaping most characters in quoted strings, whereas Structured Field Strings only escape "\" and DQUOTE. Compatibility can be improved by unescaping other characters before parsing.</t>
        </dd>
        <dt>Token limitations:</dt>
        <dd>
          <t>In Structured Fields, tokens are required to begin with an alphabetic character or "*", whereas HTTP tokens allow a wider range of characters. This prevents use of mapped values that begin with one of these characters. For example, media types, field names, methods, range-units, character and transfer codings that begin with a number or special character other than "*" might be valid HTTP protocol elements, but will not be able to be parsed as Structured Field Tokens.</t>
        </dd>
        <dt>Integer limitations:</dt>
        <dd>
          <t>Structured Fields Integers can have at most 15 digits; larger values will not be able to be represented in them.</t>
        </dd>
        <dt>IPv6 Literals:</dt>
        <dd>
          <t>Fields whose values contain IPv6 literal addresses (such as CDN-Loop, Host, and Origin) are not able to be represented as Structured Fields Tokens, because the brackets used to delimit them are not allowed in Tokens.</t>
        </dd>
        <dt>Empty Field Values:</dt>
        <dd>
          <t>Empty and whitespace-only field values are considered errors in Structured Fields. For compatible fields, an empty field indicates that the field should be silently ignored.</t>
        </dd>
        <dt>Alt-Svc:</dt>
        <dd>
          <t>Some ALPN tokens (e.g., <tt>h3-Q43</tt>) do not conform to key's syntax, and therefore cannot be represented as a Token. Since the final version of HTTP/3 uses the <tt>h3</tt> token, this shouldn't be a long-term issue, although future tokens may again violate this assumption.</t>
        </dd>
        <dt>Content-Length:</dt>
        <dd>
          <t>Note that Content-Length is defined as a List because it is not uncommon for implementations to mistakenly send multiple values. See <xref section="8.6" sectionFormat="of" target="HTTP"/> for handling requirements.</t>
        </dd>
        <dt>Retry-After:</dt>
        <dd>
          <t>Only the delta-seconds form of Retry-After can be represented; a Retry-After value containing a http-date will need to be converted into delta-seconds to be conveyed as a Structured Field Value.</t>
        </dd>
      </dl>
    </section>
    <section anchor="mapped">
      <name>Mapped Fields</name>
      <t>Some HTTP field values have syntax that cannot be successfully parsed as Structured Fields. Instead, it is necessary to map them into a separate Structured Field with an alternative name.</t>
      <t>For example, the Date HTTP header field carries a date:</t>
      <sourcecode type="http-message"><![CDATA[
Date: Sun, 06 Nov 1994 08:49:37 GMT
]]></sourcecode>
      <t>Its value is more efficiently represented as an Integer number of delta seconds from the Unix epoch (00:00:00 UTC on 1 January 1970, minus leap seconds). Thus, the example above would be mapped to:</t>
      <sourcecode type="http-message"><![CDATA[
SF-Date: 784072177
]]></sourcecode>
      <t>As in <xref target="compatible"/>, these fields are unable to carry values that are not valid Structured Fields, and so an application using this specification will need to how to support such values. Typically, handling them using the original field name is sufficient.</t>
      <t>Each field name listed below indicates a replacement field name and a means of mapping its original value into a Structured Field.</t>
      <section anchor="urls">
        <name>URLs</name>
        <t>The field names in <xref target="url-fields"/> (paired with their mapped field names) have values that can be mapped into Structured Fields by treating the original field's value as a String.</t>
        <table anchor="url-fields">
          <name>URL Fields</name>
          <thead>
            <tr>
              <th align="left">Field Name</th>
              <th align="left">Mapped Field Name</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Content-Location</td>
              <td align="left">SF-Content-Location</td>
            </tr>
            <tr>
              <td align="left">Location</td>
              <td align="left">SF-Location</td>
            </tr>
            <tr>
              <td align="left">Referer</td>
              <td align="left">SF-Referer</td>
            </tr>
          </tbody>
        </table>
        <t>For example, a Location field could be mapped as:</t>
        <sourcecode type="http-message"><![CDATA[
SF-Location: "https://example.com/foo"
]]></sourcecode>
      </section>
      <section anchor="dates">
        <name>Dates</name>
        <t>The field names in <xref target="date-fields"/> (paired with their mapped field names) have values that can be mapped into Structured Fields by parsing their payload according to <xref section="5.6.7" sectionFormat="of" target="HTTP"/> and representing the result as an Integer number of seconds delta from the Unix Epoch (00:00:00 UTC on 1 January 1970, minus leap seconds).</t>
        <table anchor="date-fields">
          <name>Date Fields</name>
          <thead>
            <tr>
              <th align="left">Field Name</th>
              <th align="left">Mapped Field Name</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Date</td>
              <td align="left">SF-Date</td>
            </tr>
            <tr>
              <td align="left">Expires</td>
              <td align="left">SF-Expires</td>
            </tr>
            <tr>
              <td align="left">If-Modified-Since</td>
              <td align="left">SF-IMS</td>
            </tr>
            <tr>
              <td align="left">If-Unmodified-Since</td>
              <td align="left">SF-IUS</td>
            </tr>
            <tr>
              <td align="left">Last-Modified</td>
              <td align="left">SF-LM</td>
            </tr>
          </tbody>
        </table>
        <t>For example, an Expires field could be mapped as:</t>
        <sourcecode type="http-message"><![CDATA[
SF-Expires: 1571965240
]]></sourcecode>
      </section>
      <section anchor="etags">
        <name>ETags</name>
        <t>The field value of the ETag header field can be mapped into the SF-ETag Structured Field by representing the entity-tag as a String, and the weakness flag as a Boolean "w" parameter on it, where true indicates that the entity-tag is weak; if 0 or unset, the entity-tag is strong.</t>
        <t>For example:</t>
        <sourcecode type="http-message"><![CDATA[
SF-ETag: "abcdef"; w=?1
]]></sourcecode>
        <t>If-None-Match's field value can be mapped into the SF-INM Structured Field, which is a List of the structure described above.</t>
        <t>For example:</t>
        <sourcecode type="http-message"><![CDATA[
SF-INM: "abcdef"; w=?1, "ghijkl"
]]></sourcecode>
      </section>
      <section anchor="links">
        <name>Links</name>
        <t>The field value of the Link header field <xref target="RFC8288"/> can be mapped into the SF-Link List Structured Field by considering the URI-Reference as a String, and link-param as Parameters.</t>
        <t>For example:</t>
        <sourcecode type="http-message"><![CDATA[
SF-Link: "/terms"; rel="copyright"; anchor="#foo"
]]></sourcecode>
      </section>
      <section anchor="cookies">
        <name>Cookies</name>
        <t>The field values of the Cookie and Set-Cookie fields <xref target="COOKIES"/> can be mapped into the SF-Cookie Structured Field (a List) and SF-Set-Cookie Structured Field (a Dictionary), respectively.</t>
        <t>In each case, cookie names are Tokens. Their values are Strings, unless they can be represented accurately and unambiguously using the textual representation of another structured types (e.g., an Integer or Decimal).</t>
        <t>Set-Cookie parameters map to Parameters on the appropriate SF-Set-Cookie member, with the parameter name being forced to lowercase. Set-Cookie parameter values are Strings unless a specific type is defined for them. This specification defines the parameter types in <xref target="cookie-params"/>.</t>
        <table anchor="cookie-params">
          <name>Set-Cookie Parameter Types</name>
          <thead>
            <tr>
              <th align="left">Parameter Name</th>
              <th align="left">Structured Type</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">HttpOnly</td>
              <td align="left">Boolean</td>
            </tr>
            <tr>
              <td align="left">Expires</td>
              <td align="left">Integer</td>
            </tr>
            <tr>
              <td align="left">Max-Age</td>
              <td align="left">Integer</td>
            </tr>
            <tr>
              <td align="left">Secure</td>
              <td align="left">Boolean</td>
            </tr>
            <tr>
              <td align="left">SameSite</td>
              <td align="left">Token</td>
            </tr>
          </tbody>
        </table>
        <t>Expires is mapped to an Integer representation of parsed-cookie-date (see <xref section="x.x" sectionFormat="of" target="COOKIES"/>) expressed as a number of seconds delta from the Unix Epoch (00:00:00 UTC on 1 January 1970, minus leap seconds).</t>
        <t>Note that although this mapping is very similar to the syntax of Cookie and Set-Cookie headers, cookies in both fields are separated by commas, not semicolons, and multiple cookies can appear in each field.</t>
        <t>For example:</t>
        <sourcecode type="http-message"><![CDATA[
SF-Set-Cookie: lang="en-US"; expires="Wed, 09 Jun 2021 10:18:14 GMT";
               samesite=Strict; secure=?1
SF-Cookie: SID="31d4d96e407aad42", lang="en-US"
]]></sourcecode>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>Please add the following note to the "Hypertext Transfer Protocol (HTTP) Field Name Registry":</t>
      <ul empty="true">
        <li>
          <t>The "Structured Type" column indicates the type of the field (per RFC8941), if any, and may be
"Dictionary", "List" or "Item". A prefix of "*" indicates that it is a retrofit type (i.e., not
natively Structured); see [this specification].</t>
          <t>Note that field names beginning with characters other than ALPHA or "*" will not be able to be
represented as a Structured Fields Token, and therefore may be incompatible with being mapped into
fields that refer to it; see [this specification].</t>
        </li>
      </ul>
      <t>Then, add a new column, "Structured Type", with the values from <xref target="compatible"/> assigned to the nominated registrations, prefixing each with "*" to indicate that it is a retrofit type.</t>
      <t>Then, add the field names in <xref target="new-fields"/>, with the corresponding Structured Type as indicated, a status of "permanent" and referring to this document.</t>
      <table anchor="new-fields">
        <name>New Fields</name>
        <thead>
          <tr>
            <th align="left">Field Name</th>
            <th align="left">Structured Type</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">SF-Content-Location</td>
            <td align="left">String</td>
          </tr>
          <tr>
            <td align="left">SF-Cookie</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">SF-Date</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">SF-ETag</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">SF-Expires</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">SF-IMS</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">SF-INM</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">SF-IUS</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">SF-Link</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">SF-LM</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">SF-Location</td>
            <td align="left">String</td>
          </tr>
          <tr>
            <td align="left">SF-Referer</td>
            <td align="left">String</td>
          </tr>
          <tr>
            <td align="left">SF-Set-Cookie</td>
            <td align="left">Dictionary</td>
          </tr>
        </tbody>
      </table>
      <t>Finally, add the indicated Structured Type for each existing registry entry listed in <xref target="existing-fields"/>.</t>
      <table anchor="existing-fields">
        <name>Existing Fields</name>
        <thead>
          <tr>
            <th align="left">Field Name</th>
            <th align="left">Structured Type</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Accept-CH</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">Cache-Status</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">CDN-Cache-Control</td>
            <td align="left">Dictionary</td>
          </tr>
          <tr>
            <td align="left">Cross-Origin-Embedder-Policy</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Cross-Origin-Embedder-Policy-Report-Only</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Cross-Origin-Opener-Policy</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Cross-Origin-Opener-Policy-Report-Only</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Origin-Agent-Cluster</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">Priority</td>
            <td align="left">Dictionary</td>
          </tr>
          <tr>
            <td align="left">Proxy-Status</td>
            <td align="left">List</td>
          </tr>
        </tbody>
      </table>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t><xref target="compatible"/> identifies existing HTTP fields that can be parsed and serialised with the algorithms defined in <xref target="STRUCTURED-FIELDS"/>. Variances from existing parser behavior might be exploitable, particularly if they allow an attacker to target one implementation in a chain (e.g., an intermediary). However, given the considerable variance in parsers already deployed, convergence towards a single parsing algorithm is likely to have a net security benefit in the longer term.</t>
      <t><xref target="mapped"/> defines alternative representations of existing fields. Because downstream consumers might interpret the message differently based upon whether they recognise the alternative representation, implementations are prohibited from generating such fields unless they have negotiated support for them with their peer. This specification does not define such a mechanism, but any such definition needs to consider the implications of doing so carefully.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>Normative References</name>
      <reference anchor="RFC2119">
        <front>
          <title>Key words for use in RFCs to Indicate Requirement Levels</title>
          <author fullname="S. Bradner" initials="S." surname="Bradner">
            <organization/>
          </author>
          <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="HTTP">
        <front>
          <title>HTTP Semantics</title>
          <author fullname="Roy T. Fielding">
            <organization>Adobe</organization>
          </author>
          <author fullname="Mark Nottingham">
            <organization>Fastly</organization>
          </author>
          <author fullname="Julian Reschke">
            <organization>greenbytes GmbH</organization>
          </author>
          <date day="12" month="September" year="2021"/>
          <abstract>
            <t>   The Hypertext Transfer Protocol (HTTP) is a stateless application-
   level protocol for distributed, collaborative, hypertext information
   systems.  This document describes the overall architecture of HTTP,
   establishes common terminology, and defines aspects of the protocol
   that are shared by all versions.  In this definition are core
   protocol elements, extensibility mechanisms, and the "http" and
   "https" Uniform Resource Identifier (URI) schemes.

   This document updates RFC 3864 and obsoletes RFC 2818, RFC 7231, RFC
   7232, RFC 7233, RFC 7235, RFC 7538, RFC 7615, RFC 7694, and portions
   of RFC 7230.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-semantics-19"/>
      </reference>
      <reference anchor="STRUCTURED-FIELDS">
        <front>
          <title>Structured Field Values for HTTP</title>
          <author fullname="M. Nottingham" initials="M." surname="Nottingham">
            <organization/>
          </author>
          <author fullname="P-H. Kamp" initials="P-H." surname="Kamp">
            <organization/>
          </author>
          <date month="February" year="2021"/>
          <abstract>
            <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="8941"/>
        <seriesInfo name="DOI" value="10.17487/RFC8941"/>
      </reference>
      <reference anchor="COOKIES">
        <front>
          <title>Cookies: HTTP State Management Mechanism</title>
          <author fullname="Lily Chen">
            <organization>Google LLC</organization>
          </author>
          <author fullname="Steven Englehardt">
            <organization>Mozilla</organization>
          </author>
          <author fullname="Mike West">
            <organization>Google LLC</organization>
          </author>
          <author fullname="John Wilander">
            <organization>Apple, Inc</organization>
          </author>
          <date day="24" month="April" year="2022"/>
          <abstract>
            <t>   This document defines the HTTP Cookie and Set-Cookie header fields.
   These header fields can be used by HTTP servers to store state
   (called cookies) at HTTP user agents, letting the servers maintain a
   stateful session over the mostly stateless HTTP protocol.  Although
   cookies have many historical infelicities that degrade their security
   and privacy, the Cookie and Set-Cookie header fields are widely used
   on the Internet.  This document obsoletes RFC 6265.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-rfc6265bis-10"/>
      </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">
            <organization/>
          </author>
          <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="RFC8288">
        <front>
          <title>Web Linking</title>
          <author fullname="M. Nottingham" initials="M." surname="Nottingham">
            <organization/>
          </author>
          <date month="October" year="2017"/>
          <abstract>
            <t>This specification defines a model for the relationships between resources on the Web ("links") and the type of those relationships ("link relation types").</t>
            <t>It also defines the serialisation of such links in HTTP headers with the Link header field.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="8288"/>
        <seriesInfo name="DOI" value="10.17487/RFC8288"/>
      </reference>
    </references>
  </back>
  <!-- ##markdown-source:
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
Id2H/X8FytLhvEoAAA==

-->

</rfc>
