<?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.17 (Ruby 3.1.3) -->
<?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-05" category="std" consensus="true" updates="8941" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.3 -->
  <front>
    <title abbrev="Retrofit Structured Fields">Retrofit Structured Fields for HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-retrofit-05"/>
    <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">DNT</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">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">Upgrade-Insecure-Requests</td>
            <td align="left">Item</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>Error handling:</dt>
        <dd>
          <t>Parsing algorithms specified (or just widely implemented) for current HTTP headers may differ from those in Structured Fields in details such as error handling. For example, HTTP specifies that repeated directives in the Cache-Control header field have a different precedence than that assigned by a Dictionary structured field (which Cache-Control is mapped to).</t>
        </dd>
        <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 represented 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 would be mapped to:</t>
      <sourcecode type="http-message-new"><![CDATA[
SF-Date: @784111777
]]></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, this Location field</t>
        <sourcecode type="http-message"><![CDATA[
Location: https://example.com/foo
]]></sourcecode>
        <t>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 a Date.</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-If-Modified-Since</td>
            </tr>
            <tr>
              <td align="left">If-Unmodified-Since</td>
              <td align="left">SF-If-Unmodified-Since</td>
            </tr>
            <tr>
              <td align="left">Last-Modified</td>
              <td align="left">SF-Last-Modified</td>
            </tr>
          </tbody>
        </table>
        <t>For example, an Expires field could be mapped as:</t>
        <sourcecode type="http-message-new"><![CDATA[
SF-Expires: @1659578233
]]></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, this:</t>
        <sourcecode type="http-message"><![CDATA[
ETag: W/"abcdef"
]]></sourcecode>
        <sourcecode type="http-message"><![CDATA[
SF-ETag: "abcdef"; w
]]></sourcecode>
        <t>If-None-Match's field value can be mapped into the SF-If-None-Match Structured Field, which is a List of the structure described above. When a field value contains "*", it is represented as a Token.</t>
        <t>Likewise, If-Match's field value can be mapped into the SF-If-Match Structured Field in the same manner.</t>
        <t>For example:</t>
        <sourcecode type="http-message"><![CDATA[
SF-If-None-Match: "abcdef"; w, "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, this:</t>
        <sourcecode type="http-message"><![CDATA[
Link: </terms>; rel="copyright"; anchor="#foo"
]]></sourcecode>
        <t>can be mapped to:</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 List), respectively.</t>
        <t>In each case, a cookie is represented as an Inner List containing two Items; the cookie name and value. The cookie name is always a String; the cookie value is a String, unless it 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>Cookie attributes map to Parameters on the Inner List, with the parameter name being forced to lowercase. Cookie attribute values are Strings unless a specific type is defined for them. This specification defines types for existing cookie attributes 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">Domain</td>
              <td align="left">String</td>
            </tr>
            <tr>
              <td align="left">HttpOnly</td>
              <td align="left">Boolean</td>
            </tr>
            <tr>
              <td align="left">Expires</td>
              <td align="left">Date</td>
            </tr>
            <tr>
              <td align="left">Max-Age</td>
              <td align="left">Integer</td>
            </tr>
            <tr>
              <td align="left">Path</td>
              <td align="left">String</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>The Expires attribute is mapped to a Date representation of parsed-cookie-date (see <xref section="5.1.1" sectionFormat="of" target="COOKIES"/>).</t>
        <t>For example, these unstructured fields:</t>
        <sourcecode type="http-message"><![CDATA[
Set-Cookie: lang=en-US; Expires=Wed, 09 Jun 2021 10:18:14 GMT;
               samesite=Strict; secure
Cookie: SID=31d4d96e407aad42; lang=en-US
]]></sourcecode>
        <t>can be mapped into:</t>
        <sourcecode type="http-message-new"><![CDATA[
SF-Set-Cookie: ("lang" "en-US"); expires=@1623233894;
               samesite=Strict; secure
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">Item</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-If-Match</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">SF-If-Modified-Since</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">SF-If-None-Match</td>
            <td align="left">List</td>
          </tr>
          <tr>
            <td align="left">SF-If-Unmodified-Since</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-Last-Modified</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">SF-Location</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">SF-Referer</td>
            <td align="left">Item</td>
          </tr>
          <tr>
            <td align="left">SF-Set-Cookie</td>
            <td align="left">List</td>
          </tr>
        </tbody>
      </table>
      <t>Then, 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>
      <t>Finally, add a new column to the "Cookie Attribute Registry" established by <xref target="COOKIES"/> with the title "Structured Type", using information from <xref target="cookie-params"/>.</t>
    </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="R. Fielding" initials="R." role="editor" surname="Fielding">
            <organization/>
          </author>
          <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
            <organization/>
          </author>
          <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
            <organization/>
          </author>
          <date month="June" year="2022"/>
          <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. </t>
            <t>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="STD" value="97"/>
        <seriesInfo name="RFC" value="9110"/>
        <seriesInfo name="DOI" value="10.17487/RFC9110"/>
      </reference>
      <reference anchor="STRUCTURED-FIELDS">
        <front>
          <title>Structured Field Values for HTTP</title>
          <author fullname="Mark Nottingham" initials="M." surname="Nottingham">
            <organization>Cloudflare</organization>
          </author>
          <author fullname="Poul-Henning Kamp" initials="P." surname="Kamp">
            <organization>The Varnish Cache Project</organization>
          </author>
          <date day="9" month="November" year="2022"/>
          <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="Internet-Draft" value="draft-ietf-httpbis-sfbis-00"/>
      </reference>
      <reference anchor="COOKIES">
        <front>
          <title>Cookies: HTTP State Management Mechanism</title>
          <author fullname="Steven Bingler" initials="S." surname="Bingler">
            <organization>Google LLC</organization>
          </author>
          <author fullname="Mike West" initials="M." surname="West">
            <organization>Google LLC</organization>
          </author>
          <author fullname="John Wilander" initials="J." surname="Wilander">
            <organization>Apple, Inc</organization>
          </author>
          <date day="7" month="November" 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-11"/>
      </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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
bk4AAA==

-->

</rfc>
