<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 3.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-status-list-14" category="std" consensus="true" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title>Token Status List (TSL)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-status-list-14"/>
    <author fullname="Tobias Looker">
      <organization>MATTR</organization>
      <address>
        <email>tobias.looker@mattr.global</email>
      </address>
    </author>
    <author fullname="Paul Bastian">
      <organization>Bundesdruckerei</organization>
      <address>
        <email>paul.bastian@posteo.de</email>
      </address>
    </author>
    <author fullname="Christian Bormann">
      <organization>SPRIND</organization>
      <address>
        <email>chris.bormann@gmx.de</email>
      </address>
    </author>
    <date year="2025" month="December" day="10"/>
    <area>Security</area>
    <workgroup>Web Authorization Protocol</workgroup>
    <abstract>
      <?line 135?>

<t>This specification defines a status mechanism called Token Status List (abbreviated TSL), data structures and processing rules for representing the status of tokens secured by JSON Object Signing and Encryption (JOSE) or CBOR Object Signing and Encryption (COSE), such as JWT, SD-JWT VC, CBOR Web Token and ISO mdoc. It also defines an extension point and a registry for future status mechanisms.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://oauth-wg.github.io/draft-ietf-oauth-status-list/draft-ietf-oauth-status-list.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-oauth-status-list/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Web Authorization Protocol Working Group mailing list (<eref target="mailto:oauth@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/oauth/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/oauth/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/oauth-wg/draft-ietf-oauth-status-list"/>.</t>
    </note>
  </front>
  <middle>
    <?line 139?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Token formats secured by JOSE <xref target="RFC7515"/> or COSE <xref target="RFC9052"/>, such as JWTs <xref target="RFC7519"/>, SD-JWT VCs <xref target="SD-JWT.VC"/>, CWTs <xref target="RFC8392"/> and ISO mdoc <xref target="ISO.mdoc"/>, have vast possible applications. Some of these applications can involve issuing a token whereby certain semantics about the token or its validity may change over time. Communicating these changes to relying parties in an interoperable manner, such as whether the token is considered invalidated or suspended by its issuer is important for many of these applications.</t>
      <t>This document defines a Status List data structure that describes the individual statuses of multiple Referenced Tokens. A Referenced Token may be of any format, but is most commonly a data structure secured by JOSE or COSE. The Referenced Token is referenced by the Status List, which describes the status of the Referenced Token. The statuses of all Referenced Tokens are conveyed via a bit array in the Status List. Each Referenced Token is allocated an index during issuance that represents its position within this bit array. The value of the bit(s) at this index corresponds to the Referenced Token's status. A Status List is provided within a Status List Token protected by cryptographic signature or MAC and this document defines its representations in JWT and CWT format.</t>
      <t>The following diagram depicts the relationship between the artifacts:</t>
      <artwork type="ascii-art"><![CDATA[
┌────────────────┐  describes status ┌──────────────────┐
│  Status List   ├──────────────────►│ Referenced Token │
│ (JSON or CBOR) │◄──────────────────┤ (JOSE, COSE, ..) │
└─────┬──────────┘    references     └──────────────────┘
      │
      │ embedded in
      ▼
┌───────────────────┐
│ Status List Token │
│  (JWT or CWT)     │
└───────────────────┘

]]></artwork>
      <t>An Issuer issues Referenced Tokens to a Holder, the Holder uses and presents those Referenced Tokens to a Relying Party. The Issuer gives updated status information to the Status Issuer, who issues a Status List Token. The Status Issuer can be either the Issuer or an entity that has been authorized by the Issuer to issue Status List Tokens. The Status Issuer provides the Status List Token to the Status Provider, who serves the Status List Token on a public, resolvable endpoint. The Relying Party or the Holder may fetch the Status List Token to retrieve the status of the Referenced Token.</t>
      <t>The roles of the Issuer (of the Referenced Token), the Status Issuer and the Status Provider may be fulfilled by the same entity. If not further specified, the term Issuer may refer to an entity acting for all three roles. This document describes how an Issuer references a Status List Token and how a Relying Party fetches and validates Status Lists.</t>
      <t>The following diagram depicts the relationship between the involved roles (Relying Party is equivalent to Verifier of <xref target="SD-JWT.VC"/>):</t>
      <artwork type="ascii-art"><![CDATA[
           issue                 present
           Referenced            Referenced
┌────────┐ Token      ┌────────┐ Token      ┌───────────────┐
│ Issuer ├───────────►│ Holder ├───────────►│ Relying Party │
└─┬──────┘            └───┬────┘            └──┬────────────┘
  ▼ provide status        │                    │
┌───────────────┐         │                    │
│ Status Issuer │         │                    │
└─┬─────────────┘         │                    │
  ▼ provide Status List   │                    │
┌─────────────────┐       │                    │
│ Status Provider │◄──────┴────────────────────┘
└─────────────────┘     fetch Status List Token

]]></artwork>
      <t>Status Lists can be used to express a variety of Status Types. This document defines basic Status Types for the most common use cases as well as an extensibility mechanism for custom Status Types.</t>
      <t>Furthermore, the document creates an extension point and an IANA registry that enables other specifications to describe additional status mechanisms.</t>
      <section anchor="example-use-cases">
        <name>Example Use Cases</name>
        <t>An example of the usage of a Status List is to manage the statuses of issued access tokens as defined in section 1.4 of <xref target="RFC6749"/>. Token Introspection <xref target="RFC7662"/> provides a method to determine the status of an issued access token, but it necessitates the party attempting to validate the state of access tokens to directly contact the Issuer of each token for validation. In contrast, the mechanism defined in this specification allows a party to retrieve the statuses for many tokens, reducing interactions with the Issuer substantially. This not only improves scalability but also enhances privacy by preventing the Issuer from gaining knowledge of access tokens being verified (herd anonymity).</t>
        <t>Another possible use case for the Status List is to express the status of verifiable credentials (Referenced Tokens) issued by an Issuer in the Issuer-Holder-Verifier model <xref target="SD-JWT.VC"/>.</t>
      </section>
      <section anchor="rationale">
        <name>Rationale</name>
        <t>Revocation mechanisms are an essential part of most identity ecosystems. In the past, revocation of X.509 TLS certificates has been proven difficult. Traditional certificate revocation lists (CRLs) have limited scalability; Online Certificate Status Protocol (OCSP) has additional privacy risks, since the client is leaking the requested website to a third party. OCSP stapling is addressing some of these problems at the cost of less up-to-date data. Modern approaches use accumulator-based revocation registries and Zero-Knowledge-Proofs to accommodate for this privacy gap, but face scalability issues again. Another alternative is short-lived Referenced Tokens with regular re-issuance, but this puts additional burden on the Issuer's infrastructure.</t>
        <t>This specification seeks to find a balance between scalability, security and privacy by representing statuses as individual bits, packing the them into an array, and compressing the resulting binary data. Thereby, a Status List may contain statuses of many thousands or millions Referenced Tokens while remaining as small as possible. Placing a large number of Referenced Tokens into the same list also offers Holders and Relying Parties herd privacy from the Status Provider.</t>
      </section>
      <section anchor="design-considerations">
        <name>Design Considerations</name>
        <t>The decisions taken in this specification aim to achieve the following design goals:</t>
        <ul spacing="normal">
          <li>
            <t>the specification shall favor a simple and easy-to-understand concept</t>
          </li>
          <li>
            <t>the specification shall be easy, fast and secure to implement in all major programming languages</t>
          </li>
          <li>
            <t>the specification shall be optimized to support the most common use cases and avoid unnecessary complexity of corner cases</t>
          </li>
          <li>
            <t>the Status List shall scale up to millions of tokens to support large-scale government or enterprise use cases</t>
          </li>
          <li>
            <t>the Status List shall enable caching policies and offline support</t>
          </li>
          <li>
            <t>the specification shall support JSON and CBOR based tokens</t>
          </li>
          <li>
            <t>the specification shall not specify key resolution or trust frameworks</t>
          </li>
          <li>
            <t>the specification shall define an extension point that enables other mechanisms to convey information about the status of a Referenced Token</t>
          </li>
        </ul>
      </section>
      <section anchor="prior-work">
        <name>Prior Work</name>
        <t>Representing statuses with bits in an array is a rather old and well-known concept in computer science and there has been prior work to use this for revocation and status management such as a paper by Smith et al. <xref target="smith2020let"/> that proposed a mechanism called Certificate Revocation Vectors based on xz compressed bit vectors for each expiration day and the W3C bit Status List <xref target="W3C.SL"/> that similarly uses a compressed bit representation.</t>
      </section>
      <section anchor="status-mechanisms-registry">
        <name>Status Mechanisms Registry</name>
        <t>This specification establishes IANA "Status Mechanisms" registries for status mechanisms for JOSE-based tokens and for status mechanisms for COSE-based tokens and registers the members defined by this specification. Other specifications can register other members used for status retrieval.</t>
        <t>Other status mechanisms may have different tradeoffs regarding security, privacy, scalability and complexity. The privacy and security considerations in this document only represent the properties of the Status List mechanism.</t>
      </section>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</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>
      <?line -18?>

</section>
    <section anchor="terminology">
      <name>Terminology</name>
      <dl>
        <dt>Issuer:</dt>
        <dd>
          <t>An entity that issues the Referenced Token. Also known as a Provider.</t>
        </dd>
        <dt>Status Issuer:</dt>
        <dd>
          <t>An entity that issues the Status List Token about the status information of the Referenced Token. This role may be fulfilled by the Issuer.</t>
        </dd>
        <dt>Status Provider:</dt>
        <dd>
          <t>An entity that provides the Status List Token on a public endpoint. This role may be fulfilled by the Status Issuer.</t>
        </dd>
        <dt>Holder:</dt>
        <dd>
          <t>An entity that receives Referenced Tokens from the Issuer and presents them to Relying Parties.</t>
        </dd>
        <dt>Relying Party:</dt>
        <dd>
          <t>An entity that relies on the Referenced Token and fetches the corresponding Status List Token to validate the status of that Referenced Token. Also known as a Verifier.</t>
        </dd>
        <dt>Status List:</dt>
        <dd>
          <t>An object in JSON or CBOR representation containing a compressed byte array that represents the statuses of many Referenced Tokens.</t>
        </dd>
        <dt>Status List Token:</dt>
        <dd>
          <t>A token in JWT (as defined in <xref target="RFC7519"/>) or CWT (as defined in <xref target="RFC8392"/>) representation that contains a cryptographically secured Status List.</t>
        </dd>
        <dt>Referenced Token:</dt>
        <dd>
          <t>A cryptographically secured data structure that contains a "status" claim that references a mechanism to retrieve status information about this Referenced Token. This document defines the Status List mechanism in which case the Referenced Token contains a reference to an entry in a Status List Token. It is <bcp14>RECOMMENDED</bcp14> to use JSON <xref target="RFC8259"/> with JOSE as defined in <xref target="RFC7515"/> or CBOR <xref target="RFC8949"/> with COSE as defined in <xref target="RFC9052"/>. Examples for Referenced Tokens are SD-JWT VC and ISO mdoc.</t>
        </dd>
        <dt>Client:</dt>
        <dd>
          <t>An application that fetches information, such as a Status List Token, from the Status List Provider on behalf of the Holder or Relying Party.</t>
        </dd>
        <dt>base64url:</dt>
        <dd>
          <t>Denotes the URL-safe base64 encoding with all trailing '=' characters omitted as defined in Section 2 of <xref target="RFC7515"/> as "Base64url Encoding".</t>
        </dd>
      </dl>
    </section>
    <section anchor="status-list">
      <name>Status List</name>
      <t>A Status List is a data structure that contains the statuses of many Referenced Tokens represented by one or multiple bits. The <xref target="status-list-byte-array">first section</xref> describes how to construct a compressed byte array that is the base component for the Status List data structure. The second and third sections describe how to encode such a Status List in JSON and CBOR representations.</t>
      <section anchor="status-list-byte-array">
        <name>Compressed Byte Array</name>
        <t>A compressed byte array containing the status information of the Referenced Token is composed by the following algorithm:</t>
        <ol spacing="normal" type="1"><li>
            <t>The Status Issuer <bcp14>MUST</bcp14> define a number of bits (<tt>bits</tt>) of either 1,2,4 or 8, that represents the amount of bits used to describe the status of each Referenced Token within this Status List. Therefore up to 2,4,16 or 256 statuses for a Referenced Token are possible, depending on the bit size. This limitation is intended to limit bit manipulation necessary to a single byte for every operation and thus keeping implementations simpler and less error-prone.</t>
          </li>
          <li>
            <t>The Status Issuer creates a byte array of size = amount of Referenced Tokens * <tt>bits</tt> / 8 or greater. Depending on the <tt>bits</tt>, each byte in the array corresponds to 8/(<tt>bits</tt>) statuses (8,4,2 or 1).</t>
          </li>
          <li>
            <t>The Status Issuer sets the status values for all Referenced Tokens within the byte array. Each Referenced Token is assigned a distinct index from 0 to one less than the number of Referenced Tokens assigned to the Status List. Each index identifies a contiguous block of bits in the byte array, with the blocks being packed into bytes from the least significant bit ("0") to the most significant bit ("7"). These bits contain the encoded status value of the Referenced Token (see <xref target="status-types"/> for more details on the values).</t>
          </li>
          <li>
            <t>The Status Issuer compresses the byte array using DEFLATE <xref target="RFC1951"/> with the ZLIB <xref target="RFC1950"/> data format. Implementations are <bcp14>RECOMMENDED</bcp14> to use the highest compression level available.</t>
          </li>
        </ol>
        <t>The following example illustrates the byte array of a Status List that represents the statuses of 16 Referenced Tokens with a <tt>bits</tt> of 1, requiring 2 bytes (16 bits) for the uncompressed byte array:</t>
        <artwork type="ascii-art"><![CDATA[
status[0] = 0b1
status[1] = 0b0
status[2] = 0b0
status[3] = 0b1
status[4] = 0b1
status[5] = 0b1
status[6] = 0b0
status[7] = 0b1
status[8] = 0b1
status[9] = 0b1
status[10] = 0b0
status[11] = 0b0
status[12] = 0b0
status[13] = 0b1
status[14] = 0b0
status[15] = 0b1
]]></artwork>
        <t>These bits are concatenated:</t>
        <artwork type="ascii-art"><![CDATA[
byte no            0                  1
bit no      7 6 5 4 3 2 1 0    7 6 5 4 3 2 1 0
           +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+
values     |1|0|1|1|1|0|0|1|  |1|0|1|0|0|0|1|1|
           +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+
index       7 6 5 4 3 2 1 0   15   ...  10 9 8
           \_______________/  \_______________/
byte value       0xB9               0xA3

]]></artwork>
        <t>In the following example, the Status List additionally includes the Status Type "SUSPENDED". As the Status Type value for "SUSPENDED" is 0x02 and does not fit into 1 bit, the <tt>bits</tt> is required to be 2. This example illustrates the byte array of a Status List that represents the statuses of 12 Referenced Tokens with a <tt>bits</tt> of 2, requiring 3 bytes (24 bits) for the uncompressed byte array:</t>
        <artwork type="ascii-art"><![CDATA[
status[0] = 0b01
status[1] = 0b10
status[2] = 0b00
status[3] = 0b11
status[4] = 0b0
status[5] = 0b01
status[6] = 0b00
status[7] = 0b01
status[8] = 0b01
status[9] = 0b10
status[10] = 0b11
status[11] = 0b11
]]></artwork>
        <t>These bits are concatenated:</t>
        <artwork type="ascii-art"><![CDATA[
byte no            0                  1                  2
bit no      7 6 5 4 3 2 1 0    7 6 5 4 3 2 1 0    7 6 5 4 3 2 1 0
           +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+
values     |1|1|0|0|1|0|0|1|  |0|1|0|0|0|1|0|0|  |1|1|1|1|1|0|0|1|
           +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+
            \ / \ / \ / \ /    \ / \ / \ / \ /    \ / \ / \ / \ /
status      11  00  10  01     01  00  01  00     11  11  10  01
index        3   2   1   0      7   6   5   4      11  10  9   8
             \___________/      \___________/      \___________/
byte value       0xC9               0x44               0xF9

]]></artwork>
      </section>
      <section anchor="status-list-json">
        <name>Status List in JSON Format</name>
        <t>This section defines the data structure for a JSON-encoded Status List:</t>
        <ul spacing="normal">
          <li>
            <t>The <tt>StatusList</tt> structure is a JSON Object contains the following members:
            </t>
            <ul spacing="normal">
              <li>
                <t><tt>bits</tt>: <bcp14>REQUIRED</bcp14>. JSON Integer specifying the number of bits per Referenced Token in the compressed byte array (<tt>lst</tt>). The allowed values for <tt>bits</tt> are 1,2,4 and 8.</t>
              </li>
              <li>
                <t><tt>lst</tt>: <bcp14>REQUIRED</bcp14>. JSON String that contains the status values for all the Referenced Tokens it conveys statuses for. The value <bcp14>MUST</bcp14> be the base64url-encoded compressed byte array as specified in <xref target="status-list-byte-array"/>.</t>
              </li>
              <li>
                <t><tt>aggregation_uri</tt>: <bcp14>OPTIONAL</bcp14>. JSON String that contains a URI to retrieve the Status List Aggregation for this type of Referenced Token or Issuer. See section <xref target="aggregation"/> for further details.</t>
              </li>
            </ul>
          </li>
        </ul>
        <t>The following example illustrates the JSON representation of the Status List with <tt>bits</tt>=1 from the examples above:</t>
        <artwork><![CDATA[
byte_array = [0xb9, 0xa3] 
encoded:
{
  "bits": 1,
  "lst": "eNrbuRgAAhcBXQ"
}
]]></artwork>
        <t>The following example illustrates the JSON representation of the Status List with <tt>bits</tt>=2 from the examples above:</t>
        <artwork><![CDATA[
byte_array = [0xc9, 0x44, 0xf9] 
encoded:
{
  "bits": 2,
  "lst": "eNo76fITAAPfAgc"
}
]]></artwork>
        <t>See section <xref target="test-vectors"/> for more test vectors.</t>
      </section>
      <section anchor="status-list-cbor">
        <name>Status List in CBOR Format</name>
        <t>This section defines the data structure for a CBOR-encoded Status List:</t>
        <ul spacing="normal">
          <li>
            <t>The <tt>StatusList</tt> structure is a CBOR map (major type 5) and defines the following entries:
            </t>
            <ul spacing="normal">
              <li>
                <t><tt>bits</tt>: <bcp14>REQUIRED</bcp14>. CBOR Unsigned integer (major type 0) that contains the number of bits per Referenced Token in the compressed byte array (<tt>lst</tt>). The allowed values for <tt>bits</tt> are 1, 2, 4 and 8.</t>
              </li>
              <li>
                <t><tt>lst</tt>: <bcp14>REQUIRED</bcp14>. CBOR Byte string (major type 2) that contains the status values for all the Referenced Tokens it conveys statuses for. The value <bcp14>MUST</bcp14> be the compressed byte array as specified in <xref target="status-list-byte-array"/>.</t>
              </li>
              <li>
                <t><tt>aggregation_uri</tt>: <bcp14>OPTIONAL</bcp14>. CBOR Text string (major type 3) that contains a URI to retrieve the Status List Aggregation for this type of Referenced Token. See section <xref target="aggregation"/> for further detail.</t>
              </li>
            </ul>
          </li>
        </ul>
        <t>The following is the CDDL definition of the StatusList structure:</t>
        <sourcecode type="cddl"><![CDATA[
StatusList = {
    bits: 1 / 2 / 4 / 8, ; The number of bits used per Referenced Token
    lst: bstr, ; Byte string that contains the Status List
    ? aggregation_uri: tstr, ; link to the Status List Aggregation
}
]]></sourcecode>
        <t>The following example illustrates the CBOR representation of the Status List in Hex:</t>
        <artwork><![CDATA[
byte_array = [0xb9, 0xa3] 
encoded:
a2646269747301636c73744a78dadbb918000217015d
]]></artwork>
        <t>The following is the CBOR Annotated Hex output of the example above:</t>
        <artwork><![CDATA[
a2                              # map(2)
  64                            #   string(4)
    62697473                    #     "bits"
  01                            #   uint(1)
  63                            #   string(3)
    6c7374                      #     "lst"
  4a                            #   bytes(10)
    78dadbb918000217015d        #     "xÚÛ¹\x18\x00\x02\x17\x01]"
]]></artwork>
        <t>See section <xref target="test-vectors"/> for more test vectors.</t>
      </section>
    </section>
    <section anchor="status-list-token">
      <name>Status List Token</name>
      <t>A Status List Token embeds a Status List into a token that is cryptographically signed and protects the integrity of the Status List. This allows for the Status List Token to be hosted by third parties or be transferred for offline use cases.</t>
      <t>This section specifies Status List Tokens in JSON Web Token (JWT) and CBOR Web Token (CWT) format.</t>
      <section anchor="status-list-token-jwt">
        <name>Status List Token in JWT Format</name>
        <t>The Status List Token <bcp14>MUST</bcp14> be encoded as a "JSON Web Token (JWT)" according to <xref target="RFC7519"/>.</t>
        <t>The following content applies to the JWT Header:</t>
        <ul spacing="normal">
          <li>
            <t><tt>typ</tt>: <bcp14>REQUIRED</bcp14>. The JWT type <bcp14>MUST</bcp14> be <tt>statuslist+jwt</tt>.</t>
          </li>
        </ul>
        <t>The following content applies to the JWT Claims Set:</t>
        <ul spacing="normal">
          <li>
            <t><tt>sub</tt>: <bcp14>REQUIRED</bcp14>. As generally defined in <xref target="RFC7519"/>. The <tt>sub</tt> (subject) claim <bcp14>MUST</bcp14> specify the URI of the Status List Token. The value <bcp14>MUST</bcp14> be equal to that of the <tt>uri</tt> claim contained in the <tt>status_list</tt> claim of the Referenced Token.</t>
          </li>
          <li>
            <t><tt>iat</tt>: <bcp14>REQUIRED</bcp14>. As generally defined in <xref target="RFC7519"/>. The <tt>iat</tt> (issued at) claim <bcp14>MUST</bcp14> specify the time at which the Status List Token was issued.</t>
          </li>
          <li>
            <t><tt>exp</tt>: <bcp14>RECOMMENDED</bcp14>. As generally defined in <xref target="RFC7519"/>. The <tt>exp</tt> (expiration time) claim, if present, <bcp14>MUST</bcp14> specify the time at which the Status List Token is considered expired by the Status Issuer. Consider the guidance provided in <xref target="expiry-and-caching"/>.</t>
          </li>
          <li>
            <t><tt>ttl</tt>: <bcp14>RECOMMENDED</bcp14>. The <tt>ttl</tt> (time to live) claim, if present, <bcp14>MUST</bcp14> specify the maximum amount of time, in seconds, that the Status List Token can be cached by a consumer before a fresh copy <bcp14>SHOULD</bcp14> be retrieved. The value of the claim <bcp14>MUST</bcp14> be a positive number encoded in JSON as a number. Consider the guidance provided in <xref target="expiry-and-caching"/>.</t>
          </li>
          <li>
            <t><tt>status_list</tt>: <bcp14>REQUIRED</bcp14>. The <tt>status_list</tt> (status list) claim <bcp14>MUST</bcp14> specify the Status List conforming to the structure defined in <xref target="status-list-json"/>.</t>
          </li>
        </ul>
        <t>The following additional rules apply:</t>
        <ol spacing="normal" type="1"><li>
            <t>The JWT <bcp14>MAY</bcp14> contain other claims.</t>
          </li>
          <li>
            <t>The JWT <bcp14>MUST</bcp14> be secured using a cryptographic signature or MAC algorithm. Relying Parties <bcp14>MUST</bcp14> reject JWTs with an invalid signature.</t>
          </li>
          <li>
            <t>Relying Parties <bcp14>MUST</bcp14> reject JWTs that are not valid in all other respects per "JSON Web Token (JWT)" <xref target="RFC7519"/>.</t>
          </li>
          <li>
            <t>Application of additional restrictions and policies are at the discretion of the Relying Party.</t>
          </li>
        </ol>
        <t>The following is a non-normative example of a Status List Token in JWT format:</t>
        <artwork><![CDATA[
{
  "alg": "ES256",
  "kid": "12",
  "typ": "statuslist+jwt"
}
.
{
  "exp": 2291720170,
  "iat": 1686920170,
  "status_list": {
    "bits": 1,
    "lst": "eNrbuRgAAhcBXQ"
  },
  "sub": "https://example.com/statuslists/1",
  "ttl": 43200
}
]]></artwork>
      </section>
      <section anchor="status-list-token-cwt">
        <name>Status List Token in CWT Format</name>
        <t>The Status List Token <bcp14>MUST</bcp14> be encoded as a "CBOR Web Token (CWT)" according to <xref target="RFC8392"/>.</t>
        <t>The following content applies to the protected header of the CWT:</t>
        <ul spacing="normal">
          <li>
            <t><tt>16</tt> (type): <bcp14>REQUIRED</bcp14>. The type of the CWT <bcp14>MUST</bcp14> be <tt>application/statuslist+cwt</tt> or the registered CoAP Content-Format ID (see <xref target="coap-content-type"/>) as defined in <xref target="RFC9596"/>.</t>
          </li>
        </ul>
        <t>The following content applies to the CWT Claims Set:</t>
        <ul spacing="normal">
          <li>
            <t><tt>2</tt> (subject): <bcp14>REQUIRED</bcp14>. As generally defined in <xref target="RFC8392"/>. The subject claim <bcp14>MUST</bcp14> specify the URI of the Status List Token. The value <bcp14>MUST</bcp14> be equal to that of the <tt>uri</tt> claim contained in the <tt>status_list</tt> claim of the Referenced Token.</t>
          </li>
          <li>
            <t><tt>6</tt> (issued at): <bcp14>REQUIRED</bcp14>. As generally defined in <xref target="RFC8392"/>. The issued at claim <bcp14>MUST</bcp14> specify the time at which the Status List Token was issued.</t>
          </li>
          <li>
            <t><tt>4</tt> (expiration time): <bcp14>RECOMMENDED</bcp14>. As generally defined in <xref target="RFC8392"/>. The expiration time claim, if present, <bcp14>MUST</bcp14> specify the time at which the Status List Token is considered expired by its issuer. Consider the guidance provided in <xref target="expiry-and-caching"/>.</t>
          </li>
          <li>
            <t><tt>65534</tt> (time to live): <bcp14>RECOMMENDED</bcp14>. Unsigned integer (major type 0). The time to live claim, if present, <bcp14>MUST</bcp14> specify the maximum amount of time, in seconds, that the Status List Token can be cached by a consumer before a fresh copy <bcp14>SHOULD</bcp14> be retrieved. The value of the claim <bcp14>MUST</bcp14> be a positive number. Consider the guidance provided in <xref target="expiry-and-caching"/>.</t>
          </li>
          <li>
            <t><tt>65533</tt> (status list): <bcp14>REQUIRED</bcp14>. The status list claim <bcp14>MUST</bcp14> specify the Status List conforming to the structure defined in <xref target="status-list-cbor"/>.</t>
          </li>
        </ul>
        <t>The following additional rules apply:</t>
        <ol spacing="normal" type="1"><li>
            <t>The CWT <bcp14>MAY</bcp14> contain other claims.</t>
          </li>
          <li>
            <t>The CWT <bcp14>MUST</bcp14> be secured using a cryptographic signature or MAC algorithm. Relying Parties <bcp14>MUST</bcp14> reject CWTs with an invalid signature.</t>
          </li>
          <li>
            <t>Relying Parties <bcp14>MUST</bcp14> reject CWTs that are not valid in all other respects per "CBOR Web Token (CWT)" <xref target="RFC8392"/>.</t>
          </li>
          <li>
            <t>Application of additional restrictions and policies are at the discretion of the Relying Party.</t>
          </li>
        </ol>
        <t>The following is a non-normative example of a Status List Token in CWT format in Hex:</t>
        <artwork><![CDATA[
845820a2012610781a6170706c69636174696f6e2f7374617475736c6973742b6377
74a1044231325850a502782168747470733a2f2f6578616d706c652e636f6d2f7374
617475736c697374732f31061a648c5bea041a8898dfea19fffe19a8c019fffda264
6269747301636c73744a78dadbb918000217015d58405e1dfcf3b4499621dd2585c9
cdd3f702543c040f1c6947e6d07b0092948ffb6d33ccff503c6938daecbc57d3de5c
9067b16da45c530e905b33a4787fba5d0599
]]></artwork>
        <t>The following is the CBOR Annotated Hex output of the example above:</t>
        <artwork><![CDATA[
84                              # array(4)
  58 20                         #   bytes(32)
    a2012610781a6170706c696361  #     "¢\x01&\x10x\x1aapplica"
    74696f6e2f7374617475736c69  #     "tion/statusli"
    73742b637774                #     "st+cwt"
  a1                            #   map(1)
    04                          #     uint(4)
    42                          #     bytes(2)
      3132                      #       "12"
  58 50                         #   bytes(80)
    a502782168747470733a2f2f65  #     "¥\x02x!https://e"
    78616d706c652e636f6d2f7374  #     "xample.com/st"
    617475736c697374732f31061a  #     "atuslists/1\x06\x1a"
    648c5bea041a8898dfea19fffe  #     "d\x8c[ê\x04\x1a\x88\x98ßê\x19ÿþ"
    19a8c019fffda2646269747301  #     "\x19¨À\x19ÿý¢dbits\x01"
    636c73744a78dadbb918000217  #     "clstJxÚÛ¹\x18\x00\x02\x17"
    015d                        #     "\x01]"
  58 40                         #   bytes(64)
    5e1dfcf3b4499621dd2585c9cd  #     "^\x1düó´I\x96!Ý%\x85ÉÍ"
    d3f702543c040f1c6947e6d07b  #     "Ó÷\x02T<\x04\x0f\x1ciGæÐ{"
    0092948ffb6d33ccff503c6938  #     "\x00\x92\x94\x8fûm3ÌÿP<i8"
    daecbc57d3de5c9067b16da45c  #     "Úì¼WÓÞ\\x90g±m¤\"
    530e905b33a4787fba5d0599    #     "S\x0e\x90[3¤x\x7fº]\x05\x99"
]]></artwork>
      </section>
    </section>
    <section anchor="referenced-token">
      <name>Referenced Token</name>
      <section anchor="status-claim">
        <name>Status Claim</name>
        <t>By including a "status" claim in a Referenced Token, the Issuer is referencing a mechanism to retrieve status information about this Referenced Token. This specification defines one possible member of the "status" object, called "status_list". Other members of the "status" object may be defined by other specifications. This is analogous to "cnf" claim in Section 3.1 of <xref target="RFC7800"/> in which different authenticity confirmation methods can be included.</t>
      </section>
      <section anchor="referenced-token-jose">
        <name>Referenced Token in JOSE</name>
        <t>The Referenced Token <bcp14>MAY</bcp14> be encoded as a "JSON Web Token (JWT)" according to <xref target="RFC7519"/> or other formats based on JOSE.</t>
        <t>The following content applies to the JWT Claims Set:</t>
        <ul spacing="normal">
          <li>
            <t><tt>status</tt>: <bcp14>REQUIRED</bcp14>. The <tt>status</tt> (status) claim <bcp14>MUST</bcp14> specify a JSON Object that contains at least one reference to a status mechanism.
            </t>
            <ul spacing="normal">
              <li>
                <t><tt>status_list</tt>: <bcp14>REQUIRED</bcp14> when the status mechanism defined in this specification is used. It <bcp14>MUST</bcp14> specify a JSON Object that contains a reference to a Status List Token. It <bcp14>MUST</bcp14> at least contain the following claims:
                </t>
                <ul spacing="normal">
                  <li>
                    <t><tt>idx</tt>: <bcp14>REQUIRED</bcp14>. The <tt>idx</tt> (index) claim <bcp14>MUST</bcp14> specify a non-negative Integer that represents the index to check for status information in the Status List for the current Referenced Token.</t>
                  </li>
                  <li>
                    <t><tt>uri</tt>: <bcp14>REQUIRED</bcp14>. The <tt>uri</tt> (URI) claim <bcp14>MUST</bcp14> specify a String value that identifies the Status List Token containing the status information for the Referenced Token. The value of <tt>uri</tt> <bcp14>MUST</bcp14> be a URI conforming to <xref target="RFC3986"/>.</t>
                  </li>
                </ul>
              </li>
            </ul>
          </li>
        </ul>
        <t>Application of additional restrictions and policies are at the discretion of the Relying Party.</t>
        <t>The following is a non-normative example of a decoded header and payload of a Referenced Token:</t>
        <artwork type="ascii-art"><![CDATA[
{
  "alg": "ES256",
  "kid": "11"
}
.
{
  "status": {
    "status_list": {
      "idx": 0,
      "uri": "https://example.com/statuslists/1"
    }
  }
}
]]></artwork>
        <t>SD-JWT-based Verifiable Credentials <xref target="SD-JWT.VC"/> section 3.2.2.2. introduces the usage of the status mechanism defined in this section. Therefore, an SD-JWT VC can be considered a Referenced Token. The following is a non-normative example of a Referenced Token in SD-JWT VC serialized form as received from an Issuer:</t>
        <artwork type="ascii-art"><![CDATA[
eyJhbGciOiAiRVMyNTYiLCAidHlwIjogImV4YW1wbGUrc2Qtand0In0.eyJfc2QiOiBb
Ikh2cktYNmZQVjB2OUtfeUNWRkJpTEZIc01heGNEXzExNEVtNlZUOHgxbGciXSwgImlz
cyI6ICJodHRwczovL2V4YW1wbGUuY29tL2lzc3VlciIsICJpYXQiOiAxNjgzMDAwMDAw
LCAiZXhwIjogMTg4MzAwMDAwMCwgInN1YiI6ICI2YzVjMGE0OS1iNTg5LTQzMWQtYmFl
Ny0yMTkxMjJhOWVjMmMiLCAic3RhdHVzIjogeyJzdGF0dXNfbGlzdCI6IHsiaWR4Ijog
MCwgInVyaSI6ICJodHRwczovL2V4YW1wbGUuY29tL3N0YXR1c2xpc3RzLzEifX0sICJf
c2RfYWxnIjogInNoYS0yNTYifQ.-kgS-R-Z4DEDlqb8kb6381_gHHNatsoF1fcVKZk3M
06CrnV8F8k9d2w2V_YAOvgcb0f11FqDFezXBXH30d4vcw~WyIyR0xDNDJzS1F2ZUNmR2
ZyeU5STjl3IiwgInN0cmVldF9hZGRyZXNzIiwgIlNjaHVsc3RyLiAxMiJd~WyJlbHVWN
U9nM2dTTklJOEVZbnN4QV9BIiwgImxvY2FsaXR5IiwgIlNjaHVscGZvcnRhIl0~WyI2S
Wo3dE0tYTVpVlBHYm9TNXRtdlZBIiwgInJlZ2lvbiIsICJTYWNoc2VuLUFuaGFsdCJd~
WyJlSThaV205UW5LUHBOUGVOZW5IZGhRIiwgImNvdW50cnkiLCAiREUiXQ~WyJRZ19PN
jR6cUF4ZTQxMmExMDhpcm9BIiwgImFkZHJlc3MiLCB7Il9zZCI6IFsiNnZoOWJxLXpTN
EdLTV83R3BnZ1ZiWXp6dTZvT0dYcm1OVkdQSFA3NVVkMCIsICI5Z2pWdVh0ZEZST0NnU
nJ0TmNHVVhtRjY1cmRlemlfNkVyX2o3NmttWXlNIiwgIktVUkRQaDRaQzE5LTN0aXotR
GYzOVY4ZWlkeTFvVjNhM0gxRGEyTjBnODgiLCAiV045cjlkQ0JKOEhUQ3NTMmpLQVN4V
GpFeVc1bTV4NjVfWl8ycm8yamZYTSJdfV0~
]]></artwork>
        <t>The resulting payload of the example above:</t>
        <artwork type="ascii-art"><![CDATA[
{
  "_sd": [
    "HvrKX6fPV0v9K_yCVFBiLFHsMaxcD_114Em6VT8x1lg"
  ],
  "iss": "https://example.com/issuer",
  "iat": 1683000000,
  "exp": 1883000000,
  "sub": "6c5c0a49-b589-431d-bae7-219122a9ec2c",
  "status": {
    "status_list": {
      "idx": 0,
      "uri": "https://example.com/statuslists/1"
    }
  },
  "_sd_alg": "sha-256"
}
]]></artwork>
      </section>
      <section anchor="referenced-token-cose">
        <name>Referenced Token in COSE</name>
        <t>The Referenced Token <bcp14>MAY</bcp14> be encoded as a "CBOR Web Token (CWT)" object according to <xref target="RFC8392"/> or other formats based on COSE. Referenced Tokens in CBOR should share the same core data structure for a status list reference:</t>
        <ul spacing="normal">
          <li>
            <t>The <tt>Status</tt> CBOR structure is a Map that <bcp14>MUST</bcp14> include at least one data item that refers to a status mechanism. Each data item in the <tt>Status</tt> CBOR structure comprises a key-value pair, where the key must be a CBOR text string (major type 3) specifying the identifier of the status mechanism and the corresponding value defines its contents.
            </t>
            <ul spacing="normal">
              <li>
                <t><tt>status_list</tt> (status list): <bcp14>REQUIRED</bcp14> when the status mechanism defined in this specification is used. It has the same definition as the <tt>status_list</tt> claim in <xref target="referenced-token-jose"/> but <bcp14>MUST</bcp14> be encoded as a <tt>StatusListInfo</tt> CBOR structure with the following fields:
                </t>
                <ul spacing="normal">
                  <li>
                    <t><tt>idx</tt>: <bcp14>REQUIRED</bcp14>. Unsigned integer (major type 0) The <tt>idx</tt> (index) claim <bcp14>MUST</bcp14> specify a non-negative Integer that represents the index to check for status information in the Status List for the current Referenced Token.</t>
                  </li>
                  <li>
                    <t><tt>uri</tt>: <bcp14>REQUIRED</bcp14>. Text string (major type 3). The <tt>uri</tt> (URI) claim <bcp14>MUST</bcp14> specify a String value that identifies the Status List Token containing the status information for the Referenced Token. The value of <tt>uri</tt> <bcp14>MUST</bcp14> be a URI conforming to <xref target="RFC3986"/>.</t>
                  </li>
                </ul>
              </li>
            </ul>
          </li>
        </ul>
        <section anchor="referenced-token-cwt">
          <name>CBOR Web Token (CWT)</name>
          <t>The following content applies to the CWT Claims Set:</t>
          <ul spacing="normal">
            <li>
              <t><tt>65535</tt> (status): <bcp14>REQUIRED</bcp14>. The status claim contains the <tt>Status</tt> CBOR structure as described in <xref target="referenced-token-cose"/>.</t>
            </li>
          </ul>
          <t>Application of additional restrictions and policies are at the discretion of the Relying Party.</t>
          <t>The following is a non-normative example of a Referenced Token in CWT format in Hex:</t>
          <artwork><![CDATA[
d28443a10126a1044231325866a502653132333435017368747470733a2f2f657861
6d706c652e636f6d061a648c5bea041a8898dfea19ffffa16b7374617475735f6c69
7374a2636964780063757269782168747470733a2f2f6578616d706c652e636f6d2f
7374617475736c697374732f315840425901681bb602928a803b7602027856372412
c6b8b92b732ee2b66ef0273010f3640da98ceca025465178e0f09fa079b0962b7d72
863edce3726d80f1e52bbf
]]></artwork>
          <t>The following is the CBOR Annotated Hex output of the example above:</t>
          <artwork><![CDATA[
d2                              # tag(18)
  84                            #   array(4)
    43                          #     bytes(3)
      a10126                    #       "¡\x01&"
    a1                          #     map(1)
      04                        #       uint(4)
      42                        #       bytes(2)
        3132                    #         "12"
    58 66                       #     bytes(102)
      a50265313233343501736874  #       "¥\x02e12345\x01sht"
      7470733a2f2f6578616d706c  #       "tps://exampl"
      652e636f6d061a648c5bea04  #       "e.com\x06\x1ad\x8c[ê\x04"
      1a8898dfea19ffffa16b7374  #       "\x1a\x88\x98ßê\x19ÿÿ¡kst"
      617475735f6c697374a26369  #       "atus_list¢ci"
      647800637572697821687474  #       "dx\x00curix!htt"
      70733a2f2f6578616d706c65  #       "ps://example"
      2e636f6d2f7374617475736c  #       ".com/statusl"
      697374732f31              #       "ists/1"
    58 40                       #     bytes(64)
      425901681bb602928a803b76  #       "BY\x01h\x1b¶\x02\x92\x8a\x80;v"
      02027856372412c6b8b92b73  #       "\x02\x02xV7$\x12Æ¸¹+s"
      2ee2b66ef0273010f3640da9  #       ".â¶nð'0\x10ód\x0d©"
      8ceca025465178e0f09fa079  #       "\x8cì\xa0%FQxàð\x9f\xa0y"
      b0962b7d72863edce3726d80  #       "°\x96+}r\x86>Üãrm\x80"
      f1e52bbf                  #       "ñå+¿"
]]></artwork>
        </section>
        <section anchor="referenced-token-mdoc">
          <name>ISO mdoc</name>
          <t>ISO mdoc <xref target="ISO.mdoc"/> may utilize the Status List mechanism by introducing the <tt>status</tt> parameter in the Mobile Security Object (MSO) as specified in Section 9.1.2 of <xref target="ISO.mdoc"/>. The <tt>status</tt> parameter contains the <tt>Status</tt> CBOR structure as described in <xref target="referenced-token-cose"/>.</t>
          <t>It is <bcp14>RECOMMENDED</bcp14> to use <tt>status</tt> for the label of the field that contains the <tt>Status</tt> CBOR structure.</t>
          <t>Application of additional restrictions and policies are at the discretion of the Relying Party.</t>
          <t>The following is a non-normative example of an IssuerAuth as specified in ISO mDL (also referred to as signed MSO) in Hex:</t>
          <artwork type="ascii-art"><![CDATA[
8443a10126a118215901f3308201ef30820195a00302010202140bfec7da97e048e
15ac3dacb9eafe82e64fd07f5300a06082a8648ce3d040302302331143012060355
04030c0b75746f7069612069616361310b3009060355040613025553301e170d323
4313030313030303030305a170d3235313030313030303030305a30213112301006
035504030c0975746f706961206473310b300906035504061302555330593013060
72a8648ce3d020106082a8648ce3d03010703420004ace7ab7340e5d9648c5a72a9
a6f56745c7aad436a03a43efea77b5fa7b88f0197d57d8983e1b37d3a539f4d5883
65e38cbbf5b94d68c547b5bc8731dcd2f146ba381a83081a5301c0603551d1f0415
30133011a00fa00d820b6578616d706c652e636f6d301e0603551d1204173015811
36578616d706c65406578616d706c652e636f6d301d0603551d0e0416041414e290
17a6c35621ffc7a686b7b72db06cd12351301f0603551d2304183016801454fa238
3a04c28e0d930792261c80c4881d2c00b300e0603551d0f0101ff04040302078030
150603551d250101ff040b3009060728818c5d050102300a06082a8648ce3d04030
20348003045022100b7103fd4b90529f50bd6f70c5ae5ce7f4f3d4d15a4e082812f
9fa1f5c2e5aa0a0220070b2822ec7ce6c56804923a85b2cfbffd054cf9a915f070c
fef7179a4bc6569590320d81859031ba766737461747573a16b7374617475735f6c
697374a26369647819019c63757269782168747470733a2f2f6578616d706c652e6
36f6d2f7374617475736c697374732f3167646f6354797065756f72672e69736f2e
31383031332e352e312e6d444c6776657273696f6e63312e306c76616c696469747
9496e666fa3667369676e6564c074323032342d31302d30315431333a33303a3032
5a6976616c696446726f6dc074323032342d31302d30315431333a33303a30325a6
a76616c6964556e74696cc074323032352d31302d30315431333a33303a30325a6c
76616c756544696765737473a1716f72672e69736f2e31383031332e352e31ac005
820a81d65ed5075fbd7ee19fa66e2bb3047ed826e2769873e7ef07c923da7a6f243
01582048701a9546492284d266ed81d439230a582d0e1f17a08ab1859a3efe98069
0a4025820d11fe48c8835b30bfb3895c3905436ddfb63f59ab9eee181b110985329
2a8f62035820a741bf05e20a8bc359e32426106ed0899b2c60262cc3acc637ddc99
41095fb7a045820ab67cb9a8f20a8572f77f02727367d08dc8e57fb89deb46b9c62
6e94457b7d8b055820bacddb4142b3842bd555206eb5acb27ded063294995c7e7fe
fbf93ece522604d065820bfd02b3aebdc05b53b5539226c38088d6d784b0ea0fab6
9eb9311650a48d325307582027dab70fe71da63e5e5d199e8ae5b79cbe8904bc30c
5b7544fb809e02ccb3e6a0858200dbd7ccc9c7727d3d17295f1b6f1914071670ee2
3d4d33530c31f1f406b8e3b7095820a5beb5efadf37f21637209abc519830681cc5
1f334818a823fec13b29552f5ba0a5820d8047c95f9272d7d07b2c13a9f5ac2ee02
380ab272a165e569391d89a2152c3c0b582004939930ffb4911ef03487a153605a3
0368b69f2437d6d21b4c90f92bc144c3e6d6465766963654b6579496e666fa16964
65766963654b6579a40102200121582096313d6c63e24e3372742bfdb1a33ba2c89
7dcd68ab8c753e4fbd48dca6b7f9a2258201fb3269edd418857de1b39a4e4a44b92
fa484caa722c228288f01d0c03a2c3d66f646967657374416c676f726974686d675
348412d3235365840b7c2d4abe85aa5ba814ef95de0385c71c802be8ac33a4a971a
85ed800ba7acb59cb21035f4a68fc0caa450cbefd3b255aec72f83595f0ae7b7d50
fe8a1c4cafe
]]></artwork>
          <t>The following is the CBOR Diagnostic Notation of the example above:</t>
          <artwork><![CDATA[
[
  << {
    1: -7
  } >>,
  {
    33: h'308201ef30820195a00302010202140bfec7da97e048e15ac3dacb9ea
    fe82e64fd07f5300a06082a8648ce3d04030230233114301206035504030c0b
    75746f7069612069616361310b3009060355040613025553301e170d3234313
    030313030303030305a170d3235313030313030303030305a30213112301006
    035504030c0975746f706961206473310b30090603550406130255533059301
    306072a8648ce3d020106082a8648ce3d03010703420004ace7ab7340e5d964
    8c5a72a9a6f56745c7aad436a03a43efea77b5fa7b88f0197d57d8983e1b37d
    3a539f4d588365e38cbbf5b94d68c547b5bc8731dcd2f146ba381a83081a530
    1c0603551d1f041530133011a00fa00d820b6578616d706c652e636f6d301e0
    603551d120417301581136578616d706c65406578616d706c652e636f6d301d
    0603551d0e0416041414e29017a6c35621ffc7a686b7b72db06cd12351301f0
    603551d2304183016801454fa2383a04c28e0d930792261c80c4881d2c00b30
    0e0603551d0f0101ff04040302078030150603551d250101ff040b300906072
    8818c5d050102300a06082a8648ce3d0403020348003045022100b7103fd4b9
    0529f50bd6f70c5ae5ce7f4f3d4d15a4e082812f9fa1f5c2e5aa0a0220070b2
    822ec7ce6c56804923a85b2cfbffd054cf9a915f070cfef7179a4bc6569'
  },
  << 24( << {
    "status": {
      "status_list": {
        "idx": 412,
        "uri": "https://example.com/statuslists/1"
      }
    },
    "docType": "org.iso.18013.5.1.mDL",
    "version": "1.0",
    "validityInfo": {
      "signed": 2024-10-01 13:30:02+00:00,
      "validFrom": 2024-10-01 13:30:02+00:00,
      "validUntil": 2025-10-01 13:30:02+00:00
    },
    "valueDigests": {
      "org.iso.18013.5.1": {
        0: h'a81d65ed5075fbd7ee19fa66e2bb3047ed826e2769873e7ef07c92
        3da7a6f243',
        1: h'48701a9546492284d266ed81d439230a582d0e1f17a08ab1859a3e
        fe980690a4',
        2: h'd11fe48c8835b30bfb3895c3905436ddfb63f59ab9eee181b11098
        53292a8f62',
        3: h'a741bf05e20a8bc359e32426106ed0899b2c60262cc3acc637ddc9
        941095fb7a',
        4: h'ab67cb9a8f20a8572f77f02727367d08dc8e57fb89deb46b9c626e
        94457b7d8b',
        5: h'bacddb4142b3842bd555206eb5acb27ded063294995c7e7fefbf93
        ece522604d',
        6: h'bfd02b3aebdc05b53b5539226c38088d6d784b0ea0fab69eb93116
        50a48d3253',
        7: h'27dab70fe71da63e5e5d199e8ae5b79cbe8904bc30c5b7544fb809
        e02ccb3e6a',
        8: h'0dbd7ccc9c7727d3d17295f1b6f1914071670ee23d4d33530c31f1
        f406b8e3b7',
        9: h'a5beb5efadf37f21637209abc519830681cc51f334818a823fec13
        b29552f5ba',
        10: h'd8047c95f9272d7d07b2c13a9f5ac2ee02380ab272a165e569391
        d89a2152c3c',
        11: h'04939930ffb4911ef03487a153605a30368b69f2437d6d21b4c90
        f92bc144c3e'
      }
    },
    "deviceKeyInfo": {
      "deviceKey": {
        1: 2,
        -1: 1,
        -2: h'96313d6c63e24e3372742bfdb1a33ba2c897dcd68ab8c753e4fbd
        48dca6b7f9a',
        -3: h'1fb3269edd418857de1b39a4e4a44b92fa484caa722c228288f01
        d0c03a2c3d6'
      }
    },
    "digestAlgorithm": "SHA-256"
  } >> ) >>,
  h'b7c2d4abe85aa5ba814ef95de0385c71c802be8ac33a4a971a85ed800ba7acb
  59cb21035f4a68fc0caa450cbefd3b255aec72f83595f0ae7b7d50fe8a1c4cafe'
]
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="status-types">
      <name>Status Types</name>
      <t>This document defines the statuses of Referenced Tokens as Status Type values. A status describes the state, mode, condition or stage of an entity that is represented by the Referenced Token.</t>
      <t>A Status List represents exactly one status per Referenced Token. If the Status List contains more than one bit per token (as defined by <tt>bits</tt> in the Status List), then the whole value of bits <bcp14>MUST</bcp14> describe one value. Status Types <bcp14>MUST</bcp14> have a numeric value between 0 and 255 for their representation in the Status List. The issuer of the Status List <bcp14>MUST</bcp14> choose an adequate <tt>bits</tt> value (bit size) to be able to describe the required Status Types for its application.</t>
      <section anchor="status-types-values">
        <name>Status Types Values</name>
        <t>The processing rules for Referenced Tokens (such as JWT or CWT) supersede the Referenced Token's status in a TSL. In particular, a Referenced Token that is evaluated as being expired (e.g. through the <tt>exp</tt> claim) but in a TSL has a status of 0x00 ("VALID"), is considered expired.</t>
        <t>This document creates a registry in <xref target="iana-status-types"/> that includes the most common Status Type values. Applications <bcp14>SHOULD</bcp14> use registered values for statuses if they have the correct semantics. Additional values may defined for particular use cases. Status Types described by this document comprise:</t>
        <ul spacing="normal">
          <li>
            <t>0x00 - "VALID" - The status of the Referenced Token is valid, correct or legal.</t>
          </li>
          <li>
            <t>0x01 - "INVALID" - The status of the Referenced Token is revoked, annulled, taken back, recalled or cancelled.</t>
          </li>
          <li>
            <t>0x02 - "SUSPENDED" - The status of the Referenced Token is temporarily invalid, hanging, debarred from privilege. This status is usually temporary.</t>
          </li>
        </ul>
        <t>The Status Type value 0x03 and Status Type values in the range 0x0C until 0x0F are permanently reserved as application specific. The processing of Status Types using these values is application specific. All other Status Type values are reserved for future registration.</t>
        <t>See <xref target="privacy-status-types"/> for privacy considerations on status types.</t>
      </section>
    </section>
    <section anchor="verification-and-processing">
      <name>Verification and Processing</name>
      <t>The fetching, processing and verifying of a Status List Token may be done by either the Holder or the Relying Party. The following section is described from the role of the Relying Party, however the same rules apply for the Holder.</t>
      <section anchor="status-list-request">
        <name>Status List Request</name>
        <t>The Status Provider <bcp14>SHOULD</bcp14> provide Status List Token on an endpoint serving an HTTP GET request to the URI provided in the Referenced Token, unless the Relying Party and the Status Provider have alternative methods of distribution.</t>
        <t>The HTTP endpoint <bcp14>SHOULD</bcp14> support the use of Cross-Origin Resource Sharing (CORS) <xref target="CORS"/> and/or other methods as appropriate to enable Browser-based clients to access it, unless ecosystems using this specification choose not to support Browser-based clients.</t>
        <t>The Relying Party <bcp14>SHOULD</bcp14> send the following Accept HTTP Header to indicate the requested response type unless the Content-Type of Status List Tokens in the respective ecosystem is known or the Relying Party supports both formats:</t>
        <ul spacing="normal">
          <li>
            <t>"application/statuslist+jwt" for Status List Token in JWT format</t>
          </li>
          <li>
            <t>"application/statuslist+cwt" for Status List Token in CWT format</t>
          </li>
        </ul>
        <t>If the Relying Party does not send an Accept Header, the response type is assumed to be known implicitly or out-of-band.</t>
        <t>The following is a non-normative example of a request for a Status List Token with type <tt>application/statuslist+jwt</tt>:</t>
        <artwork type="ascii-art"><![CDATA[
GET /statuslists/1 HTTP/1.1
Host: example.com
Accept: application/statuslist+jwt
]]></artwork>
      </section>
      <section anchor="status-list-response">
        <name>Status List Response</name>
        <t>A successful response that contains a Status List Token <bcp14>MUST</bcp14> use an HTTP status code in the 2xx range.</t>
        <t>A response <bcp14>MAY</bcp14> also choose to redirect the client to another URI using an HTTP status code in the 3xx range, which clients <bcp14>SHOULD</bcp14> follow. See <xref target="redirects"/> for security considerations on redirects.</t>
        <t>In the successful response, the Status Provider <bcp14>MUST</bcp14> use the following content-type:</t>
        <ul spacing="normal">
          <li>
            <t>"application/statuslist+jwt" for Status List Token in JWT format</t>
          </li>
          <li>
            <t>"application/statuslist+cwt" for Status List Token in CWT format</t>
          </li>
        </ul>
        <t>In the case of "application/statuslist+jwt", the response <bcp14>MUST</bcp14> be of type JWT and follow the rules of <xref target="status-list-token-jwt"/>.
In the case of "application/statuslist+cwt", the response <bcp14>MUST</bcp14> be of type CWT and follow the rules of <xref target="status-list-token-cwt"/>.</t>
        <t>The body of such an HTTP response contains the raw Status List Token, that means the binary encoding as defined in section 9.2.1 of <xref target="RFC8392"/> for a Status List Token in CWT format and the JWS Compact Serialization form for a Status List Token in JWT format. Note that while the examples for Status List Tokens in CWT format in this document are provided in hex encoding, this is done purely for readability; CWT format response bodies are "in binary".</t>
        <t>The HTTP response <bcp14>SHOULD</bcp14> use gzip Content-Encoding as defined in <xref target="RFC9110"/> for Status List Tokens in JWT format.</t>
        <t>If caching-related HTTP headers are present in the HTTP response, Relying Parties <bcp14>MUST</bcp14> prioritize the exp and ttl claims within the Status List Token over the HTTP headers for determining caching behavior.</t>
        <t>The following is a non-normative example of a response with a Status List Token with type <tt>application/statuslist+jwt</tt>:</t>
        <artwork type="ascii-art"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/statuslist+jwt

eyJhbGciOiJFUzI1NiIsImtpZCI6IjEyIiwidHlwIjoic3RhdHVzbGlzdCtqd3QifQ.e
yJleHAiOjIyOTE3MjAxNzAsImlhdCI6MTY4NjkyMDE3MCwiaXNzIjoiaHR0cHM6Ly9le
GFtcGxlLmNvbSIsInN0YXR1c19saXN0Ijp7ImJpdHMiOjEsImxzdCI6ImVOcmJ1UmdBQ
WhjQlhRIn0sInN1YiI6Imh0dHBzOi8vZXhhbXBsZS5jb20vc3RhdHVzbGlzdHMvMSIsI
nR0bCI6NDMyMDB9.V_ukn3xTpF3w14bgNMN2FaFCeTGQHXt81lii8tCAvOngf8BZrN7c
lWfsLYcnQpgT0Ok9LQpfkX45WNRQydijug
]]></artwork>
      </section>
      <section anchor="validation-rules">
        <name>Validation Rules</name>
        <t>Upon receiving a Referenced Token, a Relying Party <bcp14>MUST</bcp14> first perform the validation of the Referenced Token - e.g., checking for expected attributes, valid signature and expiration time. The processing rules for Referenced Tokens (such as JWT or CWT) <bcp14>MUST</bcp14> precede any evaluation of a Referenced Token's status. For example, if a token is evaluated as being expired through the "exp" (Expiration Time) but also has a status of 0x00 ("VALID"), the token is considered expired. As this is out of scope for this document, this validation is not described here, but is expected to be done according to the format of the Referenced Token.</t>
        <t>If this validation is not successful, the Referenced Token <bcp14>MUST</bcp14> be rejected. If the validation was successful, the Relying Party <bcp14>MUST</bcp14> perform the following validation steps to evaluate the status of the reference token:</t>
        <ol spacing="normal" type="1"><li>
            <t>Check for the existence of a <tt>status</tt> claim, check for the existence of a <tt>status_list</tt> claim within the <tt>status</tt> claim and validate that the content of <tt>status_list</tt> adheres to the rules defined in <xref target="referenced-token-jose"/> for JOSE-based Referenced Tokens and <xref target="referenced-token-cose"/> for COSE-based Referenced Tokens. Other formats of Referenced Tokens may define other encoding of the URI and index.</t>
          </li>
          <li>
            <t>Resolve the Status List Token from the provided URI</t>
          </li>
          <li>
            <t>Validate the Status List Token:
            </t>
            <ol spacing="normal" type="a"><li>
                <t>Validate the Status List Token by following the rules defined in section 7.2 of <xref target="RFC7519"/> for JWTs and section 7.2 of <xref target="RFC8392"/> for CWTs. This step might require the resolution of a public key as described in <xref target="key-management"/>.</t>
              </li>
              <li>
                <t>Check for the existence of the required claims as defined in <xref target="status-list-token-jwt"/> and <xref target="status-list-token-cwt"/> depending on the token type</t>
              </li>
            </ol>
          </li>
          <li>
            <t>All existing claims in the Status List Token <bcp14>MUST</bcp14> be checked according to the rules in <xref target="status-list-token-jwt"/> and <xref target="status-list-token-cwt"/>
            </t>
            <ol spacing="normal" type="a"><li>
                <t>The subject claim (<tt>sub</tt> or <tt>2</tt>) of the Status List Token <bcp14>MUST</bcp14> be equal to the <tt>uri</tt> claim in the <tt>status_list</tt> object of the Referenced Token</t>
              </li>
              <li>
                <t>If the Relying Party has local policies regarding the freshness of the Status List Token, it <bcp14>SHOULD</bcp14> check the issued at claim (<tt>iat</tt> or <tt>6</tt>)</t>
              </li>
              <li>
                <t>If the expiration time is defined (<tt>exp</tt> or <tt>4</tt>), it <bcp14>MUST</bcp14> be checked if the Status List Token is expired</t>
              </li>
              <li>
                <t>If the Relying Party is using a system for caching the Status List Token, it <bcp14>SHOULD</bcp14> check the <tt>ttl</tt> claim of the Status List Token and retrieve a fresh copy if (time status was resolved + ttl &lt; current time)</t>
              </li>
            </ol>
          </li>
          <li>
            <t>Decompress the Status List with a decompressor that is compatible with DEFLATE <xref target="RFC1951"/> and ZLIB <xref target="RFC1950"/></t>
          </li>
          <li>
            <t>Retrieve the status value of the index specified in the Referenced Token as described in <xref target="status-list"/>. If the provided index is out of bounds of the Status List, no statement about the status of the Referenced Token can be made and the Referenced Token <bcp14>SHOULD</bcp14> be rejected.</t>
          </li>
          <li>
            <t>Check the status value as described in <xref target="status-types"/></t>
          </li>
        </ol>
        <t>If any of these checks fails, no statement about the status of the Referenced Token can be made and the Referenced Token <bcp14>SHOULD</bcp14> be rejected.</t>
      </section>
      <section anchor="historical-resolution">
        <name>Historical resolution</name>
        <t>By default, the status mechanism defined in this specification only conveys information about the state of Reference Tokens at the time the Status List Token was issued. The validity period for this information, as defined by the issuer, is explicitly stated by the <tt>iat</tt> (issued at) and <tt>exp</tt> (expiration time) claims for JWT and their corresponding ones for the CWT representation. If support for historical status information is desired, this can be achieved by extending with a timestamp the request for the Status List Token as defined in <xref target="status-list-request"/>. This feature has additional privacy implications as described in <xref target="privacy-historical"/>.</t>
        <t>To obtain the Status List Token, the Relying Party <bcp14>MUST</bcp14> send an HTTP GET request to the URI provided in the Referenced Token with the additional query parameter <tt>time</tt> and its value being a unix timestamp. The response for a valid request <bcp14>SHOULD</bcp14> contain a Status List Token that was valid for that specified time or an error.</t>
        <t>If the Server does not support the additional query parameter, it <bcp14>SHOULD</bcp14> return a status code of 501 (Not Implemented) or if the requested time is not supported it <bcp14>SHOULD</bcp14> return a status code of 406 (Not Acceptable). A Status List Token might be served via static file hosting (e.g., leveraging a Content Delivery Network) that ignores query parameters, which would result in the client requesting a historical status list but receiving the current status list. Thus, the client <bcp14>MUST</bcp14> reject a response unless the requested timestamp is within the valid time of the returned token signaled via iat (6 for CWT) and exp (4 for CWT).</t>
        <t>The following is a non-normative example of a GET request using the <tt>time</tt> query parameter:</t>
        <artwork type="ascii-art"><![CDATA[
GET /statuslists/1?time=1686925000 HTTP/1.1
Host: example.com
Accept: application/statuslist+jwt
]]></artwork>
        <t>The following is a non-normative example of a response for the above Request:</t>
        <artwork type="ascii-art"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/statuslist+jwt

eyJhbGciOiJFUzI1NiIsImtpZCI6IjEyIiwidHlwIjoic3RhdHVzbGlzdCtqd3QifQ.e
yJleHAiOjIyOTE3MjAxNzAsImlhdCI6MTY4NjkyMDE3MCwiaXNzIjoiaHR0cHM6Ly9le
GFtcGxlLmNvbSIsInN0YXR1c19saXN0Ijp7ImJpdHMiOjEsImxzdCI6ImVOcmJ1UmdBQ
WhjQlhRIn0sInN1YiI6Imh0dHBzOi8vZXhhbXBsZS5jb20vc3RhdHVzbGlzdHMvMSIsI
nR0bCI6NDMyMDB9.V_ukn3xTpF3w14bgNMN2FaFCeTGQHXt81lii8tCAvOngf8BZrN7c
lWfsLYcnQpgT0Ok9LQpfkX45WNRQydijug
]]></artwork>
      </section>
    </section>
    <section anchor="aggregation">
      <name>Status List Aggregation</name>
      <t>Status List Aggregation is an optional mechanism offered by the Issuer to publish a list of one or more Status List Tokens URIs, allowing a Relying Party to fetch Status List Tokens provided by this Issuer. This mechanism is intended to support fetching and caching mechanisms and allow offline validation of the status of a Reference Token for a period of time.</t>
      <t>If a Relying Party encounters an error while validating one of the Status List Tokens returned from the Status List Aggregation endpoint, it <bcp14>SHOULD</bcp14> continue processing the other Status List Tokens.</t>
      <t>There are two options for a Relying Party to retrieve the Status List Aggregation.
An Issuer <bcp14>MAY</bcp14> support any of these mechanisms:</t>
      <ul spacing="normal">
        <li>
          <t>Issuer metadata: The Issuer of the Referenced Token publishes an URI which links to Status List Aggregation, e.g. in publicly available metadata of an issuance protocol</t>
        </li>
        <li>
          <t>Status List Parameter: The Status Issuer includes an additional claim in the Status List Token that contains the Status List Aggregation URI.</t>
        </li>
      </ul>
      <artwork type="ascii-art"><![CDATA[
                                      ┌─────────────────┐
                                      │                 │
                                      │ Issuer Metadata │
                                      │                 │
                                      └───┬─────────────┘
                                          │
  ┌───────────────────┐                   │ link within metadata
 ┌───────────────────┐│  link all         ▼
┌───────────────────┐││◄───────┐  ┌─────────────────────────┐
│                   ││◄────────┤  │                         │
│ Status List Token │◄┴────────┴──┤ Status List Aggregation │
│                   │┘            │                         │
└───────┬───────────┘             └─────────────────────────┘
        │                                 ▲
        │   link by aggregation_uri       │
        └─────────────────────────────────┘
]]></artwork>
      <section anchor="issuer-metadata">
        <name>Issuer Metadata</name>
        <t>The Issuer <bcp14>MAY</bcp14> link to the Status List Aggregation URI in metadata that can be provided by different means like .well-known metadata as is used commonly in OAuth and OpenID Connect, or within Issuer certificates or trust lists (such as VICAL as defined in Annex C of <xref target="ISO.mdoc"/>). If the Issuer is an OAuth Authorization Server according to <xref target="RFC6749"/>, it is <bcp14>RECOMMENDED</bcp14> to use the <tt>status_list_aggregation_endpoint</tt> parameter within its metadata defined by <xref target="RFC8414"/>. The Issuer <bcp14>MAY</bcp14> limit the Status List Tokens listed by a Status List Aggregation to a particular type of Referenced Token.</t>
        <t>The concrete implementation details depend on the specific ecosystem and are out of scope of this specification.</t>
      </section>
      <section anchor="status-list-parameter">
        <name>Status List Parameter</name>
        <t>The URI to the Status List Aggregation <bcp14>MAY</bcp14> be provided as the optional parameter <tt>aggregation_uri</tt> in the Status List itself as explained in <xref target="status-list-cbor"/> and <xref target="status-list-json"/> respectively. A Relying Party may use this URI to retrieve an up-to-date list of relevant Status Lists.</t>
      </section>
      <section anchor="status-list-aggregation-data-structure">
        <name>Status List Aggregation Data Structure</name>
        <t>This section defines the structure for a JSON-encoded Status List Aggregation:</t>
        <ul spacing="normal">
          <li>
            <t><tt>status_lists</tt>: <bcp14>REQUIRED</bcp14>. JSON array of strings that contains URIs linking to Status List Tokens.</t>
          </li>
        </ul>
        <t>The Status List Aggregation URI provides a list of Status List Token URIs. This aggregation in JSON and the media type return <bcp14>MUST</bcp14> be <tt>application/json</tt>. A Relying Party can iterate through this list and fetch all Status List Tokens before encountering the specific URI in a Referenced Token.</t>
        <t>The following is a non-normative example for media type <tt>application/json</tt>:</t>
        <sourcecode type="json"><![CDATA[
{
   "status_lists" : [
      "https://example.com/statuslists/1",
      "https://example.com/statuslists/2",
      "https://example.com/statuslists/3"
   ]
}
]]></sourcecode>
      </section>
    </section>
    <section anchor="eku">
      <name>X.509 Certificate Extended Key Usage Extension</name>
      <t><xref target="RFC5280"/> specifies the Extended Key Usage (EKU) X.509 certificate extension for use on end entity certificates. The extension indicates one or more purposes for which the certified public key is valid. The EKU extension can be used in conjunction with the Key Usage (KU) extension, which indicates the set of basic cryptographic operations for which the certified key may be used. A certificate's issuer explicitly delegates Status List Token signing authority by issuing a X.509 certificate containing the KeyPurposeId defined below in the extended key usage extension.
Other specifications <bcp14>MAY</bcp14> choose to re-use this OID for other status mechanisms under the condition that they are registered in the "JWT Status Mechanisms" or "CWT Status Mechanisms" registries.</t>
      <t>The following OID is defined for usage in the EKU extension</t>
      <artwork><![CDATA[
  id-kp  OBJECT IDENTIFIER  ::=
       { iso(1) identified-organization(3) dod(6) internet(1)
         security(5) mechanisms(5) pkix(7) kp(3) }

  id-kp-oauthStatusSigning OBJECT IDENTIFIER ::= { id-kp TBD }
]]></artwork>
    </section>
    <section anchor="Security">
      <name>Security Considerations</name>
      <t>Status List Tokens as defined in <xref target="status-list-token"/> only exists in cryptographically secured containers which allows checking the integrity and origin without relying on other factors such as transport security or web PKI.</t>
      <section anchor="correct-decoding-and-parsing-of-the-encoded-status-list">
        <name>Correct decoding and parsing of the encoded Status List</name>
        <t>Implementers should be particularly careful for the correct parsing and decoding of the Status List. Incorrect implementations might check the index on the wrong data or miscalculate the bit and byte index leading to an erroneous status of the Referenced Token. Beware, that bits are indexed (bit order) from least significant bit to most significant bit (also called "right to left") while bytes are indexed (byte order) in their natural incrementing byte order (usually written for display purpose from left to right). Endianness does not apply here because each status value fits within a single byte.</t>
        <t>Implementations <bcp14>SHOULD</bcp14> verify correctness using the test vectors given by this specification.</t>
      </section>
      <section anchor="security-guidance-for-jwt-and-cwt">
        <name>Security Guidance for JWT and CWT</name>
        <t>A Status List Token in the JWT format <bcp14>SHOULD</bcp14> follow the security considerations of <xref target="RFC7519"/> and the best current practices of <xref target="RFC8725"/>.</t>
        <t>A Status List Token in the CWT format <bcp14>SHOULD</bcp14> follow the security considerations of <xref target="RFC8392"/>.</t>
      </section>
      <section anchor="key-management">
        <name>Key Resolution and Trust Management</name>
        <t>This specification does not mandate specific methods for key resolution and trust management, however the following recommendations are made for specifications, profiles, or ecosystems that are planning to make use of the Status List mechanism:</t>
        <t>If the Issuer of the Referenced Token is the same entity as the Status Issuer, then the same key that is embedded into the Referenced Token may be used for the Status List Token. In this case the Status List Token may use:</t>
        <ul spacing="normal">
          <li>
            <t>the same <tt>x5c</tt> value or an <tt>x5t</tt>, <tt>x5t#S256</tt> or <tt>kid</tt> parameter referencing to the same key as used in the Referenced Token for JOSE.</t>
          </li>
          <li>
            <t>the same <tt>x5chain</tt> value or an <tt>x5t</tt> or <tt>kid</tt> parameter referencing to the same key as used in the Referenced Token for COSE.</t>
          </li>
        </ul>
        <t>Alternatively, the Status Issuer may use the same web-based key resolution that is used for the Referenced Token. In this case the Status List Token may use:</t>
        <ul spacing="normal">
          <li>
            <t>an <tt>x5u</tt>, <tt>jwks</tt>, <tt>jwks_uri</tt> or <tt>kid</tt> parameter referencing to a key using the same web-based resolution as used in the Referenced Token for JOSE.</t>
          </li>
          <li>
            <t>an <tt>x5u</tt> or <tt>kid</tt> parameter referencing to a key using the same web-based resolution as used in the Referenced Token for COSE.</t>
          </li>
        </ul>
        <artwork type="ascii-art"><![CDATA[
┌────────┐  host keys  ┌──────────────────────┐
│ Issuer ├────────┬───►│ .well-known metadata │
└─┬──────┘        │    └──────────────────────┘
  ▼ update status │
┌───────────────┐ │
│ Status Issuer ├─┘
└─┬─────────────┘
  ▼ provide Status List
┌─────────────────┐
│ Status Provider │
└─────────────────┘
]]></artwork>
        <t>If the Issuer of the Referenced Token is a different entity than the Status Issuer, then the keys used for the Status List Token may be cryptographically linked, e.g. by a Certificate Authority through an x.509 PKI. The certificate of the Issuer for the Referenced Token and the Status Issuer should be issued by the same Certificate Authority and the Status Issuer's certificate should utilize <xref target="eku">extended key usage</xref>.</t>
        <artwork type="ascii-art"><![CDATA[
┌───────────────────────┐
│ Certificate Authority │
└─┬─────────────────────┘
  │ authorize
  │  ┌────────┐
  ├─►│ Issuer │
  │  └─┬──────┘
  │    ▼ update status
  │  ┌───────────────┐
  └─►│ Status Issuer │
     └─┬─────────────┘
       ▼ provide Status List
     ┌─────────────────┐
     │ Status Provider │
     └─────────────────┘
]]></artwork>
      </section>
      <section anchor="redirects">
        <name>Redirection 3xx</name>
        <t>HTTP clients that follow 3xx (Redirection) class of status codes <bcp14>SHOULD</bcp14> be aware of the possible dangers of redirects, such as infinite redirection loops, since they can be used for denial of service attacks on clients. A client <bcp14>SHOULD</bcp14> detect and intervene in infinite redirections. Clients <bcp14>SHOULD</bcp14> apply the guidance for redirects given in Section 15.4 of <xref target="RFC9110"/>.</t>
      </section>
      <section anchor="security-ttl">
        <name>Expiration and Caching</name>
        <t>Expiration and caching information is conveyed via the <tt>exp</tt> and <tt>ttl</tt> claims as explained in <xref target="expiry-and-caching"/>. Clients <bcp14>SHOULD</bcp14> check that both values are within reasonable ranges before requesting new Status List Tokens based on these values to prevent accidentally creating unreasonable amounts of requests for a specific URL. Status Issuers could accidentally or maliciously use this mechanism to effectively DDoS the contained URL of the Status Provider.</t>
        <t>Reasonable values for both claims highly depend on the use-case requirements and clients <bcp14>SHOULD</bcp14> be configured with lower/upper bounds for these values that fit their respective use-cases.</t>
      </section>
      <section anchor="security-mac">
        <name>Status List Token Protection</name>
        <t>This specification allows both, digital signatures using asymmetric cryptography, and Message Authentication Codes (MAC) to be used to protect Status List Tokens. Implementers <bcp14>SHOULD</bcp14> only use MACs to secure the integrity of Status List Tokens if they fully understand the risks of MACs when compared to digital signatures and especially the requirements of their use-case scenarios. These use-cases typically represent deployments where Status Issuer and Relying Party have a trust relationship and the possibility to securely exchange keys out of band or are the same entity and no other entity needs to verify the Status List Token. We expect most deployments to use digital signatures for the protection of Status List Tokens and implementers <bcp14>SHOULD</bcp14> default to digital signatures if they are unsure.</t>
      </section>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <section anchor="privacy-issuer">
        <name>Observability of Issuers</name>
        <t>The main privacy consideration for a Status List, especially in the context of the Issuer-Holder-Verifier model <xref target="SD-JWT.VC"/>, is to prevent the Issuer from tracking the usage of the Referenced Token when the status is being checked. If an Issuer offers status information by referencing a specific token, this would enable the Issuer to create a profile for the issued token by correlating the date and identity of Relying Parties, that are requesting the status.</t>
        <t>The Status List approaches these privacy implications by integrating the status information of many Referenced Tokens into the same list. Therefore, the Issuer does not learn for which Referenced Token the Relying Party is requesting the Status List. The privacy of the Holder is protected by the anonymity within the set of Referenced Tokens in the Status List, also called herd privacy. This limits the possibilities of tracking by the Issuer.</t>
        <t>The herd privacy is depending on the number of entities within the Status List called its size. A larger size results in better privacy but also impacts the performance as more data has to be transferred to read the Status List.</t>
        <t>Additionally, the Issuer may analyse data from the HTTP request to identify the Relying Party, e.g. through the sender's IP address.</t>
        <t>This behaviour may be mitigated by:</t>
        <ul spacing="normal">
          <li>
            <t>private relay protocols or other mechanisms hiding the original sender like <xref target="RFC9458"/>.</t>
          </li>
          <li>
            <t>using trusted Third Party Hosting, see <xref target="third-party-hosting"/>.</t>
          </li>
        </ul>
      </section>
      <section anchor="issuer-tracking-of-reference-tokens">
        <name>Issuer Tracking of Reference Tokens</name>
        <t>An Issuer could maliciously or accidentally bypass the privacy benefits of the herd privacy by either:</t>
        <ul spacing="normal">
          <li>
            <t>Generating a unique Status List for every Referenced Token. By these means, the Issuer could maintain a mapping between Referenced Tokens and Status Lists and thus track the usage of Referenced Tokens by utilizing this mapping for the incoming requests.</t>
          </li>
          <li>
            <t>Encoding a unique URI in each Reference Token which points to the underlying Status List. This may involve using URI components such as query parameters, unique path segments, or fragments to make the URI unique.</t>
          </li>
        </ul>
        <t>This malicious behavior can be detected by Relying Parties that request large amounts of Referenced Tokens by comparing the number of different Status Lists and their sizes with the volume of Reference Tokens being verified.</t>
      </section>
      <section anchor="privacy-relying-party">
        <name>Observability of Relying Parties</name>
        <t>Once the Relying Party receives the Referenced Token, the Relying Party can request the Status List through the provided <tt>uri</tt> parameter and can validate the Referenced Token's status by looking up the corresponding <tt>index</tt>. However, the Relying Party may persistently store the <tt>uri</tt> and <tt>index</tt> of the Referenced Token to request the Status List again at a later time. By doing so regularly, the Relying Party may create a profile of the Referenced Token's validity status. This behaviour may be intended as a feature, e.g. for an identity proofing (e.g. Know-Your-Customer process in finance industry) that requires regular validity checks, but might also be abused in cases where this is not intended and unknown to the Holder, e.g. profiling the suspension of an employee credential.</t>
        <t>This behaviour could be mitigated by:</t>
        <ul spacing="normal">
          <li>
            <t>regular re-issuance of the Referenced Token, see <xref target="implementation-linkability"/>.</t>
          </li>
        </ul>
      </section>
      <section anchor="privacy-outsider">
        <name>Observability of Outsiders</name>
        <t>Outside actors may analyse the publicly available Status Lists to get information on the internal processes of the Issuer and its related business, e.g. number of customers or clients. This data may allow inferences on the total number of issued Reference Tokens and the revocation rate. Additionally, actors may regularly fetch this data or use the historic data functionality to learn how these numbers change over time.</t>
        <t>This behaviour could be mitigated by:</t>
        <ul spacing="normal">
          <li>
            <t>disabling the historical data feature <xref target="historical-resolution"/></t>
          </li>
          <li>
            <t>disabling the Status List Aggregation <xref target="aggregation"/></t>
          </li>
          <li>
            <t>choosing non-sequential, pseudo-random or random indices</t>
          </li>
          <li>
            <t>using decoy entries to obfuscate the real number of Referenced Tokens within a Status List</t>
          </li>
          <li>
            <t>choosing to deploy and utilize multiple Status Lists simultaneously</t>
          </li>
        </ul>
      </section>
      <section anchor="unlinkability">
        <name>Unlinkability</name>
        <t>The tuple of uri and index inside the Referenced Token are unique and therefore is traceable data.</t>
        <section anchor="colluding-relying-parties">
          <name>Colluding Relying Parties</name>
          <t>Two or more colluding Relying Parties may link two transactions involving the same Referenced Token by comparing the status claims of received Referenced Tokens and therefore determine that they have interacted with the same Holder.</t>
          <t>To avoid privacy risks of colluding Relying Parties, it is <bcp14>RECOMMENDED</bcp14> that Issuers provide the ability to issue batches of one-time-use Referenced Tokens, enabling Holders to use in a single interaction with a Relying Party before discarding. See <xref target="implementation-linkability"/> to avoid further correlatable information by the values of <tt>uri</tt> and <tt>index</tt>, Status Issuers are <bcp14>RECOMMENDED</bcp14> to:</t>
          <ul spacing="normal">
            <li>
              <t>choose non-sequential, pseudo-random or random indices</t>
            </li>
            <li>
              <t>use decoy entries to obfuscate the real number of Referenced Tokens within a Status List</t>
            </li>
            <li>
              <t>choose to deploy and utilize multiple Status Lists simultaneously</t>
            </li>
          </ul>
        </section>
        <section anchor="colluding-status-issuer-and-relying-party">
          <name>Colluding Status Issuer and Relying Party</name>
          <t>A Status Issuer and a Relying Party Issuer may link two transaction involving the same Referenced Tokens by comparing the status claims of the Referenced Token and therefore determine that they have interacted with the same Holder. It is therefore recommended to use Status Lists for Referenced Token formats that have similar unlinkability properties.</t>
        </section>
      </section>
      <section anchor="third-party-hosting">
        <name>External Status Provider for Privacy</name>
        <t>If the roles of the Status Issuer and the Status Provider are performed by different entities, this may give additional privacy assurances as the Issuer has no means to identify the Relying Party or its request.</t>
        <t>Third-Party hosting may also allow for greater scalability, as the Status List Tokens may be served by operators with greater resources, like CDNs, while still ensuring authenticity and integrity of Token Status List, as it is signed by the Status Issuer.</t>
      </section>
      <section anchor="privacy-historical">
        <name>Historical Resolution</name>
        <t>By default, this specification only supports providing Status List information for the most recent status information and does not allow the lookup of historical information like a validity state at a specific point in time. There exists optional support for a query parameter that allows these kind of historic lookups as described in <xref target="historical-resolution"/>. There are scenarios where such a functionality is necessary, but this feature should only be implemented when the scenario and the consequences of enabling historical resolution are fully understood.</t>
        <t>There are strong privacy concerns that have to be carefully taken into consideration when providing a mechanism that allows historic requests for status information - see <xref target="privacy-relying-party"/> for more details. Support for this functionality is optional and Implementers are <bcp14>RECOMMENDED</bcp14> to not support historic requests unless there are strong reasons to do so and after carefully considering the privacy implications.</t>
      </section>
      <section anchor="privacy-status-types">
        <name>Status Types</name>
        <t>As previously explained, there is the potential risk of observability by Relying Parties (see <xref target="privacy-relying-party"/>) and Outsiders (see <xref target="privacy-outsider"/>). That means that any Status Type that transports information beyond the routine statuses VALID and INVALID about a Referenced Token can leak information to other parties. This document defines one additional Status Type with "SUSPENDED" that conveys such additional information, but in practice all statuses other than VALID and INVALID are likely to contain information with privacy implications.</t>
        <t>Ecosystems that want to use other Status Types than "VALID" and "INVALID" should consider the possible leakage of data and profiling possibilities before doing so and evaluate if revocation and re-issuance might a better fit for their use-case.</t>
      </section>
    </section>
    <section anchor="implementation">
      <name>Implementation Considerations</name>
      <section anchor="implementation-lifecycle">
        <name>Token Lifecycle</name>
        <t>The lifetime of a Status List Token depends on the lifetime of its Referenced Tokens. Once all Referenced Tokens are expired, the Issuer may stop serving the Status List Token.</t>
      </section>
      <section anchor="implementation-linkability">
        <name>Linkability Mitigation</name>
        <t>Referenced Tokens may be regularly re-issued to mitigate the linkability of presentations to Relying Parties. In this case, every re-issued Referenced Token <bcp14>MUST</bcp14> have a fresh Status List entry in order to prevent the index value from becoming a possible source of correlation.</t>
        <t>Referenced Tokens may also be issued in batches and be presented by Holders in a one-time-use policy to avoid linkability. In this case, every Referenced Token <bcp14>MUST</bcp14> have a dedicated Status List entry and <bcp14>MAY</bcp14> be spread across multiple Status List Tokens. Batch revocation of a batch of Referenced Tokens might reveal that they are all members of the same batch.</t>
        <t>Beware, that this mechanism solves linkability issues between Relying Parties, but does not prevent traceability by Issuers.</t>
      </section>
      <section anchor="default-values-and-double-allocation">
        <name>Default Values and Double Allocation</name>
        <t>The Status Issuer is <bcp14>RECOMMENDED</bcp14> to initialize the Status List byte array with a default value provided as
an initialization parameter by the Issuer of the Referenced Token. The Issuer is <bcp14>RECOMMENDED</bcp14> to use a default value that represents the most common value for its Referenced Tokens to avoid an update during issuance (usually 0x00, VALID). This preserves the benefits from compression and effectively hides the number of managed Referenced Tokens since an unused index value can not be distinguished from a valid Referenced Token.</t>
        <t>The Status Issuer is <bcp14>RECOMMENDED</bcp14> to prevent double allocation, i.e. re-using the same <tt>uri</tt> and <tt>index</tt> for multiple Referenced Tokens (since <tt>uri</tt> and <tt>index</tt> form a unique identifier that might be used for tracking, see <xref target="privacy-considerations"/> for more details). The Status Issuer <bcp14>MUST</bcp14> prevent any unintended double allocation.</t>
      </section>
      <section anchor="status-list-size">
        <name>Status List Size</name>
        <t>The storage and transmission size of the Status Issuer's Status List Tokens depends on:</t>
        <ul spacing="normal">
          <li>
            <t>the size of the Status List, i.e. the number of Referenced Tokens</t>
          </li>
          <li>
            <t>the revocation rate and distribution of the Status List data (due to compression, revocation rates close to 0% or 100% create lowest sizes while revocation rates closer to 50% and random distribution create highest sizes)</t>
          </li>
          <li>
            <t>the lifetime of Referenced Tokens (shorter lifetimes allows for earlier retirement of Status List Tokens)</t>
          </li>
        </ul>
        <t>The Status List Issuer may increase the size of a Status List if it requires indices for additional Referenced Tokens. It is <bcp14>RECOMMENDED</bcp14> that the size of a Status List in bits is divisible in bytes (8 bits) without a remainder, i.e. <tt>size-in-bits</tt> % 8 = 0.</t>
        <t>The Status List Issuer may divide its Referenced Tokens up into multiple Status Lists to reduce the transmission size of an individual Status List Token. This may be useful for ecosystems where some entities operate in constrained environments, e.g. for mobile internet or embedded devices. The Status List Issuer may organize the Status List Tokens depending on the Referenced Token's expiry date to align their lifecycles and allow for easier retiring of Status List Tokens, however the Status Issuer must be aware of possible privacy risks due to correlations.</t>
      </section>
      <section anchor="external-status-issuer">
        <name>External Status Issuer</name>
        <t>If the roles of the Issuer of the Referenced Token and the Status Issuer are performed by different entities, this may allow for use case that require revocations of Referenced Tokens to be managed by a different entities, e.g. for regulatory or privacy reasons. In this scenario both parties must align on:</t>
        <ul spacing="normal">
          <li>
            <t>the key and trust management as described in <xref target="key-management"/></t>
          </li>
          <li>
            <t>parameters for the Status List
            </t>
            <ul spacing="normal">
              <li>
                <t>number of <tt>bits</tt> for the Status Type as described in <xref target="status-list"/></t>
              </li>
              <li>
                <t>update cycle of the Issuer used for <tt>ttl</tt> in the Status List Token as described in <xref target="status-list-token"/></t>
              </li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="external-status-provider-for-scalability">
        <name>External Status Provider for Scalability</name>
        <t>If the roles of the Status Issuer and the Status Provider are performed by different entities, this may allow for greater scalability, as the Status List Tokens may be served by operators with greater resources, like CDNs. At the same time the authenticity and integrity of Token Status List is still guaranteed, as it is signed by the Status Issuer.</t>
      </section>
      <section anchor="expiry-and-caching">
        <name>Status List Update Interval and Caching</name>
        <t>Status Issuers have two options to communicate their update interval policy for the status of their Referenced Tokens:</t>
        <ul spacing="normal">
          <li>
            <t>the <tt>exp</tt> claim specifies an absolute timestamp, marking the point in time when the Status List expires and <bcp14>MUST NOT</bcp14> be relied upon any longer</t>
          </li>
          <li>
            <t>the <tt>ttl</tt> claim represents a duration to be interpreted relative to the time the Status List is fetched, indicating when a new version of the Status List may be available</t>
          </li>
        </ul>
        <t>Both <tt>ttl</tt> and <tt>exp</tt> are <bcp14>RECOMMENDED</bcp14> to be used by the Status Issuer.</t>
        <t>When fetching a Status List Token, Relying Parties must carefully evaluate how long a Status List is cached for. Collectively the <tt>iat</tt>, <tt>exp</tt> and <tt>ttl</tt> claims when present in a Status List Token communicate how long a Status List should be cached and should be considered valid for. Relying Parties have different options for caching the Status List:</t>
        <ul spacing="normal">
          <li>
            <t>After time of fetching, the Relying Party caches the Status List for time duration of <tt>ttl</tt> before making checks for updates. This method is <bcp14>RECOMMENDED</bcp14> to distribute the load for the Status Provider.</t>
          </li>
          <li>
            <t>After initial fetching, the Relying Party checks for updates at time of <tt>iat</tt> + <tt>ttl</tt>. This method ensures the most up-to-date information for critical use cases. The Relying Party should account a minimal offset due to the signing and distribution process of the Status Issuer.</t>
          </li>
          <li>
            <t>If no <tt>ttl</tt> is given, then Relying Party <bcp14>SHOULD</bcp14> check for updates latest after the time of <tt>exp</tt>.</t>
          </li>
        </ul>
        <t>Ultimately, it's the Relying Parties decision how often to check for updates, ecosystems may define their own guidelines and policies for updating the Status List information. Clients should ensure that <tt>exp</tt> and <tt>ttl</tt> are within reasonable bounds before creating requests to get a fresh Status List Token (see <xref target="security-ttl"/> for more details).</t>
        <t>The following diagram illustrates the relationship between these claims and how they are designed to influence caching:</t>
        <artwork type="ascii-art"><![CDATA[
       Time of        Check for        Check for        Check for
       Fetching        updates          updates          updates

 iat     │                │                │                │    exp
         │                │                │                │
  │      │                │                │                │     │
  │      │                │                │                │     │
  │      │                │                │                │     │
  │      │                │                │                │     │
  │      │      ttl       │      ttl       │      ttl       │     │
  │      │ ─────────────► │ ─────────────► │ ─────────────► │ ──► │
  │      │                │                │                │     │
  │      │                │                │                │     │
  │                                                               │
──┼───────────────────────────────────────────────────────────────┼─►
  │                                                               │
]]></artwork>
      </section>
      <section anchor="relying-parties-avoiding-correlatable-information">
        <name>Relying Parties avoiding correlatable Information</name>
        <t>If the Relying Party does not require the Referenced Token or the Status List Token for further processing, it is <bcp14>RECOMMENDED</bcp14> to delete correlatable information, in particular:</t>
        <ul spacing="normal">
          <li>
            <t>the <tt>status</tt> claim in the Referenced Token (after the validation)</t>
          </li>
          <li>
            <t>the Status List Token itself (after expiration or update)</t>
          </li>
        </ul>
        <t>The Relying Party should instead only keep the needed fields from the Referenced Token.</t>
      </section>
      <section anchor="status-list-formats">
        <name>Status List Formats</name>
        <t>This specification defines 2 different token formats of the Status List:</t>
        <ul spacing="normal">
          <li>
            <t>JWT</t>
          </li>
          <li>
            <t>CWT</t>
          </li>
        </ul>
        <t>This specification states no requirements to not mix different formats like a CBOR based Referenced Token using a JWT for the Status List, but the expectation is that within an ecosystem, a choice for specific formats is made.
Within such an ecosystem, only support for those selected variants is required and implementations should know what to expect via a profile.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="json-web-token-claims-registration">
        <name>JSON Web Token Claims Registration</name>
        <t>This specification requests registration of the following Claims in the
IANA "JSON Web Token Claims" registry <xref target="IANA.JWT"/> established by <xref target="RFC7519"/>.</t>
        <section anchor="registry-contents">
          <name>Registry Contents</name>
          <ul spacing="normal">
            <li>
              <t>Claim Name: <tt>status</tt></t>
            </li>
            <li>
              <t>Claim Description: A JSON object containing a reference to a status mechanism from the JWT Status Mechanisms Registry.</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-claim"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Claim Name: <tt>status_list</tt></t>
            </li>
            <li>
              <t>Claim Description: A JSON object containing up-to-date status information on multiple tokens using the Token Status List mechanism.</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-list-token-jwt"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Claim Name: <tt>ttl</tt></t>
            </li>
            <li>
              <t>Claim Description: Time to Live</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-list-token-jwt"/> of this specification</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="iana-registry">
        <name>JWT Status Mechanisms Registry</name>
        <t>This specification establishes the IANA "JWT Status Mechanisms" registry for JWT "status" member values and adds it to the "JSON Web Token (JWT)" registry group at https://www.iana.org/assignments/jwt. The registry records the status mechanism member and a reference to the specification that defines it.</t>
        <t>JWT Status Mechanisms are registered by Specification Required <xref target="RFC8126"/> after a three-week
review period on the jwt-reg-review@ietf.org mailing list, on the advice of one or more Designated Experts.
However, to allow for the allocation of names prior to publication, the Designated Expert(s) may approve
registration once they are satisfied that such a specification will be published.</t>
        <t>Registration requests sent to the mailing list for review should use an appropriate subject (e.g., "Request to register JWT Status Mechanism: example").</t>
        <t>Within the review period, the Designated Expert(s) will either approve or deny the registration request, communicating this decision
to the review list and IANA. Denials should include an explanation and, if applicable, suggestions as to how to make the request
successful.</t>
        <t>IANA must only accept registry updates from the Designated Expert(s) and should direct all requests for registration to the review mailing list.</t>
        <section anchor="registration-template">
          <name>Registration Template</name>
          <t>Status Mechanism Value:</t>
          <ul empty="true">
            <li>
              <t>The name requested (e.g., "status_list"). The name is case sensitive. Names may not match other registered names in a case-insensitive manner unless the Designated Experts state that there is a compelling reason to allow an exception.</t>
            </li>
          </ul>
          <t>Status Mechanism Description:</t>
          <ul empty="true">
            <li>
              <t>Brief description of the status mechanism.</t>
            </li>
          </ul>
          <t>Change Controller:</t>
          <ul empty="true">
            <li>
              <t>For IETF Stream RFCs, list the IETF. For others, give the name of the responsible party. Other details (e.g., postal address, email address, home page URI) may also be included.</t>
            </li>
          </ul>
          <t>Specification Document(s):</t>
          <ul empty="true">
            <li>
              <t>Reference to the document or documents that specify the parameter, preferably including URIs that can be used to retrieve copies of the documents. An indication of the relevant sections may also be included but is not required.</t>
            </li>
          </ul>
        </section>
        <section anchor="initial-registry-contents">
          <name>Initial Registry Contents</name>
          <ul spacing="normal">
            <li>
              <t>Status Mechanism Value: <tt>status_list</tt></t>
            </li>
            <li>
              <t>Status Mechanism Description: A Token Status List containing up-to-date status information on multiple tokens.</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="referenced-token-jose"/> of this specification</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="cbor-web-token-claims-registration">
        <name>CBOR Web Token Claims Registration</name>
        <t>This specification requests registration of the following Claims in the
IANA "CBOR Web Token (CWT) Claims" registry <xref target="IANA.CWT"/> established by <xref target="RFC8392"/>.</t>
        <section anchor="registry-contents-1">
          <name>Registry Contents</name>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Claim Name: <tt>status</tt></t>
            </li>
            <li>
              <t>Claim Description: A CBOR structure containing a reference to a status mechanism from the CWT Status Mechanisms Registry.</t>
            </li>
            <li>
              <t>JWT Claim Name: <tt>status</tt></t>
            </li>
            <li>
              <t>Claim Key: TBD (requested assignment 65535)</t>
            </li>
            <li>
              <t>Claim Value Type: map</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Reference: <xref target="status-claim"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Claim Name: <tt>status_list</tt></t>
            </li>
            <li>
              <t>Claim Description: A CBOR structure containing up-to-date status information on multiple tokens using the Token Status List mechanism.</t>
            </li>
            <li>
              <t>JWT Claim Name: <tt>status_list</tt></t>
            </li>
            <li>
              <t>Claim Key: TBD (requested assignment 65533)</t>
            </li>
            <li>
              <t>Claim Value Type: map</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-list-token-cwt"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Claim Name: <tt>ttl</tt></t>
            </li>
            <li>
              <t>Claim Description: Time to Live</t>
            </li>
            <li>
              <t>JWT Claim Name: <tt>ttl</tt></t>
            </li>
            <li>
              <t>Claim Key: TBD (requested assignment 65534)</t>
            </li>
            <li>
              <t>Claim Value Type: unsigned integer</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-list-token-cwt"/> of this specification</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="cwt-iana-registry">
        <name>CWT Status Mechanisms Registry</name>
        <t>This specification establishes the IANA "CWT Status Mechanisms" registry for CWT "status" member values and adds it to the "CBOR Web Token (CWT) Claims" registry group at https://www.iana.org/assignments/cwt. The registry records the status mechanism member and a reference to the specification that defines it.</t>
        <t>CWT Status Mechanisms are registered by Specification Required <xref target="RFC8126"/> after a three-week
review period on the cwt-reg-review@ietf.org mailing list, on the advice of one or more Designated Experts. However, to allow for the allocation of names prior to publication, the Designated Expert(s) may approve registration once they are satisfied that such a
specification will be published.</t>
        <t>Registration requests sent to the mailing list for review should use an appropriate subject (e.g., "Request to register CWT Status Mechanism: example").</t>
        <t>Within the review period, the Designated Expert(s) will either approve or deny the registration request, communicating this decision
to the review list and IANA. Denials should include an explanation and, if applicable, suggestions as to how to make the request
successful.</t>
        <t>IANA must only accept registry updates from the Designated Expert(s) and should direct all requests for registration to the review mailing list.</t>
        <section anchor="registration-template-1">
          <name>Registration Template</name>
          <t>Status Mechanism Value:</t>
          <ul empty="true">
            <li>
              <t>The name requested (e.g., "status_list"). The name is case sensitive. Names may not match other registered names in a case-insensitive manner unless the Designated Experts state that there is a compelling reason to allow an exception.</t>
            </li>
          </ul>
          <t>Status Mechanism Description:</t>
          <ul empty="true">
            <li>
              <t>Brief description of the status mechanism.</t>
            </li>
          </ul>
          <t>Change Controller:</t>
          <ul empty="true">
            <li>
              <t>For IETF Stream RFCs, list the IETF. For others, give the name of the responsible party. Other details (e.g., postal address, email address, home page URI) may also be included.</t>
            </li>
          </ul>
          <t>Specification Document(s):</t>
          <ul empty="true">
            <li>
              <t>Reference to the document or documents that specify the parameter, preferably including URIs that can be used to retrieve copies of the documents. An indication of the relevant sections may also be included but is not required.</t>
            </li>
          </ul>
        </section>
        <section anchor="initial-registry-contents-1">
          <name>Initial Registry Contents</name>
          <ul spacing="normal">
            <li>
              <t>Status Mechanism Value: <tt>status_list</tt></t>
            </li>
            <li>
              <t>Status Mechanism Description: A Token Status List containing up-to-date status information on multiple tokens.</t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="referenced-token-cose"/> of this specification</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="iana-status-types">
        <name>OAuth Status Types Registry</name>
        <t>This specification establishes the IANA "OAuth Status Types" registry for Status List values and adds it to the "OAuth Parameters" registry group at https://www.iana.org/assignments/oauth-parameters. The registry records a human readable label, the bit representation and a common description for it.</t>
        <t>Status Types are registered by Specification Required <xref target="RFC8126"/> after a two-week
review period on the oauth-ext-review@ietf.org mailing list, on the advice of one or more Designated Experts. However, to allow for the allocation of names prior to publication, the Designated Expert(s) may approve registration once they are satisfied that such a
specification will be published.</t>
        <t>Registration requests sent to the mailing list for review should use an appropriate subject (e.g., "Request to register Status Type name: example").</t>
        <t>Within the review period, the Designated Expert(s) will either approve or deny the registration request, communicating this decision
to the review list and IANA. Denials should include an explanation and, if applicable, suggestions as to how to make the request
successful.</t>
        <t>IANA must only accept registry updates from the Designated Expert(s) and should direct all requests for registration to the review mailing list.</t>
        <section anchor="registration-template-2">
          <name>Registration Template</name>
          <t>Status Type Name:</t>
          <ul empty="true">
            <li>
              <t>The name is a human-readable case insensitive label for the Status Type that helps to talk about the status of Referenced Token in common language.</t>
            </li>
          </ul>
          <t>Status Type Description:</t>
          <ul empty="true">
            <li>
              <t>Brief description of the Status Type and optional examples.</t>
            </li>
          </ul>
          <t>Status Type value:</t>
          <ul empty="true">
            <li>
              <t>The bit representation of the Status Type in a byte hex representation. Valid Status Type values range from 0x00-0xFF. Values are filled up with zeros if they have less than 8 bits.</t>
            </li>
          </ul>
          <t>Change Controller:</t>
          <ul empty="true">
            <li>
              <t>For IETF Stream RFCs, list the IETF. For others, give the name of the responsible party. Other details (e.g., postal address, email address, home page URI) may also be included.</t>
            </li>
          </ul>
          <t>Specification Document(s):</t>
          <ul empty="true">
            <li>
              <t>Reference to the document or documents that specify the parameter, preferably including URIs that can be used to retrieve copies of the documents. An indication of the relevant sections may also be included but is not required.</t>
            </li>
          </ul>
        </section>
        <section anchor="initial-registry-contents-2">
          <name>Initial Registry Contents</name>
          <ul spacing="normal">
            <li>
              <t>Status Type Name: VALID</t>
            </li>
            <li>
              <t>Status Type Description: The status of the Referenced Token is valid, correct or legal.</t>
            </li>
            <li>
              <t>Status Type value: <tt>0x00</tt></t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-types"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Status Type Name: INVALID</t>
            </li>
            <li>
              <t>Status Type Description: The status of the Referenced Token is revoked, annulled, taken back, recalled or cancelled.</t>
            </li>
            <li>
              <t>Status Type value: <tt>0x01</tt></t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-types"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Status Type Name: SUSPENDED</t>
            </li>
            <li>
              <t>Status Type Description: The status of the Referenced Token is temporarily invalid, hanging or debarred from privilege. This state is usually temporary.</t>
            </li>
            <li>
              <t>Status Type value: <tt>0x02</tt></t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-types"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Status Type Name: APPLICATION_SPECIFIC</t>
            </li>
            <li>
              <t>Status Type Description: The status of the Referenced Token is application specific.</t>
            </li>
            <li>
              <t>Status Type value: <tt>0x03</tt></t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-types"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
          <ul spacing="normal">
            <li>
              <t>Status Type Name: APPLICATION_SPECIFIC</t>
            </li>
            <li>
              <t>Status Type Description: The status of the Referenced Token is application specific.</t>
            </li>
            <li>
              <t>Status Type value: <tt>0x0C-0xOF</tt></t>
            </li>
            <li>
              <t>Change Controller: IETF</t>
            </li>
            <li>
              <t>Specification Document(s): <xref target="status-types"/> of this specification</t>
            </li>
          </ul>
          <t><br/></t>
        </section>
      </section>
      <section anchor="oauth-parameters-registration">
        <name>OAuth Parameters Registration</name>
        <t>This specification requests registration of the following values in the IANA "OAuth Authorization Server Metadata" registry <xref target="IANA.OAuth.Params"/> established by <xref target="RFC8414"/>.</t>
        <ul spacing="normal">
          <li>
            <t>Metadata Name: status_list_aggregation_endpoint</t>
          </li>
          <li>
            <t>Metadata Description: URL of the Authorization Server aggregating OAuth Token Status List URLs for token status management.</t>
          </li>
          <li>
            <t>Change Controller: IESG</t>
          </li>
          <li>
            <t>Reference: <xref target="aggregation"/> of this specification</t>
          </li>
        </ul>
      </section>
      <section anchor="media-type-registration">
        <name>Media Type Registration</name>
        <t>This section requests registration of the following media types <xref target="RFC2046"/> in
the "Media Types" registry <xref target="IANA.MediaTypes"/> in the manner described
in <xref target="RFC6838"/>.</t>
        <t>To indicate that the content is an JWT-based Status List:</t>
        <ul spacing="normal">
          <li>
            <t>Type name: application</t>
          </li>
          <li>
            <t>Subtype name: statuslist+jwt</t>
          </li>
          <li>
            <t>Required parameters: n/a</t>
          </li>
          <li>
            <t>Optional parameters: n/a</t>
          </li>
          <li>
            <t>Encoding considerations: See <xref target="status-list-token-jwt"/> of this specification</t>
          </li>
          <li>
            <t>Security considerations: See <xref target="Security"/> of this specification</t>
          </li>
          <li>
            <t>Interoperability considerations: n/a</t>
          </li>
          <li>
            <t>Published specification: this specification</t>
          </li>
          <li>
            <t>Applications that use this media type: Applications using this specification for updated status information of tokens</t>
          </li>
          <li>
            <t>Fragment identifier considerations: n/a</t>
          </li>
          <li>
            <t>Additional information: n/a</t>
          </li>
          <li>
            <t>Person &amp; email address to contact for further information: Paul Bastian, paul.bastian@posteo.de</t>
          </li>
          <li>
            <t>Intended usage: COMMON</t>
          </li>
          <li>
            <t>Restrictions on usage: none</t>
          </li>
          <li>
            <t>Author: Paul Bastian, paul.bastian@posteo.de</t>
          </li>
          <li>
            <t>Change controller: IETF</t>
          </li>
          <li>
            <t>Provisional registration? No</t>
          </li>
        </ul>
        <t>To indicate that the content is an CWT-based Status List:</t>
        <ul spacing="normal">
          <li>
            <t>Type name: application</t>
          </li>
          <li>
            <t>Subtype name: statuslist+cwt</t>
          </li>
          <li>
            <t>Required parameters: n/a</t>
          </li>
          <li>
            <t>Optional parameters: n/a</t>
          </li>
          <li>
            <t>Encoding considerations: See <xref target="status-list-token-cwt"/> of this specification</t>
          </li>
          <li>
            <t>Security considerations: See <xref target="Security"/> of this specification</t>
          </li>
          <li>
            <t>Interoperability considerations: n/a</t>
          </li>
          <li>
            <t>Published specification: this specification</t>
          </li>
          <li>
            <t>Applications that use this media type: Applications using this specification for updated status information of tokens</t>
          </li>
          <li>
            <t>Fragment identifier considerations: n/a</t>
          </li>
          <li>
            <t>Additional information: n/a</t>
          </li>
          <li>
            <t>Person &amp; email address to contact for further information: Paul Bastian, paul.bastian@posteo.de</t>
          </li>
          <li>
            <t>Intended usage: COMMON</t>
          </li>
          <li>
            <t>Restrictions on usage: none</t>
          </li>
          <li>
            <t>Author: Paul Bastian, paul.bastian@posteo.de</t>
          </li>
          <li>
            <t>Change controller: IETF</t>
          </li>
          <li>
            <t>Provisional registration? No</t>
          </li>
        </ul>
      </section>
      <section anchor="coap-content-type">
        <name>CoAP Content-Format Registrations</name>
        <t>IANA is requested to register the following Content-Format numbers in
the "CoAP Content-Formats" sub-registry, within the "Constrained
RESTful Environments (CoRE) Parameters" Registry <xref target="IANA.Core.Params"/>:</t>
        <ul spacing="normal">
          <li>
            <t>Content Type: application/statuslist+cwt</t>
          </li>
          <li>
            <t>Content Coding: -</t>
          </li>
          <li>
            <t>ID: TBD</t>
          </li>
          <li>
            <t>Reference: this specification</t>
          </li>
        </ul>
      </section>
      <section anchor="x509-certificate-extended-key-purpose-oid-registration">
        <name>X.509 Certificate Extended Key Purpose OID Registration</name>
        <t>IANA is requested to register the following OID "1.3.6.1.5.5.7.3.TBD" in the "SMI Security for PKIX Extended Key Purpose" registry (1.3.6.1.5.5.7.3), this OID is defined in section <xref target="eku"/>.</t>
        <t>IANA is requested to register the following OID "1.3.6.1.5.5.7.0.TBD" in the "SMI Security for PKIX Module Identifier" registry (1.3.6.1.5.5.7.0), this OID is defined in section <xref target="asn1-module"/>.</t>
      </section>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>We would like to thank
Andrii Deinega,
Brian Campbell,
Dan Moore,
Denis Pinkas,
Filip Skokan,
Francesco Marino,
Giuseppe De Marco,
Hannes Tschofenig,
Kristina Yasuda,
Markus Kreusch,
Martijn Haring,
Michael B. Jones,
Micha Kraus,
Michael Schwartz,
Mike Prorock,
Mirko Mollik,
Oliver Terbu,
Orie Steele,
Rifaat Shekh-Yusef,
Rohan Mahy,
Timo Glastra
and
Torsten Lodderstedt</t>
      <t>for their valuable contributions, discussions and feedback to this specification.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC1950">
          <front>
            <title>ZLIB Compressed Data Format Specification version 3.3</title>
            <author fullname="P. Deutsch" initials="P." surname="Deutsch"/>
            <author fullname="J-L. Gailly" surname="J-L. Gailly"/>
            <date month="May" year="1996"/>
            <abstract>
              <t>This specification defines a lossless compressed data format. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1950"/>
          <seriesInfo name="DOI" value="10.17487/RFC1950"/>
        </reference>
        <reference anchor="RFC1951">
          <front>
            <title>DEFLATE Compressed Data Format Specification version 1.3</title>
            <author fullname="P. Deutsch" initials="P." surname="Deutsch"/>
            <date month="May" year="1996"/>
            <abstract>
              <t>This specification defines a lossless compressed data format that compresses data using a combination of the LZ77 algorithm and Huffman coding, with efficiency comparable to the best currently available general-purpose compression methods. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1951"/>
          <seriesInfo name="DOI" value="10.17487/RFC1951"/>
        </reference>
        <reference anchor="RFC2046">
          <front>
            <title>Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="N. Borenstein" initials="N." surname="Borenstein"/>
            <date month="November" year="1996"/>
            <abstract>
              <t>This second document defines the general structure of the MIME media typing system and defines an initial set of media types. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2046"/>
          <seriesInfo name="DOI" value="10.17487/RFC2046"/>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols. This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
        <reference anchor="RFC7515">
          <front>
            <title>JSON Web Signature (JWS)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification. Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7515"/>
          <seriesInfo name="DOI" value="10.17487/RFC7515"/>
        </reference>
        <reference anchor="RFC7519">
          <front>
            <title>JSON Web Token (JWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7519"/>
          <seriesInfo name="DOI" value="10.17487/RFC7519"/>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="RFC8392">
          <front>
            <title>CBOR Web Token (CWT)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="E. Wahlstroem" initials="E." surname="Wahlstroem"/>
            <author fullname="S. Erdtman" initials="S." surname="Erdtman"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="May" year="2018"/>
            <abstract>
              <t>CBOR Web Token (CWT) is a compact means of representing claims to be transferred between two parties. The claims in a CWT are encoded in the Concise Binary Object Representation (CBOR), and CBOR Object Signing and Encryption (COSE) is used for added application-layer security protection. A claim is a piece of information asserted about a subject and is represented as a name/value pair consisting of a claim name and a claim value. CWT is derived from JSON Web Token (JWT) but uses CBOR rather than JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8392"/>
          <seriesInfo name="DOI" value="10.17487/RFC8392"/>
        </reference>
        <reference anchor="RFC8725">
          <front>
            <title>JSON Web Token Best Current Practices</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer"/>
            <author fullname="D. Hardt" initials="D." surname="Hardt"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <date month="February" year="2020"/>
            <abstract>
              <t>JSON Web Tokens, also known as JWTs, are URL-safe JSON-based security tokens that contain a set of claims that can be signed and/or encrypted. JWTs are being widely used and deployed as a simple security token format in numerous protocols and applications, both in the area of digital identity and in other application areas. This Best Current Practices document updates RFC 7519 to provide actionable guidance leading to secure implementation and deployment of JWTs.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="225"/>
          <seriesInfo name="RFC" value="8725"/>
          <seriesInfo name="DOI" value="10.17487/RFC8725"/>
        </reference>
        <reference anchor="RFC8949">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="December" year="2020"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
              <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049. It does not create a new version of the format.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="94"/>
          <seriesInfo name="RFC" value="8949"/>
          <seriesInfo name="DOI" value="10.17487/RFC8949"/>
        </reference>
        <reference anchor="RFC9052">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines the CBOR Object Signing and Encryption (COSE) protocol. This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization. This specification additionally describes how to represent cryptographic keys using CBOR.</t>
              <t>This document, along with RFC 9053, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="96"/>
          <seriesInfo name="RFC" value="9052"/>
          <seriesInfo name="DOI" value="10.17487/RFC9052"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <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="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet. An overview of this approach and model is provided as an introduction. The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms. Standard certificate extensions are described and two Internet-specific extensions are defined. A set of required certificate extensions is specified. The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions. An algorithm for X.509 certification path validation is described. An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC9596">
          <front>
            <title>CBOR Object Signing and Encryption (COSE) "typ" (type) Header Parameter</title>
            <author fullname="M.B. Jones" initials="M.B." surname="Jones"/>
            <author fullname="O. Steele" initials="O." surname="Steele"/>
            <date month="June" year="2024"/>
            <abstract>
              <t>This specification adds the equivalent of the JSON Object Signing and Encryption (JOSE) "typ" (type) header parameter to CBOR Object Signing and Encryption (COSE). This enables the benefits of explicit typing (as defined in RFC 8725, "JSON Web Token Best Current Practices") to be brought to COSE objects. The syntax of the COSE type header parameter value is the same as the existing COSE content type header parameter.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9596"/>
          <seriesInfo name="DOI" value="10.17487/RFC9596"/>
        </reference>
        <reference anchor="IANA.MediaTypes" target="https://www.iana.org/assignments/media-types/media-types.xhtml">
          <front>
            <title>Media Types</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IANA.JOSE" target="https://www.iana.org/assignments/jose/jose.xhtml">
          <front>
            <title>JSON Object Signing and Encryption (JOSE)</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IANA.JWT" target="https://www.iana.org/assignments/jwt/jwt.xhtml">
          <front>
            <title>JSON Web Token Claims</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IANA.CWT" target="https://www.iana.org/assignments/cwt/cwt.xhtml">
          <front>
            <title>CBOR Web Token (CWT) Claims</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IANA.OAuth.Params" target="https://www.iana.org/assignments/oauth-parameters/oauth-parameters.xhtml#authorization-server-metadata">
          <front>
            <title>OAuth Authorization Server Metadata</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IANA.Core.Params" target="https://www.iana.org/assignments/core-parameters/core-parameters.xhtml">
          <front>
            <title>Constrained RESTful Environments (CoRE) Parameters</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CORS" target="https://fetch.spec.whatwg.org/commit-snapshots/4775fcb48042c8411df497c0b7cf167b4240004f/#http-cors-protocol">
          <front>
            <title>Fetch Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="X.680">
          <front>
            <title>Information Technology - Abstract Syntax Notation One (ASN.1): Specification of basic notation</title>
            <author>
              <organization>International Telecommunications Union</organization>
            </author>
            <date year="2021" month="February"/>
          </front>
        </reference>
        <reference anchor="X.690">
          <front>
            <title>Information Technology - ASN.1 encoding rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)</title>
            <author>
              <organization>International Telecommunications Union</organization>
            </author>
            <date year="2021" month="February"/>
          </front>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC6749">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author fullname="D. Hardt" initials="D." role="editor" surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf. This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="RFC7662">
          <front>
            <title>OAuth 2.0 Token Introspection</title>
            <author fullname="J. Richer" initials="J." role="editor" surname="Richer"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>This specification defines a method for a protected resource to query an OAuth 2.0 authorization server to determine the active state of an OAuth 2.0 token and to determine meta-information about this token. OAuth 2.0 deployments can use this method to convey information about the authorization context of the token from the authorization server to the protected resource.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7662"/>
          <seriesInfo name="DOI" value="10.17487/RFC7662"/>
        </reference>
        <reference anchor="RFC7800">
          <front>
            <title>Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="April" year="2016"/>
            <abstract>
              <t>This specification describes how to declare in a JSON Web Token (JWT) that the presenter of the JWT possesses a particular proof-of- possession key and how the recipient can cryptographically confirm proof of possession of the key by the presenter. Being able to prove possession of a key is also sometimes described as the presenter being a holder-of-key.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7800"/>
          <seriesInfo name="DOI" value="10.17487/RFC7800"/>
        </reference>
        <reference anchor="RFC8414">
          <front>
            <title>OAuth 2.0 Authorization Server Metadata</title>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <date month="June" year="2018"/>
            <abstract>
              <t>This specification defines a metadata format that an OAuth 2.0 client can use to obtain the information needed to interact with an OAuth 2.0 authorization server, including its endpoint locations and authorization server capabilities.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8414"/>
          <seriesInfo name="DOI" value="10.17487/RFC8414"/>
        </reference>
        <reference anchor="RFC9458">
          <front>
            <title>Oblivious HTTP</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <author fullname="C. A. Wood" initials="C. A." surname="Wood"/>
            <date month="January" year="2024"/>
            <abstract>
              <t>This document describes Oblivious HTTP, a protocol for forwarding encrypted HTTP messages. Oblivious HTTP allows a client to make multiple requests to an origin server without that server being able to link those requests to the client or to identify the requests as having come from the same client, while placing only limited trust in the nodes used to forward the messages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9458"/>
          <seriesInfo name="DOI" value="10.17487/RFC9458"/>
        </reference>
        <reference anchor="SD-JWT.VC">
          <front>
            <title>SD-JWT-based Verifiable Credentials (SD-JWT VC)</title>
            <author fullname="Oliver Terbu" initials="O." surname="Terbu">
              <organization>MATTR</organization>
            </author>
            <author fullname="Daniel Fett" initials="D." surname="Fett">
              <organization>Authlete Inc.</organization>
            </author>
            <author fullname="Brian Campbell" initials="B." surname="Campbell">
              <organization>Ping Identity</organization>
            </author>
            <date day="6" month="November" year="2025"/>
            <abstract>
              <t>   This specification describes data formats as well as validation and
   processing rules to express Verifiable Credentials with JSON payloads
   with and without selective disclosure based on the SD-JWT
   [I-D.ietf-oauth-selective-disclosure-jwt] format.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-sd-jwt-vc-13"/>
        </reference>
        <reference anchor="ISO.mdoc">
          <front>
            <title>ISO/IEC 18013-5:2021 ISO-compliant driving licence</title>
            <author>
              <organization>ISO/IEC JTC 1/SC 17</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="smith2020let" target="https://www.ndss-symposium.org/ndss-paper/lets-revoke-scalable-global-certificate-revocation/">
          <front>
            <title>Let's revoke: Scalable global certificate revocation</title>
            <author initials="T." surname="Smith" fullname="Trevor Smith">
              <organization>Brigham Young University</organization>
            </author>
            <author initials="L." surname="Dickinson" fullname="Luke Dickinson">
              <organization>Brigham Young University</organization>
            </author>
            <author initials="K." surname="Seamons" fullname="Kent Seamons">
              <organization>Brigham Young University</organization>
            </author>
            <date>n.d.</date>
          </front>
          <seriesInfo name="Network and Distributed Systems Security (NDSS) Symposium 2020" value=""/>
        </reference>
        <reference anchor="W3C.SL" target="https://www.w3.org/TR/vc-bitstring-status-list/">
          <front>
            <title>W3C Bitstring Status List v1.0</title>
            <author initials="D." surname="Longley" fullname="Dave Longley">
              <organization>Digital Bazaar</organization>
            </author>
            <author initials="M." surname="Sporny" fullname="Manu Sporny">
              <organization>Digital Bazaar</organization>
            </author>
            <author initials="O." surname="Steele" fullname="Orie Steele">
              <organization>Transmute</organization>
            </author>
            <date year="2024" month="December"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 1650?>

<section anchor="asn1-module">
      <name>ASN.1 Module</name>
      <t>The following module adheres to ASN.1 specifications <xref target="X.680"/> and <xref target="X.690"/>.</t>
      <sourcecode markers="true"><![CDATA[

  OauthStatusSigning-EKU
    { iso(1) identified-organization(3) dod(6) internet(1)
      security(5) mechanisms(5) pkix(7) id-mod(0)
      id-mod-oauth-status-signing-eku (TBD) }

  DEFINITIONS IMPLICIT TAGS ::=
  BEGIN

  -- OID Arc

  id-kp OBJECT IDENTIFIER ::=
    { iso(1) identified-organization(3) dod(6) internet(1)
      security(5) mechanisms(5) pkix(7) kp(3) }

  -- OAuth Extended Key Usage

  id-kp-oauthStatusSigning OBJECT IDENTIFIER ::= { id-kp TBD }

  END

]]></sourcecode>
    </section>
    <section anchor="size-comparison">
      <name>Size comparison</name>
      <t>The following tables show a size comparison for a Status List (compressed byte array as defined in <xref target="status-list-byte-array"/>) and a compressed Byte Array of UUIDs (as an approximation to the list of IDs of Referenced Tokens in a Certificate Revocation List). Readers must be aware that these are not sizes for complete Status List Tokens in JSON/CBOR nor Certificate Revocation Lists (CRLs), as they don't contain metadata, certificates and signatures.</t>
      <t>If no further metadata is provided in Status List Tokens or CRLs, then the size of Status Lists or arrays of Certificate ids (represented as UUIDs) will be the main factors deciding on the overall size of a Status List Token or CRL respectively.</t>
      <section numbered="false" anchor="size-of-status-lists-for-varying-amount-of-entries-and-revocation-rates">
        <name>Size of Status Lists for varying amount of entries and revocation rates</name>
        <table>
          <name>Status List Size examples for varying amount of entries and revocation rates</name>
          <thead>
            <tr>
              <th align="left">Size</th>
              <th align="left">0.01%</th>
              <th align="left">0.1%</th>
              <th align="left">1%</th>
              <th align="left">2%</th>
              <th align="left">5%</th>
              <th align="left">10%</th>
              <th align="left">25%</th>
              <th align="left">50%</th>
              <th align="left">75%</th>
              <th align="left">100%</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">100k</td>
              <td align="left">81 B</td>
              <td align="left">252 B</td>
              <td align="left">1.4 KB</td>
              <td align="left">2.3 KB</td>
              <td align="left">4.5 KB</td>
              <td align="left">6.9 KB</td>
              <td align="left">10.2 KB</td>
              <td align="left">12.2 KB</td>
              <td align="left">10.2 KB</td>
              <td align="left">35 B</td>
            </tr>
            <tr>
              <td align="left">1M</td>
              <td align="left">442 B</td>
              <td align="left">2.2 KB</td>
              <td align="left">13.7 KB</td>
              <td align="left">23.0 KB</td>
              <td align="left">43.9 KB</td>
              <td align="left">67.6 KB</td>
              <td align="left">102.2 KB</td>
              <td align="left">122.1 KB</td>
              <td align="left">102.4 KB</td>
              <td align="left">144 B</td>
            </tr>
            <tr>
              <td align="left">10M</td>
              <td align="left">3.8 KB</td>
              <td align="left">21.1 KB</td>
              <td align="left">135.4 KB</td>
              <td align="left">230.0 KB</td>
              <td align="left">437.0 KB</td>
              <td align="left">672.9 KB</td>
              <td align="left">1023.4 KB</td>
              <td align="left">1.2 MB</td>
              <td align="left">1023.5 KB</td>
              <td align="left">1.2 KB</td>
            </tr>
            <tr>
              <td align="left">100M</td>
              <td align="left">38.3 KB</td>
              <td align="left">213.0 KB</td>
              <td align="left">1.3 MB</td>
              <td align="left">2.2 MB</td>
              <td align="left">4.3 MB</td>
              <td align="left">6.6 MB</td>
              <td align="left">10.0 MB</td>
              <td align="left">11.9 MB</td>
              <td align="left">10.0 MB</td>
              <td align="left">11.9 KB</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section numbered="false" anchor="size-of-compressed-array-of-uuidv4-128-bit-uuids-for-varying-amount-of-entries-and-revocation-rates">
        <name>Size of compressed array of UUIDv4 (128 bit UUIDs) for varying amount of entries and revocation rates</name>
        <t>This is a simple approximation of a Certificate Revocation List using an array of UUIDs without any additional metadata (128 bit UUID per revoked entry).</t>
        <table>
          <name>Size examples for 128 bit UUIDs for varying amount of entries and revocation rates</name>
          <thead>
            <tr>
              <th align="left">Size</th>
              <th align="left">0.01%</th>
              <th align="left">0.1%</th>
              <th align="left">1%</th>
              <th align="left">2%</th>
              <th align="left">5%</th>
              <th align="left">10%</th>
              <th align="left">25%</th>
              <th align="left">50%</th>
              <th align="left">75%</th>
              <th align="left">100%</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">100k</td>
              <td align="left">219 B</td>
              <td align="left">1.6 KB</td>
              <td align="left">15.4 KB</td>
              <td align="left">29.7 KB</td>
              <td align="left">78.1 KB</td>
              <td align="left">154.9 KB</td>
              <td align="left">392.9 KB</td>
              <td align="left">783.1 KB</td>
              <td align="left">1.1 MB</td>
              <td align="left">1.5 MB</td>
            </tr>
            <tr>
              <td align="left">1M</td>
              <td align="left">1.6 KB</td>
              <td align="left">16.4 KB</td>
              <td align="left">157.7 KB</td>
              <td align="left">310.4 KB</td>
              <td align="left">781 KB</td>
              <td align="left">1.5 MB</td>
              <td align="left">3.8 MB</td>
              <td align="left">7.6 MB</td>
              <td align="left">11.4 MB</td>
              <td align="left">15.3 MB</td>
            </tr>
            <tr>
              <td align="left">10M</td>
              <td align="left">15.3 KB</td>
              <td align="left">155.9 KB</td>
              <td align="left">1.5 MB</td>
              <td align="left">3.1 MB</td>
              <td align="left">7.6 MB</td>
              <td align="left">15.2 MB</td>
              <td align="left">38.2 MB</td>
              <td align="left">76.3 MB</td>
              <td align="left">114.4 MB</td>
              <td align="left">152.6 MB</td>
            </tr>
            <tr>
              <td align="left">100M</td>
              <td align="left">157.6 KB</td>
              <td align="left">1.5 MB</td>
              <td align="left">15.3 MB</td>
              <td align="left">30.5 MB</td>
              <td align="left">76.3 MB</td>
              <td align="left">152.6 MB</td>
              <td align="left">381.4 MB</td>
              <td align="left">762.9 MB</td>
              <td align="left">1.1 GB</td>
              <td align="left">1.5 GB</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
    <section anchor="test-vectors">
      <name>Test vectors for Status List encoding</name>
      <t>All examples here are given in the form of JSON or CBOR payloads. The examples are encoded according to <xref target="status-list-json"/> for JSON and <xref target="status-list-cbor"/> for CBOR. The CBOR examples are displayed as hex values.</t>
      <t>All values that are not mentioned for the examples below can be assumed to be 0 (VALID). All examples are initialized with a size of 2^20 entries.</t>
      <section anchor="bit-status-list">
        <name>1 bit Status List</name>
        <t>The following example uses a 1 bit Status List (2 possible values):</t>
        <artwork><![CDATA[
status[0] = 0b1
status[1993] = 0b1
status[25460] = 0b1
status[159495] = 0b1
status[495669] = 0b1
status[554353] = 0b1
status[645645] = 0b1
status[723232] = 0b1
status[854545] = 0b1
status[934534] = 0b1
status[1000345] = 0b1
]]></artwork>
        <t>JSON encoding:</t>
        <artwork><![CDATA[
{
  "bits": 1,
  "lst": "eNrt3AENwCAMAEGogklACtKQPg9LugC9k_ACvreiogE
  AAKkeCQAAAAAAAAAAAAAAAAAAAIBylgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAXG9IAAAAAAAAAPwsJAAAAAAAAAAAAAAAvhsSAAAAAAAAAAA
  A7KpLAAAAAAAAAAAAAAAAAAAAAJsLCQAAAAAAAAAAADjelAAAAAAAAAAAKjDMAQAAA
  ACAZC8L2AEb"
}
]]></artwork>
        <t>CBOR encoding:</t>
        <artwork><![CDATA[
a2646269747301636c737458bd78daeddc010dc0200c0041a88249400ad2903e0f4b
ba00bd93f002beb7a2a2010000a91e09000000000000000000000000000000807296
04000000000000000000000000000000000000000000000000000000000000000000
000000000000005c6f4800000000000000fc2c240000000000000000000000be1b12
000000000000000000ecaa4b000000000000000000000000000000009b0b09000000
00000000000038de9400000000000000002a30cc010000000080642f0bd8011b
]]></artwork>
      </section>
      <section anchor="bit-status-list-1">
        <name>2 bit Status List</name>
        <t>The following example uses a 2 bit Status List (4 possible values):</t>
        <artwork><![CDATA[
status[0] = 0b01
status[1993] = 0b10
status[25460]= 0b01
status[159495] = 0b11
status[495669] = 0b01
status[554353] = 0b01
status[645645] = 0b10
status[723232] = 0b01
status[854545] = 0b01
status[934534] = 0b10
status[1000345] = 0b11
]]></artwork>
        <t>JSON encoding:</t>
        <artwork><![CDATA[
{
  "bits": 2,
  "lst": "eNrt2zENACEQAEEuoaBABP5VIO01fCjIHTMStt9ovGV
  IAAAAAABAbiEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEB5WwIAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAID0ugQAAAAAAAAAAAAAAAAAQG12SgAAA
  AAAAAAAAAAAAAAAAAAAAAAAAOCSIQEAAAAAAAAAAAAAAAAAAAAAAAD8ExIAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwJEuAQAAAAAAAAAAAAAAAAAAAAAAAMB9S
  wIAAAAAAAAAAAAAAAAAAACoYUoAAAAAAAAAAAAAAEBqH81gAQw"
}
]]></artwork>
        <t>CBOR encoding:</t>
        <artwork><![CDATA[
a2646269747302636c737459013d78daeddb310d00211000412ea1a04004fe5520ed
357c28c81d3312b6df68bc65480000000000406e2101000000000000000000000000
0000000000000000000000000000000000000040795b020000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
0080f4ba0400000000000000000000000000406d764a000000000000000000000000
000000000000000000e0922101000000000000000000000000000000000000fc1312
00000000000000000000000000000000000000000000000000000000000000c0912e
01000000000000000000000000000000000000c07d4b020000000000000000000000
00000000a8614a0000000000000000000000406a1fcd60010c
]]></artwork>
      </section>
      <section anchor="bit-status-list-2">
        <name>4 bit Status List</name>
        <t>The following example uses a 4 bit Status List (16 possible values):</t>
        <artwork><![CDATA[
status[0] = 0b0001
status[1993] = 0b0010
status[35460] = 0b0011
status[459495] = 0b0100
status[595669] = 0b0101
status[754353] = 0b0110
status[845645] = 0b0111
status[923232] = 0b1000
status[924445] = 0b1001
status[934534] = 0b1010
status[1004534] = 0b1011
status[1000345] = 0b1100
status[1030203] = 0b1101
status[1030204] = 0b1110
status[1030205] = 0b1111
]]></artwork>
        <t>JSON encoding:</t>
        <artwork><![CDATA[
{
  "bits": 4,
  "lst": "eNrt0EENgDAQADAIHwImkIIEJEwCUpCEBBQRHOy35Li
  1EjoOQGabAgAAAAAAAAAAAAAAAAAAACC1SQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABADrsCAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAADoxaEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIoCgAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACArpwKAAAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAGhqVkAzlwIAAAAAiGVRAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAAAAAAAAAAAAAAABx3AoAgLpVAQAAAAAAAAAAAAAAwM89rwMAAAAAAAAAA
  AjsA9xMBMA"
}
]]></artwork>
        <t>CBOR encoding:</t>
        <artwork><![CDATA[
a2646269747304636c737459024878daedd0410d8030100030081f0226908204244c
025290840414111cecb7e4b8b5123a0e40669b020000000000000000000000000000
0020b549010000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
0000000000400ebb0200000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
000000000000e8c5a100000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000082280a00000000000000000000000000
00000000000000000000000000000000000000000000000000000000000080ae9c0a
00000000000000000000000000000000000000000000000000000000000000000000
000000686a5640339702000000008865510000000000000000000000000000000000
00000000000000000000000000000071dc0a0080ba55010000000000000000000000
c0cf3daf03000000000000000008ec03dc4c04c0
]]></artwork>
      </section>
      <section anchor="bit-status-list-3">
        <name>8 bit Status List</name>
        <t>The following example uses a 8 bit Status List (256 possible values):</t>
        <artwork><![CDATA[
status[233478] = 0b00000000
status[52451] = 0b00000001
status[576778] = 0b00000010
status[513575] = 0b00000011
status[468106] = 0b00000100
status[292632] = 0b00000101
status[214947] = 0b00000110
status[182323] = 0b00000111
status[884834] = 0b00001000
status[66653] = 0b00001001
status[62489] = 0b00001010
status[196493] = 0b00001011
status[458517] = 0b00001100
status[487925] = 0b00001101
status[55649] = 0b00001110
status[416992] = 0b00001111
status[879796] = 0b00010000
status[462297] = 0b00010001
status[942059] = 0b00010010
status[583408] = 0b00010011
status[13628] = 0b00010100
status[334829] = 0b00010101
status[886286] = 0b00010110
status[713557] = 0b00010111
status[582738] = 0b00011000
status[326064] = 0b00011001
status[451545] = 0b00011010
status[705889] = 0b00011011
status[214350] = 0b00011100
status[194502] = 0b00011101
status[796765] = 0b00011110
status[202828] = 0b00011111
status[752834] = 0b00100000
status[721327] = 0b00100001
status[554740] = 0b00100010
status[91122] = 0b00100011
status[963483] = 0b00100100
status[261779] = 0b00100101
status[793844] = 0b00100110
status[165255] = 0b00100111
status[614839] = 0b00101000
status[758403] = 0b00101001
status[403258] = 0b00101010
status[145867] = 0b00101011
status[96100] = 0b00101100
status[477937] = 0b00101101
status[606890] = 0b00101110
status[167335] = 0b00101111
status[488197] = 0b00110000
status[211815] = 0b00110001
status[797182] = 0b00110010
status[582952] = 0b00110011
status[950870] = 0b00110100
status[765108] = 0b00110101
status[341110] = 0b00110110
status[776325] = 0b00110111
status[745056] = 0b00111000
status[439368] = 0b00111001
status[559893] = 0b00111010
status[149741] = 0b00111011
status[358903] = 0b00111100
status[513405] = 0b00111101
status[342679] = 0b00111110
status[969429] = 0b00111111
status[795775] = 0b01000000
status[566121] = 0b01000001
status[460566] = 0b01000010
status[680070] = 0b01000011
status[117310] = 0b01000100
status[480348] = 0b01000101
status[67319] = 0b01000110
status[661552] = 0b01000111
status[841303] = 0b01001000
status[561493] = 0b01001001
status[138807] = 0b01001010
status[442463] = 0b01001011
status[659927] = 0b01001100
status[445910] = 0b01001101
status[1046963] = 0b01001110
status[829700] = 0b01001111
status[962282] = 0b01010000
status[299623] = 0b01010001
status[555493] = 0b01010010
status[292826] = 0b01010011
status[517215] = 0b01010100
status[551009] = 0b01010101
status[898490] = 0b01010110
status[837603] = 0b01010111
status[759161] = 0b01011000
status[459948] = 0b01011001
status[290102] = 0b01011010
status[1034977] = 0b01011011
status[190650] = 0b01011100
status[98810] = 0b01011101
status[229950] = 0b01011110
status[320531] = 0b01011111
status[335506] = 0b01100000
status[885333] = 0b01100001
status[133227] = 0b01100010
status[806915] = 0b01100011
status[800313] = 0b01100100
status[981571] = 0b01100101
status[527253] = 0b01100110
status[24077] = 0b01100111
status[240232] = 0b01101000
status[559572] = 0b01101001
status[713399] = 0b01101010
status[233941] = 0b01101011
status[615514] = 0b01101100
status[911768] = 0b01101101
status[331680] = 0b01101110
status[951527] = 0b01101111
status[6805] = 0b01110000
status[552366] = 0b01110001
status[374660] = 0b01110010
status[223159] = 0b01110011
status[625884] = 0b01110100
status[417146] = 0b01110101
status[320527] = 0b01110110
status[784154] = 0b01110111
status[338792] = 0b01111000
status[1199] = 0b01111001
status[679804] = 0b01111010
status[1024680] = 0b01111011
status[40845] = 0b01111100
status[234603] = 0b01111101
status[761225] = 0b01111110
status[644903] = 0b01111111
status[502167] = 0b10000000
status[121477] = 0b10000001
status[505144] = 0b10000010
status[165165] = 0b10000011
status[179628] = 0b10000100
status[1019195] = 0b10000101
status[145149] = 0b10000110
status[263738] = 0b10000111
status[269256] = 0b10001000
status[996739] = 0b10001001
status[346296] = 0b10001010
status[555864] = 0b10001011
status[887384] = 0b10001100
status[444173] = 0b10001101
status[421844] = 0b10001110
status[653716] = 0b10001111
status[836747] = 0b10010000
status[783119] = 0b10010001
status[918762] = 0b10010010
status[946835] = 0b10010011
status[253764] = 0b10010100
status[519895] = 0b10010101
status[471224] = 0b10010110
status[134272] = 0b10010111
status[709016] = 0b10011000
status[44112] = 0b10011001
status[482585] = 0b10011010
status[461829] = 0b10011011
status[15080] = 0b10011100
status[148883] = 0b10011101
status[123467] = 0b10011110
status[480125] = 0b10011111
status[141348] = 0b10100000
status[65877] = 0b10100001
status[692958] = 0b10100010
status[148598] = 0b10100011
status[499131] = 0b10100100
status[584009] = 0b10100101
status[1017987] = 0b10100110
status[449287] = 0b10100111
status[277478] = 0b10101000
status[991262] = 0b10101001
status[509602] = 0b10101010
status[991896] = 0b10101011
status[853666] = 0b10101100
status[399318] = 0b10101101
status[197815] = 0b10101110
status[203278] = 0b10101111
status[903979] = 0b10110000
status[743015] = 0b10110001
status[888308] = 0b10110010
status[862143] = 0b10110011
status[979421] = 0b10110100
status[113605] = 0b10110101
status[206397] = 0b10110110
status[127113] = 0b10110111
status[844358] = 0b10111000
status[711569] = 0b10111001
status[229153] = 0b10111010
status[521470] = 0b10111011
status[401793] = 0b10111100
status[398896] = 0b10111101
status[940810] = 0b10111110
status[293983] = 0b10111111
status[884749] = 0b11000000
status[384802] = 0b11000001
status[584151] = 0b11000010
status[970201] = 0b11000011
status[523882] = 0b11000100
status[158093] = 0b11000101
status[929312] = 0b11000110
status[205329] = 0b11000111
status[106091] = 0b11001000
status[30949] = 0b11001001
status[195586] = 0b11001010
status[495723] = 0b11001011
status[348779] = 0b11001100
status[852312] = 0b11001101
status[1018463] = 0b11001110
status[1009481] = 0b11001111
status[448260] = 0b11010000
status[841042] = 0b11010001
status[122967] = 0b11010010
status[345269] = 0b11010011
status[794764] = 0b11010100
status[4520] = 0b11010101
status[818773] = 0b11010110
status[556171] = 0b11010111
status[954221] = 0b11011000
status[598210] = 0b11011001
status[887110] = 0b11011010
status[1020623] = 0b11011011
status[324632] = 0b11011100
status[398244] = 0b11011101
status[622241] = 0b11011110
status[456551] = 0b11011111
status[122648] = 0b11100000
status[127837] = 0b11100001
status[657676] = 0b11100010
status[119884] = 0b11100011
status[105156] = 0b11100100
status[999897] = 0b11100101
status[330160] = 0b11100110
status[119285] = 0b11100111
status[168005] = 0b11101000
status[389703] = 0b11101001
status[143699] = 0b11101010
status[142524] = 0b11101011
status[493258] = 0b11101100
status[846778] = 0b11101101
status[251420] = 0b11101110
status[516351] = 0b11101111
status[83344] = 0b11110000
status[171931] = 0b11110001
status[879178] = 0b11110010
status[663475] = 0b11110011
status[546865] = 0b11110100
status[428362] = 0b11110101
status[658891] = 0b11110110
status[500560] = 0b11110111
status[557034] = 0b11111000
status[830023] = 0b11111001
status[274471] = 0b11111010
status[629139] = 0b11111011
status[958869] = 0b11111100
status[663071] = 0b11111101
status[152133] = 0b11111110
status[19535] = 0b11111111
]]></artwork>
        <t>JSON encoding:</t>
        <artwork><![CDATA[
{
  "bits": 8,
  "lst": "eNrt0WOQM2kYhtGsbdu2bdu2bdu2bdu2bdu2jVnU1my
  -SWYm6U5enFPVf7ue97orFYAo7CQBAACQuuckAABStqUEAAAAAAAAtN6wEgAE71QJA
  AAAAIrwhwQAAAAAAdtAAgAAAAAAACLwkAQAAAAAAAAAAACUaFcJAACAeJwkAQAAAAA
  AAABQvL4kAAAAWmJwCQAAAAAAAAjAwBIAAAB06ywJoDKQBARpfgkAAAAAAAAAAAAAA
  AAAAACo50sJAAAAAAAAAOiRcSQAAAAAgAJNKgEAAG23mgQAAAAAAECw3pUAQvegBAA
  AAAAAAADduE4CAAAAyjSvBAAQiw8koHjvSABAb-wlARCONyVoxtMSZOd0CQAAAOjWD
  RKQmLckAAAAAACysLYEQGcnSAAAAAAQooUlAABI15kSAIH5RAIgLB9LABC4_SUgGZN
  IAABAmM6RoLbTJIASzCIBAEAhfpcAAAAAAABquk8CAAAAAAAAaJl9SvvzBOICAFWmk
  IBgfSgBAAAANOgrCQAAAAAAAADStK8EAAC03gASAAAAAAAAAADFWFUCAAAAMjOaBEA
  DHpYAQjCIBADduFwCAAAAAGitMSSI3BUSAECOHpAA6IHrJQAAAAAAsjeVBAAAKRpVA
  orWvwQAAAAAAAAAkKRtJAAAAAAAgCbcLAF0bXUJAAAAoF02kYDg7CYBAAAAAEB6NpQ
  AAAAAAAAAAAAAAEr1uQQAAF06VgIAAAAAAAAAqDaeBAAQqgMkAAAAAABogQMlAAAAA
  AAa87MEAAAQiwslAAAAAAAAAAAAAAAAMrOyBAAAiekv-hcsY0Sgne6QAAAAAAAgaUt
  JAAAAAAAAAAAAAAAAAAAAAAAAAADwt-07vjVkAAAAgDy8KgFAUEaSAAAAAJL3vgQAW
  dhcAgAAoBHDSUDo1pQAAACI2o4SAABZm14CALoyuwQAAPznGQkgZwdLAAAQukclAAA
  AAAAAAAAAgKbMKgEAAAAAAAAAAAAAAAAAAECftpYAAAAAAAAAAAAACnaXBAAAAADk7
  iMJAAAAAAAAAABqe00CAnGbBBG4TAIAgFDdKgFAXCaWAAAAAAAAAAAAAAAAAKAJQwR
  72XbGAQAAAKAhh0sAAAAAAABQgO8kAAAAAAAAAAAAACAaM0kAAAC5W0QCAIJ3mAQAx
  GwxCQAA6nhSAsjZBRIAANEbWQIAAAAAaJE3JACAwA0qAUBIVpKAlphbAiAPp0iQnKE
  kAAAAAAAgBP1KAAAAdOl4CQAAAAAAAPjLZBIAAG10RtrPm8_CAEBMTpYAAAAAAIjQY
  BL8z5QSAAAAAEDYPpUAACAsj0gAAADQkHMlAAjHDxIA0Lg9JQAAgHDsLQEAAABAQS6
  WAAAAgLjNFs2l_RgLAIAEfCEBlGZZCQAAaIHjJACgtlskAAAozb0SAAAAVFtfAgAAA
  AAAAAAAAAAAAAAAAAAAAKDDtxIAAAAAVZaTAKB5W0kAANCAsSUgJ0tL0GqHSNBbL0g
  AZflRAgCARG0kQXNmlgCABiwkAQAAAEB25pIAAAAAAAAAAAAAoFh9SwAAAAAAADWNm
  OSrpjFsEoaRgDKcF9Q1dxsEAAAAAAAAAAAAAAAAgPZ6SQIAAAAAAAAAgChMLgEAAAA
  AAAAAqZlQAsK2qQQAAAAAAAD06XUJAAAAqG9bCQAAgLD9IgEAAAAAAAAAAAAAAAAAA
  EBNe0gAAAAAAAAAAEBPHSEBAAAAlOZtCYA4fS8B0GFRCQAo0gISAOTgNwmC840EAAA
  AAAAAAAAAAAAAAAAAUJydJfjXPBIAAAAAAAAAAAAAAABk6WwJAAAAAAAAAAAAAAAAq
  G8UCQAAgPpOlAAAIA83SQAANWwc9HUjGAgAAAAAAACAusaSAAAAAAAAAAAAAAAAAAA
  AAAAAAAAAqHKVBACQjxklAAAAAAAAAKBHxpQAAAAAACBME0lAdlaUAACyt7sEAAAA0
  Nl0EgAAAAAAAAAAAABA-8wgAQAAAAAAAKU4SgKgUtlBAgAAAAAAAAAAgMCMLwEE51k
  JICdzSgCJGl2CsE0tAQAA0L11JQAAAAAAAAjUOhIAAAAAAAAAAAAAAGTqeQkAAAAAA
  AAAAAAAKM8SEjTrJwkAAAAAAACocqQEULgVJAAAACjDUxJUKgtKAAAAqbpRAgCA0n0
  mAQAAAABAGzwmAUCTLpUAAAAAAAAAAEjZNRIAAAAAAAAAAAAAAAAAAAAA8I-vJaAlh
  pQAAAAAAHrvzjJ-OqCuuVlLAojP8BJAr70sQZVDJYAgXS0BAAAAAAAAAAAAtMnyEgA
  AAAAAFONKCQAAAAAAAADorc0kAAAAAAAAgDqOlgAAAAAAAAAAAADIwv0SAAAAAAAAA
  AAAAADBuV0CIFVDSwAAAABAAI6RAAAAAGIwrQSEZAsJAABouRclAAAAAKDDrxIAAAA
  0bkkJgFiMKwEAAAAAAHQyhwRk7h4JAAAAAAAAAAAgatdKAACUYj0JAAAAAAAAAAAAQ
  nORBLTFJRIAAAAAkIaDJAAAAJryngQAAAAAAAAAAAA98oQEAAAAAAAAAEC2zpcgWY9
  LQKL2kwAgGK9IAAAAAPHaRQIAAAAAAAAAAADIxyoSAAAAAAAAAAAAAADQFotLAECz_
  gQ1PX-B"
}
]]></artwork>
        <t>CBOR encoding:</t>
        <artwork><![CDATA[
a2646269747308636c73745907b078daedd1639033691886d1ac6ddbb66ddbb66ddb
b66ddbb66ddbb68d59d4d66cbe496626e94e5e9c53d57fbb9ef7ba2b158028ec2401
000090bae724000052b6a504000000000000b4deb0120004ef5409000000008af087
040000000001db400200000000000022f09004000000000000000000946857090000
80789c24010000000000000050bcbe240000005a62700900000000000008c0c01200
000074eb2c09a032900404697e09000000000000000000000000000000a8e74b0900
000000000000e89171240000000080024d2a0100006db79a04000000000040b0de95
0042f7a00400000000000000ddb84e02000000ca34af0400108b0f24a078ef480040
6fec2501108e372568c6d31264e77409000000e8d60d129098b7240000000000b2b0
b604406727480000000010a28525000048d799120081f94402202c1f4b0010b8fd25
2019934800004098ce91a0b6d3248012cc22010040217e970000000000006aba4f02
00000000000068997d4afbf304e2020055a69080607d280100000034e82b09000000
00000000d2b4af040000b4de00120000000000000000c558550200000032339a0440
031e96004230880400ddb85c020000000068ad312488dc151200408e1e9000e881eb
250000000000b23795040000291a55028ad6bf040000000000000090a46d24000000
00008026dc2c01746d7509000000a05d369180e0ec260100000000407a3694000000
00000000000000004af5b90400005d3a560200000000000000a8369e040010aa0324
00000000006881032500000000001af3b3040000108b0b2500000000000000000000
000032b3b204000089e92ffa172c6344a09dee90000000000020694b490000000000
000000000000000000000000000000f0b7ed3bbe3564000000803cbc2a0140504692
0000000092f7be040059d85c020000a011c34940e8d69400000088da8e120000599b
5e0200ba32bb040000fce719092067074b000010ba472500000000000000000080a6
cc2a010000000000000000000000000000409fb696000000000000000000000a7697
0400000000e4ee230900000000000000006a7b4d0202719b0411b84c02008050dd2a
01405c269600000000000000000000000000a00943047bd976c601000000a021874b
0000000000005080ef2400000000000000000000201a3349000000b95b4402008277
980400c46c31090000ea785202c8d905120000d11b590200000000689137240080c0
0d2a01404856928096985b02200fa748909ca12400000000002004fd4a00000074e9
7809000000000000f8cb641200006d7446dacf9bcfc200404c4e96000000000088d0
6012fccf94120000000040d83e950000202c8f48000000d09073250008c70f1200d0
b83d2500008070ec2d0100000040412e9600000080b8cd16cda5fd180b0080047c21
019466590900006881e32400a0b65b24000028cdbd12000000545b5f020000000000
00000000000000000000000000a0c3b7120000000055969300a0795b490000d080b1
2520274b4bd06a8748d05b2f480065f951020080446d24417366960080062c240100
00004076e69200000000000000000000a0587d4b000000000000358d98e4aba6316c
12869180329c17d435771b0400000000000000000000000080f67a49020000000000
000080284c2e0100000000000000a9995002c2b6a904000000000000f4e975090000
00a86f5b09000080b0fd22010000000000000000000000000000404d7b4800000000
00000000404f1d210100000094e66d0980387d2f01d06151090028d2021200e4e037
0982f38d04000000000000000000000000000000509c9d25f8d73c12000000000000
00000000000064e96c09000000000000000000000000a86f1409000080fa4e940000
200f37490000356c1cf47523180800000000000080bac69200000000000000000000
0000000000000000000000a872950400908f192500000000000000a047c694000000
0000204c1349407656940000b2b7bb04000000d0d974120000000000000000000040
fbcc2001000000000000a5384a02a052d94102000000000000000080c08c2f0104e7
59092027734a00891a5d82b04d2d010000d0bd752500000000000008d43a12000000
000000000000000064ea79090000000000000000000028cf121234eb270900000000
0000a872a40450b8152400000028c35312542a0b4a000000a9ba51020080d27d2601
00000000401b3c260140932e95000000000000000048d93512000000000000000000
00000000000000f08faf25a025869400000000007aefce327e3aa0aeb9594b0288cf
f01240afbd2c4195432580205d2d01000000000000000000b4c9f212000000000014
e34a0900000000000000e8adcd24000000000000803a8e9600000000000000000000
c8c2fd120000000000000000000000c1b95d022055434b0000000040008e91000000
006230ad0484640b09000068b9172500000000a0c3af12000000346e490980588c2b
0100000000007432870464ee1e090000000000000000206ad74a000094623d090000
0000000000000042739104b4c5251200000000908683240000009af29e0400000000
00000000003df284040000000000000040b6ce9720598f4b40a2f693002018af4800
000000f1da4502000000000000000000c8c72a120000000000000000000000d0168b
4b0040b3fe04353d7f81
]]></artwork>
      </section>
    </section>
    <section numbered="false" anchor="document-history">
      <name>Document History</name>
      <t>[[ To be removed from the final specification ]]</t>
      <t>-14</t>
      <ul spacing="normal">
        <li>
          <t>use binary value encoding for all test vectors (display purposes only)</t>
        </li>
        <li>
          <t>removed bytes from graphic that were intepreted as padding bytes</t>
        </li>
        <li>
          <t>removed 0x0B from application-specific Status Type</t>
        </li>
        <li>
          <t>reemphasized that expired tokens with status "VALID" are still expired</t>
        </li>
        <li>
          <t>renamed section "Status List Aggregation in JSON Format" to "Status List Aggregation Data Structure"</t>
        </li>
        <li>
          <t>slightly restructure/clarify referenced token cose section</t>
        </li>
        <li>
          <t>Add ASN.1 module</t>
        </li>
        <li>
          <t>many nits and improvements from genart review</t>
        </li>
        <li>
          <t>remove cose_sign1 tag from statuslist in cwt form examples</t>
        </li>
        <li>
          <t>slightly restructure/clarify referenced token cose section</t>
        </li>
        <li>
          <t>Add ASN.1 module</t>
        </li>
        <li>
          <t>removed DL suspension example</t>
        </li>
      </ul>
      <t>-13</t>
      <ul spacing="normal">
        <li>
          <t>add definition of client to terminology</t>
        </li>
        <li>
          <t>Make exp and ttl recommended in claim description (fixes inconsistency, was recommended in other text)</t>
        </li>
        <li>
          <t>Add short security consideraiton on redirects and ttl</t>
        </li>
        <li>
          <t>fix CORS spec to specific version</t>
        </li>
        <li>
          <t>explain KYC</t>
        </li>
        <li>
          <t>link implementation guidance to exp and ttl in Status List Token definition</t>
        </li>
        <li>
          <t>reference RFC7515 instead of IANA:JOSE</t>
        </li>
        <li>
          <t>add a note that cwt is encoded in raw/binary.</t>
        </li>
        <li>
          <t>added further privacy consideration around issuer tracking using unique URIs</t>
        </li>
      </ul>
      <t>-12</t>
      <ul spacing="normal">
        <li>
          <t>Allow for extended key usage OID to be used for other status mechanisms</t>
        </li>
        <li>
          <t>add Paul's affiliation</t>
        </li>
        <li>
          <t>add feedback from Dan Moore</t>
        </li>
        <li>
          <t>change JSON Status List structure to only contain JSON object</t>
        </li>
        <li>
          <t>further nitpicks</t>
        </li>
        <li>
          <t>clarifying status and status_list IANA descriptions for JWT/CWT</t>
        </li>
        <li>
          <t>clarifying description texts for status and status_list in CBOR</t>
        </li>
        <li>
          <t>splitting Linkability Mitigation from Token Lifecycle section in Implementation Consideration</t>
        </li>
        <li>
          <t>relax the accept header from must to should</t>
        </li>
      </ul>
      <t>-11</t>
      <ul spacing="normal">
        <li>
          <t>incorporate feedback from shepherd review</t>
        </li>
        <li>
          <t>some nitpicks</t>
        </li>
        <li>
          <t>even more nitpicks</t>
        </li>
      </ul>
      <t>-10</t>
      <ul spacing="normal">
        <li>
          <t>improve caching guidelines and move them to implementaiton considerations</t>
        </li>
        <li>
          <t>Add CoAP Content-Format ID and IANA registration</t>
        </li>
        <li>
          <t>Add size comparison for status list and compressed uuids</t>
        </li>
        <li>
          <t>Change Controller IESG for OAuths Parameters Registration</t>
        </li>
      </ul>
      <t>-09</t>
      <ul spacing="normal">
        <li>
          <t>update acknowledgments</t>
        </li>
        <li>
          <t>introduce dedicated section for compressed byte array of the Status List</t>
        </li>
        <li>
          <t>fix Status List definitions</t>
        </li>
        <li>
          <t>Add CDDL for CBOR StatusList encoding</t>
        </li>
        <li>
          <t>add diagram for Status List Aggregation for further explanation</t>
        </li>
        <li>
          <t>rename "chunking" of Status List Tokens (for scalability reasons) into "divide .. up"</t>
        </li>
      </ul>
      <t>-08</t>
      <ul spacing="normal">
        <li>
          <t>Fix cwt typ value to full media type</t>
        </li>
        <li>
          <t>Holders may also fetch and verify Status List Tokens</t>
        </li>
        <li>
          <t>Update terminology for referenced token and Status List Token</t>
        </li>
      </ul>
      <t>-07</t>
      <ul spacing="normal">
        <li>
          <t>add considerations about External Status Issuer or Status Provider</t>
        </li>
        <li>
          <t>add recommendations for Key Resolution and Trust Management</t>
        </li>
        <li>
          <t>add extended key usage extensions for x509</t>
        </li>
        <li>
          <t>Relying Parties avoiding correlatable Information</t>
        </li>
        <li>
          <t>editorial changes on terminology and Referenced Tokens</t>
        </li>
        <li>
          <t>clarify privacy consideration around one time use reference tokens</t>
        </li>
        <li>
          <t>explain the Status List Token size dependencies</t>
        </li>
        <li>
          <t>explain possibility to chunk Status List Tokens depending on Referenced Token's expiry date</t>
        </li>
        <li>
          <t>add short-lived tokens in the Rationale</t>
        </li>
        <li>
          <t>rename Status Mechanism Methods registry to Status Mechanisms registry</t>
        </li>
        <li>
          <t>changes as requested by IANA review</t>
        </li>
        <li>
          <t>emphasize that security and privacy considerations only apply to Status List and no other status mechanisms</t>
        </li>
        <li>
          <t>differentiate unlinkability between Issuer-RP and RP-RP</t>
        </li>
        <li>
          <t>add more test vectors for the status list encoding</t>
        </li>
        <li>
          <t>add prior art</t>
        </li>
        <li>
          <t>updated language around application specific status type values and assigned ranges for application specific usage</t>
        </li>
        <li>
          <t>add short security considerations section for mac based deployments</t>
        </li>
        <li>
          <t>privacy considerations for other status types like suspended</t>
        </li>
        <li>
          <t>fix aggregation_uri text in referenced token</t>
        </li>
        <li>
          <t>mention key resolution in validation rules</t>
        </li>
      </ul>
      <t>-06</t>
      <ul spacing="normal">
        <li>
          <t>iana registration text updated with update procedures</t>
        </li>
        <li>
          <t>explicitly mention that status list is expected to be contained in cryptographically secured containers</t>
        </li>
        <li>
          <t>reworked and simplified introduction and abstract</t>
        </li>
        <li>
          <t>specify http status codes and allow redirects</t>
        </li>
        <li>
          <t>add status_list_aggregation_endpoint OAuth metadata</t>
        </li>
        <li>
          <t>remove unsigned options (json/cbor) of status list</t>
        </li>
        <li>
          <t>add section about mixing status list formats and media type</t>
        </li>
        <li>
          <t>fixes from IETF review</t>
        </li>
        <li>
          <t>update guidance around ttl</t>
        </li>
        <li>
          <t>add guidance around aggregation endpoint</t>
        </li>
      </ul>
      <t>-05</t>
      <ul spacing="normal">
        <li>
          <t>add optional support for historical requests</t>
        </li>
        <li>
          <t>update CBOR claim definitions</t>
        </li>
        <li>
          <t>improve section on Status Types and introduce IANA registry for it</t>
        </li>
        <li>
          <t>add Status Issuer and Status Provider role description to the introduction/terminology</t>
        </li>
        <li>
          <t>add information on third party hosting to security consideration</t>
        </li>
        <li>
          <t>remove constraint that Status List Token must not use a MAC</t>
        </li>
      </ul>
      <t>-04</t>
      <ul spacing="normal">
        <li>
          <t>add mDL example as Referenced Token and consolidate CWT and CBOR sections</t>
        </li>
        <li>
          <t>add implementation consideration for Default Values, Double Allocation and Status List Size</t>
        </li>
        <li>
          <t>add privacy consideration on using private relay protocols</t>
        </li>
        <li>
          <t>add privacy consideration on observability of outsiders</t>
        </li>
        <li>
          <t>add security considerations on correct parsing and decoding</t>
        </li>
        <li>
          <t>remove requirement for matching iss claim in Referenced Token and Status List Token</t>
        </li>
        <li>
          <t>add sd-jwt-vc example</t>
        </li>
        <li>
          <t>fix CWT status_list map encoding</t>
        </li>
        <li>
          <t>editorial fixes</t>
        </li>
        <li>
          <t>add CORS considerations to the http endpoint</t>
        </li>
        <li>
          <t>fix reference of Status List in CBOR format</t>
        </li>
        <li>
          <t>added status_list CWT claim key assigned</t>
        </li>
        <li>
          <t>move base64url definition to terminology</t>
        </li>
      </ul>
      <t>-03</t>
      <ul spacing="normal">
        <li>
          <t>remove unused reference to RFC9111</t>
        </li>
        <li>
          <t>add validation rules for status list token</t>
        </li>
        <li>
          <t>introduce the status list aggregation mechanism</t>
        </li>
        <li>
          <t>relax requirements for status_list claims to contain other parameters</t>
        </li>
        <li>
          <t>change cwt referenced token example to hex and annotated hex</t>
        </li>
        <li>
          <t>require TLS only for fetching Status List, not for Status List Token</t>
        </li>
        <li>
          <t>remove the undefined phrase Status List endpoint</t>
        </li>
        <li>
          <t>remove http caching in favor of the new ttl claim</t>
        </li>
        <li>
          <t>clarify the sub claim of Status List Token</t>
        </li>
        <li>
          <t>relax status_list iss requirements for CWT</t>
        </li>
        <li>
          <t>Fixes missing parts &amp; iana ttl registration in CWT examples</t>
        </li>
      </ul>
      <t>-02</t>
      <ul spacing="normal">
        <li>
          <t>add ttl claim to Status List Token to convey caching</t>
        </li>
        <li>
          <t>relax requirements on referenced token</t>
        </li>
        <li>
          <t>clarify Deflate / zlib compression</t>
        </li>
        <li>
          <t>make a reference to the Issuer-Holder-Verifier model of SD-JWT VC</t>
        </li>
        <li>
          <t>add COSE/CWT/CBOR encoding</t>
        </li>
      </ul>
      <t>-01</t>
      <ul spacing="normal">
        <li>
          <t>Rename title of the draft</t>
        </li>
        <li>
          <t>add design consideration to the introduction</t>
        </li>
        <li>
          <t>Change status claim to in referenced token to allow re-use for other mechanisms</t>
        </li>
        <li>
          <t>Add IANA Registry for status mechanisms</t>
        </li>
        <li>
          <t>restructure the sections of this document</t>
        </li>
        <li>
          <t>add option to return an unsigned Status List</t>
        </li>
        <li>
          <t>Changing compression from gzip to zlib</t>
        </li>
        <li>
          <t>Change typo in Status List Token sub claim description</t>
        </li>
        <li>
          <t>Add access token as an example use-case</t>
        </li>
      </ul>
      <t>-00</t>
      <ul spacing="normal">
        <li>
          <t>Initial draft after working group adoption</t>
        </li>
        <li>
          <t>update acknowledgments</t>
        </li>
        <li>
          <t>renamed Verifier to Relying Party</t>
        </li>
        <li>
          <t>added IANA consideration</t>
        </li>
      </ul>
      <t>[ draft-ietf-oauth-status-list ]</t>
      <t>-01</t>
      <ul spacing="normal">
        <li>
          <t>Applied editorial improvements suggested by Michael Jones.</t>
        </li>
      </ul>
      <t>-00</t>
      <ul spacing="normal">
        <li>
          <t>Initial draft</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
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
KqWqSpvh5NnbKhhZcbpz0mkU8VAleGRATg/5OOgyW0X2o2xxeXum6xjZlQYu
fwBTfqPqMalzLXhSKdp+hkwSoWtIjO3vZhkbXuRi5W7+nQDZqswR7Q57t5/2
ToVe1TJ0o1trGxLbnPC3kNGBfyp6VS+nG33UnPXj36Jm1alQje6iaZnwFcb5
7jWsrITpp4r+Xrfb7hSVqAIebvCTyo1qDPDPVgn7NrDdLmhRRY5n/PYdKljo
w7+7grWzXsEy7/pOFaydmxQs5xbP303BqpaMeWHo/NNQsLIyrpWe0kGnO2jZ
LihCrZ5j9weO2wOVqG/3vN6w14bPHfh33BOtMXrw8Hu/22/jr/i9Neq1+/1a
v+M6dqfTajvtVnfQtd2u3eoPWqBiwe0dGK7ddlvj1rjX7Q96Ts+n4bstAS8Y
93weulYcu99ujduO3QOIOgOvOxKu3XHcwWA48MfCdYbj8Vg4Q3fg2fTZR39u
7bYO3e6gY3eF44+9cXvU6QyHvZbj+wi8N6x5vt8e9+1Wt9P27I49dgCiTl/0
fLs/su1ha9gZjMejnt9ue9543LXb8HsbXiK8kdft+21fdL3a0O71RzBXt9P1
um1bDO3uCNDQ6Q/645Hb9e3ucPjdupUHa33F1HINPeTsKu4OrFZFnk7J79pu
sd91NcVov+s3f40u1v/6p9eOfQ1/uVKJ49L5q+lKP5/T9uRTmubK3mT5FKuF
1HPtRoc2utUdno+9Blk8Mnm/pVu9s8Zjz3cztiSyLAt3xrrbLbJpeB26t1mH
gfR/r95q2Tr8W3R5X/+eNkwkLlduxcxzblow/NTqXaqfMkwdeHEPl14+u3If
62f9n14PvJ98+D/hwQ4+CF8HP70eDj78L3jNGX74hw//Hw9W3PrZzteD4QPf
/O8f/lw++P9+89c+WnRIlRKglTxCj+GB0fdkRQSBBzEjDtWLuyFDDbS6ndus
bk/S2SoW5fl67P8GIPE//PrDf/zm7/YBU73f+/A//T5grfvhv/vw38suFSuZ
mR7kw//w4f/CWZ3+kBFvj2FUL3j04X/78POv5TRXMj5zmoCbIeBmCGMMxh/+
n1n7w19++IdnPwwGqmGGySNNFpmB8q8+/O03v34BEP3PP4WB7Mk3/372zd/8
lJ9fxUgNXJ8AFAIf/En7m78BvtMff/P3P4NrXbg2zId7PivH87/+LCt/r8M2
mUFOBl5mfZMuBDc8UIm1rPYUjnPSEcjimzgtVleP1qcneYRv8bxnde8RPACi
67txkpmSKBp6PhBcV/U/ci4SVWBClY+oflad2TZqVVQVXJSQonoDulM0wTMj
MO8NLxwbOFSHDdtNJztuCNv1/fvsoGpWiAIrT+NpFE9WjhgHCmVc7FCXwpQZ
0b6sHVeR4MH9P0qE0cC+e9LjUnoM9eZPjB6hlszYUj1JdIkVhOiT4j20Squ8
v9pkqfT55tMWCykYqTyZg+SVPw9cKh8i8z+qvdFUc8JMYbltJceAcx/ofPHt
wS7CWuFMUePpKZoHh4xFIExzjyQMM/nXZSzjRWuT0mtXYJh0fMqZgF2vsjur
st05RxePn54L78Ks32IyiXLvDB33BXuNtkvZmSNnwDk5hRmQx2jz+fH+Cvhl
1iMb2xy+zo6GrbDwbzwnqkCubi+iDXsGLjPq0UeWN5tpj2EnVTLjfstsOF8w
x5C+U3qtu5xGrl9drqqcgH+D59wx3OOSW2t/d5UTHB3m/jV8tevqO2D4do5u
euA9OshV5g8fppc1js6y8qA7RnnQXElPnTrQbrbof+iXoq5NkpR0Zd3bcQse
zThyi4VujDP+ytOUeeLKOGeKu/2aVgmV7I3YHc6dUmk6JFKUFbJSic9Zprog
anmtxfLJ+eiRFxwF28Hx2cHy8PRV8HRnO/AfT6/230aT/dlZ59UL52r06Hns
tb7Einz2fmg34bkxfIfnHoxq+xfnLe8ifXU4e/3l2dsHraPn6Vg8P3xxfPFk
frr3eh+07HPx6HDv5bu968O9s/Rw+vr50ePJNb745ckVvGT6ruYt93v7O08i
//Hxlfcuunza0m9evGoN06et6TuvfTb1gv0E7pu/eolv374+fDt5d7C7fYX/
1RD01y/PCfSD00nn4B3/cLADbwkPnVcBvmS/9erd2duDR3v20YkTHJ5Ouk9P
v3x38OLL9NXs4bR2uLSXB6cX1wdvn5wfvYAbZweEE699fO4/PnuHg8P83/mP
Htr+y8Px6NH0nb8DAz9OAvfFcQd/r/Ebz5buyQ3Tah/ar14eO17reg4vePf0
3V4wfmnjFMc1r3U8fvXiOqSVCA+jVyc2rdD4y2bjYnLSOG687uzu7U7/ZDS4
AKN24Hw1efz4ECR99NAZe2dfvL5oH9Ts3k4cng0eDi6GfuuqdfbVq+2jy4k3
Ak3eefgnuw/Fu5cPXj5u237n0rv6sxfL/eWxfb17uPvk3YnzsPX6+eHsuFV7
vRTPuyenb6ft/YBQaXuzs6n/cHj++tHx8vXLw3d0fXr41n18lsBElk9hbQ6C
Jz6M+GQ6enz24rD2fBgetPzT04vpk6O9s9ej8LDz5dnwAT05u7581XqYuC+P
u7mRHr2+9MLj8/2pjaC1Tmovora/Z6evTs/mZ9MHj1/NhqeHL49Tf/qaBwqf
TF+3ppcjJpPTVy8OI691tnj6/OHCffQw8XcApBrCdHJ67p617O7zF92nzx8/
OHr+6Ozo9Yvu/utH58cM0uGl/6Jre+EFLf/x3vPg5Zc4nePXzvDZYe3tcc97
/rDz+vTL64PZ3vXB7vncm6npPLx4/fjJ1Gsj6Tzo70+H714jiTxMgsPwdXT0
4sn105fz08Panv/09GzQPm4/CF87r4MXL+c9//T15antv/JmztHZhf/lycPt
9uHZ2cXBDk5pv/u6NX/hn53br/den5zah+HzWvjEPp0dPj47O0+P375yvNnx
VMym48OLs+XLVtQ+nKXpi5fTQ4LsIj17fnH8pbt77H75bg8o/9B2X0bpce3R
q3dHZ686r19ML8Tpw8uzt4fnB/bk+vjR3vL07YPwaHdCaDizwdh6O7340n7y
xdHe+fMv24enB7P50y/PDjtntUfzh+LMc0anZ53Dt2fjF9PB0psNlu7s9avT
kyf++Mz+syyDMyvZakioFT6pkoD6KkFx9BOWO48v4y9e9sbPzuzL4RdfLXfO
Hj4Inj58nBy4197uV47T2Zv1zk4H1w5INXjiZxzGTZJVUoijJRv5aG/bpj/1
LC7sDHIXZfy253U92+0MG6PuYNjotB0fxJXoN1rO0Gm13KHwWt5G/fsVn3WJ
sq+kXE/O3QZKdiVWV1guOyssF++ulku1P1waeasCxmsMGO5AV1VAlz2eyXm0
mPpYBTSWpTWwoK5H5+qrzhuYYRQ92+Jhgzdy7PxpgwN3zioqqYzSGsxbMvTK
IBVmZaZkhVXD9RCyJ1QcdQUIlEYfcCXLC7FssBo7dwPqXiTk7LHy4AyrppJG
S0Okq9PiC8fAtOodr9SSVAHOfAEyhsXsFidNzKTCdlsV5vpWLDmsiKqpwEil
l5ergtQyClZptG9Rke3KnAjjXAo2uy6tl665kGl/gNmpv9rku+ncyT8Dk3Al
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
WrvReJW5Neab4qlpMaWYCbn7VZtIPUiVM9pYn+xcskQ/rysrgcW9Xn04WR5/
lSSuDxPr6J3M7azyDDNf0JEs86B2ld+iWF7RD9wJ6G4WyGRM99VFNXPnJ5UL
kqPT6tQ2zEnmS7L7ExusTbj/EaJnSnFfxS7KzXtkAYNTufbyT9aY9cYLaoSH
iqXLP4rMrJsuAAzYl8moPGP+udMlWOXaLW67+VLN+OFTgfrdePIDNhb9mEsV
4922zsUv//77u52//VNamY/+w7VmGA2//qj6I789//81r923hpesrkpeUFK0
gnQmMx11PxNg2nTNy28dWzL7b5c8KCsrNiHLVomwWeumFc0LsKRyKlYmzNYp
50CXaM1MKra+Cr2jSzBuZqpG1iZLuXvLkMta+/Ipo4Gp1iqk+7ZS+QpC0DVc
mSp1IQSfa8LqAGgXBGLqJ9m50oooS8HMfcjZmiCrqopVylyPlqGrp7kkz7KB
BcizGlgIFP+heqEVA1OqGyVG5qo6yDSjWXBtvFC9SqbL7Tw4OpbVU0oLobpQ
yzKk5TDESLa+5RIJupIMp3zIbOMw0+jqMJZ3HgVevnqmBok8Jr5o1l7ws5za
khvAzDmUMGH8ASiAjxReunHghjyWbgufK7MgXXty+fEME5hyLmWnyEoPWP9G
n/3itI7tw+1CMgetPNX9fyFGEl87rGodc3lsHZ8tLZdWFGPjTrX2mbK3Y3aQ
rxEMG5Vv1BW5sQUI3teEFXv/3kLvBHcoy9qDcFVYeT7iWD0mWzEm2I6BxrQO
3Zm4r3esvrxLfjiyL+9b24wA2e7dKI3u6roI7Kgud1vWW6qy+rgGrIkv5jM9
CGKMJnp839rfO30Iv5zksLorU6o2k637pouQmM1WdeuQWu2Ho/jej1dMm9vZ
33HuhlVYVRUhzOIgqYyP6ABr2QGnEfZtICLzlTbeXqV3xAiaQ9WYIJMAVvkp
mJbfH5S4+9aSDqYXuaHbUFujuo5QtkVkmjnvsrV175e6hrNsarEh80h0SSuM
wPg++Uml/V7cuJvw+JYx4iSOFnN0RKi+FVdXV02EvxnFk3tugrYaMfV7gBTV
alk+i8cKYl81YSlsNAkZH7HI7Uq6PYcM4ttKSAWYMl+NYjffSABYS35pjxXj
5cLPTquHdahJPGNlsViIBhioFzVMKhVXuq8lqwMwP1yzBv/4x4FIx4gDPM1P
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
DtCD8gEA

-->

</rfc>
