<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 3.3.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-status-list-11" category="std" consensus="true" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.28.1 -->
  <front>
    <title>Token Status List</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-status-list-11"/>
    <author fullname="Tobias Looker">
      <organization>MATTR</organization>
      <address>
        <email>tobias.looker@mattr.global</email>
      </address>
    </author>
    <author fullname="Paul Bastian">
      <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="May" day="23"/>
    <area>Security</area>
    <workgroup>Web Authorization Protocol</workgroup>
    <abstract>
      <?line 124?>

<t>This specification defines a mechanism, 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 128?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Token formats secured by JOSE <xref target="IANA.JOSE"/> 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 structures 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 │
└─┬──────┘            └───┬────┘            └──┬────────────┘
  ▼ update status         │                    │
┌───────────────┐         │                    │
│ Status Issuer │         │                    │
└─┬─────────────┘         │                    │
  ▼ provide Status List   │                    │
┌─────────────────┐       │                    │
│ Status Provider │◄──────┴────────────────────┘
└─────────────────┘     fetch Status List Token

]]></artwork>
      <t>Status Lists may be composed to express a range 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 defines an extension point that enables other specifications to describe additional status mechanisms and creates an IANA registry.</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 status of issued access tokens as defined in section 1.4 of <xref target="RFC6749"/>. Token Introspection <xref target="RFC7662"/> defines a way to determine the status of an issued access token, but it requires the party trying to validate the state of access tokens to directly contact the Issuer of the access tokens for each token validation. In contrast, the mechanism defined in this specification allows a party to fetch the status for many tokens, reducing interactions with the Issuer significantly for better scalability and providing better privacy as the Issuer does not learn which specific access token is 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 minimizing the status information to mere bits (often a single bit) 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 large amounts of Referenced Tokens into the same list also enables herd privacy relative to 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 a status with bits in 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 the IANA "Status Mechanisms" registry for status mechanisms 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.</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 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 is referencing 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>base64url:</dt>
        <dd>
          <t>Denotes the URL-safe base64 encoding without padding 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 section describe how to encode such a Status List in JSON and CBOR representation.</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. The status of each Referenced Token is identified using an index that maps to one or more specific bits within the byte array. The index starts counting at 0 and ends with amount of Referenced Tokens - 1 (being the last valid entry). The bits within an array are counted from the least significant bit ("0") to the most significant bit ("7"). All bits of the byte array at a particular index are set to a status value (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] = 1
status[1] = 0
status[2] = 0
status[3] = 1
status[4] = 1
status[5] = 1
status[6] = 0
status[7] = 1
status[8] = 1
status[9] = 1
status[10] = 0
status[11] = 0
status[12] = 0
status[13] = 1
status[14] = 0
status[15] = 1
]]></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
           +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+  +-+...
values     |1|0|1|1|1|0|0|1|  |1|0|1|0|0|0|1|1|  |0|...
           +-+-+-+-+-+-+-+-+  +-+-+-+-+-+-+-+-+  +-+...
index       7 6 5 4 3 2 1 0   15   ...  10 9 8   23
           \_______________/  \_______________/
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] = 1
status[1] = 2
status[2] = 0
status[3] = 3
status[4] = 0
status[5] = 1
status[6] = 0
status[7] = 1
status[8] = 1
status[9] = 2
status[10] = 3
status[11] = 3
]]></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       3   0   2   1      1   0   1   0      3   3   2   1
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><tt>status_list</tt>: <bcp14>REQUIRED</bcp14>. JSON Object that contains a Status List. It <bcp14>MUST</bcp14> contain at least the following claims:
            </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 example 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 example 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 map (Major Type 5) and defines the following entries:
            </t>
            <ul spacing="normal">
              <li>
                <t><tt>bits</tt>: <bcp14>REQUIRED</bcp14>. 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>. 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>. 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>OPTIONAL</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.</t>
          </li>
          <li>
            <t><tt>ttl</tt>: <bcp14>OPTIONAL</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.</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 rules outlined 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>OPTIONAL</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.</t>
          </li>
          <li>
            <t><tt>65534</tt> (time to live): <bcp14>OPTIONAL</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.</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 rules outlined 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[
d2845820a2012610781a6170706c69636174696f6e2f7374617475736c6973742b63
7774a1044231325850a502782168747470733a2f2f6578616d706c652e636f6d2f73
74617475736c697374732f31061a648c5bea041a8898dfea19fffe19a8c019fffda2
646269747301636c73744a78dadbb918000217015d584030e39052d23cc3cdeca77c
915d5e8763353565fa772c47f5176f77b5e406b11430b3dce2ae21c07f4491fc12ac
dd7ec82875099d28f035d9b1893e2825e63488
]]></artwork>
        <t>The following is the CBOR Annotated Hex output of the example above:</t>
        <artwork><![CDATA[
d2                              # tag(18)
  84                            #   array(4)
    58 20                       #     bytes(32)
      a2012610781a6170706c6963  #       "¢\x01&\x10x\x1aapplic"
      6174696f6e2f737461747573  #       "ation/status"
      6c6973742b637774          #       "list+cwt"
    a1                          #     map(1)
      04                        #       uint(4)
      42                        #       bytes(2)
        3132                    #         "12"
    58 50                       #     bytes(80)
      a502782168747470733a2f2f  #       "¥\x02x!https://"
      6578616d706c652e636f6d2f  #       "example.com/"
      7374617475736c697374732f  #       "statuslists/"
      31061a648c5bea041a8898df  #       "1\x06\x1ad\x8c[ê\x04\x1a\x88\x98ß"
      ea19fffe19a8c019fffda264  #       "ê\x19ÿþ\x19¨À\x19ÿý¢d"
      6269747301636c73744a78da  #       "bits\x01clstJxÚ"
      dbb918000217015d          #       "Û¹\x18\x00\x02\x17\x01]"
    58 40                       #     bytes(64)
      30e39052d23cc3cdeca77c91  #       "0ã\x90RÒ<ÃÍì§|\x91"
      5d5e8763353565fa772c47f5  #       "]^\x87c55eúw,Gõ"
      176f77b5e406b11430b3dce2  #       "\x17owµä\x06±\x140³Üâ"
      ae21c07f4491fc12acdd7ec8  #       "®!À\x7fD\x91ü\x12¬Ý~È"
      2875099d28f035d9b1893e28  #       "(u\x09\x9d(ð5Ù±\x89>("
      25e63488                  #       "%æ4\x88"
]]></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. The claim contains members used to reference a Status List Token as defined in this specification. 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 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 an Integer that represents the index to check for status information in the Status List for the current Referenced Token. The value of <tt>idx</tt> <bcp14>MUST</bcp14> be a non-negative number, containing a value of zero or greater.</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"/> introduce the usage of a status mechanism in Section 3.2.2.2. The "status" object uses the same encoding as a JWT as defined in <xref target="referenced-token-jose"/>.</t>
        <t>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 "COSE Web Token (CWT)" object according to <xref target="RFC8392"/> or other formats based on COSE.</t>
        <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 is encoded as a <tt>Status</tt> CBOR structure and <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. This specification defines the following data items:
            </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 an Integer that represents the index to check for status information in the Status List for the current Referenced Token. The value of <tt>idx</tt> <bcp14>MUST</bcp14> be a non-negative number, containing a value of zero or greater.</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>
        <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
7374617475736c697374732f3158409a70f3b9020bf7cf2a33d62d7b9de1722ce9e9
68fe1ed02a707d3285b7c8a11b7cfe7828ac83367fc7b1686689af64e9e24b596b78
b88704944ba2418b8142ef
]]></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)
      9a70f3b9020bf7cf2a33d62d  #       "\x9apó¹\x02\x0b÷Ï*3Ö-"
      7b9de1722ce9e968fe1ed02a  #       "{\x9dár,ééhþ\x1eÐ*"
      707d3285b7c8a11b7cfe7828  #       "p}2\x85·È¡\x1b|þx("
      ac83367fc7b1686689af64e9  #       "¬\x836\x7fÇ±hf\x89¯dé"
      e24b596b78b88704944ba241  #       "âKYkx¸\x87\x04\x94K¢A"
      8b8142ef                  #       "\x8b\x81Bï"
]]></artwork>
        <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. The <tt>status</tt> parameter uses the same encoding as a CWT as defined 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 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 can not represent multiple statuses 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>This document creates a registry in <xref target="iana-status-types"/> that includes the most common Status Type values. 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 state is usually temporary.</t>
          </li>
        </ul>
        <t>The Status Type value 0x03 and Status Type values in the range 0x0B until 0x0F are permanently reserved as application specific. Meaning the processing of Status Types using these values is application specific. All other Status Type values are reserved for future registration.</t>
        <t>The processing rules for Referenced Tokens (such as JWT or CWT) 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.</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 would also apply for the Holder.</t>
      <section anchor="status-list-request">
        <name>Status List Request</name>
        <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.</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>MUST</bcp14> send the following Accept-Header to indicate the requested response 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>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>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. A client <bcp14>SHOULD</bcp14> detect and intervene in cyclical redirections (i.e., "infinite" redirection loops).</t>
        <t>The following are non-normative examples of a request and response 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>
        <artwork type="ascii-art"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/statuslist+jwt

eyJhbGciOiJFUzI1NiIsImtpZCI6IjEyIiwidHlwIjoic3RhdHVzbGlzdCtqd3QifQ.e
yJleHAiOjIyOTE3MjAxNzAsImlhdCI6MTY4NjkyMDE3MCwiaXNzIjoiaHR0cHM6Ly9le
GFtcGxlLmNvbSIsInN0YXR1c19saXN0Ijp7ImJpdHMiOjEsImxzdCI6ImVOcmJ1UmdBQ
WhjQlhRIn0sInN1YiI6Imh0dHBzOi8vZXhhbXBsZS5jb20vc3RhdHVzbGlzdHMvMSIsI
nR0bCI6NDMyMDB9.35Lxi-XAe217YnUj6JGO8UQc9OIIaOEyo9TUQ3eonGyZaHh2OWv8
Z5ahvnW0AWYyqqG3LiKmJqK_mHUkKfVfNg
]]></artwork>
      </section>
      <section anchor="status-list-response">
        <name>Status List Response</name>
        <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 HTTP response <bcp14>SHOULD</bcp14> use gzip Content-Encoding as defined in <xref target="RFC9110"/>.</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>
      </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) 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="1"><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="1"><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 custom 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"/>. Fail if the provided index is out of bounds of the Status List</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 required, this can be achieved by extending the request for the Status List Token as defined in <xref target="status-list-request"/> with a timestamp. 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), which would result in the client not being able to retrieve those status codes. Thus, the client <bcp14>MUST</bcp14> verify support for this feature by verifying that the requested timestamp is within the valid time of the returned token signaled via <tt>iat</tt> (<tt>6</tt> for CWT) and <tt>exp</tt> (<tt>4</tt> 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.35Lxi-XAe217YnUj6JGO8UQc9OIIaOEyo9TUQ3eonGyZaHh2OWv8
Z5ahvnW0AWYyqqG3LiKmJqK_mHUkKfVfNg
]]></artwork>
      </section>
    </section>
    <section anchor="aggregation">
      <name>Status List Aggregation</name>
      <t>Status List Aggregation is an optional mechanism to retrieve a list of URIs to all Status List Tokens, allowing a Relying Party to fetch all relevant Status List Tokens for a specific type of Referenced Token or 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 invalid Status List referenced in the response from the Status List Aggregation endpoint, it <bcp14>SHOULD</bcp14> continue processing the other valid Status Lists referenced in the response instead of fully aborting processing and retrying later.</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 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 <tt>status_list_aggregation_endpoint</tt> for its metadata defined by <xref target="RFC8414"/>.</t>
        <t>The concrete specification on how this is implemented depends on the specific ecosystem and is 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-in-json-format">
        <name>Status List Aggregation in JSON Format</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 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.</t>
      <t>The following OID is defined for usage in the EKU extension</t>
      <t>```
   id-kp  OBJECT IDENTIFIER  ::=
       { iso(1) identified-organization(3) dod(6) internet(1)
         security(5) mechanisms(5) pkix(7) 3 }</t>
      <t>id-kp-oauthStatusListSigning             OBJECT IDENTIFIER ::= { id-kp TBD }
```</t>
    </section>
    <section anchor="Security">
      <name>Security Considerations</name>
      <t>The Status List as defined in <xref target="status-list"/> only exists in cryptographically secured containers which allows checking the integrity and origin without relying on other aspects like transport security (e.g., the 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 are <bcp14>RECOMMENDED</bcp14> to 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 should 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 should 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:
- 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.
- 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>
        <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:
- 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.
- 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>
        <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 an 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>
    <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 him 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="malicious-issuers">
        <name>Malicious Issuers</name>
        <t>A malicious Issuer could bypass the privacy benefits of the herd privacy by generating a unique Status List for every Referenced Token. By these means, he 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. This malicious behaviour could be detected by Relying Parties that request large amounts of Referenced Tokens by comparing the number of different Status Lists and their sizes.</t>
      </section>
      <section anchor="privacy-relying-party">
        <name>Observability of Relying Parties</name>
        <t>Once the Relying Party receives the Referenced Token, this enables them to request the Status List to validate its status through the provided <tt>uri</tt> parameter and look 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 a KYC process 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 a driving license or checking the employment status 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-lifecycle"/>.</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 his related business. 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>disable the historical data feature <xref target="historical-resolution"/></t>
          </li>
          <li>
            <t>disable the Status List Aggregation <xref target="aggregation"/></t>
          </li>
          <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="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 for 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-lifecycle"/> 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 special information about a Referenced Token can leak information to other parties. This document defines one additional Status Type with "SUSPENDED" that conveys such additional information.</t>
        <t>A concrete example for "SUSPENDED" would be a driver's license, where the digital driver's license might still be useful to prove other information about its holder, but suspended could signal that it should not be considered valid in the scope of being allowed to drive a car. This case could be solved by either introducing a special status type, or by revoking the Referenced Token and re-issuing with changed attributes. For such a case, the status type suspended might be dangerous as it would leak the information of a suspended driver's license even if the driver's license is used as a mean of identification and not in the context of driving a car. This could also allow for the unwanted collection of statistical data on the status of driver's licenses.</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>
        <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 this 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. Revoking batch-issued Referenced Tokens might reveal this correlation later on.</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 (#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:
- the size of the Status List, i.e. the number of Referenced Tokens
- 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)
- the lifetime of Referenced Tokens (shorter lifetimes allows for earlier retirement of Status List Tokens)</t>
        <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 setups 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="status-list-update-interval-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 time of <tt>exp</tt>.</t>
          </li>
        </ul>
        <t>Ultimately, its the Relying Parties decision how often to check for updates, ecosystems may define there own guidelines and policies for updating the Status List information.</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, e.g. for subsequent status checks or audit trail, 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 presentation)</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 relevant payload 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: Reference to a status or validity mechanism containing up-to-date status information on the JWT.</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 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="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="RFC5226"/> 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 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: Reference to a status or validity mechanism containing up-to-date status information on the CWT.</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 status list containing up-to-date status information on multiple tokens.</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="RFC5226"/> 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 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="RFC5226"/> 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>0x0B-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 also 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>
      </section>
    </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="RFC5226">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <author fullname="H. Alvestrand" initials="H." surname="Alvestrand"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>Many protocols make use of identifiers consisting of constants and other well-known values. Even after a protocol has been defined and deployment has begun, new values may need to be assigned (e.g., for a new option type in DHCP, or a new encryption or authentication transform for IPsec). To ensure that such quantities have consistent values and interpretations across all implementations, their assignment must be administered by a central authority. For IETF protocols, that role is provided by the Internet Assigned Numbers Authority (IANA).</t>
              <t>In order for IANA to manage a given namespace prudently, it needs guidelines describing the conditions under which new values can be assigned or when modifications to existing values can be made. If IANA is expected to play a role in the management of a namespace, IANA must be given clear and concise instructions describing that role. This document discusses issues that should be considered in formulating a policy for assigning values to a namespace and provides guidelines for authors on the specific text that must be included in documents that place demands on IANA.</t>
              <t>This document obsoletes RFC 2434. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5226"/>
          <seriesInfo name="DOI" value="10.17487/RFC5226"/>
        </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/#http-cors-protocol">
          <front>
            <title>Fetch Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date>n.d.</date>
          </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="3" month="December" year="2024"/>
            <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-08"/>
        </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 1573?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>We would like to thank
Brian Campbell,
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>
    <section numbered="false" 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 for 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>
      <section numbered="false" anchor="status-list-size-for-varying-sizes-and-revocation-rates">
        <name>Status List size for varying sizes and revocation rates</name>
        <table>
          <name>Status List Size examples for varying sizes 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="compressed-array-of-uuidv4-128-bit-uuids-for-varying-sizes-and-revocation-rates">
        <name>Compressed array of UUIDv4 (128 bit UUIDs) for varying sizes 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 sizes 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 numbered="false" 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 numbered="false" 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]=1
status[1993]=1
status[25460]=1
status[159495]=1
status[495669]=1
status[554353]=1
status[645645]=1
status[723232]=1
status[854545]=1
status[934534]=1
status[1000345]=1
]]></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 numbered="false" 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]=1
status[1993]=2
status[25460]=1
status[159495]=3
status[495669]=1
status[554353]=1
status[645645]=2
status[723232]=1
status[854545]=1
status[934534]=2
status[1000345]=3
]]></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 numbered="false" 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]=1
status[1993]=2
status[35460]=3
status[459495]=4
status[595669]=5
status[754353]=6
status[845645]=7
status[923232]=8
status[924445]=9
status[934534]=10
status[1004534]=11
status[1000345]=12
status[1030203]=13
status[1030204]=14
status[1030205]=15
]]></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 numbered="false" 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] = 0
status[52451] = 1
status[576778] = 2
status[513575] = 3
status[468106] = 4
status[292632] = 5
status[214947] = 6
status[182323] = 7
status[884834] = 8
status[66653] = 9
status[62489] = 10
status[196493] = 11
status[458517] = 12
status[487925] = 13
status[55649] = 14
status[416992] = 15
status[879796] = 16
status[462297] = 17
status[942059] = 18
status[583408] = 19
status[13628] = 20
status[334829] = 21
status[886286] = 22
status[713557] = 23
status[582738] = 24
status[326064] = 25
status[451545] = 26
status[705889] = 27
status[214350] = 28
status[194502] = 29
status[796765] = 30
status[202828] = 31
status[752834] = 32
status[721327] = 33
status[554740] = 34
status[91122] = 35
status[963483] = 36
status[261779] = 37
status[793844] = 38
status[165255] = 39
status[614839] = 40
status[758403] = 41
status[403258] = 42
status[145867] = 43
status[96100] = 44
status[477937] = 45
status[606890] = 46
status[167335] = 47
status[488197] = 48
status[211815] = 49
status[797182] = 50
status[582952] = 51
status[950870] = 52
status[765108] = 53
status[341110] = 54
status[776325] = 55
status[745056] = 56
status[439368] = 57
status[559893] = 58
status[149741] = 59
status[358903] = 60
status[513405] = 61
status[342679] = 62
status[969429] = 63
status[795775] = 64
status[566121] = 65
status[460566] = 66
status[680070] = 67
status[117310] = 68
status[480348] = 69
status[67319] = 70
status[661552] = 71
status[841303] = 72
status[561493] = 73
status[138807] = 74
status[442463] = 75
status[659927] = 76
status[445910] = 77
status[1046963] = 78
status[829700] = 79
status[962282] = 80
status[299623] = 81
status[555493] = 82
status[292826] = 83
status[517215] = 84
status[551009] = 85
status[898490] = 86
status[837603] = 87
status[759161] = 88
status[459948] = 89
status[290102] = 90
status[1034977] = 91
status[190650] = 92
status[98810] = 93
status[229950] = 94
status[320531] = 95
status[335506] = 96
status[885333] = 97
status[133227] = 98
status[806915] = 99
status[800313] = 100
status[981571] = 101
status[527253] = 102
status[24077] = 103
status[240232] = 104
status[559572] = 105
status[713399] = 106
status[233941] = 107
status[615514] = 108
status[911768] = 109
status[331680] = 110
status[951527] = 111
status[6805] = 112
status[552366] = 113
status[374660] = 114
status[223159] = 115
status[625884] = 116
status[417146] = 117
status[320527] = 118
status[784154] = 119
status[338792] = 120
status[1199] = 121
status[679804] = 122
status[1024680] = 123
status[40845] = 124
status[234603] = 125
status[761225] = 126
status[644903] = 127
status[502167] = 128
status[121477] = 129
status[505144] = 130
status[165165] = 131
status[179628] = 132
status[1019195] = 133
status[145149] = 134
status[263738] = 135
status[269256] = 136
status[996739] = 137
status[346296] = 138
status[555864] = 139
status[887384] = 140
status[444173] = 141
status[421844] = 142
status[653716] = 143
status[836747] = 144
status[783119] = 145
status[918762] = 146
status[946835] = 147
status[253764] = 148
status[519895] = 149
status[471224] = 150
status[134272] = 151
status[709016] = 152
status[44112] = 153
status[482585] = 154
status[461829] = 155
status[15080] = 156
status[148883] = 157
status[123467] = 158
status[480125] = 159
status[141348] = 160
status[65877] = 161
status[692958] = 162
status[148598] = 163
status[499131] = 164
status[584009] = 165
status[1017987] = 166
status[449287] = 167
status[277478] = 168
status[991262] = 169
status[509602] = 170
status[991896] = 171
status[853666] = 172
status[399318] = 173
status[197815] = 174
status[203278] = 175
status[903979] = 176
status[743015] = 177
status[888308] = 178
status[862143] = 179
status[979421] = 180
status[113605] = 181
status[206397] = 182
status[127113] = 183
status[844358] = 184
status[711569] = 185
status[229153] = 186
status[521470] = 187
status[401793] = 188
status[398896] = 189
status[940810] = 190
status[293983] = 191
status[884749] = 192
status[384802] = 193
status[584151] = 194
status[970201] = 195
status[523882] = 196
status[158093] = 197
status[929312] = 198
status[205329] = 199
status[106091] = 200
status[30949] = 201
status[195586] = 202
status[495723] = 203
status[348779] = 204
status[852312] = 205
status[1018463] = 206
status[1009481] = 207
status[448260] = 208
status[841042] = 209
status[122967] = 210
status[345269] = 211
status[794764] = 212
status[4520] = 213
status[818773] = 214
status[556171] = 215
status[954221] = 216
status[598210] = 217
status[887110] = 218
status[1020623] = 219
status[324632] = 220
status[398244] = 221
status[622241] = 222
status[456551] = 223
status[122648] = 224
status[127837] = 225
status[657676] = 226
status[119884] = 227
status[105156] = 228
status[999897] = 229
status[330160] = 230
status[119285] = 231
status[168005] = 232
status[389703] = 233
status[143699] = 234
status[142524] = 235
status[493258] = 236
status[846778] = 237
status[251420] = 238
status[516351] = 239
status[83344] = 240
status[171931] = 241
status[879178] = 242
status[663475] = 243
status[546865] = 244
status[428362] = 245
status[658891] = 246
status[500560] = 247
status[557034] = 248
status[830023] = 249
status[274471] = 250
status[629139] = 251
status[958869] = 252
status[663071] = 253
status[152133] = 254
status[19535] = 255
]]></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>-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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
9dnh7hJ0kvGI3Dm7m1Va2bLaCDfnfSpY3AQDmlwOAzSpFTV8OpB4SyMpnX9k
GieID0RepKmVhvWuprEX1NdaqsbP32BodwxruiTt2jxeZzNH+3pwCV/tdfUd
IHw7uzg1eIf2dBWpw4nmsqbgSV7AcssoYFkoOolmL7pDiMOvjMquFTJSYCgu
/UOoUeZgC5UTJyuyy8R1Iuh0MUfJclzPJap25Ju2to4RSXicbNGNZN6Uyqsh
ruIsZDkPmayoK3dWt1xcPZ6MHvrhQbgZHp7sXe0fvwyfbG2GwaPpxe6b+HR3
dtJ5+dy5GD18lvjup1hVzt6N7Ba0G8N3aHd/1Ng9m7j+WfZyf/bq05M3992D
Z9lYPNt/fnj2eH6882oXRPqJeLi/8+LtzuX+zkm2P3317ODR6SUO/OLoAgaZ
vm34V7u93a3HcfDo8MJ/G58/cfXIi5fuMHviTt/67ZOpH+6m8N785QscffNy
/83p273tzQv8r4FTf/ViQlPfOz7t7L3lH/a2YJRo33kZ4iC77su3J2/2Hu7Y
B0dOuH982n1y/OnbveefZi9nD6aN/Sv7au/47HLvzePJwXN4cbZHMPHbh5Pg
0clb7BzW/zZ4+MAOXuyPRw+nb4Mt6PhRGnrPDzv4e4NHPLnyjm5YVnvffvni
0PHdyzkM8PbJ251w/MLGJY4bvns4fvn8MqKdiPbjl0c27dD401bz7PSoedh8
1dne2Z7+dDQ4A4164Hx2+ujRPkgH8QOQxU8+eXXW3mvYva0kOhk8GJyBeH3h
nnz2cvPg/NQf2WPHefDT7Qfi7Yv7Lx617aBz7l/8/PnV7tWhfbm9v/347ZHz
wH31bH926DZeXYln3aPjN9P2bkigtP3ZyTR4MJy8enh49erF/lt6Pt1/4z06
SWEhV09gb/bCxwH0+Hg6enTyfL/xbBjtucHx8dn08cHOyatRtN/59GR4n1rO
Ls9fug9S78Vht9DTw1fnfnQ42Z3aODX3qPE8bgc7dvby+GR+Mr3/6OVseLz/
4jALpq+4o+jx9JU7PR8xmhy/fL4f++7J4smzBwvv4YM02IIpNXBOR8cT78S1
u8+ed588e3T/4NnDk4NXz7u7rx5ODnlK++fB867tR2e0/Yc7z8IXn+JyDl85
w6f7jTeHPf/Zg86r408v92Y7l3vbk7k/U8t5cPbq0eOp30bUud/fnQ7fvkIU
eZCG+9Gr+OD548snL+bH+42d4MnxyaB92L4fvXJehc9fzHvB8avzYzt46c+c
g5Oz4NOjB5vt/ZOTs70tXNJu95U7fx6cTOxXO6+Oju396Fkjemwfz/YfnZxM
ssM3Lx1/djgVs+l4/+zk6oUbt/dnWfb8xXSfZnaWnTw7O/zU2z70Pn27A5i/
b3sv4uyw8fDl24OTl51Xz6dn4vjB+cmb/cmefXp5+HDn6vjN/ehg+5TAcGJ3
uv6b6dmn9uNPDnYmzz5t7x/vzeZPPj3Z75w0Hs4fiBPfGR2fdPbfnIyfTwdX
/mxw5c1evTw+ehyMT+yf54GXeYVRg1EtMaNV+NRnKXKlHzH7eXSefPKiN356
Yp8PP/nsauvkwf3wyYNH6Z536W9/Brrtzqx3cjy4dKZ0G/dP2PmbpsuYEbtZ
Voo+4rZNf9Zzb7IzKDyUXt+e3/VtrzNsjrqDYbPTdgLgWqLfdJ2h47reUPiu
v7L+zXLRdQmyzyR7TydeExm84q5LtJ2tJdqOf1dthzqqGPElW13mZr5G6dm6
g9JT545FZ1A3122W+IGkupkWFyOzA16zOThPD0CJi6RHqUUWNSDKRAgzMVNy
/phqE9ZqQ3x3Wt5CeWCXDEzB7yEXZTwTV02WaOdeSJfsiIQFICzEN8PqnyTc
UhfZ8oj2Uq6WlsK1D78iRKlaksVKXTwX81IzuUtK0a+/TrOoaGlIqEyK5YFJ
X7HaOPEMgc8InZeP63zi0udXK/utURnp2hAMI+dkF3SOyibrCgs5WGA7psFy
/fOm7JJv9dOifrr0MHyru37dumst77nZWdppew46skx/Z6+HTpReF7+12+1O
u2s7/Xa977NRdpdc698ce05vZPpLumP0mDTwkedCB8NeB22QvTb8iJ6IO/hc
G8v8MG0HnaNDr2+P26Oh7dqjcd8fu167HfTcoD8aBsLpu64vhmLY6A3GwhGB
7cLr/aDtDrqjvj/wHAf+GguYz8DzB+12rz/2+yOMeusNht6414HGbmfUHcLy
Bo3RYNC3O8NOZ+S5HWcwGjgdV4z/ZJ2jnWsSRArOUe2DI5Ra/jo6NP6WfKP/
NFyUvdq1WkXoOLZr+ijrjlfFRykct93pIqTSSab9jUsOg9HalGpz72b9ETW9
mygA1/kctb9ryXEu+rsM96T2Of6nL/72LM1M33d+/PPTX/B9S6Hgi9/4oW63
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
LZBZ3MnxYmr0tvzmHbNM44IlNMJTlZKCd+1KtHYvL5mf0Ti6c0zAoYMqkYHq
OwRhwin6Qu4/30PNWIpnRt/ZuWy0thptXd17LZFVHhxGFtQa5ADyeSAySvKJ
OBEBGFhEffpXPm7qVE+OaO1q2BKtdWsljCjXQqyYP1vTOJ6nNdXTqJZYTZRT
yjRWkQicgwYT3wVSUy+QEi1wu5fVmsQi19VwJ6RFRQMngfKe03Iaj2K86MCw
hDYY1zas5UOwP6k8iurScoH9HXzSULUtUVa4tjcj1ffxg2dvd519zJCcZXPK
S3yzc7UbXqi0X53qyqmt2U+D9qeYdCoaV4+n4tFmePBm9+rgeKe992bzcv/t
JvQznWAK7N7xy87+m7OrvW34besi9DAxFPrzHh3a/qO93pOr4VQ0Hj7I/IeX
0yez/fPREUwikimwzjCFBvbum3l/d/Z4Hjzag4F2oPNLzq+dnRz4s8fOs1lw
/9PG88mbT6eTw93ITnVm72xiB4/uvz0IB+evXkwmoxf301dH3Tcj1z4vrOjR
3vkeDtyIDu0R9Ly/vQdTvj9stbtPLsPmi03hOv2X0bM3vccPDwbPPvWHB7u7
3sHOVTw8fvZpW8TRw6tX3qOJe/D8fNB41fUm59Fze/P5y6uf/vRh+0n4yezx
Tz/5bPbo2dkn45Px/mntjWCHChHLHJIfv9O3KNYQkMI9ik+Z2yU5zSiVqTDK
m/4RkWR5S43HPPa6OZVIscpyQfkFjyll3keBXLFZhnFcqb6oy+0DEbnlDPyb
Z7B15xn4NINcCtFdS6KJu3j6Npzr2rU7RnRrpTqt49gcxjqmwprwGqDRlNMw
sHcuCcFKhDKlSKpeGH29vnYjCC1oMFPBwCBRc7JfNpUlUMyrm6sbHytxsjAX
RBJkDZigRFjKEwewTrxzGI8lyhPUGVm0OUSINhrPYKayvgEnelVLKnl1Qs04
TFIy9VCNhIyTp1Tfy3TYpiVap8COKLuNUu5I0ZlzUWMvy0CuXmQiXbdKlTD5
WupihVgW0b/Vzuq0M77Ules+xZwylPrxXOS3IykTyzp/NTYvZCkuV3Mw5XWd
5kZXt8rdYomNtKpCwjETS8ozW1rOmAXI2mFz6rxej0OKWHAFVMorHZfxD2sU
Vzuq4LCJvTl9N/oBGZxvWVf7aqYVytWZ5Y+4DIzTsrZ0+iafcKyfja8Qaukg
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
6IQkFP4TnVCc8bURmjJOWTwtQoi6IdHyW9ZAanteZ+3fYWv5wbyD8OGf9/Bf
zR+T+QL+/aE8ny1o0jtfdZKzpHc4Hd1Pks7iZHA50qfLUUff/550XmbleDrq
wVVJcnJfdgbJ9tFvv01Gu37YOCyRreO3Q91v/rhczY83fn+5nQ83iMiTp9Od
MxzPT9dW2L0rJ9GfJ3fds2TgiXSSLx11SpJe9qH1H2uydP6zU5YpEUwQoSWT
FGFBRS6pZFxlhVRFWhZFjjCC/yMI5QgxnCpFmGYIpQXRiJaoYlkrSxHKCk0r
hEhWZjIlKUFGryjVuEQaffNQSBItWoh9e9iPHK31P3kuKqbWz1U5yck7U2Ul
zjBpbf9Q5mnKsu/NrjOU1cyuEaGqKPXWnCSlKM+dnMyhkGCkAkEqhHG2pkAI
IORPBZCtq/d+YT8bQMj3Agj94wGE/PEAQrYCCP2ZAEI2Awj52jtPOr1B0ust
p2k7aV/ym/4FwlXnrn/08Wy4WOjpy+ENXOW9vJ1k4177+9HCH702/7TqB9//
08cPEel30XJHSBscYjIcfZvIRWfYH/Te+bGreq9NtPuRlayOe8vkvdh61tZD
ILLq7/itM/18PV0/1Ws/Hyk8Sgarn414pIl4GmFax7wMIG8BDoqNaTFMyhSn
JjyxquScoLJoUS5zonKFC0oxyURRCZXlgsfRhiFREhz8e/PYEWd2HQxJzTMT
gP8EkW8f/1VElMkG6bcCOcikkIKlf2AlkD/It8QYH1WO6c4A/keOHGlQeevH
ZsyRLNj3tZMqgd/jGmSS4iovBIIp8824z/5U3N+6GrbB4k8HfuoCf4jzPvCz
Js77wM+bsO4Dv2jCug/8sgnrPvCrcIIxM0JvIUcURX5/ageajPID+DkyWYeu
nzIXsvVT5kL+M2mEbaYR1Oudj7oQ6bpJ/2jVf7jv93vHvVXn+qnTa7cHV0cX
b5SfjuEq3LubXgwO0ywZ7Qp7HTx8N/r+gbj73eN/K5F20p3NO/+dK+lOX9Pv
aOD7RH746PennW1D+HEinWT2tDr5mZUc3j7f3CdfJz79jg9vrv4QkfYrTabJ
6PTpZjPBr86Unq3O1onczRP9etY+S342ebMoeROmfPKGhI0AQlMbvykkJVwh
ApcgBR4PMSVvIcJh76IYjGQY47zMM1myTGUcE5qiEgKy0O/G9CayE5Rxpn8s
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
dgmFBMAA2A/7eSLAIChze1ASAAOHjC/8yZBfCeAIZwvRrQJzj8ZPFKwO5OZl
zKJNNgjOrzN4EUXIG10ADEQy5s07AAbAT9jBKhLfMFDKuxaPOUL15UFFEH7d
toYExACBxeEawn/q4araerj66WJwRu4/3y4O51mxJJv/u7t5vMYPb6az+fDT
5wdxzcvHg8ubSi5LLaezg8/JVHYG7STpDJbL/D5J2sPF83XzjG9xLla9UdKT
eHBcP+/qz1a3K/9Yq1gkzbPazunqfu1xV+c6PciPzXO48rj5yRFpD15O2b35
+9PD8Sq82HeXrNrmmVsbibfV8bR7Aku7eqpG97ufvHWmHEVvFV6Mr/KhozVK
js9PRsDHIaEP9es+vc6KPl0ng5dy1I4f33WLZY/ZB6dvd8MX+GkwXqn76dHd
y9C807S/miRXnYvzt5vp6+Js+OWiQHbFF3efzLd9VyeDh9Pcr7DzNj/93Bsc
5o/+zcbBdHo9AYb6mN8Pk/4Rv0r6o9O2Pk3aHfb78Hp0+OXcvUHVTh7OxNX0
NPt43E+GXzv9dtJLbqunvH6o+Ly8V83j3fR4oocvL1/bF/1OcvDp4d4QaY+q
4ci+gHV+MZoFsXaHixMFwuggOkqiVy67B58Ori3Js7uLtN0zMukePX1OBndm
epDLwcrNeDgGzod92r4eghgvjp6SRPSPZsd+ivldeWPmPbl6ujFEprNPL6tg
C/cnV4taTaNOlp8mByj77dqemh4gsN/uSHY+u1fHem1x/jTYerjam+HlAEge
IHEzCq9FPXfT0mjseXTmVdCejgZnk2AnqZJnxqBBqfNJsnGczS7ezLTj8v5l
/zaff0bD0WMp6qWP0mvzgefmi6vR0V0t9pF8ubuxs4+6b+pkdJBc91In5uNT
+gLm9wmIFLe58ZVp+6g7vO5O8ZOZpNMnUwZD218eMJjg6fRtaeR2+fXxcHA/
+rIqzNuwg+V9PknWHziPTrIza+CbR69TLUCD8dF5TH9zsu3eSyAyPosYaj+X
CHWSx8Os3T5kH5N+MjroFoaJ3zrppy3yJ8nxYHUFRCT5LTu0Tn2S3N6ieU1u
MLpQ6+7aSdIzZE51+Cc06CT9Y/oAF74CkcPVq7FS8Xg7BBv60r4CxZ73sk8D
p+D0uEeP4fpVgp6T63b/5ukkmTzdZsk4uXxC48HjiXl9uZ5t1L7E9nF/cTFh
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
t9us22jYFht/281x6z8BCLi7sSTNAQA=

-->

</rfc>
