<?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.1.2) -->
<?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-04" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.10 -->
  <front>
    <title abbrev="Retrofit Structured Fields">Retrofit Structured Fields for HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-retrofit-04"/>
    <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, excluding 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 the value can be successfully parsed as the textual representation of another, bare Item structured type (e.g., Byte Sequence, Decimal, Integer, Token, or Boolean).</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, excluding 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 RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 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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
mQZRykfg6rLijFr5my7UeEh3Zf8f9lGvudhKAAA=

-->

</rfc>
