<?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.19 (Ruby 3.3.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-zundel-spice-glue-id-01" category="info" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.23.2 -->
  <front>
    <title>SPICE GLUE: GLobal Unique Enterprise Identifiers</title>
    <seriesInfo name="Internet-Draft" value="draft-zundel-spice-glue-id-01"/>
    <author fullname="Brent Zundel">
      <organization>mesur.io</organization>
      <address>
        <email>brent.zundel@gmail.com</email>
      </address>
    </author>
    <author fullname="Pamela Dingle">
      <organization>Microsoft Corporation</organization>
      <address>
        <email>pamela.dingle@microsoft.com</email>
      </address>
    </author>
    <date year="2024" month="October" day="21"/>
    <area>Security</area>
    <workgroup>Secure Patterns for Internet CrEdentials</workgroup>
    <keyword>next generation</keyword>
    <keyword>unicorn</keyword>
    <keyword>sparkling distributed ledger</keyword>
    <abstract>
      <?line 43?>

<t>This specification defines the <tt>glue</tt> URI scheme and the rules for encoding
these URIs. It also establishes the registries necessary for management of this
scheme.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://mesur-io.github.io/draft-zundel-spice-glue-id/draft-zundel-spice-glue-id.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-zundel-spice-glue-id/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Secure Patterns for Internet CrEdentials Working Group mailing list (<eref target="mailto:spice@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/spice/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/spice/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/mesur-io/draft-zundel-spice-glue-id"/>.</t>
    </note>
  </front>
  <middle>
    <?line 50?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Enterprise entity identifiers are myriad. With the increasing use of digitial
credentials, there is a need for a common methodology for expressing these
identifiers such that claims about and by such entities can be made in a
consistent and interoperable manner.</t>
      <t>This specification defines a URI scheme that standardizes the expression of
existing company entity identifers by providing a common representation format.
It also establishes a registry for managing how existing company entity
identification mechanisms relate to this scheme.</t>
      <t>Any company entity identifier whose identification mechanism has been registered
as an authority identifier in the registry may be represented as a glue URI.</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?>

<t>The term "glue URI" is used to refer to a URI that uses the glue scheme.</t>
      <t>TODO: define external authority, company entity</t>
    </section>
    <section anchor="core-concepts">
      <name>Core Concepts</name>
      <t>Every glue URI, whether expressed as a string or encoded in binary <bcp14>MUST</bcp14> be
comprised of the following components:</t>
      <ul spacing="normal">
        <li>
          <t>The Authority Identifier</t>
        </li>
        <li>
          <t>The External Number</t>
        </li>
      </ul>
      <t>The Authority Identifier indicates the external authority responsible for
assigning the External Number and the scheme used to do so.</t>
      <t>The External Number is the identifier assigned to the company by the external
authority.</t>
      <section anchor="uniqueness-and-namespacing">
        <name>Uniqueness and Namespacing</name>
        <t>Each glue URI <bcp14>MUST</bcp14> be globally unique. It is assumed that most registered company entity
identification schemes already handle any necessary namespacing as part of the
external number. However, in the event that collisions are possible within the
set of possible external identifiers for an authority identifier scheme, then
further namespacing might be necessary at the glue id level. Such namespacing
<bcp14>SHOULD</bcp14> be done on the authority identifier as part of the registration process.</t>
        <t>That is, the different namespaces would be considered either different schemes
operated by the same authority, or the same scheme operated by different
authorities. In either case a unique authority identifier would be necessary for
each.</t>
        <t>For example, assume there is an external authority FEA that provides
identifiers for company entities in USA and Canada. The identifiers in the USA
are unique, and the identifiers in Canada are unique, but there is no guarantee
that a company entity in Canada won't be assigned the same number as a company
entity in the USA. Upon registration of FEA as an Authority Identifier, it would
be necessary to seperately register FEA-USA and FEA-Can to provide
differentiation between the two sets of external numbers.</t>
      </section>
    </section>
    <section anchor="text-encoding-of-glue-uris">
      <name>Text Encoding of glue URIs</name>
      <t>All glue URIs comply with <xref target="RFC3986"/> and are therefore represented by a
scheme identifier and a scheme-specific part. The scheme identifier is: glue, and
the scheme-specific parts are represented as a sequence of alphanumeric
components separated by the '.' character. A formal definition is provided in
the next section, but it can informally be considered as:</t>
      <t>glue:&lt;authority-identifier&gt;.&lt;external-number&gt;</t>
      <t>The Authority Identifier <bcp14>MUST</bcp14> be an alphanumeric string from the "Scheme" field
of the glue URI Authority Identifier registry. The External Number <bcp14>MUST</bcp14> be the
identifier assigned to the company by the external authority under the
identified scheme.</t>
      <section anchor="glue-uri-scheme-text-syntax">
        <name>glue URI Scheme Text Syntax</name>
        <t>TODO ABNF</t>
      </section>
    </section>
    <section anchor="dids-and-glue">
      <name>DIDs and glue</name>
      <t>TODO DIDs and glue</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>TODO Security</t>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <section anchor="private-identifiers-as-corporate-identifiers">
        <name>Private identifiers as corporate identifiers</name>
        <t>There are some corporate identifers which make use of personal identifiers. This
is the case for registered sole-proprietor businesses in much of the United
States, where the business identifier may be the same as the
social-security-number of the business owner.</t>
        <t>It is possible for such identifers to be represented as glue URIs. An
identifier's expression as a glue URI does not change the privacy
characteristics of that identifier. The same cautions and concerns need to be
taken with the glue URI representation as with the original identifier.</t>
        <t>Implementers storing or evaluating glue ids are encouraged to evaluate the
privacy characteristics of each identification scheme represented by an
authority identifier and to appropriately handle any glue id which violates
privacy policies.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>The following sections detail requests to IANA for the creation of a new
registry and registration of the 'glue' URI scheme.</t>
      <section anchor="glue-uri-scheme-registration">
        <name>'glue' URI Scheme Registration</name>
        <t>TODO</t>
      </section>
      <section anchor="glue-scheme-uri-authority-registry">
        <name>'glue' Scheme URI authority registry</name>
        <t>IANA is requested to create a new registry entitled "'glue' Scheme URI Authority
Identifiers". The registration policy for this registry is Expert Review as
defined in <xref target="RFC8126"/>.</t>
        <t>Each entry in this registry associates one or more Authority Identifiers with a
single organization. Within the registry, the organization is identified using
the "Name" field. Each identified organization will be associated with one or
more number of company identification schemes, which are listed in the "Scheme"
field. A reference for each scheme is listed in the "Reference" field of the
registry.</t>
        <t>The initial values for the registry are:</t>
        <artset>
          <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="304" width="736" viewBox="0 0 736 304" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
              <path d="M 8,32 L 8,272" fill="none" stroke="black"/>
              <path d="M 160,32 L 160,224" fill="none" stroke="black"/>
              <path d="M 232,32 L 232,224" fill="none" stroke="black"/>
              <path d="M 240,232 L 240,272" fill="none" stroke="black"/>
              <path d="M 288,232 L 288,272" fill="none" stroke="black"/>
              <path d="M 584,32 L 584,224" fill="none" stroke="black"/>
              <path d="M 728,240 L 728,272" fill="none" stroke="black"/>
              <path d="M 8,30 L 584,30" fill="none" stroke="black"/>
              <path d="M 8,34 L 584,34" fill="none" stroke="black"/>
              <path d="M 8,78 L 584,78" fill="none" stroke="black"/>
              <path d="M 8,82 L 584,82" fill="none" stroke="black"/>
              <path d="M 8,128 L 584,128" fill="none" stroke="black"/>
              <path d="M 8,176 L 584,176" fill="none" stroke="black"/>
              <path d="M 8,224 L 584,224" fill="none" stroke="black"/>
              <path d="M 8,272 L 728,272" fill="none" stroke="black"/>
              <path d="M 224,224 C 232.83064,224 240,231.16936 240,240" fill="none" stroke="black"/>
              <g class="text">
                <text x="36" y="52">Name</text>
                <text x="196" y="52">Scheme</text>
                <text x="280" y="52">Reference</text>
                <text x="32" y="100">GS1</text>
                <text x="192" y="100">gln</text>
                <text x="408" y="100">https://www.gs1.org/standards/id-keys/gln</text>
                <text x="40" y="148">GLEIF</text>
                <text x="192" y="148">lei</text>
                <text x="400" y="148">https://www.iso.org/standard/78829.html</text>
                <text x="32" y="196">Dun</text>
                <text x="56" y="196">&amp;</text>
                <text x="108" y="196">Bradstreet</text>
                <text x="196" y="196">duns</text>
                <text x="360" y="196">https://www.dnb.com/duns.html</text>
                <text x="48" y="244">Private</text>
                <text x="124" y="244">Enterprise</text>
                <text x="200" y="244">Numbers</text>
                <text x="264" y="244">pen</text>
                <text x="508" y="244">https://www.iana.org/assignments/enterprise-numbers/</text>
              </g>
            </svg>
          </artwork>
          <artwork type="ascii-art"><![CDATA[
+==================+========+===========================================+
| Name             | Scheme | Reference                                 |
|                  |        |                                           |
+==================+========+===========================================+
| GS1              |  gln   | https://www.gs1.org/standards/id-keys/gln |
|                  |        |                                           |
+------------------+--------+-------------------------------------------+
| GLEIF            |  lei   | https://www.iso.org/standard/78829.html   |
|                  |        |                                           |
+------------------+--------+-------------------------------------------+
| Dun & Bradstreet |  duns  | https://www.dnb.com/duns.html             |
|                  |        |                                           |
+------------------+--------+-------------------------------------------+
| Private Enterprise Numbers | pen | https://www.iana.org/assignments/enterprise-numbers/ |
|                            |     |                                                      |
+----------------------------+-----+------------------------------------------------------+

]]></artwork>
        </artset>
        <t>### Guidance for Designated Experts</t>
        <t>It is not required that registration of an Authority Identifier be done by a
representative of the external authority.</t>
      </section>
      <section anchor="uri-scheme-registration">
        <name>URI Scheme Registration</name>
        <t>The "glue" URI scheme is requested to be registered in the provisional "URI Schemes" registry. The information below is provided according to the guidelines from RFC 4395:
  * URI scheme name: glue
  * Status: provisional
  * URI scheme syntax: See <xref target="text-encoding-of-glue-uris">Section 4.1 of Text Encoding of glue URIs</xref></t>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-normative-references">
      <name>Normative References</name>
      <reference anchor="RFC3986">
        <front>
          <title>Uniform Resource Identifier (URI): Generic Syntax</title>
          <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
          <author fullname="R. Fielding" initials="R." surname="Fielding"/>
          <author fullname="L. Masinter" initials="L." surname="Masinter"/>
          <date month="January" year="2005"/>
          <abstract>
            <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
          </abstract>
        </front>
        <seriesInfo name="STD" value="66"/>
        <seriesInfo name="RFC" value="3986"/>
        <seriesInfo name="DOI" value="10.17487/RFC3986"/>
      </reference>
      <reference anchor="RFC8126">
        <front>
          <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
          <author fullname="M. Cotton" initials="M." surname="Cotton"/>
          <author fullname="B. Leiba" initials="B." surname="Leiba"/>
          <author fullname="T. Narten" initials="T." surname="Narten"/>
          <date month="June" year="2017"/>
          <abstract>
            <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
            <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
            <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="26"/>
        <seriesInfo name="RFC" value="8126"/>
        <seriesInfo name="DOI" value="10.17487/RFC8126"/>
      </reference>
      <reference anchor="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>
    <?line 231?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA81a63IbtxX+j6dAqZm4jUWqStzGZhMntEQ5mrElV5fJpJnM
BNwFSYyWALvYFc3YzrP0Wfpk/c4BsFwuaSee8Y/yh0xicTnX73wH636/LypT
FXooe9evzk/G8vmL2/EQf91EFfLWmn/XWo5tpctlabyW57m2lZkaXfqeyFSl
Z65cD6WxUydE7jKrFtgrL9W06v9a21wXfb80me7Pilr3Td7/67Hw9WRhvDfO
VuslZp+Pb86kPJCq8A5yGKxaaksH9Q5lT+emcqVRBf04Hz3DP67Et6ubs56w
9WKiy6HIIclQZM56bX3th7Iqay3uh/JLoUqtSDud1aWp1j2xcuXdrHT1Mo1q
+UpV0NB6OcXW56St1ZU8KcesLeTqiTu9xsJ8KGRfWv26kjNtdakqaEFDtTWZ
K/mrX6ryrjB2JnPjq9JM6krnstD5TJfiXtsakkr58RJIGczV+wEK0PbPaQsa
XyhTYJwN/Z3R1XTgyhk9UGU2x4N5VS398OiI5tGQudeDNO2IBo4mpVt5fcQ7
HNHKmanm9QRrF9rXZd+4o/f7lOYXcICv2mfFdYOw0+CDO3zg0WBeLYqeEKqu
5q4k8+M0Kad1UYRYe1bCQvJfvJQfQSllza/smqFkOXA6P9LBUhNaMginfTej
sUHmFmJ371f4Wyh5CmsXes/mL01WOu+m8JQrly6Fw+akJW8wyHmD7xZpejjO
unKBFfccD1dnJ18+efz3oby9Ou/7ta3U6zD6+PgLjJ6PLkb9WW0gsbHaC0EZ
1ywXot/vSzVBuKmsEuJmbjziUGfI1IyFkrme0kJZzbX8hWz7C50kfTbXCy2V
zflJWRc6xKC2mSOxBYaR95jrB/K84iSVcLWaFMbP44alnnGo46fVmfZelWve
ZaGsmuEAeMhNMdV4EU4cRJkXJs9hWnFAQV+6vM7YhKIFOZQA1VqaDfIgrrVc
rAEK+UD+gPhiIYzNkOqeMqPGMpyXGwQfkkfgQcqjQ5qL5TCQgrDITJJTSXhk
ATMtNMIsd4WbBQX062UJfWhTNoRoi+HrjI5WlcwKZRbYceLqio05WYenLDzZ
JVNWTiC1yklSqRisYDQyDS0wpLBbAlImBU2zQJfBBz2p2g5kKeAVm6syN79G
vyTpscpNhX6N80gT6LpUdt2xLGkEsZeluzfk+Y1RSk3bYFIQIATeQOyLBpVi
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
YQhwnX/Tm6rC69672OqpZiZI3/8AYy3QyMYhAAA=

-->

</rfc>
