<?xml version="1.0" encoding="UTF-8"?>
<rfc
    xmlns:xi="http://www.w3.org/2001/XInclude"
    docName="draft-juwan-ars-uri-00"
    category="info"
    ipr="trust200902"
    submissionType="independent"
    xml:lang="en"
>
  <front>
    <title abbrev="ars URI Scheme">ARS URI Scheme: A URI Scheme for ARS-1 References</title>
    <seriesInfo name="Internet-Draft" value="draft-juwan-ars-uri-00"/>
    <author fullname="Juwan Hwang" initials="J." surname="Hwang">
      <address>
        <email>juwan.hwang@proton.me</email>
      </address>
    </author>
    <date year="2026" month="August" day="22"/>
    <area>Applications</area>
    <workgroup>Independent Submission</workgroup>
    <keyword>URI scheme</keyword>
    <keyword>ARS-1</keyword>
    <keyword>identifier</keyword>
    <keyword>permalink</keyword>
    <abstract>
      <t>This document defines the "ars" URI scheme for representing ARS-1 References in a syntactically valid URI form. ARS-1 defines a deterministic, cryptographically derived reference protocol for assigning stable public identifiers to durable digital entities. The "ars" URI scheme provides a standard URI notation for these references, enabling their use in hyperlinks, QR codes, metadata fields, and other URI-consuming contexts.</t>
      <t>This specification does not redefine the ARS-1 Reference generation pipeline, canonicalization rules, or verification logic. Those are normatively defined by ARS-1. This document defines only the URI syntax, encoding, comparison, and resolution semantics for the "ars" scheme.</t>
    </abstract>
  </front>

  <middle>
    <section anchor="introduction" numbered="true" toc="default" title="Introduction">
      <t>This specification defines the "ars" URI scheme for representing ARS-1 References <xref target="ARS1"/> in a syntactically valid URI form. ARS-1 defines a deterministic, cryptographically derived reference protocol for assigning stable public identifiers to durable digital entities. The "ars" URI scheme provides a standard URI notation for these references, enabling their use in hyperlinks, QR codes, metadata fields, and other URI-consuming contexts.</t>
      <t>This specification does not redefine the ARS-1 Reference generation pipeline, canonicalization rules, or verification logic. Those are normatively defined by ARS-1 <xref target="ARS1"/>. This document defines only the URI syntax, encoding, comparison, and resolution semantics for the "ars" scheme.</t>
      <section anchor="notational-conventions" numbered="true" toc="default" 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"/> and <xref target="RFC8174"/>.</t>
        <t>This specification uses ABNF (Augmented Backus-Naur Form) as defined by <xref target="RFC5234"/> and the terminal rules from <xref target="RFC3986"/>.</t>
      </section>
    </section>

    <section anchor="conformance" numbered="true" toc="default" title="Conformance">
      <t>An implementation of the "ars" URI scheme conforms to this specification if:</t>
      <ul spacing="normal">
        <li>It parses "ars" URIs in accordance with the ABNF grammar in <xref target="uri-scheme-syntax"/>.</li>
        <li>It performs canonicalization and comparison in accordance with <xref target="canonicalization"/> and <xref target="resolution-semantics"/>.</li>
        <li>It does not impose additional syntactic constraints beyond those defined herein.</li>
        <li>It delegates ARS-1 Reference generation and verification to a conforming ARS-1 <xref target="ARS1"/> implementation.</li>
      </ul>
      <t>Conforming ARS-1 implementations are NOT required to support the "ars" URI form. The canonical ARS-1 Reference representation is always the Local Reference form defined in ARS-1 Section 21.</t>
    </section>

    <section anchor="uri-scheme-syntax" numbered="true" toc="default" title="URI Scheme Syntax">
      <section anchor="abnf-grammar" numbered="true" toc="default" title="ABNF Grammar">
        <figure>
          <artwork type="abnf" name="abnf"><![CDATA[
ars-uri       = "ars://" authority "/" local-reference

authority     = namespace

namespace     = 1*( ALPHA / DIGIT / "-" / "." )
                ; ASCII-only, restricted to RFC 3986 reg-name
                ; compatible characters (unreserved / sub-delims
                ; subset). Underscore is excluded to maintain
                ; compatibility with RFC 3986 authority syntax.
                ; Case-sensitive: byte-for-byte canonical
                ; representation. MUST exactly match the
                ; canonical Namespace string as serialized in
                ; the CanonicalReferenceRecord (ARS-1 Section 30).

local-reference = prefix "-" payload

prefix        = 1*4ALNUM-UPPER
                ; MUST match one uppercase letter followed by
                ; 1-3 uppercase alphanumeric (ARS-1 Section 19)
                ; canonical uppercase only (ARS-1 Section 31)

payload       = 1*ALNUM-UPPER
                ; MUST consist of symbols from the ARS-1 alphabet
                ; (ARS-1 Section 23):
                ; 0123456789ABCDEFGHJKMNPQRSTVWXYZ
                ; variable length; final symbol is the checksum

ALNUM-UPPER   = DIGIT / %x41-48 / %x4A / %x4B / %x4D-50 /
                %x51-54 / %x56-57 / %x58-5A
                ; 0-9, A-H, J, K, M-P, Q-T, V, W, X-Z
                ; (excludes I, L, O, U per ARS-1 Section 23)
]]></artwork>
        </figure>
        <t>This ABNF is adapted from <xref target="RFC3986"/> and is consistent with the ARS-1 canonical forms.</t>
      </section>

      <section anchor="uri-structure" numbered="true" toc="default" title="URI Structure">
        <t>The "ars" URI has the following structure:</t>
        <figure>
          <artwork type="example"><![CDATA[
ars://<namespace>/<local-reference>
]]></artwork>
        </figure>
        <t>Where:</t>
        <ul spacing="normal">
          <li>"ars" is the scheme name.</li>
          <li>"//" indicates the presence of an authority component.</li>
          <li>&lt;namespace&gt; is the authority component and carries the ARS-1 Namespace.</li>
          <li>"/" is the path delimiter separating the authority from the local reference.</li>
          <li>&lt;local-reference&gt; is the path component and carries the ARS-1 Local Reference.</li>
        </ul>
      </section>

      <section anchor="authority-component" numbered="true" toc="default" title="Authority Component">
        <t>The authority component carries the ARS-1 Namespace identifier as defined in ARS-1 Section 30. The authority is NOT a network hostname; it does not imply a DNS resolution or network connection. The authority component in the "ars" scheme is a logical namespace identifier, not a transport address.</t>
        <t>The authority component MUST be interpreted as an opaque ARS Namespace identifier and MUST NOT be processed using DNS host normalization.</t>
        <t>In particular, implementations MUST NOT:</t>
        <ul spacing="normal">
          <li>lowercase the authority;</li>
          <li>perform DNS resolution;</li>
          <li>apply IDNA processing;</li>
          <li>interpret the authority as an IP address;</li>
          <li>infer a port or userinfo component.</li>
        </ul>
      </section>

      <section anchor="path-component" numbered="true" toc="default" title="Path Component">
        <t>The path component carries the ARS-1 Local Reference as defined in ARS-1 Section 21. The path consists of a Prefix and a Payload separated by a single ASCII hyphen ("-", U+002D). The path component does NOT include a leading slash; the slash preceding the local reference in the URI form is a structural delimiter between the authority and the path.</t>
      </section>

      <section anchor="absent-components" numbered="true" toc="default" title="Absent Components">
        <t>The "ars" scheme does not use a query component. A conforming "ars" URI MUST NOT contain a query component ("?..."). An "ars" URI containing a query component is invalid and MUST be rejected by a conforming parser.</t>
        <t>This version of the "ars" scheme does not define fragment semantics. A canonical "ars" URI MUST NOT contain a fragment component ("#..."). While <xref target="RFC3986"/> treats the fragment as a generic URI mechanism whose syntax and usage are orthogonal to scheme definition, the "ars" scheme does not assign meaning to fragments, and a conforming canonical "ars" URI does not include one.</t>
        <t>The "ars" URI does not use a port number or userinfo ("user@"). An "ars" URI containing a port or userinfo component is invalid and MUST be rejected by a conforming parser.</t>
      </section>

      <section anchor="examples" numbered="true" toc="default" title="Examples">
        <figure>
          <artwork type="example"><![CDATA[
ars://AEV/NX-103MACV9M
ars://AEV/CJ3-106Q
ars://EXAMPLE/MR-X4928V
]]></artwork>
        </figure>
      </section>
    </section>

    <section anchor="uri-semantics" numbered="true" toc="default" title="URI Semantics">
      <section anchor="identification" numbered="true" toc="default" title="Identification">
        <t>An "ars" URI identifies the ARS-1 Reference composed of the Namespace in the authority component and the Local Reference in the path component. Two "ars" URIs identify the same ARS-1 Reference if and only if they are character-for-character identical after canonicalization (<xref target="canonicalization"/>).</t>
      </section>
      <section anchor="non-retrieval-semantics" numbered="true" toc="default" title="Non-Retrieval Semantics">
        <t>The "ars" scheme does NOT imply a specific retrieval protocol. Unlike "http" or "ftp", resolving an "ars" URI does not intrinsically retrieve a representation over a network. Resolution semantics are defined by the deployment context (ARS-1 Section 64) and MAY involve:</t>
        <ul spacing="normal">
          <li>Direct lookup in a local or remote database.</li>
          <li>Dereferencing to an HTTP(S) URL via a namespace-specific resolution service.</li>
          <li>In-process interpretation by an application that recognizes the scheme.</li>
        </ul>
      </section>
      <section anchor="canonical-reference" numbered="true" toc="default" title="Relationship to the Canonical Reference">
        <t>The canonical ARS-1 Reference is always the Local Reference form defined in ARS-1 Section 21. The "ars" URI is a URI representation of a (Namespace, Local Reference) pair. The URI structural delimiters ("ars://", "/") are NOT part of the Reference itself.</t>
      </section>
    </section>

    <section anchor="namespace-semantics" numbered="true" toc="default" title="Namespace Semantics">
      <section anchor="namespace-as-authority" numbered="true" toc="default" title="Namespace as Authority">
        <t>The Namespace occupies the authority position in the "ars" URI. This design decision is deliberate: it places the Namespace in a structurally significant URI component, enabling namespace-aware processing without parsing the path.</t>
      </section>
      <section anchor="ascii-only-restriction" numbered="true" toc="default" title="ASCII-Only Restriction">
        <t>This version of the "ars" URI scheme supports only ASCII namespaces. The "namespace" ABNF rule (<xref target="abnf-grammar"/>) restricts the character set to:</t>
        <figure>
          <artwork type="abnf"><![CDATA[
ALPHA / DIGIT / "-" / "."
]]></artwork>
        </figure>
        <t>This is a deliberate restriction for the provisional registration. The character set is a subset of the <xref target="RFC3986"/> "reg-name" production ("unreserved / sub-delims"), ensuring that the authority value is syntactically valid as a URI authority component under the generic URI syntax. Underscore ("_") is excluded because it is not permitted in "unreserved" or "sub-delims" per <xref target="RFC3986"/> Section 2.2.</t>
        <t>ARS-1 Section 31 permits Application Profiles to choose ASCII-only or Unicode NFC for Namespace encoding. This URI scheme specification supports only the ASCII-only subset. Application Profiles that use Unicode NFC Namespaces MUST define their own URI encoding rules or use a different URI representation.</t>
      </section>
      <section anchor="case-sensitivity" numbered="true" toc="default" title="Case Sensitivity">
        <t>The Namespace in the "ars" URI is <strong>case-sensitive</strong> and uses <strong>byte-for-byte canonical representation</strong>. The Namespace string in the URI MUST exactly match the canonical Namespace string as serialized in the CanonicalReferenceRecord (ARS-1 Section 30).</t>
        <t>This means:</t>
        <figure>
          <artwork type="example"><![CDATA[
ars://AEV/NX-103MACV9M   (canonical)
ars://aev/NX-103MACV9M   (different URI - different Namespace)
ars://Aev/NX-103MACV9M   (different URI - different Namespace)
]]></artwork>
        </figure>
        <t>Only "ars://AEV/..." is the canonical URI for the "AEV" namespace. The URI scheme does not perform case normalization on the authority component.</t>
        <t><xref target="RFC3986"/> defines the authority component using generic URI syntax and specifies case-insensitive comparison for the host subcomponent. The "ars" scheme does not assign DNS host semantics to its authority value. Instead, the entire authority value is an ARS Namespace identifier and is compared byte-for-byte according to this specification.</t>
      </section>
    </section>

    <section anchor="local-reference-semantics" numbered="true" toc="default" title="Local Reference Semantics">
      <section anchor="prefix" numbered="true" toc="default" title="Prefix">
        <t>The Prefix occupies the first portion of the path component, before the hyphen. The Prefix MUST conform to ARS-1 Section 19:</t>
        <t>The Prefix pattern is: one uppercase letter (A through Z) followed by one to three uppercase alphanumeric characters (A through Z, or 0 through 9), yielding a total length of 2 to 4 characters.</t>
        <t>The Prefix MUST be canonical uppercase (ARS-1 Section 31). Lowercase prefix characters are syntactically invalid in an "ars" URI.</t>
      </section>
      <section anchor="payload" numbered="true" toc="default" title="Payload">
        <t>The Payload occupies the portion of the path component after the hyphen. The Payload MUST consist entirely of symbols from the ARS-1 alphabet (ARS-1 Section 23):</t>
        <figure>
          <artwork type="example"><![CDATA[
0123456789ABCDEFGHJKMNPQRSTVWXYZ
]]></artwork>
        </figure>
        <t>The final symbol of the Payload is the checksum (ARS-1 Sections 42-44). The Payload is variable length and MUST NOT exceed the maximum payload length defined by the applicable Application Profile.</t>
      </section>
      <section anchor="separator" numbered="true" toc="default" title="Separator">
        <t>The Prefix and Payload MUST be separated by exactly one ASCII hyphen ("-", U+002D). Multiple hyphens or other separator characters are syntactically invalid.</t>
      </section>
    </section>

    <section anchor="canonicalization" numbered="true" toc="default" title="Canonicalization">
      <section anchor="scheme-name-canonicalization" numbered="true" toc="default" title="Scheme Name">
        <t>The scheme name "ars" is case-insensitive per URI syntax (<xref target="RFC3986"/> Section 3.1). The canonical representation uses lowercase "ars".</t>
        <figure>
          <artwork type="example"><![CDATA[
ars://AEV/NX-103MACV9M   (canonical)
ARS://AEV/NX-103MACV9M   (equivalent - non-canonical scheme casing)
Ars://AEV/NX-103MACV9M   (equivalent - non-canonical scheme casing)
]]></artwork>
        </figure>
        <t>Implementations MUST accept any casing of the scheme name but SHOULD produce the lowercase canonical form.</t>
      </section>
      <section anchor="namespace-canonicalization" numbered="true" toc="default" title="Namespace">
        <t>The Namespace is case-sensitive and byte-for-byte canonical. No case normalization is performed. The URI representation MUST preserve the canonical Namespace representation exactly as defined by the Application Profile.</t>
      </section>
      <section anchor="local-reference-canonicalization" numbered="true" toc="default" title="Local Reference">
        <t>The Local Reference (Prefix and Payload) MUST be canonical uppercase. No case folding is permitted.</t>
      </section>
      <section anchor="percent-encoding-canonicalization" numbered="true" toc="default" title="Percent-Encoding">
        <t>The Namespace and Local Reference components of the canonical "ars" URI do not contain characters that require percent-encoding. The Namespace is restricted to ASCII alphanumeric characters, hyphens, and periods. The Local Reference is restricted to the ARS-1 alphabet and a single hyphen separator.</t>
        <t>Therefore, canonical "ars" URIs MUST NOT contain percent-encoded octets. A percent-encoded octet in an "ars" URI indicates a non-canonical or invalid form.</t>
      </section>
      <section anchor="canonicalization-summary" numbered="true" toc="default" title="Summary of Canonicalization Rules">
        <table title="Canonicalization Rules" anchor="canonicalization-table">
          <thead>
            <tr>
              <th>Component</th>
              <th>Case Sensitivity</th>
              <th>Canonical Form</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td>Scheme name</td>
              <td>Case-insensitive</td>
              <td>Lowercase "ars"</td>
            </tr>
            <tr>
              <td>Authority / Namespace</td>
              <td>Case-sensitive, byte-for-byte</td>
              <td>As defined by Profile</td>
            </tr>
            <tr>
              <td>Path / Local Ref</td>
              <td>Uppercase only</td>
              <td>Canonical uppercase</td>
            </tr>
            <tr>
              <td>Percent-encoding</td>
              <td>Rejected</td>
              <td>No percent-encoding</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>

    <section anchor="encoding" numbered="true" toc="default" title="Encoding and Percent-Encoding">
      <section anchor="character-set" numbered="true" toc="default" title="Character Set">
        <t>The "ars" URI is representable entirely in ASCII. No non-ASCII characters appear in a canonical "ars" URI.</t>
      </section>
      <section anchor="percent-encoding-rules" numbered="true" toc="default" title="Percent-Encoding Rules">
        <t>Per <xref target="RFC3986"/> Section 2.1, percent-encoding is a mechanism to represent data octets that are not otherwise representable. In the "ars" scheme:</t>
        <ul spacing="normal">
          <li>The Namespace is restricted to ALPHA / DIGIT / "-" / ".". None of these characters are reserved or require percent-encoding in the authority component.</li>
          <li>The Local Reference is restricted to ALNUM-UPPER and a single hyphen. None of these characters are reserved or require percent-encoding in the path component.</li>
        </ul>
        <t>Therefore, canonical "ars" URIs contain no percent-encoded octets.</t>
      </section>
      <section anchor="percent-encoding-invalid" numbered="true" toc="default" title="Percent-Encoding is Invalid">
        <t>A percent sign ("%", U+0025) is not permitted by the canonical "ars" syntax. An "ars" URI containing a percent-encoded octet is non-canonical and MUST be rejected as invalid by a conforming "ars" URI parser.</t>
        <t>Implementations MUST NOT treat percent-encoded octets as equivalent to unencoded characters in an "ars" URI. There is exactly one canonical representation for each "ars" URI; percent-encoding does not produce an equivalent form.</t>
      </section>
      <section anchor="internationalized-namespace" numbered="true" toc="default" title="Internationalized Namespace Support">
        <t>This version of the "ars" URI scheme does NOT support non-ASCII namespaces. Application Profiles that use Unicode NFC Namespaces (per ARS-1 Section 31) MUST NOT use the "ars" URI scheme directly. Future versions of this specification MAY define internationalized namespace support using IRIs (<xref target="RFC3987"/>) or percent-encoding of UTF-8 octets.</t>
      </section>
    </section>

    <section anchor="resolution-semantics" numbered="true" toc="default" title="Resolution Semantics">
      <section anchor="no-implied-resolution" numbered="true" toc="default" title="No Implied Resolution Protocol">
        <t>The "ars" scheme does not define or mandate a specific resolution protocol. Resolution of an "ars" URI to an entity, resource, or representation is deployment-defined (ARS-1 Section 64).</t>
      </section>
      <section anchor="resolution-methods" numbered="true" toc="default" title="Resolution Methods">
        <t>A deployment MAY resolve "ars" URIs via:</t>
        <ul spacing="normal">
          <li><strong>Local lookup:</strong> The application maintains or queries a local registry mapping (Namespace, Local Reference) to entity records.</li>
          <li><strong>HTTP(S) dereferencing:</strong> The Application Profile defines a canonical HTTP(S) URL template (ARS-1 Section 70) that embeds the ARS Reference. Resolution involves HTTP retrieval of the canonical URL.</li>
          <li><strong>Scheme handler:</strong> An operating system or application framework may register a handler for the "ars" scheme that redirects to an appropriate resolution service.</li>
          <li><strong>No resolution:</strong> The "ars" URI may be used purely as an identifier with no associated resolution mechanism.</li>
        </ul>
      </section>
      <section anchor="resolution-and-verification" numbered="true" toc="default" title="Resolution and Verification">
        <t>ARS-1 Reference verification (ARS-1 Section 66) is a separate operation from URI resolution. Verifying that an "ars" URI contains a syntactically valid and checksum-valid Reference does NOT require resolution. Resolution may return any of the outcomes defined in ARS-1 Section 64 (existing entity, retired entity, tombstone, missing entity).</t>
      </section>
      <section anchor="authorization" numbered="true" toc="default" title="Authorization">
        <t>Resolution of an "ars" URI MAY require authorization. The "ars" scheme itself does not define an authorization mechanism. Authorization is the responsibility of the resolution service or Application Profile.</t>
      </section>
    </section>

    <section anchor="interoperability" numbered="true" toc="default" title="Interoperability Considerations">
      <section anchor="http-urls" numbered="true" toc="default" title="Relationship to HTTP(S) URLs">
        <t>An Application Profile MAY define canonical HTTP(S) URLs that embed ARS References (ARS-1 Section 70). The "ars" URI form and canonical HTTP URL form are independent representations. An Application Profile MUST define which form, if any, is canonical for its deployment.</t>
        <t>When both forms are used, the HTTP(S) URL is a resolution mechanism, while the "ars" URI is the identifier. The "ars" URI is the more stable form: HTTP URLs may change due to domain migration, CDN reconfiguration, or HTTP-to-HTTPS upgrades, while the "ars" URI is invariant.</t>
      </section>
      <section anchor="compatibility" numbered="true" toc="default" title="Compatibility with ARS-1 Core">
        <t>The "ars" URI scheme is compatible with all ARS-1 Application Profiles that use ASCII-only Namespaces. Application Profiles with Unicode NFC Namespaces are not directly representable in this version of the "ars" scheme.</t>
      </section>
      <section anchor="parser-considerations" numbered="true" toc="default" title="Parser Considerations">
        <t>Implementations parsing "ars" URIs SHOULD use a general-purpose URI parser (e.g., one conforming to <xref target="RFC3986"/>) and then validate the authority and path components against the ABNF in <xref target="abnf-grammar"/>. Implementations MUST NOT assume that "ars" URIs follow HTTP URL conventions (e.g., no default port, no query string, no fragment).</t>
      </section>
      <section anchor="qr-codes" numbered="true" toc="default" title="QR Codes and Print Media">
        <t>The "ars" URI is designed to be compact enough for QR code encoding. The all-uppercase, ASCII-only character set maximizes QR code alphanumeric mode efficiency.</t>
      </section>
    </section>

    <section anchor="security" numbered="true" toc="default" title="Security Considerations">
      <section anchor="no-implied-trust" numbered="true" toc="default" title="No Implied Trust">
        <t>The existence of a syntactically valid "ars" URI does NOT imply that the referenced entity exists, is trustworthy, or is accessible. An "ars" URI is a cryptographically derived identifier, not a capability or access token.</t>
      </section>
      <section anchor="checksum-integrity" numbered="true" toc="default" title="Checksum Integrity">
        <t>The "ars" URI includes a checksum symbol (ARS-1 Sections 42-44) as the final character of the Payload. The checksum provides probabilistic detection of transcription errors. For a non-identical input, an incorrect checksum is expected to be detected with probability 31/32 under the cryptographic assumptions described by ARS-1 (Hard Invariants 81 and 82).</t>
        <t>The checksum provides no deterministic detection guarantee for any specific error class and MUST NOT be interpreted as authentication, cryptographic integrity, or proof of identity.</t>
      </section>
      <section anchor="namespace-collision" numbered="true" toc="default" title="Namespace Collision">
        <t>The "ars" scheme does not maintain a global namespace registry. Different deployments may use the same Namespace string with different semantics. Consumers of "ars" URIs MUST verify the Namespace identity through the applicable Application Profile before relying on the reference.</t>
      </section>
      <section anchor="case-sensitivity-risks" numbered="true" toc="default" title="Case Sensitivity Risks">
        <t>The Namespace is case-sensitive. Consumers MUST NOT perform case normalization on the authority component. Doing so may cause the URI to reference a different namespace. For example, "ars://AEV/..." and "ars://aev/..." are different URIs that reference different namespaces.</t>
      </section>
      <section anchor="resolution-security" numbered="true" toc="default" title="Resolution Security">
        <t>When an "ars" URI is resolved to an HTTP(S) URL, the security of the resolution process (TLS, authentication, access control) is the responsibility of the resolution service. The "ars" scheme does not provide transport-layer security.</t>
      </section>
      <section anchor="phishing" numbered="true" toc="default" title="Phishing and Spoofing">
        <t>Malicious actors may construct syntactically valid "ars" URIs with arbitrary Namespace and Local Reference values. Applications displaying "ars" URIs SHOULD verify the checksum before display and SHOULD indicate when a Reference cannot be verified.</t>
      </section>
    </section>

    <section anchor="iana" numbered="true" toc="default" title="IANA Considerations">
      <t>This document requests provisional registration of the "ars" URI scheme in the IANA Uniform Resource Identifier (URI) Schemes registry, in accordance with <xref target="RFC7595"/>.</t>
      <section anchor="registration-template" numbered="true" toc="default" title="Registration Template">
        <dl spacing="normal">
          <dt>Scheme name:</dt>
          <dd>ars</dd>
          <dt>Status:</dt>
          <dd>Provisional</dd>
          <dt>Applications/protocols that use this scheme:</dt>
          <dd>ARS-1 Generic Archival Reference System. Used to represent ARS-1 References as URIs for use in hyperlinks, QR codes, metadata, and other URI-consuming contexts.</dd>
          <dt>Contact:</dt>
          <dd>Juwan Hwang &lt;juwan.hwang@proton.me&gt;</dd>
          <dt>Change controller:</dt>
          <dd>Juwan Hwang &lt;juwan.hwang@proton.me&gt;</dd>
          <dt>References:</dt>
          <dd><xref target="ARS1"/>, This document.</dd>
        </dl>
      </section>
      <section anchor="registration-status" numbered="true" toc="default" title="Registration Status">
        <t>Provisional registration is requested. The "ars" scheme is intended for use by the ARS-1 protocol community. If the scheme gains broader adoption, a transition to permanent registration may be requested in a future revision.</t>
      </section>
    </section>

  </middle>

  <back>
    <references anchor="normative-references" title="Normative References">
        <reference anchor="ARS1" target="https://github.com/Juwan-Hwang/ARS-1/blob/main/spec/ARS-1.md">
          <front>
            <title>ARS-1 -- Generic Archival Reference System, v1.0-rc2 (Frozen)</title>
            <author fullname="Juwan Hwang">
              <address>
                <email>juwan.hwang@proton.me</email>
              </address>
            </author>
            <date year="2026" month="August"/>
          </front>

        </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"/>
            <date year="1997" month="March"/>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
        </reference>
        <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date year="2017" month="May"/>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
        </reference>
        <reference anchor="RFC3986" target="https://www.rfc-editor.org/info/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 year="2005" month="January"/>
          </front>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="STD" value="66"/>
        </reference>
        <reference anchor="RFC5234" target="https://www.rfc-editor.org/info/rfc5234">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." surname="Crocker"/>
            <author fullname="P. Overell" initials="P." surname="Overell"/>
            <date year="2008" month="January"/>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
        </reference>
        <reference anchor="RFC7595" target="https://www.rfc-editor.org/info/rfc7595">
          <front>
            <title>Guidelines and Registration Procedures for URI Schemes</title>
            <author fullname="D. Thaler" initials="D." surname="Thaler" role="editor"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <author fullname="T. Hardie" initials="T." surname="Hardie"/>
            <date year="2015" month="December"/>
          </front>
          <seriesInfo name="RFC" value="7595"/>
        </reference>
      </references>
      <references anchor="informative-references" title="Informative References">
        <reference anchor="RFC3987" target="https://www.rfc-editor.org/info/rfc3987">
          <front>
            <title>Internationalized Resource Identifiers (IRIs)</title>
            <author fullname="M. Duerst" initials="M." surname="Duerst"/>
            <author fullname="M. Suignard" initials="M." surname="Suignard"/>
            <date year="2005" month="January"/>
          </front>
          <seriesInfo name="RFC" value="3987"/>
        </reference>
    </references>

    <section anchor="acknowledgments" numbered="false" toc="default" title="Acknowledgments">
      <t>The ARS-1 protocol and its 23 independent implementations provided the foundation for this URI scheme specification.</t>
    </section>
  </back>
</rfc>
