<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.3.37 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-secevent-subject-identifiers-07" category="std">

  <front>
    <title abbrev="secevent-subject-identifiers">Subject Identifiers for Security Event Tokens</title>

    <author initials="A." surname="Backman" fullname="Annabelle Backman" role="editor">
      <organization>Amazon</organization>
      <address>
        <email>richanna@amazon.com</email>
      </address>
    </author>
    <author initials="M." surname="Scurtescu" fullname="Marius Scurtescu">
      <organization>Coinbase</organization>
      <address>
        <email>marius.scurtescu@coinbase.com</email>
      </address>
    </author>

    <date year="2021" month="March" day="08"/>

    <area>Security</area>
    <workgroup>Security Events Working Group</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>Security events communicated within Security Event Tokens may support a variety of identifiers to identify subjects related to the event.  This specification formalizes the notion of subject identifiers as structured information that describe a subject, and named formats that define the syntax and semantics for encoding subject identifiers as JSON objects.  It also defines a registry for defining and allocating names for such formats, as well as the <spanx style="verb">sub_id</spanx> JSON Web Token (JWT) claim.</t>



    </abstract>


  </front>

  <middle>


<section anchor="intro" title="Introduction">
<t>As described in Section 1.2 of SET <xref target="RFC8417"/>, subjects related to security events may take a variety of forms, including but not limited to a JWT <xref target="RFC7519"/> principal, an IP address, a URL, etc.  Different types of subjects may need to be identified in different ways. (e.g., a host might be identified by an IP or MAC address, while a user might be identified by an email address)  Furthermore, even in the case where the type of the subject is known, there may be multiple ways by which a given subject may be identified.  For example, an account may be identified by an opaque identifier, an email address, a phone number, a JWT <spanx style="verb">iss</spanx> claim and <spanx style="verb">sub</spanx> claim, etc., depending on the nature and needs of the transmitter and receiver. Even within the context of a given transmitter and receiver relationship, it may be appropriate to identify different accounts in different ways, for example if some accounts only have email addresses associated with them while others only have phone numbers. Therefore it can be necessary to indicate within a SET the mechanism by which a subject is being identified.</t>

<t>To address this problem, this specification defines Subject Identifiers - JSON <xref target="RFC7159"/> objects containing information identifying a subject - and Identifier Formats - named sets of rules describing how to encode different kinds of subject identifying information (e.g., an email address, or an issuer and subject pair) as a Subject Identifier.</t>

<t>Below is a non-normative example of a Subject Identifier that identifies a subject by email address, using the Email Identifier Format.</t>

<figure title="Example: Subject Identifier using the Email Identifier Format" anchor="figexampleintro"><artwork><![CDATA[
{
  "format": "email",
  "email": "user@example.com",
}
]]></artwork></figure>

<t>Subject Identifiers are intended to be a general purpose mechanism for identifying subjects within JSON objects and their usage need not be limited to SETs.  Below is a non-normative example of a JWT that uses a Subject Identifier in the <spanx style="verb">sub_id</spanx> claim (defined in this specification) to identify the JWT Subject.</t>

<figure title="Example: JWT using a Subject Identifier with the sub_id claim" anchor="figexampleintro2"><artwork><![CDATA[
{
  "iss": "issuer.example.com",
  "sub_id": {
    "format": "phone_number",
    "phone_number": "+12065550100",
  },
}
]]></artwork></figure>

<t>Usage of Subject Identifiers also need not be limited to identifying JWT Subjects.  They are intended as a general purpose means of expressing identifying information in an unambiguous manner.  Below is a non-normative example of a SET containing a hypothetical security event describing the interception of a message, using Subject Identifiers to identify the sender, intended recipient, and interceptor.</t>

<figure title="Example: SET with an event payload containing multiple Subject Identifiers" anchor="figexampleintro3"><artwork><![CDATA[
{
  "iss": "issuer.example.com",
  "iat": 1508184845,
  "aud": "aud.example.com",
  "events": {
    "https://secevent.example.com/events/message-interception": {
      "from": {
        "format": "email",
        "email": "alice@example.com",
      },
      "to": {
        "format": "email",
        "email": "bob@example.com",
      },
      "interceptor": {
        "format": "email",
        "email": "eve@example.com",
      },
    },
  },
}

]]></artwork></figure>

</section>
<section anchor="conv" title="Notational Conventions">
<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”,
“SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this
document are to be interpreted as described in <xref target="RFC2119"/>.</t>

<section anchor="defn" title="Definitions">
<t>This specification utilizes terminology defined in <xref target="RFC7159"/>, <xref target="RFC7519"/>, and <xref target="RFC8417"/>.</t>

<t>Within this specification, the terms “Subject” and “subject” refer generically to anything being identified via one or more pieces of information.  The term “JWT Subject” refers specifically to the to the subject of a JWT. (i.e., the subject that the JWT asserts claims about)</t>

</section>
</section>
<section anchor="sub-ids" title="Subject Identifiers">
<t>A Subject Identifier is a JSON <xref target="RFC7159"/> object whose contents may be used to identify a subject within some context.  An Identifier Format is a named definition of a set of information that may be used to identify a subject, and the rules for encoding that information as a Subject Identifier; they define the syntax and semantics of Subject Identifiers.  A Subject Identifier MUST conform to a specific Identifier Format, and MUST contain a <spanx style="verb">format</spanx> member whose value is the name of that Identifier Format.</t>

<t>Every Identifier Format MUST have a unique name registered in the IANA “Security Event Identifier Formats” registry established by <xref target="iana-formats"/>, or a Collision-Resistant Name as defined in <xref target="RFC7519"/>.  Identifier Formats that are expected to be used broadly by a variety of parties SHOULD be registered in the “Security Event Identifier Formats” registry.</t>

<t>An Identifier Format MAY describe more members than are strictly necessary to identify a subject, and MAY describe conditions under which those members are required, optional, or prohibited.  The <spanx style="verb">format</spanx> member is reserved for use as described in this specification; Identifier Formats MUST NOT declare any rules regarding the <spanx style="verb">format</spanx> member.</t>

<t>Every member within a Subject Identifier MUST match the rules specified for that member by this specification or by Subject Identifier’s Identifier Format.  A Subject Identifier MUST NOT contain any members prohibited or not described by its Identifier Format, and MUST contain all members required by its Identifier Format.</t>

<section anchor="identifier-formats-versus-principal-types" title="Identifier Formats versus Principal Types">
<t>Identifier Formats define how to encode identifying information for a subject.  They do not define the type or nature of the subject itself.  E.g., While the <spanx style="verb">email</spanx> Identifier Format declares that the value of the <spanx style="verb">email</spanx> member is an email address, a subject in a Security Event that is identified by an <spanx style="verb">email</spanx> Subject Identifier could be an end user who controls that email address, the mailbox itself, or anything else that the transmitter and receiver both understand to be associated with that email address.  Consequently Subject Identifiers remove ambiguity around how a subject is being identified, and how to parse an identifying structure, but do not remove ambiguity around how to resolve that identifier to a subject.  For example, consider a directory management API that allows callers to identify users and groups through both opaque unique identifiers and email addresses.  Such an API could use Subject Identifiers to disambiguate between which of these two types of identifiers is in use.  However, the API would have to determine whether the subject is a user or group via some other means, such as by querying a database, interpreting other parameters in the request, or inferring the type from the API contract.</t>

</section>
<section anchor="identifier-format-definitions" title="Identifier Format Definitions">

<t>The following Identifier Formats are registered in the IANA “Security Event Identifier Formats” registry established by <xref target="iana-formats"/>.</t>

<section anchor="sub-id-acct" title="Account Identifier Format">
<t>The Account Identifier Format identifies a subject using an account at a service provider, identified with an <spanx style="verb">acct</spanx> URI as defined in <xref target="RFC7565"/>.  Subject Identifiers in this format MUST contain a <spanx style="verb">uri</spanx> member whose value is the <spanx style="verb">acct</spanx> URI for the subject.  The <spanx style="verb">uri</spanx> member is REQUIRED and MUST NOT be null or empty.  The Account Identifier Format is identified by the name <spanx style="verb">account</spanx>.</t>

<t>Below is a non-normative example Subject Identifier for the Account Identifier Format:</t>

<figure title="Example: Subject Identifier for the Account Identifier Format" anchor="figexamplesubidaccount"><artwork><![CDATA[
{
  "format": "account",
  "uri": "acct:example.user@service.example.com",
}
]]></artwork></figure>

</section>
<section anchor="sub-id-email" title="Email Identifier Format">
<t>The Email Identifier Format identifies a subject using an email address.  Subject Identifiers in this format MUST contain an <spanx style="verb">email</spanx> member whose value is a string containing the email address of the subject, formatted as an <spanx style="verb">addr-spec</spanx> as defined in Section 3.4.1 of <xref target="RFC5322"/>. The <spanx style="verb">email</spanx> member is REQUIRED and MUST NOT be null or empty. The value of the <spanx style="verb">email</spanx> member SHOULD identify a mailbox to which email may be delivered, in accordance with <xref target="RFC5321"/>. The Email Identifier Format is identified by the name <spanx style="verb">email</spanx>.</t>

<t>Below is a non-normative example Subject Identifier in the Email Identifier Format:</t>

<figure title="Example: Subject Identifier in the Email Identifier Format" anchor="figexamplesubidemail"><artwork><![CDATA[
{
  "format": "email",
  "email": "user@example.com",
}
]]></artwork></figure>

<section anchor="email-canon" title="Email Canonicalization">
<t>Many email providers will treat multiple email addresses as equivalent. While the domain portion of an <xref target="RFC5322"/> email address is consistently treated as case-insensitive per <xref target="RFC1034"/>, some providers treat the local part of the email address as case-insensitive as well, and consider “user@example.com”, “User@example.com”, and “USER@example.com” as the same email address. This has led users to view these strings as equivalent, driving service providers to implement proprietary email canonicalization algorithms to ensure that email addresses entered by users resolve to the same canonical string. When receiving an Email Subject Identifier, the recipient SHOULD use their implementation’s canonicalization algorithm to resolve the email address to the same string used in their system.</t>

</section>
</section>
<section anchor="sub-id-phone" title="Phone Number Identifier Format">
<t>The Phone Number Identifier Format identifies a subject using a telephone number.  Subject Identifiers in this format MUST contain a <spanx style="verb">phone_number</spanx> member whose value is a string containing the full telephone number of the subject, including international dialing prefix, formatted according to <xref target="E164">E.164</xref>. The <spanx style="verb">phone_number</spanx> member is REQUIRED and MUST NOT be null or empty. The Phone Number Identifier Format is identified by the name <spanx style="verb">phone_number</spanx>.</t>

<t>Below is a non-normative example Subject Identifier in the Email Identifier Format:</t>

<figure title="Example: Subject Identifier in the Phone Number Identifier Format." anchor="figexamplesubidphone"><artwork><![CDATA[
{
  "format": "phone_number",
  "phone_number": "+12065550100",
}
]]></artwork></figure>

</section>
<section anchor="sub-id-iss-sub" title="Issuer and Subject Identifier Format">
<t>The Issuer and Subject Identifier Format identifies a subject using a pair of <spanx style="verb">iss</spanx> and <spanx style="verb">sub</spanx> members, analagous to how subjects are identified using the <spanx style="verb">iss</spanx> and <spanx style="verb">sub</spanx> claims in <xref target="OpenID.Core">OpenID Connect</xref> ID Tokens.  These members MUST follow the formats of the <spanx style="verb">iss</spanx> member and <spanx style="verb">sub</spanx> member defined by <xref target="RFC7519"/>, respectively.  Both the <spanx style="verb">iss</spanx> member and the <spanx style="verb">sub</spanx> member are REQUIRED and MUST NOT be null or empty. The Issuer and Subject Identifier Format is identified by the name <spanx style="verb">iss_sub</spanx>.</t>

<t>Below is a non-normative example Subject Identifier in the Issuer and Subject Identifier Format:</t>

<figure title="Example: Subject Identifier in the Issuer and Subject Identifier Format" anchor="figexamplesubidisssub"><artwork><![CDATA[
{
  "format": "iss_sub",
  "iss": "http://issuer.example.com/",
  "sub": "145234573",
}
]]></artwork></figure>

</section>
<section anchor="sub-id-aliases" title="Aliases Identifier Format">
<t>The Aliases Identifier Format describes a subject that is identified with a list of different Subject Identifiers. It is intended for use when a variety of identifiers have been shared with the party that will be interpreting the Subject Identifier, and it is unknown which of those identifiers they will recognize or support.  Subject Identifiers in this format MUST contain an <spanx style="verb">identifiers</spanx> member whose value is a JSON array containing one or more Subject Identifiers.  Each Subject Identifier in the array MUST identify the same entity.  The <spanx style="verb">identifiers</spanx> member is REQUIRED and MUST NOT be null or empty.  It MAY contain multiple instances of the same Identifier Format (e.g., multiple Email Subject Identifiers), but SHOULD NOT contain exact duplicates.  This type is identified by the name <spanx style="verb">aliases</spanx>.</t>

<t><spanx style="verb">alias</spanx> Subject Identifiers MUST NOT be nested; i.e., the <spanx style="verb">identifiers</spanx> member of an <spanx style="verb">alias</spanx> Subject Identifier MUST NOT contain a Subject Identifier of type <spanx style="verb">aliases</spanx>.</t>

<t>Below is a non-normative example Subject Identifier in the Aliases Identifier Format:</t>

<figure title="Example: Subject Identifier in the Aliases Identifier Format" anchor="figexamplesubididtoken"><artwork><![CDATA[
{
  "format": "aliases",
  "identifiers": [
    {
      "format": "email",
      "email": "user@example.com",
    },
    {
      "format": "phone_number",
      "phone_number": "+12065550100",
    },
    {
      "format": "email",
      "email": "user+qualifier@example.com",
    }
  ],
}
]]></artwork></figure>

</section>
<section anchor="sub-id-opaque" title="Opaque Identifier Format">
<t>The Opaque Identifier Format describes a subject that is identified with a string with no semantics asserted beyond its usage as an identifier for the subject, such as a UUID or hash used as a surrogate identifier for a record in a database.  Subject Identifiers in this format MUST contain an <spanx style="verb">id</spanx> member whose value is a JSON string containing the opaque string identifier for the subject.  The <spanx style="verb">id</spanx> member is REQUIRED and MUST NOT be null or empty.  The Opaque Identifier Format is identified by the name <spanx style="verb">opaque</spanx>.</t>

<t>Below is a non-normative example Subject Identifier in the Opaque Identifier Format:</t>

<figure title="Example: Subject Identifier in the Opaque Identifier Format" anchor="figexamplesubidopaque"><artwork><![CDATA[
{
  "format": "opaque",
  "id": "11112222333344445555",
}
]]></artwork></figure>

</section>
</section>
</section>
<section anchor="jwt-claims" title="Subject Identifiers in JWTs">

<section anchor="jwt-claims-sub_id" title="“sub_id” Claim">
<t>The <spanx style="verb">sub</spanx> JWT Claim is defined in Section 4.1.2 of <xref target="RFC7519"/> as containing a string value, and therefore cannot contain a Subject Identifier (which is a JSON object) as its value.  This document defines the <spanx style="verb">sub_id</spanx> JWT Claim, in accordance with Section 4.2 of <xref target="RFC7519"/>, as a common claim that identifies the JWT Subject using a Subject Identifier.  When present, the value of this claim MUST be a Subject Identifier that identifies the subject of the JWT.  The <spanx style="verb">sub_id</spanx> claim MAY be included in a JWT, whether or not the <spanx style="verb">sub</spanx> claim is present.  When both the <spanx style="verb">sub</spanx> and <spanx style="verb">sub_id</spanx> claims are present in a JWT, they MUST identify the same subject, as a JWT has one and only one JWT Subject.</t>

<t>When processing a JWT with both <spanx style="verb">sub</spanx> and <spanx style="verb">sub_id</spanx> claims, implementations MUST NOT rely on both claims to determine the JWT Subject.  An implementation MAY attempt to determine the JWT Subject from one claim and fall back to using the other if it determines it does not understand the format of the first claim.  For example, an implementation may attempt to use <spanx style="verb">sub_id</spanx>, and fall back to using <spanx style="verb">sub</spanx> upon finding that <spanx style="verb">sub_id</spanx> contains a Subject Identifier whose type is not recognized by the implementation.</t>

<t>Below are non-normative examples of JWTs containing the <spanx style="verb">sub_id</spanx> claim:</t>

<figure title="Example: JWT containing a `sub_id` claim and no `sub` claim" anchor="figexamplejwtsubidemail"><artwork><![CDATA[
{
  "iss": "issuer.example.com",
  "sub_id": {
    "format": "email",
    "email": "user@example.com",
  },
}
]]></artwork></figure>

<figure title="Example: JWT where both the `sub` and `sub_id` claims identify the JWT Subject using the same identifier" anchor="figexamplejwtsamesubtype"><artwork><![CDATA[
{
  "iss": "issuer.example.com",
  "sub": "user@example.com",
  "sub_id": {
    "format": "email",
    "email": "user@example.com",
  },
}
]]></artwork></figure>

<figure title="Example: JWT where both the `sub` and `sub_id` claims identify the JWT Subject using different values of the same identifier type" anchor="figexamplejwtdiffsubvalues"><artwork><![CDATA[
{
  "iss": "issuer.example.com",
  "sub": "user@example.com",
  "sub_id": {
    "format": "email",
    "email": "elizabeth@example.com",
  },
}
]]></artwork></figure>

<figure title="Example: JWT where the `sub` and `sub_id` claims identify the JWT Subject via different types of identifiers" anchor="figexamplejwtdiffsubtype"><artwork><![CDATA[
{
  "iss": "issuer.example.com",
  "sub": "user@example.com",
  "sub_id": {
    "format": "account",
    "uri": "acct:example.user@service.example.com",
  },
}
]]></artwork></figure>

</section>
<section anchor="subid-and-isssub-subject-identifiers" title="“sub_id” and “iss_sub” Subject Identifiers">
<t>The <spanx style="verb">sub_id</spanx> claim MAY contain an <spanx style="verb">iss_sub</spanx> Subject Identifier.  In this case, the JWT’s <spanx style="verb">iss</spanx> claim and the Subject Identifier’s <spanx style="verb">iss</spanx> member MAY be different.  For example, in <xref target="OpenID.Core">OpenID Connect</xref> client may construct such a JWT when sending JWTs back to its OpenID Connect Identity Provider, in order to identify the JWT Subject using an identifier known to be understood by both parties.  Similarly, the JWT’s <spanx style="verb">sub</spanx> claim and the Subject Identifier’s <spanx style="verb">sub</spanx> member MAY be different.  For example, this may be used by an OpenID Connect client to communicate the JWT Subject’s local identifier at the client back to its Identity Provider.</t>

<t>Below are non-normative examples of a JWT where the <spanx style="verb">iss</spanx> claim and <spanx style="verb">iss</spanx> member within the <spanx style="verb">sub_id</spanx> claim are the same, and a JWT where they are different.</t>

<figure title="Example: JWT with a `iss_sub` Subject Identifier where JWT issuer and JWT Subject issuer are the same" anchor="figexamplejwtsameiss"><artwork><![CDATA[
{
  "iss": "issuer.example.com",
  "sub_id": {
    "format": "iss_sub",
    "iss": "issuer.example.com",
    "sub": "example_user",
  },
}
]]></artwork></figure>

<figure title="Example: JWT with an `iss_sub` Subject Identifier where the JWT issuer and JWT Subject issuer are different" anchor="figexamplejwtdiffiss"><artwork><![CDATA[
{
  "iss": "client.example.com",
  "sub_id": {
    "format": "iss_sub",
    "iss": "issuer.example.com",
    "sub": "example_user",
  },
}
]]></artwork></figure>

<figure title="Example: JWT with an `iss_sub` Subject Identifier where the JWT `iss` and `sub` claims differ from the JWT Subject's `iss` and `sub` members" anchor="figexamplejwtdiffisssub"><artwork><![CDATA[
{
  "iss": "client.example.com",
  "sub": "client_user",
  "sub_id": {
    "format": "iss_sub",
    "iss": "issuer.example.com",
    "sub": "example_user",
  },
}
]]></artwork></figure>

</section>
</section>
<section anchor="implementer" title="Considerations for Specifications that Define Identifier Formats">
<t>Identifier Format definitions MUST NOT make assertions or declarations regarding the subject being identified by the Subject Identifier (e.g., an Identifier Format cannot be defined as specifically identifying human end users), as such statements are outside the scope of Identifier Formats and Subject Identifiers, and expanding that scope for some Identifier Formats but not others would harm interoperability, as applications that depend on this expanded scope to disambiguate the subject type would be unable to use Identifier Formats that do not provide such rules.</t>

</section>
<section anchor="privacy" title="Privacy Considerations">

<section anchor="identifier-correlation" title="Identifier Correlation">
<t>The act of presenting two or more identifiers for a single subject together (e.g., within an <spanx style="verb">aliases</spanx> Subject Identifier, or via the <spanx style="verb">sub</spanx> and <spanx style="verb">sub_id</spanx> JWT claims) may communicate more information about the subject than was intended.  For example, the entity to which the identifiers are presented now knows that both identifiers relate to the same subject, and may be able to correlate additional data based on that.  When transmitting Subject Identifiers, the transmitter SHOULD take care that they are only transmitting multiple identifiers together when it is known that the recipient already knows that the identifiers are related (e.g., because they were previously sent to the recipient as claims in an OpenID Connect ID Token), or when correlation is essential to the use case.</t>

<t>The considerations described in Section 6 of <xref target="RFC8417"/> also apply when Subject Identifiers are used within SETs.  The considerations described in Section 12 of <xref target="RFC7519"/> also apply when Subject Identifiers are used within JWTs.</t>

</section>
</section>
<section anchor="security" title="Security Considerations">

<section anchor="confidentiality-and-integrity" title="Confidentiality and Integrity">
<t>This specification does not define any mechanism for ensuring the confidentiality or integrityi of a Subject Identifier.  Where such properties are required, implementations MUST use mechanisms provided by the containing format (e.g., integrity protecting SETs or JWTs using JWS <xref target="RFC7515"/>), or at the transport layer or other layer in the application stack (e.g., using TLS <xref target="RFC8446"/>).</t>

<t>Further considerations regarding confidentiality and integrity of SETs can be found in Section 5.1 of <xref target="RFC8417"/>.</t>

</section>
</section>
<section anchor="iana" title="IANA Considerations">

<section anchor="iana-formats" title="Security Event Identifier Formats Registry">
<t>This document defines Identifier Formats, for which IANA is asked to create and maintain a new registry titled “Security Event Identifier Formats”.  Initial values for the Security Event Identifier Formats registry are given in <xref target="sub-ids"/>.  Future assignments are to be made through the Expert Review registration policy <xref target="BCP26"/> and shall follow the template presented in <xref target="iana-formats-template"/>.</t>

<t>It is suggested that multiple Designated Experts be appointed who are able to represent the perspectives of different applications using this specification, in order to enable broadly informed review of registration decisions.  In cases where a registration decision could be perceived as creating a conflict of interest for a particular Expert, that Expert should defer to the judgment of the other Experts.</t>

<section anchor="registry-location" title="Registry Location">
<t>(This section to be removed by the RFC Editor before publication as an RFC.)</t>

<t>The authors recommend that the Identifier Formats registry be located at <spanx style="verb">https://www.iana.org/assignments/secevent/</spanx>.</t>

</section>
<section anchor="iana-formats-template" title="Registration Template">

<t><list style="hanging">
  <t hangText="Type Name"><vspace blankLines='0'/>
  The name of the Identifier Format, as described in <xref target="sub-ids"/>. The name MUST be an ASCII string consisting only of lower-case characters (“a” - “z”), digits (“0” - “9”), underscores (“_”), and hyphens (“-“), and SHOULD NOT exceed 20 characters in length.</t>
  <t hangText="Type Description"><vspace blankLines='0'/>
  A brief description of the Identifier Format.</t>
  <t hangText="Change Controller"><vspace blankLines='0'/>
  For types defined in documents published by the IETF or its working groups, list “IETF”.  For all other types, list the name of the party responsible for the registration.  Contact information such as mailing address, email address, or phone number may also be provided.</t>
  <t hangText="Defining Document(s)"><vspace blankLines='0'/>
  A reference to the document or documents that define the Identifier Format.  The definition MUST specify the name, format, and meaning of each member that may occur within a Subject Identifier of the defined type, as well as whether each member is optional, required, prohibited, or the circumstances under which the member may be optional, required, or prohibited. URIs that can be used to retrieve copies of each document SHOULD be included.</t>
</list></t>

</section>
<section anchor="iana-formats-init" title="Initial Registry Contents">

<section anchor="account-identifier-format" title="Account Identifier Format">

<t><list style="symbols">
  <t>Type Name: <spanx style="verb">account</spanx></t>
  <t>Type Description: Subject identifier based on <spanx style="verb">acct</spanx> URI.</t>
  <t>Change Controller: IETF</t>
  <t>Defining Document(s): <xref target="sub-ids"/> of this document.</t>
</list></t>

</section>
<section anchor="email-identifier-format" title="Email Identifier Format">

<t><list style="symbols">
  <t>Type Name: <spanx style="verb">email</spanx></t>
  <t>Type Description: Subject identifier based on email address.</t>
  <t>Change Controller: IETF</t>
  <t>Defining Document(s): <xref target="sub-ids"/> of this document.</t>
</list></t>

</section>
<section anchor="issuer-and-subject-identifier-format" title="Issuer and Subject Identifier Format">

<t><list style="symbols">
  <t>Type Name: <spanx style="verb">iss_sub</spanx></t>
  <t>Type Description: Subject identifier based on an issuer and subject.</t>
  <t>Change Controller: IETF</t>
  <t>Defining Document(s): <xref target="sub-ids"/> of this document.</t>
</list></t>

</section>
<section anchor="phone-number-identifier-format" title="Phone Number Identifier Format">

<t><list style="symbols">
  <t>Type Name: <spanx style="verb">phone_number</spanx></t>
  <t>Type Description: Subject identifier based on an phone number.</t>
  <t>Change Controller: IETF</t>
  <t>Defining Document(s): <xref target="sub-ids"/> of this document.</t>
</list></t>

</section>
<section anchor="aliases-identifier-format" title="Aliases Identifier Format">

<t><list style="symbols">
  <t>Type Name: <spanx style="verb">aliases</spanx></t>
  <t>Type Description: Subject identifier that groups together multiple different subject identifiers for the same subject.</t>
  <t>Change Controller: IETF</t>
  <t>Defining Document(s): <xref target="sub-ids"/> of this document.</t>
</list></t>

</section>
<section anchor="opaque-identifier-format" title="Opaque Identifier Format">

<t><list style="symbols">
  <t>Type Name: <spanx style="verb">opaque</spanx></t>
  <t>Type Description: Subject identifier based on an opaque string.</t>
  <t>Change Controller: IETF</t>
  <t>Defining Document(s): <xref target="sub-ids"/> of this document.</t>
</list></t>

</section>
</section>
<section anchor="iana-formats-expert" title="Guidance for Expert Reviewers">
<t>The Expert Reviewer is expected to review the documentation referenced in a registration request to verify its completeness. The Expert Reviewer must base their decision to accept or reject the request on a fair and impartial assessment of the request. If the Expert Reviewer has a conflict of interest, such as being an author of a defining document referenced by the request, they must recuse themselves from the approval process for that request. In the case where a request is rejected, the Expert Reviewer should provide the requesting party with a written statement expressing the reason for rejection, and be prepared to cite any sources of information that went into that decision.</t>

<t>Identifier Formats need not be generally applicable and may be highly specific to a particular domain; it is expected that types may be registered for niche or industry-specific use cases. The Expert Reviewer should focus on whether the type is thoroughly documented, and whether its registration will promote or harm interoperability.  In most cases, the Expert Reviewer should not approve a request if the registration would contribute to confusion, or amount to a synonym for an existing type.</t>

</section>
</section>
<section anchor="json-web-token-claims-registration" title="JSON Web Token Claims Registration">
<t>This document defines the <spanx style="verb">sub_id</spanx> JWT Claim, which IANA is asked to register in the “JSON Web Token Claims” registry <xref target="IANA.JWT.Claims">IANA JSON Web Token Claims Registry</xref> established by <xref target="RFC7519"/>.</t>

<section anchor="registry-contents" title="Registry Contents">

<t><list style="symbols">
  <t>Claim Name: “sub_id”</t>
  <t>Claim Description: Subject Identifier</t>
  <t>Change Controller: IESG</t>
  <t>Specification Document(s): <xref target="jwt-claims-sub_id"/> of this document.</t>
</list></t>

</section>
</section>
</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference anchor='BCP26' target='https://www.rfc-editor.org/info/rfc8126'>
<front>
<title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
<author fullname='M. Cotton' initials='M.' surname='Cotton'><organization/></author>
<author fullname='B. Leiba' initials='B.' surname='Leiba'><organization/></author>
<author fullname='T. Narten' initials='T.' surname='Narten'><organization/></author>
<date month='June' year='2017'/>
<abstract><t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t><t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t><t>This is the third edition of this document; it obsoletes RFC 5226.</t></abstract>
</front>
<seriesInfo name='BCP' value='26'/>
<seriesInfo name='RFC' value='8126'/>
<seriesInfo name='DOI' value='10.17487/RFC8126'/>
</reference>


<reference anchor="E164" target="http://www.itu.int/rec/T-REC-E.164-201011-I/en">
  <front>
    <title>The international public telecommunication numbering plan</title>
    <author >
      <organization>International Telecommunication Union</organization>
    </author>
    <date year="2010"/>
  </front>
</reference>
<reference anchor="IANA.JWT.Claims" target="http://www.iana.org/assignments/jwt">
  <front>
    <title>JSON Web Token Claims</title>
    <author >
      <organization>IANA</organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>




<reference anchor='RFC8417' target='https://www.rfc-editor.org/info/rfc8417'>
<front>
<title>Security Event Token (SET)</title>
<author fullname='P. Hunt' initials='P.' role='editor' surname='Hunt'><organization/></author>
<author fullname='M. Jones' initials='M.' surname='Jones'><organization/></author>
<author fullname='W. Denniss' initials='W.' surname='Denniss'><organization/></author>
<author fullname='M. Ansari' initials='M.' surname='Ansari'><organization/></author>
<date month='July' year='2018'/>
<abstract><t>This specification defines the Security Event Token (SET) data structure.  A SET describes statements of fact from the perspective of an issuer about a subject.  These statements of fact represent an event that occurred directly to or about a security subject, for example, a statement about the issuance or revocation of a token on behalf of a subject.  This specification is intended to enable representing security- and identity-related events.  A SET is a JSON Web Token (JWT), which can be optionally signed and/or encrypted. SETs can be distributed via protocols such as HTTP.</t></abstract>
</front>
<seriesInfo name='RFC' value='8417'/>
<seriesInfo name='DOI' value='10.17487/RFC8417'/>
</reference>



<reference anchor='RFC7519' target='https://www.rfc-editor.org/info/rfc7519'>
<front>
<title>JSON Web Token (JWT)</title>
<author fullname='M. Jones' initials='M.' surname='Jones'><organization/></author>
<author fullname='J. Bradley' initials='J.' surname='Bradley'><organization/></author>
<author fullname='N. Sakimura' initials='N.' surname='Sakimura'><organization/></author>
<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='RFC7159' target='https://www.rfc-editor.org/info/rfc7159'>
<front>
<title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
<author fullname='T. Bray' initials='T.' role='editor' surname='Bray'><organization/></author>
<date month='March' year='2014'/>
<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='RFC' value='7159'/>
<seriesInfo name='DOI' value='10.17487/RFC7159'/>
</reference>



<reference anchor='RFC2119' target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author fullname='S. Bradner' initials='S.' surname='Bradner'><organization/></author>
<date month='March' year='1997'/>
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference anchor='RFC7565' target='https://www.rfc-editor.org/info/rfc7565'>
<front>
<title>The 'acct' URI Scheme</title>
<author fullname='P. Saint-Andre' initials='P.' surname='Saint-Andre'><organization/></author>
<date month='May' year='2015'/>
<abstract><t>This document defines the 'acct' Uniform Resource Identifier (URI) scheme as a way to identify a user's account at a service provider, irrespective of the particular protocols that can be used to interact with the account.</t></abstract>
</front>
<seriesInfo name='RFC' value='7565'/>
<seriesInfo name='DOI' value='10.17487/RFC7565'/>
</reference>



<reference anchor='RFC5322' target='https://www.rfc-editor.org/info/rfc5322'>
<front>
<title>Internet Message Format</title>
<author fullname='P. Resnick' initials='P.' role='editor' surname='Resnick'><organization/></author>
<date month='October' year='2008'/>
<abstract><t>This document specifies the Internet Message Format (IMF), a syntax for text messages that are sent between computer users, within the framework of &quot;electronic mail&quot; messages.  This specification is a revision of Request For Comments (RFC) 2822, which itself superseded Request For Comments (RFC) 822, &quot;Standard for the Format of ARPA Internet Text Messages&quot;, updating it to reflect current practice and incorporating incremental changes that were specified in other RFCs.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5322'/>
<seriesInfo name='DOI' value='10.17487/RFC5322'/>
</reference>



<reference anchor='RFC5321' target='https://www.rfc-editor.org/info/rfc5321'>
<front>
<title>Simple Mail Transfer Protocol</title>
<author fullname='J. Klensin' initials='J.' surname='Klensin'><organization/></author>
<date month='October' year='2008'/>
<abstract><t>This document is a specification of the basic protocol for Internet electronic mail transport.  It consolidates, updates, and clarifies several previous documents, making all or parts of most of them obsolete.  It covers the SMTP extension mechanisms and best practices for the contemporary Internet, but does not provide details about particular extensions.  Although SMTP was designed as a mail transport and delivery protocol, this specification also contains information that is important to its use as a &quot;mail submission&quot; protocol for &quot;split-UA&quot; (User Agent) mail reading systems and mobile environments.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5321'/>
<seriesInfo name='DOI' value='10.17487/RFC5321'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="OpenID.Core" target="http://openid.net/specs/openid-connect-core-1_0.html">
  <front>
    <title>OpenID Connect Core 1.0</title>
    <author initials="N." surname="Sakimura" fullname="Nat Sakimura">
      <organization>Nomura Research Institute, Ltd.</organization>
    </author>
    <author initials="J." surname="Bradley" fullname="John Bradley">
      <organization>Ping Identity</organization>
    </author>
    <author initials="M." surname="Jones" fullname="Michael B. Jones">
      <organization>Microsoft</organization>
    </author>
    <author initials="B." surname="de Medeiros" fullname="Breno de Medeiros">
      <organization>Google</organization>
    </author>
    <author initials="C." surname="Mortimore" fullname="Chuck Mortimore">
      <organization>Salesforce</organization>
    </author>
    <date year="2014" month="November"/>
  </front>
</reference>




<reference anchor='RFC1034' target='https://www.rfc-editor.org/info/rfc1034'>
<front>
<title>Domain names - concepts and facilities</title>
<author fullname='P.V. Mockapetris' initials='P.V.' surname='Mockapetris'><organization/></author>
<date month='November' year='1987'/>
<abstract><t>This RFC is the revised basic definition of The Domain Name System.  It obsoletes RFC-882.  This memo describes the domain style names and their used for host address look up and electronic mail forwarding.  It discusses the clients and servers in the domain name system and the protocol used between them.</t></abstract>
</front>
<seriesInfo name='STD' value='13'/>
<seriesInfo name='RFC' value='1034'/>
<seriesInfo name='DOI' value='10.17487/RFC1034'/>
</reference>



<reference anchor='RFC7515' target='https://www.rfc-editor.org/info/rfc7515'>
<front>
<title>JSON Web Signature (JWS)</title>
<author fullname='M. Jones' initials='M.' surname='Jones'><organization/></author>
<author fullname='J. Bradley' initials='J.' surname='Bradley'><organization/></author>
<author fullname='N. Sakimura' initials='N.' surname='Sakimura'><organization/></author>
<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='RFC8446' target='https://www.rfc-editor.org/info/rfc8446'>
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
<author fullname='E. Rescorla' initials='E.' surname='Rescorla'><organization/></author>
<date month='August' year='2018'/>
<abstract><t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t><t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='8446'/>
<seriesInfo name='DOI' value='10.17487/RFC8446'/>
</reference>




    </references>


<section numbered="no" anchor="acknowledgements" title="Acknowledgements">
<t>The authors would like to thank the members of the IETF Security Events working group, as well as those of the OpenID Shared Signals and Events Working Group, whose work provided the original basis for this document.</t>

</section>
<section numbered="no" anchor="change-log" title="Change Log">
<t>(This section to be removed by the RFC Editor before publication as an RFC.)</t>

<t>Draft 00 - AB - First draft</t>

<t>Draft 01 - AB:</t>

<t><list style="symbols">
  <t>Added reference to RFC 5322 for format of <spanx style="verb">email</spanx> claim.</t>
  <t>Renamed <spanx style="verb">iss_sub</spanx> type to <spanx style="verb">iss-sub</spanx>.</t>
  <t>Renamed <spanx style="verb">id_token_claims</spanx> type to <spanx style="verb">id-token-claims</spanx>.</t>
  <t>Added text specifying the nature of the subjects described by each type.</t>
</list></t>

<t>Draft 02 - AB:</t>

<t><list style="symbols">
  <t>Corrected format of phone numbers in examples.</t>
  <t>Updated author info.</t>
</list></t>

<t>Draft 03 - AB:</t>

<t><list style="symbols">
  <t>Added <spanx style="verb">account</spanx> type for <spanx style="verb">acct</spanx> URIs.</t>
  <t>Replaced <spanx style="verb">id-token-claims</spanx> type with <spanx style="verb">aliases</spanx> type.</t>
  <t>Added email canonicalization guidance.</t>
  <t>Updated semantics for <spanx style="verb">email</spanx>, <spanx style="verb">phone</spanx>, and <spanx style="verb">iss-sub</spanx> types.</t>
</list></t>

<t>Draft 04 - AB:</t>

<t><list style="symbols">
  <t>Added <spanx style="verb">sub_id</spanx> JWT Claim definition, guidance, examples.</t>
  <t>Added text prohibiting <spanx style="verb">aliases</spanx> nesting.</t>
  <t>Added privacy considerations for identifier correlation.</t>
</list></t>

<t>Draft 05 - AB:</t>

<t><list style="symbols">
  <t>Renamed the <spanx style="verb">phone</spanx> type to <spanx style="verb">phone-number</spanx> and its <spanx style="verb">phone</spanx> claim to <spanx style="verb">phone_number</spanx>.</t>
</list></t>

<t>Draft 06 - AB:</t>

<t><list style="symbols">
  <t>Replaced usage of the word “claim” to describe members of a Subject Identifier with the word “member”, in accordance with terminology in RFC7159.</t>
  <t>Renamed the <spanx style="verb">phone-number</spanx> type to <spanx style="verb">phone_number</spanx> and <spanx style="verb">iss-sub</spanx> to <spanx style="verb">iss_sub</spanx>.</t>
  <t>Added normative requirements limiting the use of both <spanx style="verb">sub</spanx> and <spanx style="verb">sub_id</spanx> claims together when processing a JWT.</t>
  <t>Clarified that identifier correlation may be acceptable when it is a core part of the use case.</t>
  <t>Replaced references to OIDF with IETF in IANA Considerations.</t>
  <t>Recommended the appointment of multiple Designated Experts, and a location for the Subject Identifier Types registry.</t>
  <t>Added “_” to list of allowed characters in the Type Name for Subject Identifier Types.</t>
  <t>Clarified that Subject Identifiers don’t provide confidentiality or integrity protection.</t>
  <t>Added references to SET, JWT privacy and security considerations.</t>
  <t>Added section describing the difference between subject identifier type and principal type that hopefully clarifies things and doesn’t just muddy the water further.</t>
</list></t>

<t>Draft 07 - AB:</t>

<t><list style="symbols">
  <t>Emphasized that the spec is about identifiers, not the things they identify:
  <list style="symbols">
      <t>Renamed “Subject Identifier Type” to “Identifier Format”.</t>
      <t>Renamed <spanx style="verb">subject_type</spanx> to <spanx style="verb">format</spanx>.</t>
      <t>Renamed “Security Event Subject Identifier Type Registry” to “Security Event Identifier Format Registry”.</t>
      <t>Added new section with guidance for specs defining Identifier Formats, with normative prohibition on formats that describe the subject itself, rather than the identifier.</t>
    </list></t>
  <t>Clarified the meaning of “subject”:
  <list style="symbols">
      <t>Defined “subject” as applying generically and “JWT Subject” as applying specifically to the subject of a JWT.</t>
      <t>Replaced most instances of the word “principal” with “subject”.</t>
    </list></t>
  <t>Added <spanx style="verb">opaque</spanx> Identifier Format</t>
</list></t>

</section>


  </back>

<!-- ##markdown-source:
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

-->

</rfc>

