<?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.39 (Ruby 3.4.9) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-skyfire-oauth-id-verification-00" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.34.0 -->
  <front>
    <title>Identity Verification Methods Values</title>
    <seriesInfo name="Internet-Draft" value="draft-skyfire-oauth-id-verification-00"/>
    <author initials="A." surname="Agarwal" fullname="Ankit Agarwal">
      <organization>Skyfire Systems Inc.</organization>
      <address>
        <email>ankit_agarwal@yahoo.com</email>
        <uri>https://skyfire.xyz</uri>
      </address>
    </author>
    <author initials="M." surname="Jones" fullname="Michael B. Jones">
      <organization>Self-Issued Consulting</organization>
      <address>
        <email>michael_b_jones@hotmail.com</email>
        <uri>https://self-issued.info/</uri>
      </address>
    </author>
    <date year="2026" month="July" day="06"/>
    <keyword>agent</keyword>
    <keyword>identity</keyword>
    <keyword>agentic</keyword>
    <keyword>payment</keyword>
    <keyword>commerce</keyword>
    <abstract>
      <?line 69?>

<t>Knowing how a person's identity was verified can be important when making trust decisions.
This specification defines a claim and values for declaring how the person's identity was verified.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://skyfire-xyz.github.io/draft-skyfire-oauth-id-verification/draft-skyfire-oauth-id-verification.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-skyfire-oauth-id-verification/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/skyfire-xyz/draft-skyfire-oauth-id-verification"/>.</t>
    </note>
  </front>
  <middle>
    <?line 75?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Knowing how a person's identity was verified can be important when making trust decisions.
This specification defines the Identity Verification Methods (ivm) claim and values for it
for declaring how the person's identity was verified.
It also creates a registry for Identity Verification Methods Values
and initializes the registry with the values defined in this specification.</t>
      <t>While this claim and values are general purpose
and can be used in any JSON Web Token (JWT) <xref target="RFC7519"/>,
one use case for them is use in KYAPay tokens <xref target="I-D.skyfire-oauth-kyapay-token"/>.</t>
    </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="ivm">
      <name>Identity Verification Methods</name>
      <t>This section defines the "ivm" (Identity Verification Methods claim and
values used with it to indicate that particular identity verification methods
were used.
In many ways, this parallels the "amr" (Authentication Methods References) claim
defined in <xref target="OpenID.Core"/>.
Like "amr", "ivm" is a JWT claim whose value is
an array that lists a set of methods that were used,
in this case, as identity verification methods,
rather than authentication method references.</t>
      <section anchor="ivmClaim">
        <name>"ivm" (Identity Verification Methods) Claim</name>
        <t>The "ivm" (Identity Verification Methods claim is a
JSON array of case-sensitive strings that are identifiers for
identity verification methods used.
For instance, values might indicate that both
physical document verification and database PII verification methods were used.
Values used in the "ivm" claim <bcp14>SHOULD</bcp14> be from those registered in the
IANA "Identity Verification Methods" registry
established by (#ivmRegistry);
parties using this claim will need to agree upon the meanings of
any unregistered values used, which may be context specific.</t>
      </section>
      <section anchor="ivmValues">
        <name>Identity Verification Method Values</name>
        <t>The following Identity Verification Method values
are defined by this specification.</t>
        <section anchor="dbvMethod">
          <name>"dbv" (Database Verification of PII) Method</name>
          <dl>
            <dt>dbv:</dt>
            <dd>
              <t>Database Verification of PII (match of name/address/dob/ssn/nid etc. in consumer reporting data sources)</t>
            </dd>
          </dl>
        </section>
        <section anchor="digMethod">
          <name>"dig" (Digital ID Document Verification) Method</name>
          <dl>
            <dt>dig:</dt>
            <dd>
              <t>Digital ID Document Verification (for example Mobile Driver's Licenses)</t>
            </dd>
          </dl>
        </section>
        <section anchor="phyMethod">
          <name>"phy" (Physical ID Document Verification) Method</name>
          <dl>
            <dt>phy:</dt>
            <dd>
              <t>Physical ID Document Verification (for example via a real time capture of the front and back of DL or Passport photo page)</t>
            </dd>
          </dl>
        </section>
        <section anchor="secMethod">
          <name>"sec" (Secondary Document Verification) Method</name>
          <dl>
            <dt>sec:</dt>
            <dd>
              <t>Secondary Document Verification (for example via bank statements, financial statements, utility bills, government-issued papers, etc.)</t>
            </dd>
          </dl>
        </section>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The security considerations defined in
JSON Web Token (JWT) <xref target="RFC7519"/>
apply to this specification.</t>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <t>The privacy considerations defined in
JSON Web Token (JWT) <xref target="RFC7519"/>
apply to this specification.</t>
    </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 registers the following Claim in the
IANA "JSON Web Token Claims" <xref target="IANA.JWT.Claims"/>
established by <xref target="RFC7519"/>.</t>
        <section anchor="ivm-claim">
          <name>"ivm" Claim</name>
          <ul spacing="normal">
            <li>
              <t>Claim Name: ivm</t>
            </li>
            <li>
              <t>Claim Description: Identity Verification Methods</t>
            </li>
            <li>
              <t>Change Controller: Michael B. Jones - michael_b_jones@hotmail.com</t>
            </li>
            <li>
              <t>Reference: (#ivmClaim) of this specification</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="ivmRegistry">
        <name>Identity Verification Methods Registry</name>
        <t>This specification establishes the IANA "Identity Verification Methods" registry
for <tt>ivm</tt> claim array element values.
The registry records the Identity Verification Method value
and a reference to the specification that defines it.
This specification registers the Identity Verification Method values
defined in (#ivmValues).</t>
        <t>Values are registered on an Expert Review
<xref target="RFC5226"/> basis after a three-week review period on the &lt;jwt-reg-review@ietf.org&gt; mailing
list, on the advice of one or more Designated Experts.
To increase potential interoperability, the Designated Experts are requested to encourage
registrants to provide the location of a publicly accessible specification
defining the values being registered,
so that their intended usage can be more easily  understood.</t>
        <t>Registration requests sent to the mailing list for review should use
an appropriate subject
(e.g., "Request to register Identity Verification Method value: example").</t>
        <t>Within the review period, the Designated Experts 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.
Registration requests that are undetermined for
a period longer than 21 days can be brought to the IESG's attention
(using the <eref target="mailto:iesg@ietf.org">iesg@ietf.org</eref> mailing list) for resolution.</t>
        <t>IANA must only accept registry updates from the Designated Experts and should direct
all requests for registration to the review mailing list.</t>
        <t>It is suggested that the same Designated Experts evaluate these
registration requests as those who evaluate registration requests
for the IANA "Authentication Method Reference Values" registry <xref target="IANA.AMR"/>.</t>
        <t>Criteria that should be applied by the Designated Experts include
determining whether the proposed registration duplicates existing functionality;
whether it is likely to be of general applicability
or whether it is useful only for a single application;
whether the value is actually being used;
and whether the registration description is clear.</t>
        <section anchor="registration-template">
          <name>Registration Template</name>
          <dl>
            <dt>Identity Verification Method Name:</dt>
            <dd>
              <t>The name requested (e.g., "dig") for the authentication method
or family of closely related authentication methods.
Because a core goal of this specification is for the resulting
representations to be compact, it is <bcp14>RECOMMENDED</bcp14> that the name be short
-- that is, not to exceed 8 characters without a compelling reason to do so.
To facilitate interoperability, the name must use only
printable ASCII characters excluding double quote ('"') and backslash ('\')
(the Unicode characters with code points U+0021, U+0023 through U+005B, and
U+005D through U+007E).
This 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>
            </dd>
            <dt>Identity Verification Method Description:</dt>
            <dd>
              <t>Brief description of the Identity Verification Method
(e.g., "Physical ID Document verification").</t>
            </dd>
            <dt>Change Controller:</dt>
            <dd>
              <t>For Standards Track RFCs, state "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>
            </dd>
            <dt>Specification Document(s):</dt>
            <dd>
              <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>
            </dd>
          </dl>
        </section>
        <section anchor="initial-registry-contents">
          <name>Initial Registry Contents</name>
          <section anchor="dbv-method">
            <name>"dbv" Method</name>
            <ul spacing="normal">
              <li>
                <t>Identity Verification Method Name: dbv</t>
              </li>
              <li>
                <t>Identity Verification Method Description: Database Verification of PII</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: (#dbvMethod) of this specification</t>
              </li>
            </ul>
          </section>
          <section anchor="dig-method">
            <name>"dig" Method</name>
            <ul spacing="normal">
              <li>
                <t>Identity Verification Method Name: dig</t>
              </li>
              <li>
                <t>Identity Verification Method Description: Digital ID Document Verification</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: (#digMethod) of this specification</t>
              </li>
            </ul>
          </section>
          <section anchor="phy-method">
            <name>"phy" Method</name>
            <ul spacing="normal">
              <li>
                <t>Identity Verification Method Name: phy</t>
              </li>
              <li>
                <t>Identity Verification Method Description: Physical ID Document Verification</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: (#phyMethod) of this specification</t>
              </li>
            </ul>
          </section>
          <section anchor="sec-method">
            <name>"sec" Method</name>
            <ul spacing="normal">
              <li>
                <t>Identity Verification Method Name: sec</t>
              </li>
              <li>
                <t>Identity Verification Method Description: Secondary Document Verification</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: (#secMethod) of this specification</t>
              </li>
            </ul>
          </section>
        </section>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <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="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="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="OpenID.Core" target="https://openid.net/specs/openid-connect-core-1_0.html">
          <front>
            <title>OpenID Connect Core 1.0 incorporating errata set 2</title>
            <author initials="N." surname="Sakimura" fullname="Nat Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley" fullname="John Bradley">
              <organization/>
            </author>
            <author initials="M. B." surname="Jones" fullname="Michael B. Jones">
              <organization/>
            </author>
            <author initials="B. de" surname="Medeiros" fullname="Breno de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore" fullname="Chuck Mortimore">
              <organization/>
            </author>
            <date year="2023" month="December" day="15"/>
          </front>
        </reference>
        <reference anchor="IANA.JWT.Claims" target="https://www.iana.org/assignments/jwt">
          <front>
            <title>JSON Web Token Claims</title>
            <author initials="" surname="IANA" fullname="IANA">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IANA.AMR" target="https://www.iana.org/assignments/authentication-method-reference-values">
          <front>
            <title>Authentication Method Reference Values</title>
            <author initials="" surname="IANA" fullname="IANA">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="I-D.skyfire-oauth-kyapay-token">
          <front>
            <title>KYAPay Token</title>
            <author fullname="Ankit Agarwal" initials="A." surname="Agarwal">
              <organization>Skyfire Systems Inc.</organization>
            </author>
            <author fullname="Michael B. Jones" initials="M. B." surname="Jones">
              <organization>Self-Issued Consulting</organization>
            </author>
            <date day="5" month="July" year="2026"/>
            <abstract>
              <t>   This document defines a token format for agent identity and payment
   tokens in JSON Web Token (JWT) format.  Authorization servers and
   resource servers from different vendors can leverage this token
   format to consume identity and payment tokens in an interoperable
   manner.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-skyfire-oauth-kyapay-token-00"/>
        </reference>
      </references>
    </references>
    <?line 301?>

<section numbered="false" anchor="document-history">
      <name>Document History</name>
      <t>[[ to be removed by the RFC Editor before publication as an RFC ]]</t>
      <t>-00</t>
      <ul spacing="normal">
        <li>
          <t>Initial draft.</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
