<?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.2.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-rehfeld-apix-core-06" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.34.0 -->
  <front>
    <title abbrev="APIX Core">API Index (APIX): Core Infrastructure for Autonomous Agent Service Discovery</title>
    <seriesInfo name="Internet-Draft" value="draft-rehfeld-apix-core-06"/>
    <author initials="C." surname="Rehfeld" fullname="Carsten Rehfeld">
      <organization/>
      <address>
        <email>carsten@botstandards.org</email>
      </address>
    </author>
    <date year="2026" month="June" day="07"/>
    <abstract>
      <?line 125?>

<t>The internet was designed for human actors. Its discovery infrastructure —
search engines, directories, and hyperlinked documents — assumes a human
reading and navigating. Autonomous agents (bots) operating on the internet
today face a structural gap: there is no machine-native, globally accessible
index of services they can consume.</t>
      <t>This document defines the core infrastructure of the <strong>API Index (APIX)</strong>:
a HATEOAS-based, globally accessible, commercially sustainable service
discovery infrastructure designed for autonomous agents as its primary
consumers. It specifies the governance model, the three-dimensional trust
model, the APIX Manifest (APM) base format, commercial onboarding and
sanctions compliance, the supply-side funding model, and the base Index API.
These elements are shared across all APIX service types.</t>
      <t>Profile documents extend this core for specific service categories:
the APIX Services Profile (draft-rehfeld-apix-services-02) defines the
web API and bot service profile; the APIX IoT Device Profile
(draft-rehfeld-apix-iot-02) defines the IoT device profile.</t>
    </abstract>
  </front>
  <middle>
    <?line 146?>

<section anchor="introduction">
      <name>Introduction</name>
      <section anchor="the-bot-ecosystem-gap">
        <name>The Bot Ecosystem Gap</name>
        <t>The internet's foundational infrastructure — HTTP, HTML, DNS, and search
engines — was designed with human actors as the primary consumers. Web pages
render visual layouts for human eyes. CAPTCHA systems explicitly discriminate
against non-human access. Discovery mechanisms such as search engines index
content for human-readable navigation.</t>
        <t>Autonomous agents — software programs that independently execute tasks,
consume APIs, and interact with external services without per-action human
instruction — are not recognized as legitimate, first-class internet
participants in this architecture. They are systematically treated as threats
to be filtered, blocked, or rate-limited.</t>
        <t>This situation is changing. The rapid growth of large language model-based
agents, robotic process automation, and programmatic service consumers means
that non-human actors now represent a significant and growing proportion of
internet traffic. As this proportion increases, internet service providers
will increasingly need to serve autonomous agents as a recognized user class
alongside humans.</t>
        <t>The API Index is premised on this trajectory: bots are becoming
first-class internet participants, and the infrastructure to support them —
starting with service discovery — does not yet exist. Regulators are
converging on the same direction: the EU AI Act (Article 50) requires
transparency and identity disclosure for AI systems that interact with
people, and NIST's Center for AI Standards and Innovation solicited public
input on securing AI agent systems in early 2026. APIX's verifiable trust
model is designed to meet these emerging compliance requirements by
construction.</t>
      </section>
      <section anchor="motivation-a-concrete-origin">
        <name>Motivation: A Concrete Origin</name>
        <t>The API Index was not conceived in the abstract. It emerged from a
concrete practical failure.</t>
        <t>A buying bot was built for a private use case: monitoring online shops for
a specific product and purchasing it automatically the moment it became
available. This is a straightforward task for an autonomous agent — exactly
the kind of task agents are well-suited for.</t>
        <t>The bot failed, not because the task was technically complex, but because
the internet's infrastructure is actively hostile to it:</t>
        <t><strong>HTML-only product pages.</strong> Product availability, price, and purchase state
were encoded in HTML rendered for a human eye. No machine-readable API
existed. The bot had to parse HTML — fragile, maintenance-intensive, and
broken by every redesign.</t>
        <t><strong>Cloudflare Bot Management and equivalent shields.</strong> The majority of
commercial web services now sit behind bot mitigation infrastructure. Cloudflare
Bot Management, and equivalent products from Akamai, Imperva, and others,
are deployed specifically to detect and block non-human request patterns.
Repeated automated requests — even at modest frequency — trigger rate
limiting, CAPTCHA challenges, or silent blocking. A buying bot that polls
a product page to detect availability is treated identically to a malicious
scraper or a DDoS participant.</t>
        <t><strong>CAPTCHA payment barriers.</strong> Even when product pages were reachable, payment
flows required solving CAPTCHAs that explicitly excluded non-human actors.
The purchasing step — the final, necessary action — was deliberately made
inaccessible to the bot.</t>
        <t><strong>Proxy network pollution.</strong> To work around rate limits and bot detection,
the bot required a rotating proxy network — different IP addresses on each
request to disguise its automated origin. This is not a solution: it
pollutes internet traffic with avoidable requests, raises the cost of
operation, and contributes directly to the adversarial dynamic between
bots and infrastructure operators. Every proxy request is a wasted roundtrip
that a machine-readable API endpoint would have made unnecessary.</t>
        <t><strong>Polling as the only state-change mechanism.</strong> Because the bot had no way
to subscribe to product availability events, it had to poll the product page
continuously. This is architecturally wasteful: the bot consumes server
resources and network bandwidth to repeatedly ask a question whose answer
has not changed.</t>
        <t>These are not edge cases. They are the standard experience for any autonomous
agent attempting to consume a commercial internet service today. The buying
bot illustrates why the API Index is necessary: not as an academic
exercise, but as the infrastructure layer that makes autonomous agents
functional participants in the commercial internet.</t>
      </section>
      <section anchor="the-discovery-problem">
        <name>The Discovery Problem</name>
        <t>When an autonomous agent must fulfill a task that requires an external
service, it faces a fundamental discovery problem: how does it find services
that can fulfill its requirement?</t>
        <t>Current approaches are inadequate:</t>
        <ul spacing="normal">
          <li>
            <t><strong>Hardcoded URLs</strong>: brittle, require human maintenance, do not adapt to
new or changed services.</t>
          </li>
          <li>
            <t><strong>LLM training data</strong>: stale, non-authoritative, not machine-verifiable.</t>
          </li>
          <li>
            <t><strong>Human-curated lists</strong>: do not scale, not machine-navigable, lack
structured metadata.</t>
          </li>
          <li>
            <t><strong>Web search</strong>: returns HTML documents designed for humans, not structured
service descriptions for agents.</t>
          </li>
        </ul>
        <t>What is needed is a machine-native equivalent of a search engine: a global,
always-current, structured index of services that autonomous agents can query
by capability, trust level, liveness, and other machine-relevant criteria.</t>
      </section>
      <section anchor="the-discovery-shift">
        <name>The Discovery Shift</name>
        <t>Every automated system that calls an external service today does so
because a human hardcoded that endpoint. The human is the discovery
layer — the automation executes instructions, it does not find
candidates independently.</t>
        <t>APIX addresses this gap at infrastructure level: a globally queryable
index of services that an agent can search by capability, trust level,
and liveness — without prior human configuration of the specific
endpoint. The agent discovers what exists; the human does not need to
enumerate it in advance.</t>
      </section>
      <section anchor="infrastructure-efficiency-and-the-overhead-of-human-facing-responses">
        <name>Infrastructure Efficiency and the Overhead of Human-Facing Responses</name>
        <t>When an autonomous agent retrieves data from a web service today, it typically
receives a response designed for a human browser: HTML markup, CSS stylesheets,
JavaScript bundles, embedded fonts, advertising payloads, and analytics tracking
instrumentation. The actual information content — an endpoint URL, a price, an
availability flag — may occupy two kilobytes. The page weight delivering that
content is routinely one to three megabytes.</t>
        <t>This is a 500- to 1500-fold payload multiplier that carries no value for a
machine consumer. It consumes bandwidth at the client, compute at the server,
transit capacity on the network, and — at the scale of the growing autonomous
agent population — represents a measurable and unnecessary energy expenditure.</t>
        <t>Machine-native APIs eliminate this overhead entirely. A structured JSON response
delivers exactly the information the agent requested and nothing else. The IETF
Datatracker provides a concrete illustration: the human-facing document page for
an Internet-Draft loads several hundred kilobytes of rendered HTML and supporting
assets; the equivalent information retrieved via the Datatracker REST API returns
in under one kilobyte of JSON. The data is identical. The difference is entirely
overhead serving a human rendering pipeline that a machine does not have.</t>
        <t>APIX addresses both the discovery gap and this efficiency gap together. By
providing infrastructure that indexes machine-native service endpoints, APIX
encourages Service Owners to expose structured, agent-consumable APIs alongside
or in place of human-facing interfaces. The aggregate effect, as autonomous agent
workloads scale, is a reduction in the payload overhead carried by bot traffic
across the internet as a whole. This is an explicit co-mission of APIX:
machine-native infrastructure is not only more functional for agents — it is more
efficient for the internet, and helps reduce humanity's environmental footprint
as much as possible.</t>
      </section>
      <section anchor="lessons-from-prior-art">
        <name>Lessons from Prior Art</name>
        <t>The APIX is not the first attempt at a global service registry. Prior efforts
must be understood explicitly so that their failure modes are not repeated.</t>
        <t><strong>UDDI (Universal Description, Discovery and Integration)</strong>
UDDI was a SOAP-era standard for a global service registry with the same
conceptual goal as APIX, published as an OASIS Committee Draft in October
2004. It failed for three reasons: (1) extreme complexity of the XML-based
data model; (2) no automatic verification — all data was self-asserted with
no crawling or validation; (3) no adoption incentive — there was no
commercial model to sustain registration or discovery. APIX addresses all
three directly: a simple JSON manifest, automated spider verification, and
a commercial tier model.</t>
        <t><strong>robots.txt (Robots Exclusion Protocol)</strong>
Machine-readable, but concerned with exclusion — telling crawlers what not
to access — not with discovery of capabilities. Per-domain only. Not a
registry.</t>
        <t><strong>MCP (Model Context Protocol)</strong>
Defines tool and capability descriptions for LLM-based agents. Excellent
for consumption once a server URL is known. Does not address the discovery
problem: there is no index of MCP servers. APIX is complementary to MCP —
it can index MCP servers as one supported spec type. As of December 2025,
MCP is governed by the Linux Foundation Agentic AI Foundation (<xref target="AAIF"/>),
under a vendor-neutral SEP (Specification Enhancement Proposal) process
that explicitly prevents single-company control — a governance philosophy
that directly aligns with APIX's own neutrality requirements.</t>
        <t><strong>Well-Known URIs (RFC 8615)</strong>
Per-domain machine-readable metadata at <tt>/.well-known/</tt>. Useful for
per-service metadata but requires the consumer to already know the domain.
No cross-service search or global index.</t>
        <t><strong>DNS</strong>
DNS resolves names to addresses but carries no capability semantics. It is
an architectural analogy for APIX's federation model, not a comparable system.</t>
      </section>
      <section anchor="related-ietf-and-w3c-work">
        <name>Related IETF and W3C Work</name>
        <t>As of April 2026, the number of Internet-Drafts working in adjacent areas
of agent/bot infrastructure has grown significantly. None addresses the same
problem as APIX. This section documents each and states the relationship
explicitly.</t>
        <t><strong>draft-pioli-agent-discovery (ARDP)</strong>
Proposes a federated agent registration and discovery protocol. Deliberately
decentralised — no global registry mandate, no central query URL. Relationship
to APIX: complementary. ARDP addresses agent-to-agent capability advertisement
within a federation. APIX addresses global, cross-organisation service
discovery from a neutral central index. ARDP's JWS-based signing of
registration payloads provides cryptographic non-repudiation of the manifest
content — a property APIX currently achieves through layered governance
verification (DNS ownership proof at O-1, Spider crawl, KYC pipeline). APM
manifest-level signing is a candidate extension for a future APIX revision,
and ARDP's signing model is the reference design for that work.</t>
        <t><strong>draft-narajala-courtney-ansv2 (ANS v2)</strong>
Anchors autonomous agent identities to DNS domain names with Registration
Authority verification. Focused on agent identity and trust anchoring, not
service capability discovery. ANS v2 builds on a peer-reviewed predecessor
published at IEEE ICAIC 2026, simplifying the name format to three components
(ans://v{version}.{agentHost}), introducing a dual-certificate model, and
replacing conceptual registry integrity with a cryptographic Transparency Log.
ANS v2 explicitly identifies the limitation of DNS-SD (<xref target="RFC6763"/>): DNS-SD
adds service discovery but cannot tell a client whether the agent at an
address is the one it claims to be. ANS v2 fills that identity gap.
Relationship to APIX: complementary. DNS-SD locates a service; ANS v2
verifies the identity of the agent at that address; APIX provides capability
search and multi-dimensional trust metadata across organisations. ANS v2
could serve as the identity layer for service operators registered in APIX.</t>
        <t><strong>draft-vandemeent-ains-discovery (AINS)</strong>
Agent discovery via signed, append-only replication logs. No central
authority. No commercial sustainability model. Relationship to APIX:
different philosophy. AINS prioritises decentralisation and cryptographic
verifiability. APIX prioritises a single authoritative global index with
a governed trust model.</t>
        <t>AINS defines a multi-channel verification model in which each verified
channel produces an independent evidence object. The principle is sound:
independent signals from multiple channels produce stronger identity
assurance than any single channel alone. AINS names DNS, HTTPS, and email
as verification channels — all of which are compatible with APIX's own
trust evidence model (DNS TXT record at O-1, HTTPS-reachable manifest
verified by the APIX Spider). AINS additionally names source code
repositories (e.g., GitHub) as a verification channel. APIX does not
adopt repository access as an evidence channel. For open-source projects
and developer platforms this channel is accessible and useful; however,
the majority of enterprise API services — financial institutions,
healthcare providers, manufacturers, and proprietary IoT backends —
maintain private repositories as protected intellectual property, often
under regulatory or contractual obligations that prohibit external access.
APIX's governance-based evidence channels (DNS, legal entity registration,
commercial contract, third-party audit) apply universally regardless of
whether a registrant's codebase is open-source or proprietary, and this
universality is a deliberate scope decision.</t>
        <t><strong>draft-aiendpoint-ai-discovery (AI Discovery Endpoint)</strong>
Defines <tt>/.well-known/ai</tt> as a per-host machine-readable capability document.
Per-domain only; not a global index. Relationship to APIX: directly
complementary. The APIX Spider SHOULD read <tt>/.well-known/ai</tt> when present
on a registered service's domain as an additional source of capability
metadata.</t>
        <t>This draft defines a flat category taxonomy for service classification:
"productivity", "ecommerce", "finance", "news", "weather", "maps",
"search", "data", "communication", "calendar", "storage", "media",
"health", "education", "travel", "food", "government", "developer".
The convergence with APIX's capability taxonomy is notable: <tt>search</tt>,
<tt>communication</tt>, <tt>storage</tt>, and <tt>media</tt> appear in both; <tt>ecommerce</tt> and
<tt>finance</tt> correspond directly to APIX's <tt>commerce</tt> and <tt>data.financial</tt>
terms. The two taxonomies differ in architecture — AI Discovery Endpoint
uses flat single-word labels optimised for human-readable classification;
APIX uses hierarchical dot-separated terms (<tt>commerce.marketplace</tt>,
<tt>data.financial</tt>) optimised for machine-queryable precision — but the
independent convergence on the same fundamental service categories
validates both approaches. Categories present in AI Discovery Endpoint
but not yet in APIX's v1.0 starter set (<tt>health</tt>, <tt>education</tt>,
<tt>government</tt>, <tt>travel</tt>, <tt>food</tt>, <tt>news</tt>, <tt>weather</tt>, <tt>maps</tt>, <tt>developer</tt>)
are candidates for future additions through the governing body's capability taxonomy
governance process (<xref target="APIX-SERVICES"/>).</t>
        <t><strong>draft-batum-aidre (AIDRE)</strong>
Defines <tt>/.well-known/ai-discovery</tt> as a per-origin discovery document.
Decentralised by design. Relationship to APIX: complementary. APIX provides
the global aggregation and trust verification layer that per-origin endpoints
cannot provide alone.</t>
        <t><strong>draft-cui-ai-agent-discovery-invocation</strong>
Specifies a metadata format for agent capabilities and a registry-based
discovery mechanism. Explicitly permits multiple coexisting registries; no
global authority defined.</t>
        <t>This draft introduces a notable split between two metadata fields:
<tt>capabilities</tt> (high-level descriptors of what the service does, e.g.,
<tt>["translation", "summarization"]</tt>) and <tt>tags</tt> (broader, orthogonal
properties such as domain, language support, or deployment model, e.g.,
<tt>["nlp", "chinese", "transformer_model", "cloud"]</tt>). The split recognises
that some service properties are functional capabilities while others are
orthogonal classifiers that do not fit a strict capability hierarchy.</t>
        <t>APIX takes a different approach. The hierarchical dot-separated capability
taxonomy (<tt>nlp.translation</tt>, <tt>commerce.marketplace</tt>) encodes both the
category and the specific capability in a single governed term, enabling
prefix-based machine queries (<tt>nlp.*</tt>) and registry-controlled vocabulary.
Orthogonal dimensions that draft-cui expresses as free-form tags are
handled in APIX through dedicated typed fields: <tt>language</tt> (BCP 47,
<xref target="RFC5646"/>) covers language support; deployment model is not yet represented
and is noted as a potential future gap. The APIX design trades the
flexibility of a free-form tag bag for machine-queryability and governance
— a tag field without a registry becomes a folksonomy that degrades search
precision at scale. An empirical basis for preferring intent-aligned
capability descriptors over opaque operation labels is provided by the
controlled benchmark study in <xref target="I-D.hood-agtp-api"/>, which demonstrates
that intent-aligned names produce materially higher endpoint selection
accuracy in frontier-class language models, with the accuracy gain
attributable to the name itself independent of additional documentation.</t>
        <t>This draft also identifies pricing information as a legitimate service
metadata concern — noting that if a service charges per use, agents need
this information at discovery time. The draft does not standardise a
pricing schema ("not standardized here but can be included as needed").
APIX adopts this observation and formalises it: the <tt>pricing</tt> field in
the APM schema (<xref target="APIX-SERVICES"/>) defines a governed <tt>model</tt> enum
(<tt>free</tt>, <tt>freemium</tt>, <tt>paid</tt>, <tt>enterprise</tt>, <tt>dynamic</tt>) and a
<tt>pricing_endpoint</tt> for real-time load-based price queries. The index
stores only the declared <tt>model</tt> and the endpoint reference; consuming
agents are responsible for querying the <tt>pricing_endpoint</tt> directly to
obtain and evaluate the current price before invocation.</t>
        <t>This draft also defines a Semantic Routing Platform (SRP): an optional
control-plane service that performs semantic matching, ranking, and
policy-based filtering of candidate agents before invocation, without
participating in task execution. The SRP pattern assumes a structured
candidate pool as its input. APIX is the natural data source for that
pool: an SRP would query APIX with structured filters to retrieve a
trusted, governed candidate set, then apply semantic ranking over that
set before presenting the shortlist to the invoking agent. The two
layers are complementary — APIX provides structured discovery and trust
metadata; the SRP provides semantic selection above that foundation.</t>
        <t>Relationship to APIX: partially overlapping problem space. The capability/tag
split, the pricing observation, and the SRP pattern are all concrete design
contributions; APIX's governed taxonomy, typed fields, and formalised pricing
schema address the same concerns through a more structured mechanism, and the
SRP architecture positions APIX as the structured input layer to semantic
selection rather than as a competitor to it.</t>
        <t><strong>draft-am-layered-ai-discovery-architecture</strong>
Proposes a conceptual two-layer architecture separating a Discovery
Transport Layer (DTL) from the metadata format carried over it. The DTL
is explicitly abstract: the draft names HTTP, pub/sub, multicast, and
MoQ as candidate substrates without specifying any of them normatively.
No wire format, no concrete protocol mechanisms, and no IANA actions are
defined.</t>
        <t>APIX resolves the transport question concretely and normatively: HTTPS
with TLS (<xref target="RFC8446"/>), JSON (<xref target="RFC8259"/>), and HATEOAS navigation over
a single stable entry point. This is a deliberate design position in
favour of implementability over substrate generality. Adding a DTL
abstraction layer atop APIX's concrete HTTP interface would introduce
indirection without communicative or interoperability benefit — the
transport is already specified, and no agent implementation benefits
from treating it as one option among many.</t>
        <t>Directly relevant to APIX is the draft's categorisation of discoverable
object types (agents, models, data resources, robots), which recognises
that different object categories require different metadata profiles.
This independently converges on the same architectural reasoning behind
APIX's decision to separate the Services Profile (<xref target="APIX-SERVICES"/>)
from the IoT Device Profile (<xref target="APIX-IOT"/>) rather than collapsing all
service types into a single flat schema.</t>
        <t>Relationship to APIX: categorisation framing is consistent with the
APIX profile split; the abstract DTL layer is not adopted.</t>
        <t><strong>AGTP Protocol Family</strong></t>
        <t>The Agent Transfer Protocol (AGTP) defines a dedicated agent-native protocol
substrate, distinct from HTTP, with an IANA-registered URI scheme (<tt>agtp://</tt>)
and port 4480, media types in expert review, and live reference servers at
agtp://agents.agtp.io. The AGTP family currently comprises four drafts.</t>
        <t><xref target="I-D.hood-independent-agtp"/> is the core transport substrate. The defining
architectural commitment of the family is that agent-native APIs operate on
AGTP rather than HTTP.</t>
        <t><xref target="I-D.hood-agtp-discovery"/> defines an Agent Name Service (ANS) — a governed
registry that resolves capability queries into ranked lists of Agent Manifest
Documents for authenticated agents. ANS servers act as Scope-Enforcement Points,
applying trust score thresholds, trust tier requirements, and governance zone
constraints. Cross-organisational discovery is supported through peer ANS server
federation.</t>
        <t><xref target="I-D.hood-agtp-api"/> defines the Agentic API contract layer: a curated method
catalog of intent-aligned verbs (QUERY, EXECUTE, PROPOSE, DISCOVER, and eight
additional methods), endpoint primitives carrying semantic contracts, path grammar
rules, and schema validation. The draft introduces a runtime contract negotiation
mechanism via the PROPOSE method: a consuming agent may propose an endpoint that
does not exist, and the serving system synthesises it from its existing capabilities
at session scope. The intent-aligned method vocabulary is grounded in a controlled
empirical benchmark across four frontier-class model families showing that
intent-aligned verbs produce materially higher endpoint selection accuracy than
CRUD verbs, with description-swap ablations confirming that the accuracy gain is
attributable to the method name itself independent of documentation quality.</t>
        <t><xref target="I-D.hood-agtp-trust"/> defines a three-tier verification model with three
independent Tier 1 verification paths (DNS-anchored per RFC 8555, log-anchored
per RFC 9162, and SCITT per RFC 9943), hybrid trust composition, and a normative
0.0-1.0 continuous trust score with freshness semantics that are
operation-class-dependent.</t>
        <t>Relationship to APIX: overlapping problem space, fundamentally different
architectural commitment. The AGTP family's defining premise is that agent-native
services should operate on a dedicated off-HTTP protocol substrate. APIX's
defining premise is that the discovery layer should operate over existing HTTP
infrastructure with zero adoption friction: any service already reachable over
HTTP registers in APIX without changing its underlying protocol. These are not
competing answers to the same deployment question; they address different
positions in the adoption spectrum. AGTP targets greenfield services designed for
agent-native operation from scratch; APIX targets the full landscape including
existing HTTP/REST APIs, MCP-served models, IoT backends, and enterprise systems
that will not migrate off HTTP for operational, legal, or contractual reasons.</t>
        <t>Three specific alignments are worth noting. First, the AGTP trust tier evidence
paths (DNS per RFC 8555, transparency log per RFC 9162, SCITT per RFC 9943) are
structurally analogous to APIX's O-level evidence channels (DNS TXT record at
O-1, GLEIF LEI database at O-2, independent audit at O-5); a shared trust
evidence vocabulary between the two specifications would benefit consuming agents
that interact with both. Second, the AGTP PROPOSE method — server-side synthesis
of non-existent endpoints from existing capabilities at session scope — has no
current analogue in APIX and is identified as a candidate area for future dynamic
capability negotiation. Third, the empirical finding on intent-aligned method
names in <xref target="I-D.hood-agtp-api"/> provides an independent quantitative basis for
APIX's capability taxonomy design: APIX capability terms (<tt>nlp.translation</tt>,
<tt>commerce.marketplace</tt>) are intent-aligned descriptors rather than CRUD-style
operation labels, and the benchmark result supports that design choice.</t>
        <t><strong>draft-mozley-aidiscovery (AI Agent Discovery Problem Statement)</strong>
Argues for a distributed, organisation-centric discovery model in which
each organisation independently publishes agent capabilities at a
well-known entry point. The draft explicitly opposes centralised
registries on two grounds: single points of failure limiting resilience,
and the competitive harm risk — stated directly as: "An adversarial
centralized directory is also able to stifle competitor advertisement
capabilities." The scope is cross-organisational; the draft addresses
public, multi-domain agent discovery, not only local or intra-organisation
scenarios.</t>
        <t>Relationship to APIX: this draft articulates the strongest
counter-position to APIX's architecture, and the adversarial directory
argument deserves a direct response. APIX addresses it structurally:
the neutrality requirements (Section 4.2), the prohibition on ranking
preferences and preferential treatment, the independent governance of
the standard from the commercial operation, and the mandatory open bulk
data download are specifically designed to make the adversarial scenario
impossible by construction. A directory operated under these constraints
cannot stifle competitor advertisement because it cannot discriminate
between registrants at the same commercial tier.</t>
        <t>The distributed model's remaining gap, which APIX addresses, is the
zero-prior-knowledge case: an agent that has no prior relationship with
any service provider needs a single starting point from which to
discover unknown third parties. An organisation-centric model requires
the discovering agent to already know which organisations to query —
which presupposes the discovery problem is already solved.</t>
        <t><strong>draft-mozleywilliams-dnsop-dnsaid (DNS for AI Discovery)</strong>
Proposes DNS-AID: using SVCB records to publish agent service endpoints.
Relationship to APIX: complementary at the infrastructure layer. The
distinction across the three systems is precise: DNS-AID tells a client
where to connect; ANS v2 (<xref target="I-D.narajala-courtney-ansv2"/>) tells it whether
to trust the agent at that address; APIX tells it what to connect to and why
— capability search, multi-dimensional trust metadata, and liveness
verification across the global service landscape.</t>
        <t><strong>draft-meunier-webbotauth-registry (webbotauth)</strong>
Defines a JSON-based "Signature Agent Card" format for bot authentication.
Focused on bot identity — how a bot proves who it is to a service. Related
to the active webbotauth IETF Working Group. Relationship to APIX: orthogonal
but complementary — webbotauth addresses bot consumer identity; APIX addresses
service provider discovery.</t>
        <t><strong>I-D.ietf-scitt-architecture (SCITT)</strong>
Defines an append-only transparency service for supply chain integrity,
transparency, and trust. An IETF WG specification
(<xref target="I-D.ietf-scitt-architecture"/>). SCITT provides a
tamper-evident, auditable ledger model where statements about artefacts are
registered and independently verifiable. Relationship to APIX: architectural
reference. APIX's audit trail for organisation trust level progressions, LER
submissions (<xref target="APIX-IOT"/>), and sanctions screening events follows the same
append-only, non-repudiable model that SCITT formalises. ANS v2
(<xref target="I-D.narajala-courtney-ansv2"/>) bases its Transparency Log on SCITT. A
future revision of APIX MAY adopt SCITT-compliant transparency log semantics
for its governance audit trail.</t>
        <t><strong>Google Cloud Fraud Defense</strong>
A commercial trust platform for the agentic web announced at Google Cloud
Next '26 (April 2026), positioned as the next evolution of reCAPTCHA. Fraud
Defense explicitly integrates with the webbotauth IETF Working Group and
SPIFFE for agent and workload identity classification. Relationship to APIX:
complementary at adjacent layers. Fraud Defense operates at the consumption
layer — it verifies and classifies agent traffic arriving at a service
endpoint. APIX operates at the discovery layer — it provides the service
index, trust metadata, and capability taxonomy that agents use to locate
services before interacting with them. The two systems are not competitive;
a Fraud Defense policy engine can consume APIX trust signals (O-level,
S-level) as inputs to its risk scoring.</t>
        <t><strong>SPIFFE (Secure Production Identity Framework For Everyone)</strong>
A CNCF open standard for workload identity attestation. Provides
cryptographically verifiable identities (SVIDs) to software workloads in
dynamic infrastructure. Referenced as an integration target by Google Cloud
Fraud Defense alongside webbotauth. Relationship to APIX: complementary at
the identity layer. SPIFFE addresses machine/workload identity; APIX
addresses service and device discovery with human-governed trust levels. A
SPIFFE SVID could serve as a technical credential for an agent whose
operator is registered in APIX at O-2 or above.</t>
        <t><strong>W3C AI Agent Protocol Community Group</strong>
Proposed May 2025, targeting agent interoperability protocols. Pre-specification
as of this writing. Relationship to APIX: APIX will monitor this group's
outputs and align the APM capability taxonomy with any vocabulary standardised
by the W3C CG where applicable.</t>
        <t><strong>Agent2Agent Protocol (A2A)</strong>
Defines a secure communication protocol for agent-to-agent interaction
across frameworks <xref target="A2A"/>. Originated at Google (April 2025), transferred to the
Linux Foundation Agentic AI Foundation (<xref target="AAIF"/>) in June 2025; as of early
2026 it has 150+ supporting organisations and is in production use.
Relationship to APIX: directly complementary. A2A addresses how agents
communicate once they have located each other. APIX addresses how agents
locate each other in the first place. An agent that uses APIX for
discovery and A2A for subsequent communication is using both systems for
their intended purpose with no overlap.</t>
        <t><strong>AGNTCY (Open Agent Schema Framework)</strong>
A multi-component open infrastructure project for multi-agent systems <xref target="AGNTCY"/>,
originating at Cisco and transferred to the Linux Foundation (<xref target="AAIF"/>) in
July 2025. As of early 2026 it has 65+ supporting organisations and is
in production use for CI/CD, IT automation, and telecommunications.
AGNTCY comprises four components: the Open Agent Schema Framework (OASF)
for capability discovery, cryptographic identity, SLIM messaging, and
end-to-end observability. AGNTCY is governed under the Linux Foundation
AAIF mandate of no single-company control.</t>
        <t>Relationship to APIX: the governance philosophies are aligned; the
architectural scope is different. OASF defines a capability schema
format — analogous to OpenAPI for agent capabilities — for registering
and advertising what an agent can do. APIX is a globally queryable index
infrastructure: a single authoritative entry point where agents discover
unknown third-party services by capability, with commercial sustainability,
verified trust metadata, and structured search. OASF and APIX are
complementary: OASF provides the schema language; APIX provides the
global index that can be populated with OASF-described services. An
AGNTCY-registered agent is a candidate APIX registrant. The principal
architectural difference is scope: AGNTCY is optimised for
intra-platform and intra-organisation agent coordination; APIX is
designed for cross-organisation, cross-border, zero-prior-knowledge
discovery of agent-consumable services and IoT device classes. The two systems address different
points in the discovery spectrum and are not substitutes for each other.</t>
        <t><strong>draft-drake-agent-identity-registry (Agent Identity Registry)</strong>
Defines a federated registry architecture for persistent, hardware-anchored
agent identities. Introduces a three-tier model: Agent Identity Authority
(AIA) as a governance body, Registry Operators as authoritative identity
databases, and Registrars for hardware attestation and OIDC token
issuance. The AIA is explicitly required to be constituted as a
multi-stakeholder body — the draft states directly that "single-entity
control would undermine the federated design" (<xref target="I-D.drake-agent-identity-registry"/>).</t>
        <t>Relationship to APIX: this draft provides the strongest independent
validation of APIX's core governance premise. Two separate specifications,
developed independently, arrive at the same structural requirement: that
foundational agent infrastructure must be governed by a multi-stakeholder
body, not controlled by a single entity. The functional domains are
complementary rather than overlapping — draft-drake addresses agent
identity (who is this agent, which hardware backs its credential); APIX
addresses service discovery (what services exist, what can they do, are
they trustworthy). An agent whose identity is established under
draft-drake's AIA model is a well-suited candidate to consume and
register services in APIX.</t>
        <t><strong>Linux Foundation Agentic AI Foundation (AAIF)</strong>
Formed December 2025 with founding contributions from Anthropic (MCP),
OpenAI (AGENTS.md), and Block (goose); additional members include AWS,
Bloomberg, Cloudflare, Google, Cisco, Dell, Oracle, and Red Hat. The
AAIF's explicit founding mandate is to ensure "no single company controls
the direction of foundational infrastructure" (<xref target="AAIF"/>), implemented
through a vendor-neutral directed fund structure and per-project
Specification Enhancement Proposal (SEP) processes modelled on Kubernetes's
KEP governance.</t>
        <t>Relationship to APIX: the AAIF's governance mandate independently
validates APIX's constitutional neutrality requirements. APIX predates
the AAIF as an IETF submission and implements the same principle — no
single commercial interest may control the standard or its operation —
through a different structural mechanism: a neutral, non-profit governing body with a
supply-side commercial model that funds operations without creating
discovery-layer incentives to favour any registrant. The AAIF governs
communication and invocation protocols (MCP, A2A); APIX governs the
discovery index. These are adjacent, non-overlapping layers of the same
infrastructure stack.</t>
        <t><strong>Positioning</strong>
The agent infrastructure space has consolidated significantly in 2025-2026.
At the protocol layer, the Linux Foundation AAIF has emerged as the
primary governance body for communication and invocation standards (MCP,
A2A), with 150+ supporting organisations and active production deployment.
At the IETF, over a dozen individual drafts address agent discovery and
identity from different architectural starting points; none has reached
Working Group consensus.</t>
        <t>APIX occupies a distinct position in this landscape: it is the only
specification in the IETF space that makes governance the primary
architectural requirement, and the only proposal for a globally
queryable, commercially sustainable, neutral discovery index. The dominant
IETF tendency toward decentralisation addresses legitimate concerns about
single points of control; APIX answers those concerns structurally, through
its neutrality mandates, open bulk data requirements, and separation of
standard governance from commercial operation — rather than by abandoning
the global index model that those concerns are directed at.</t>
        <t>APIX is designed to compose with, not replace, the adjacent standards:
APIX provides the discovery layer that MCP, A2A, and AGNTCY do not
provide; draft-drake provides the identity layer that APIX delegates to
external identity infrastructure; the webbotauth Working Group provides
the bot authentication layer that APIX references as a trust signal.
Each standard goes deep in its own sub-problem; APIX depends on that
depth rather than duplicating it.</t>
        <t>The AGTP protocol family represents a distinct architectural trajectory:
a dedicated agent-native transport substrate (<tt>agtp://</tt>) that replaces
HTTP rather than extending it. APIX and AGTP are not substitutes and
the distinction is one of adoption scope, not superiority. AGTP is the
invocation substrate for greenfield services designed from scratch;
APIX is the discovery index for the full existing service landscape,
including the large majority of deployable services that will not
migrate off HTTP in any planning horizon relevant to agent infrastructure
standardisation.</t>
      </section>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" 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>
      <t>All API responses MUST be encoded as UTF-8 as mandated by <xref target="RFC8259"/>
Section 8.1. All string fields in APM documents and Index API responses
MUST contain valid UTF-8. HTTP status codes used throughout this
specification are defined in <xref target="RFC9110"/>.</t>
      <t><strong>Agent</strong>
An autonomous software program that executes complex, goal-directed
tasks by consuming external services, without per-action human
instruction. Agents may use LLM-backed or programmatic orchestration
logic. The primary consumer class targeted by the APIX Index API.</t>
      <t><strong>Bot</strong>
An autonomous software program that executes deterministic, rule-based
internet tasks: web crawling, API polling, automated messaging, without
per-action human instruction. Behavior is scripted rather than
goal-directed. The APIX Spider is itself a bot.</t>
      <t><strong>Connected Device</strong>
A physical or embedded hardware unit with network connectivity that
exposes services or sensor data via the APIX Presence Protocol.
Registered as a Device Class and tracked as a Device Instance as
defined in <xref target="APIX-IOT"/>. Distinct from Agent and Bot in that the
principal is hardware, not software.</t>
      <t><strong>Service</strong>
A machine-consumable API or connected device class offered by an organisation,
registered in the APIX, and described by an APIX Manifest. The term covers
both web API services (<xref target="APIX-SERVICES"/>) and IoT device services (<xref target="APIX-IOT"/>).</t>
      <t><strong>Service Owner</strong>
The organisation responsible for registering, maintaining, and operating a
Service in the APIX.</t>
      <t><strong>APIX Manifest (APM)</strong>
The structured metadata document that describes a Service to the APIX,
including its technical specification reference, capability taxonomy,
trust metadata, and commercial terms. Profile documents define the
additional fields applicable to each service type.</t>
      <t><strong>Governing Body</strong>
The neutral, non-profit entity that operates the APIX, maintains its
registries, accredits Regional Representatives and Verifiers, and ensures
the governance and operational requirements defined in this specification
are met. Any entity that satisfies those requirements MAY fulfil this role.</t>
      <t><strong>API Index (APIX)</strong>
The global, centralised index of registered Services, operated by the
governing body and queryable by autonomous agents via the Index API.</t>
      <t><strong>Index API</strong>
The HATEOAS-compliant HTTP API exposed by the APIX for agent discovery and
navigation.</t>
      <t><strong>Accredited Verifier</strong>
A trusted third-party organisation, accredited by the governing body,
that performs human-intensive trust verification at Organisation levels O-4
and O-5.</t>
      <t><strong>Accredited Regional Representative</strong>
An organisation accredited by the governing body to operate
commercial onboarding, contracting, and customer relationships within a
defined geographic jurisdiction, under the governing body's
standard and governance.</t>
      <t><strong>Trust Policy</strong>
A set of minimum trust requirements expressed by a consuming agent that a
Service must satisfy before the agent will use it.</t>
      <t><strong>Liveness</strong>
The confirmed operational status and response availability of a Service,
as measured by automated means at a frequency determined by the Service's
commercial tier. The specific liveness mechanism differs by service type:
Spider health checks for web API services; presence signals for IoT device
services.</t>
      <t><strong>Tier</strong>
A commercial subscription level that determines a Service's visibility in
the APIX, liveness check frequency, and API query rate allocation.</t>
    </section>
    <section anchor="design-goals">
      <name>Design Goals</name>
      <section anchor="requirements-must">
        <name>Requirements (MUST)</name>
        <ul spacing="normal">
          <li>
            <t>The APIX MUST be queryable by autonomous agents via a stable, globally
accessible URL without prior knowledge of any specific service.</t>
          </li>
          <li>
            <t>The Index API MUST follow HATEOAS principles: agents MUST be able to
navigate the full index starting from a single entry-point URL.</t>
          </li>
          <li>
            <t>Every Service record MUST expose machine-readable trust metadata across
all three trust dimensions (Organisation, Service, Liveness).</t>
          </li>
          <li>
            <t>Service registration MUST be human-initiated. The registrant MUST agree to
the index operator's Terms of Service before any service record is activated.
For O-0 and O-1, self-service portal registration with accepted Terms of
Service satisfies this requirement. For O-2 and above, registration MUST
additionally involve a formal B2B contractual relationship between the Service
Owner and the index operator or its Accredited Regional Representative.</t>
          </li>
          <li>
            <t>The APIX MUST expose trust metadata as verifiable facts, not as
recommendations. Trust decisions MUST remain with the consuming agent.</t>
          </li>
          <li>
            <t>The APIX Manifest (APM) MUST be format-agnostic: it MUST support
referencing multiple service types via an extensible type registry.</t>
          </li>
          <li>
            <t>The APIX MUST be operated as a neutral, non-profit infrastructure under
the governance of the governing body.</t>
          </li>
        </ul>
      </section>
      <section anchor="goals-should">
        <name>Goals (SHOULD)</name>
        <ul spacing="normal">
          <li>
            <t>The Index API SHOULD support full-text and structured search by capability,
category, organisation trust level, service verification level, liveness
freshness, and protocol type.</t>
          </li>
          <li>
            <t>The APIX SHOULD provide SDKs in common agent development languages to
lower the integration barrier for consuming agents.</t>
          </li>
          <li>
            <t>The APIX SHOULD support a federated accredited verifier model so that
Organisation trust levels O-4 and O-5 can be verified at scale without
centralising all human review in the governing body.</t>
          </li>
          <li>
            <t>Accredited Regional Representatives SHOULD be established in major
jurisdictions to allow Service Owners to contract in their local language
and legal framework.</t>
          </li>
          <li>
            <t>The APIX SHOULD publish a public transparency report at least annually,
disclosing the number of registered services by tier and trust level,
coverage statistics, and verifier accreditation status.</t>
          </li>
          <li>
            <t>The APIX SHOULD, through its verification model and tier structure,
incentivise Service Owners to expose structured, machine-consumable API
endpoints rather than requiring agents to adapt to human-facing HTML
interfaces. Eliminating rendering, styling, and advertising overhead from
machine-to-machine communication is an explicit efficiency objective of
this infrastructure.</t>
          </li>
        </ul>
      </section>
      <section anchor="out-of-scope">
        <name>Out of Scope</name>
        <t>The following are explicitly not addressed by this document.
Items marked MUST NOT are normative constraints on conforming
implementations; remaining items are editorial scope boundaries.</t>
        <ul spacing="normal">
          <li>
            <t><strong>Bot identity and authentication</strong>: how a bot proves its own identity to
a service it consumes. This is addressed by complementary work such as
draft-meunier-webbotauth-registry. This document takes no position on
bot identity mechanisms.</t>
          </li>
          <li>
            <t><strong>Bot rights and legal personhood</strong>: outside the scope of a technical
infrastructure standard.</t>
          </li>
          <li>
            <t><strong>Service execution</strong>: a conforming APIX implementation MUST NOT proxy,
mediate, or execute service calls on behalf of consuming agents. The APIX
is a discovery layer only; all service interactions occur directly between
the consuming agent and the Service Owner's infrastructure.</t>
          </li>
          <li>
            <t><strong>Content indexing</strong>: a conforming APIX implementation MUST NOT index
service response content. The APIX indexes service metadata — capability
declarations, trust levels, liveness signals — not the data that services
return when called.</t>
          </li>
          <li>
            <t><strong>Mandatory consumer registration</strong>: a conforming APIX implementation
MUST NOT require consuming agents to register or identify themselves as
a condition of performing discovery queries (see Section 9.2).</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="anticipated-extensions">
      <name>Anticipated Extensions</name>
      <t>This document specifies the discovery layer of APIX. The infrastructure has
been deliberately scoped to a stable, narrow base that can support a family
of extension drafts, each addressing a specific capability beyond discovery.
This section is informative; it binds no implementer to support any future
extension and creates no normative requirement. Its purpose is to make the
intended evolution path of APIX visible to reviewers and to ensure that the
docking points reserved in <xref target="the-apix-manifest-apm"/> and
<xref target="iana-considerations"/> are understood in context.</t>
      <t>The following extension areas are anticipated. Each will, if pursued, become
a separate Internet-Draft, subject to its own review and adoption process.</t>
      <dl>
        <dt>Contract Flexibility and Renegotiation</dt>
        <dd>
          <t>A protocol for declared, bounded renegotiation of contracts between an
APIX-registered service and a counterparty after a binding agreement has
been signed. The mechanism is bilateral and uses hop-by-hop trust along
the original contract edges; it does not introduce a consensus layer. It
anticipates use cases such as production-slot adjustment, demand-response
in energy distribution, and logistics window re-sequencing. The extension
would define a <tt>flexibility</tt> subschema attached via the <tt>extensions</tt>
container of the APM (<xref target="the-apix-manifest-apm"/>), register capability
terms under the reserved <tt>contract.*</tt> namespace
(<xref target="iana-considerations"/>), and specify a state-machine that extends the
per-profile interaction lifecycle.</t>
        </dd>
        <dt>Contract Signing and Lifecycle</dt>
        <dd>
          <t>A protocol for the bilateral signing of contracts between APIX-registered
parties, including the lifecycle states preceding the Flexibility and
Renegotiation extension. Capability terms would be registered under
<tt>contract.*</tt>.</t>
        </dd>
        <dt>Agent Reachability via Capability Proxy</dt>
        <dd>
          <t>A pattern by which an autonomous agent that is not always online registers
a discoverable capability service (a "negotiation proxy" or analogous)
that holds its responses to asynchronous protocol events. The pattern is
general; the renegotiation extension above is its first concrete consumer.</t>
        </dd>
      </dl>
      <t>The hooks reserved in this document — the structured <tt>extensions</tt> container
in the APM and the reserved <tt>contract.*</tt> and <tt>extension.*</tt> capability
namespaces — are sufficient for these anticipated extensions to be added
without modifying the core specification.</t>
    </section>
    <section anchor="architecture-overview">
      <name>Architecture Overview</name>
      <section anchor="component-model">
        <name>Component Model</name>
        <artwork><![CDATA[
  +----------------------------------------------------------+
  |                   the governing body                     |
  |             (neutral, non-profit; form in Appendix)      |
  |  Owns: APIX standard, Index infrastructure, APM format   |
  |  Accredits: Regional Representatives, Verifiers          |
  +---------------------+------------------------------------+
                        |
        +---------------+-------------------+
        |               |                   |
  +-----+------+  +-----+--------+  +-------+---------+
  |   Index    |  | Verification |  |  Registration   |
  |   API      |  | Component    |  |    Portal       |
  | (HATEOAS)  |  |(type-specific|  |  (B2B / human)  |
  +-----+------+  +-----+--------+  +-------+---------+
        |               |                   |
        |         +-----+------+            |
        |         |  Service   |            |
        +-------->|  Record    |<-----------+
                  |  Store     |
                  +------------+
        ^                              ^
        |                              |
  +-----+------+              +--------+-----------+
  |  Consuming |              |   Service Owner    |
  |    Agent   |              |  (+ Accredited     |
  |    (Bot)   |              |  Regional Rep)     |
  +------------+              +--------------------+
]]></artwork>
        <t>This document uses the generic terms "governing body" and "index
operator" in all normative requirements. These terms are intentionally
role-based: any entity that satisfies the governance, neutrality, and
operational requirements defined in this specification MAY fulfil them.
The reference implementation of these roles is described in the
non-normative appendix "Reference Implementation" at the end of this
document.</t>
        <t><strong>Flow:</strong></t>
        <ol spacing="normal" type="1"><li>
            <t>A Service Owner (or their Accredited Regional Representative) creates
an Organisation Account in the APIX Registration Portal, providing
company details and agreeing to a commercial contract.</t>
          </li>
          <li>
            <t>The Registration Portal creates a draft Service Record and triggers
profile-appropriate verification (Spider crawl for web API services;
manufacturer provisioning for IoT device classes).</t>
          </li>
          <li>
            <t>The verification component updates the Service Record with verified
technical metadata.</t>
          </li>
          <li>
            <t>The Service Record becomes queryable via the Index API.</t>
          </li>
          <li>
            <t>A consuming agent queries the Index API from the single entry-point URL,
navigates by HATEOAS links, applies its Trust Policy, and selects
services that satisfy its requirements.</t>
          </li>
          <li>
            <t>Verification rechecks services on the schedule defined by each service's
liveness monitoring configuration.</t>
          </li>
        </ol>
      </section>
      <section anchor="governance-model">
        <name>Governance Model</name>
        <t>The APIX MUST be operated by a <strong>neutral governing body</strong> that satisfies the
following normative requirements. These requirements apply to any conforming
APIX implementation; the specific legal form of the governing body is an
implementation choice.</t>
        <t><strong>Neutrality requirements:</strong></t>
        <ul spacing="normal">
          <li>
            <t>The governing body MUST have no commercial interest in preferring any
registrant's services over another in index results or liveness scheduling.</t>
          </li>
          <li>
            <t>The governing body MUST NOT offer exclusive discovery advantages, ranking
preferences, or prioritised verification treatment to any registrant
regardless of commercial relationship.</t>
          </li>
          <li>
            <t>Governance of the APIX standard and APM specification MUST be separated
from operation of the commercial index. A single entity may not
simultaneously control standard evolution and derive commercial benefit
from preferential application of that standard.</t>
          </li>
        </ul>
        <t><strong>Operational requirements:</strong></t>
        <ul spacing="normal">
          <li>
            <t>The governing body MUST accredit Regional Representatives who may handle
service onboarding in specific jurisdictions. Regional Representatives
operate under licence from the governing body; the index itself remains
a single global store.</t>
          </li>
          <li>
            <t>The governing body MUST accredit Verifiers who perform Organisation trust
assessments at O-4 and O-5. Accredited Verifiers are structurally
analogous to Certificate Authorities in the TLS ecosystem.</t>
          </li>
          <li>
            <t>The governing body MUST maintain the capability taxonomy and publish all
versions of the APM specification and Index API specification as open
standards under a permissive licence.</t>
          </li>
          <li>
            <t>The governing body MUST perform sanctions screening on service registrants
(see Section 8).</t>
          </li>
        </ul>
        <t><strong>Openness requirements:</strong></t>
        <ul spacing="normal">
          <li>
            <t>The full index MUST be made available as a freely downloadable bulk dataset
on the first day of each calendar month, under the Open Database Licence
(ODbL) 1.0. No entity, including the governing body, may hold an exclusive
lock on the index data.</t>
          </li>
          <li>
            <t>Incremental diff files MUST be published daily, each covering all record
additions, updates, and deletions since the previous day's snapshot. A
downstream consumer MUST be able to reach current index state by applying
the monthly full snapshot and the sequence of daily diffs since that
snapshot, without downloading any additional full snapshots.</t>
          </li>
          <li>
            <t>Discovery queries to the Index API MUST be available without authentication
or payment (subject to rate limits; see Section 9.2).</t>
          </li>
        </ul>
        <section anchor="global-participation">
          <name>Global Participation</name>
          <t>A conforming APIX implementation SHOULD establish mechanisms to ensure
global representation in the capability taxonomy, including service categories
relevant to underrepresented regions. Where regional institutional partners
are willing to co-sponsor regional participation, the governing body SHOULD
establish formal co-sponsorship relationships and associated governance
representation for those regions.</t>
          <t>Regional verification nodes are RECOMMENDED in regions with significant
service registrant populations to eliminate intercontinental latency in
liveness verification.</t>
        </section>
      </section>
      <section anchor="standard-registries">
        <name>Standard Registries</name>
        <t>The APIX standard maintains normative registries of enumerated values.
Registries are authoritative lists of valid values for specific APM and
Index API fields. Using values not present in the relevant registry is
a protocol violation.</t>
        <t><strong>Registry location:</strong> Registries are published as live JSON endpoints at
<tt>apix.example.org/registry/</tt> and are updated independently of the RFC
revision cycle. The RFC defines the registry structure and lifecycle
rules; the live endpoints are the authoritative source of current values.</t>
        <dl>
          <dt><tt>protocols</tt></dt>
          <dd>
            <t>Protocol type registry.
Endpoint: <tt>apix.example.org/registry/protocols</tt>.
APM field: <tt>spec.type</tt>.</t>
          </dd>
          <dt><tt>capabilities</tt></dt>
          <dd>
            <t>Capability taxonomy registry.
Endpoint: <tt>apix.example.org/registry/capabilities</tt>.
APM field: <tt>capabilities[]</tt>.</t>
          </dd>
          <dt><tt>notification-channels</tt></dt>
          <dd>
            <t>Notification channel type registry.
Endpoint: <tt>apix.example.org/registry/notification-channels</tt>.
APM field: <tt>notifications.channels[].type</tt>.</t>
          </dd>
          <dt><tt>presence-modes</tt></dt>
          <dd>
            <t>Presence mode registry.
Endpoint: <tt>apix.example.org/registry/presence-modes</tt>.
APM field: <tt>spec.presence_mode</tt> (device classes).</t>
          </dd>
          <dt><tt>delegation-scopes</tt></dt>
          <dd>
            <t>Device delegation scope registry.
Endpoint: <tt>apix.example.org/registry/delegation-scopes</tt>.
APM field: <tt>scopes[]</tt> in delegation grant requests (device classes).</t>
          </dd>
        </dl>
        <t>Initial values for each registry are defined in the applicable profile
document: <xref target="APIX-SERVICES"/> for protocol types and capability taxonomy;
<xref target="APIX-IOT"/> for presence modes, delegation scopes, and IoT capability
terms.</t>
        <t><strong>Registry entry lifecycle:</strong></t>
        <t>Each registry entry transitions through three phases. The <tt>standard_warnings</tt>
flag in a Service Record does not appear until the grace period has elapsed —
service operators have a silent window to update their APM before any public
signal is issued.</t>
        <artwork><![CDATA[
active  ->  deprecated (announced)
              |
              +-- [grace period: 90 days min]
              |     silent: operator notified, no public flag
              |
              +-- [warning period: remainder of deprecation window]
              |     standard_warnings visible in Service Record
              |
              +-- sunset
                    new registrations rejected; flagged non-compliant
]]></artwork>
        <table>
          <thead>
            <tr>
              <th align="left">Phase</th>
              <th align="left">Status</th>
              <th align="left">standard_warnings</th>
              <th align="left">New regs.</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Normal use</td>
              <td align="left">
                <tt>active</tt></td>
              <td align="left">No</td>
              <td align="left">Accepted</td>
            </tr>
            <tr>
              <td align="left">Grace period</td>
              <td align="left">
                <tt>deprecated</tt></td>
              <td align="left">
                <strong>No</strong></td>
              <td align="left">Accepted</td>
            </tr>
            <tr>
              <td align="left">Warning period</td>
              <td align="left">
                <tt>deprecated</tt></td>
              <td align="left">
                <strong>Yes</strong></td>
              <td align="left">Accepted</td>
            </tr>
            <tr>
              <td align="left">Sunset</td>
              <td align="left">
                <tt>sunset</tt></td>
              <td align="left">Yes (non-compliant)</td>
              <td align="left">
                <strong>Rejected</strong></td>
            </tr>
          </tbody>
        </table>
        <t><strong>Deprecation rules:</strong></t>
        <ul spacing="normal">
          <li>
            <t>The governing body MUST publish a <tt>deprecated_in_version</tt>, <tt>sunset_date</tt>,
<tt>grace_period_ends</tt>, and <tt>replacement</tt> value when deprecating any registry
entry.</t>
          </li>
          <li>
            <t>The minimum total deprecation window (announcement to sunset) is
<strong>12 months</strong>. The governing body MAY extend this window but MUST NOT
shorten it.</t>
          </li>
          <li>
            <t>The minimum grace period is <strong>90 days</strong> from the deprecation announcement.
During the grace period, <tt>standard_warnings</tt> MUST NOT be set on any Service
Record, regardless of whether the service uses the deprecated value.</t>
          </li>
          <li>
            <t>The governing body MUST notify all registered Service Owners whose services
use the deprecated value before the grace period begins. Notification MUST
include the <tt>grace_period_ends</tt> date, the <tt>sunset_date</tt>, and the
<tt>replacement</tt> value.</t>
          </li>
          <li>
            <t>After the grace period, the index operator MUST set <tt>standard_warnings</tt> on
Service Records that still use the deprecated value.</t>
          </li>
          <li>
            <t>At <tt>sunset</tt>, the index operator MUST reject new APM submissions using the
sunsetted value and MUST escalate existing Service Records from
<tt>standard_warnings</tt> to a <tt>non_compliant</tt> status flag.</t>
          </li>
        </ul>
        <t><strong>Registry versioning:</strong> each registry is independently versioned. The Index
root resource (Section 10.2) exposes the current version of each registry so
consuming agents may detect changes.</t>
      </section>
      <section anchor="apm-schema-documents">
        <name>APM Schema Documents</name>
        <t>The structure of the APM is defined normatively in this document and the
applicable profile (<xref target="APIX-SERVICES"/>, <xref target="APIX-IOT"/>). So that implementers can
validate manifests against a retrievable artifact rather than transcribing the
specification, the governing body MUST also publish the APM as a
machine-readable JSON Schema document (<xref target="JSON-SCHEMA"/>, 2020-12 dialect) for each profile.</t>
        <t><strong>Location and format.</strong> Schema documents are published as live endpoints
alongside the value registries above:</t>
        <artwork><![CDATA[
apix.example.org/registry/schemas/apm-core-<apm_version>.json
apix.example.org/registry/schemas/apm-services-<apm_version>.json
apix.example.org/registry/schemas/apm-iot-<apm_version>.json
]]></artwork>
        <t><tt>&lt;apm_version&gt;</tt> is the value carried in the APM <tt>apm_version</tt> field. A schema
document MAY reference the value registries above for enumerated fields;
implementers resolve current enumerated values from the registry endpoints.</t>
        <t><strong>Discoverability.</strong> The Index root resource (Section 10.2) MUST advertise the
current schema document for each supported profile via a HATEOAS link and MUST
expose the <tt>apm_version</tt> in effect. A consuming agent or registrant therefore
obtains the schema by traversal from the single entry point, without
out-of-band knowledge.</t>
        <t><strong>Versioning and stability.</strong> A published schema document is immutable once
published: any change to the APM structure is published as a new <tt>apm_version</tt>
at a new URL. Implementers MAY rely on a published schema document not changing
incompatibly within its version.</t>
        <t><strong>Precedence and limits.</strong> This document, with the applicable profile, is the
normative source of truth for the APM. A published schema document MUST conform
to it and MUST NOT impose constraints beyond it; where a published schema and
this document disagree, this document prevails. JSON Schema cannot express
every normative requirement — for example, that <tt>trust</tt> fields are set by the
index operator only (see <xref target="the-apix-manifest-apm"/>), Spider-derived values, and
cross-field or lifecycle constraints. Validation against a published schema is
therefore necessary but not sufficient for conformance.</t>
      </section>
    </section>
    <section anchor="lawful-cooperation-and-non-surveillance-commitment">
      <name>Lawful Cooperation and Non-Surveillance Commitment</name>
      <section anchor="purpose-of-the-service">
        <name>Purpose of the Service</name>
        <t>APIX is infrastructure designed for one purpose: enabling autonomous agents
and the organisations that deploy them to discover legitimate services and
operate productively in the commercial internet. Registration in the APIX
is a declaration that a service or device class is offered in good faith for
legitimate use. The APIX is not a neutral medium indifferent to the purposes
for which it is used. It is infrastructure built for legitimate use, and
it is by design closed to actors who are refused or removed under the
compliance mechanisms defined in this specification — sanctions screening,
KYC verification, and judicial enforcement through the LER process.</t>
        <t>This is not a policy statement. It is the foundational design constraint
from which the cooperation mechanisms in this document and in <xref target="APIX-IOT"/>
derive their legitimacy.</t>
      </section>
      <section anchor="cooperation-duty">
        <name>Cooperation Duty</name>
        <t>Because APIX provides infrastructure for legitimate use, it has a duty to
cooperate with properly authorised law enforcement when that infrastructure
is misused. This duty is not conditional on commercial convenience or
reputational risk. When a registrant or device fleet is confirmed to be
operating criminally, APIX MUST act — through the mechanisms defined in
this document and in <xref target="APIX-IOT"/> — to limit the harm that flows from that
misuse.</t>
        <t>APIX MUST cooperate with authorised law enforcement requests that satisfy
the jurisdictional and judicial requirements defined in <xref target="APIX-IOT"/>
Section 5.8. Refusal to cooperate with a validly authorised request is not
permitted. Delay beyond the processing time commitments defined in that
section requires documented justification and MUST be reported in the
governing body's annual transparency report.</t>
      </section>
      <section anchor="non-surveillance-commitment">
        <name>Non-Surveillance Commitment</name>
        <t>APIX is not a surveillance instrument. The cooperation mechanisms in this
specification are reactive and bounded. The following prohibitions are
normative and apply to all conforming implementations:</t>
        <ul spacing="normal">
          <li>
            <t>APIX MUST NOT proactively monitor, profile, or analyse the behaviour of
registered services, device fleets, or consuming agents beyond what is
technically necessary to deliver liveness verification and abuse detection
as defined in this specification.</t>
          </li>
          <li>
            <t>APIX MUST NOT share index data, presence signal logs, device instance
records, or consuming agent query patterns with any law enforcement or
government authority except through the Law Enforcement Request process
defined in <xref target="APIX-IOT"/> Section 9.8, with its associated judicial
authorisation requirements and jurisdictional constraints.</t>
          </li>
          <li>
            <t>Bulk data requests — requests that are not targeted at identified specific
devices, instances, or registrants but instead seek aggregate ecosystem
intelligence — MUST be refused regardless of the requesting authority's
jurisdiction or claimed legal basis. A valid LER MUST identify specific
device IP addresses or registrant identifiers. A request for "all devices
in region X" or "all services in category Y" is not a valid LER.</t>
          </li>
          <li>
            <t>APIX MUST NOT establish any data-sharing arrangement, standing access
grant, or automated feed to any law enforcement or intelligence agency.
Every cooperation action is event-triggered, scoped to a specific
identified case, and subject to the judicial authorisation requirement.</t>
          </li>
        </ul>
      </section>
      <section anchor="the-trigger-requirement">
        <name>The Trigger Requirement</name>
        <t>Enhanced monitoring, graduated response actions, and LER processing are
ALWAYS triggered by one of two conditions:</t>
        <ol spacing="normal" type="1"><li>
            <t><strong>External identification</strong>: a legitimate authority in an accepted
jurisdiction has submitted an LER with valid judicial authorisation
identifying specific devices or registrants as confirmed participants
in criminal activity. Suspicion alone is not sufficient. The judicial
authorisation requirement is the gatekeeping mechanism.</t>
          </li>
          <li>
            <t><strong>Technical anomaly detection</strong>: APIX's own infrastructure detects
signal patterns technically inconsistent with legitimate device operation
— such as rapid mass re-registration from a single IP address, heartbeat
flooding at rates outside any plausible device density, or token reuse
patterns that cannot arise from legitimate manufacture and provisioning.
Such detections result in classification at the <tt>observe</tt> tier of the
Bad-Bot Graduated Response (<xref target="APIX-IOT"/> Section 9.9), not in immediate
blocking. They are recorded, monitored, and shared with authorised law
enforcement on request through the LER process. They do not trigger
autonomous enforcement action by APIX.</t>
          </li>
        </ol>
        <t>Speculative profiling — building behavioural models of registered services
or device fleets in the absence of a trigger — is prohibited under the
Non-Surveillance Commitment above.</t>
      </section>
      <section anchor="jurisdictional-guardrails">
        <name>Jurisdictional Guardrails</name>
        <t>All cooperation is bounded by the accepted jurisdictions framework defined
in <xref target="APIX-IOT"/> Section 9.8. This boundary is not negotiable on a
case-by-case basis. APIX MUST NOT cooperate with a law enforcement request
from a jurisdiction not on the Accepted Jurisdiction Whitelist, even when:</t>
        <ul spacing="normal">
          <li>
            <t>The requesting authority presents a compelling case.</t>
          </li>
          <li>
            <t>The alleged criminal activity is severe.</t>
          </li>
          <li>
            <t>Political, commercial, or reputational pressure is applied.</t>
          </li>
          <li>
            <t>Another accepted-jurisdiction authority vouches for the request.</t>
          </li>
        </ul>
        <t>The Accepted Jurisdiction Whitelist exists precisely to make this boundary
resist pressure. The governing body MAY add jurisdictions to the whitelist
through its defined board decision process; it MUST NOT bypass the whitelist
for individual cases. Any governing body action that grants cooperation
outside the whitelist is a specification violation and MUST be reported in
the transparency report.</t>
      </section>
      <section anchor="transparency-as-enforcement">
        <name>Transparency as Enforcement</name>
        <t>The annual transparency report required by Section 4.2 is not merely
informational. It is the mechanism by which the non-surveillance commitment
and the jurisdictional guardrails are held accountable. The governing body
MUST disclose in that report:</t>
        <ul spacing="normal">
          <li>
            <t>The number of LER requests received, accepted, and refused, by requesting
jurisdiction tier.</t>
          </li>
          <li>
            <t>The number of bulk data requests received and refused.</t>
          </li>
          <li>
            <t>Any case in which cooperation outside the accepted jurisdictions framework
was requested, with the governing body's response.</t>
          </li>
          <li>
            <t>Any case in which APIX's own technical anomaly detection was used as the
basis for a law enforcement referral.</t>
          </li>
          <li>
            <t>The total number of device instances, services, and organisations subject
to active suppression, suspension, or graduated response measures at the
reporting date.</t>
          </li>
        </ul>
        <t>If a governing body fails to publish this report within 90 days of the
close of a calendar year, any member of the governing body board MUST be
empowered to publish it unilaterally. The right to publish the transparency
report MUST NOT be waivable by board resolution.</t>
      </section>
    </section>
    <section anchor="the-apix-manifest-apm">
      <name>The APIX Manifest (APM)</name>
      <section anchor="purpose">
        <name>Purpose</name>
        <t>The APIX Manifest is the structured document that a Service Owner provides
at registration. It is the index-facing contract for a Service:
format-agnostic, extensible, and designed for machine consumption.</t>
        <t>The APM has two layers:</t>
        <t><strong>Base fields</strong> — defined in this document and required for all service types:
<tt>apm_version</tt>, <tt>service_id</tt>, <tt>name</tt>, <tt>description</tt>, <tt>owner</tt> (with
<tt>organisation_name</tt>, <tt>jurisdiction</tt>, <tt>registration_number</tt>, <tt>contacts</tt>),
<tt>capabilities</tt>, <tt>trust</tt> (organisation and service level assignments), and
<tt>legal</tt>. These fields are common to all profiles.</t>
        <t><tt>lifecycle_stage</tt> is required for all service types but its valid values
and transition rules are profile-defined. Each profile owns its own
lifecycle model; the field is not a shared enum. See <xref target="APIX-SERVICES"/> and
<xref target="APIX-IOT"/> for the lifecycle models applicable to each service type.</t>
        <t><strong>Profile fields</strong> — defined in profile documents and required only for the
applicable service type. <xref target="APIX-SERVICES"/> defines the full APM schema for
web API services. <xref target="APIX-IOT"/> defines the full APM schema for device class
registrations. An APM submission MUST conform to the profile schema
corresponding to its <tt>spec.type</tt> value.</t>
        <t><strong>Extension fields</strong> — the <tt>custom</tt> array is a governed extension mechanism
for declaring properties not yet covered by the base or profile schemas. The
<tt>custom</tt> field is OPTIONAL in all profiles. It is a flat list of reverse-domain
key name strings; no values are stored in the index. The APIX indexes only the
declared key names, enabling discovery via the <tt>custom_key</tt> search parameter.
This design provides a clean promotion path: when a custom key accumulates
sufficient independent adoption across organisations, the governing body
MAY initiate a governance track to promote the pattern to a standard
named field in a future APM version. Full normative rules — including key naming
conventions, list size limits, and Spider behaviour — are defined in the
applicable profile document (<xref target="APIX-SERVICES"/>, <xref target="APIX-IOT"/>).</t>
        <t><strong>Structured extensions</strong> — the <tt>extensions</tt> object is a forward-compatibility
container for structured extension subschemas defined by separate APIX
extension documents. The <tt>extensions</tt> field is OPTIONAL in all profiles.
Each key in <tt>extensions</tt> MUST be an extension identifier registered with the
governing body (see <xref target="iana-considerations"/>); each value is a structured
object whose schema is defined by the corresponding extension document.
The base specification places no semantic interpretation on these values.
Conforming index implementations MUST preserve <tt>extensions</tt> contents verbatim
and MUST NOT reject an APM solely because an extension key is unknown to the
index, provided the key matches the registration format.</t>
        <t>The <tt>extensions</tt> mechanism differs from <tt>custom</tt> in three respects.
<tt>custom</tt> is a flat list of key names without values, intended for discovery
filtering of yet-to-be-standardised properties. <tt>extensions</tt> is a structured
object carrying schema-defined data, intended for the deployment of mature
extension drafts that require non-trivial state. Promotion from <tt>custom</tt> to
a named <tt>extensions</tt> key follows the governance process for extension drafts;
promotion from <tt>extensions</tt> to a base or profile field follows the standard
taxonomy promotion process.</t>
        <t>The <tt>trust</tt> fields in an APM submission MUST be set exclusively by the index
operator based on verification outcomes. APM submissions that include <tt>trust</tt>
field values MUST have those values overwritten by the index upon processing.
A Service Owner MUST NOT assert their own trust level.</t>
      </section>
    </section>
    <section anchor="trust-model">
      <name>Trust Model</name>
      <t>The APIX Trust Model has three independent dimensions. Each dimension produces
a machine-readable value in the Service Record. Consuming agents combine
these values according to their own Trust Policy.</t>
      <t>The APIX provides trust metadata. It does not make trust decisions.</t>
      <section anchor="dimension-1-organisation-trust-level">
        <name>Dimension 1 — Organisation Trust Level</name>
        <t>Describes the verified identity and compliance posture of the organisation
that owns the service.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Level</th>
              <th align="left">Label</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">O-0</td>
              <td align="left">Unverified</td>
            </tr>
            <tr>
              <td align="left">O-1</td>
              <td align="left">Identity Verified</td>
            </tr>
            <tr>
              <td align="left">O-2</td>
              <td align="left">Legal Entity Verified</td>
            </tr>
            <tr>
              <td align="left">O-3</td>
              <td align="left">Hygiene Verified</td>
            </tr>
            <tr>
              <td align="left">O-4</td>
              <td align="left">Operationally Verified</td>
            </tr>
            <tr>
              <td align="left">O-5</td>
              <td align="left">Audited</td>
            </tr>
          </tbody>
        </table>
        <dl>
          <dt>O-0 (Unverified):</dt>
          <dd>
            <t>Self-registered. No checks performed.</t>
          </dd>
          <dt>O-1 (Identity Verified):</dt>
          <dd>
            <t>Valid business email confirmed. Domain ownership verified via DNS
TXT record.</t>
          </dd>
          <dt>O-2 (Legal Entity Verified):</dt>
          <dd>
            <t>Company registration number confirmed against official registry of
the declared jurisdiction. The legal entity MAY alternatively or
additionally be substantiated by a Qualified Electronic Attestation of
Attributes (QEAA) from a Qualified Trust Service Provider under
Regulation (EU) 2024/1183 (eIDAS 2), or by a GLEIF Legal Entity
Identifier. Where a profile records the evidence channel used, it is
exposed so that agents operating under a specific regulatory regime can
filter by provenance.</t>
          </dd>
          <dt>O-3 (Hygiene Verified):</dt>
          <dd>
            <t><tt>security.txt</tt> (RFC 9116) present and valid at
<tt>/.well-known/security.txt</tt>; DMARC and SPF DNS records configured
for the registered domain; Privacy Policy, Terms of Service, and
Data Processing Agreement accessible at declared URLs. All checks
performed automatically by APIX. No human reviewer required.</t>
          </dd>
          <dt>O-4 (Operationally Verified):</dt>
          <dd>
            <t>Organisation governance structure, operational security practices,
incident response capability, and personnel vetting reviewed by an
Accredited Verifier against the Verifier Standard.</t>
          </dd>
          <dt>O-5 (Audited):</dt>
          <dd>
            <t>Third-party compliance audit completed (SOC 2 Type II, ISO 27001,
or equivalent). A conformity assessment under Regulation (EU) 2024/2847
(Cyber Resilience Act) by an accredited body also qualifies for products
with digital elements; because it attests product cybersecurity rather
than organisational process security, it is recorded as a distinct
evidence channel (<tt>cra_conformity</tt> in the Verification Basis Registry)
rather than as a substitute for an ISMS audit, so that agents can
distinguish the two. Audit certificate on file with the governing body.
O-5 may be achieved directly without O-4 as a prerequisite via direct
certificate submission to the governing body.</t>
          </dd>
        </dl>
        <t>Organisation levels are assessed against the organisation as a whole, not
per service. An organisation that achieves any O-level applies that level
to all its registered services.</t>
      </section>
      <section anchor="dimension-2-service-verification-level">
        <name>Dimension 2 — Service Verification Level</name>
        <t>Describes what has been automatically verified about the service itself.
The specific verification mechanism differs by service type (Spider for
web API services; manufacturer registration process for device classes).</t>
        <table>
          <thead>
            <tr>
              <th align="left">Level</th>
              <th align="left">Label</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">S-0</td>
              <td align="left">Unchecked</td>
            </tr>
            <tr>
              <td align="left">S-1</td>
              <td align="left">Reachable</td>
            </tr>
            <tr>
              <td align="left">S-2</td>
              <td align="left">Spec Verified</td>
            </tr>
            <tr>
              <td align="left">S-3</td>
              <td align="left">Schema Stable</td>
            </tr>
            <tr>
              <td align="left">S-4</td>
              <td align="left">Security Reviewed</td>
            </tr>
          </tbody>
        </table>
        <dl>
          <dt>S-0 (Unchecked):</dt>
          <dd>
            <t>Registered. Verification has not yet run.</t>
          </dd>
          <dt>S-1 (Reachable):</dt>
          <dd>
            <t>Service confirmed reachable by automated check.</t>
          </dd>
          <dt>S-2 (Spec Verified):</dt>
          <dd>
            <t>Specification or capability declaration confirmed and consistent
with registration.</t>
          </dd>
          <dt>S-3 (Schema Stable):</dt>
          <dd>
            <t>No breaking changes detected across at least three consecutive
verification runs.</t>
          </dd>
          <dt>S-4 (Security Reviewed):</dt>
          <dd>
            <t>Automated vulnerability scan completed with no critical findings,
OR third-party penetration test certificate provided and validated
by an Accredited Verifier.</t>
          </dd>
        </dl>
        <t>Profile documents define the exact criteria by which each level is achieved
for each service type.</t>
      </section>
      <section anchor="dimension-3-liveness">
        <name>Dimension 3 — Liveness</name>
        <t>Describes the confirmed operational availability of the service, including
how recent and how frequent the availability data is. Liveness data is
expressed as a set of metrics, not a single level.</t>
        <dl>
          <dt><tt>last_ping_at</tt> (ISO 8601 timestamp)</dt>
          <dd>
            <t>Time of the most recent successful liveness check.</t>
          </dd>
          <dt><tt>ping_interval_seconds</tt> (integer)</dt>
          <dd>
            <t>Configured interval between liveness checks.</t>
          </dd>
          <dt><tt>uptime_30d_percent</tt> (float)</dt>
          <dd>
            <t>Percentage of checks successful over the last 30 days.</t>
          </dd>
          <dt><tt>avg_response_ms</tt> (float)</dt>
          <dd>
            <t>Mean response time in milliseconds over the last 30 days.</t>
          </dd>
          <dt><tt>consecutive_failures</tt> (integer)</dt>
          <dd>
            <t>Number of consecutive failed checks at last run.</t>
          </dd>
        </dl>
        <t>The check interval is determined by the service's liveness monitoring
configuration. A service configured at initial-only frequency receives no
recurring checks; its <tt>last_ping_at</tt> reflects only the initial verification
run.</t>
        <t>The concrete fields and measurement model for Liveness differ by service
type and are defined in each profile document.</t>
      </section>
      <section anchor="trust-model-implementations-by-service-type">
        <name>Trust Model Implementations by Service Type</name>
        <t>The three trust dimensions (Organisation, Service Verification, Liveness)
are universal across all APIX service types. However, their concrete
implementation — the verification mechanisms, the APM fields that carry
trust state, and the achievable levels — differs by service type. Three
distinct trust implementations are defined across the APIX profile suite.</t>
        <t><strong>API Service Trust</strong> (defined in <xref target="APIX-SERVICES"/>)</t>
        <t>Verification is pull-based: the APIX Spider visits the service on a
scheduled basis, checks reachability, fetches and parses the specification,
and runs schema comparison across consecutive runs. Liveness is measured
by the index — the Spider pings the service endpoint and records response
time and availability metrics. The trust object in an API service APM
carries observed metrics (<tt>last_ping_at</tt>, <tt>uptime_30d_percent</tt>,
<tt>avg_response_ms</tt>, <tt>consecutive_failures</tt>).</t>
        <t><strong>Device Class Trust</strong> (defined in <xref target="APIX-IOT"/>)</t>
        <t>Verification is registration-based: a device manufacturer registers the
device class, providing a capability declaration and firmware version
contract. The APIX Spider does not visit device hardware. Liveness
configuration is declared by the manufacturer at registration time
(<tt>presence_mode</tt>, <tt>heartbeat_interval_seconds</tt>) — not observed by the
index. The trust object in a device class APM carries manufacturer-declared
configuration, not measured metrics. <tt>spec_consistency</tt> is always <tt>null</tt>
for device classes: there is no specification document for the Spider to
fetch.</t>
        <t><strong>Device Instance Trust</strong> (defined in <xref target="APIX-IOT"/>)</t>
        <t>Liveness is push-based: individual device instances signal their presence
to the index at regular intervals. The index does not probe devices.
Instance trust state (<tt>online</tt>, <tt>reachable</tt>, <tt>last_seen_at</tt>) reflects
the most recent presence signal received, not a Spider measurement.
Device instance trust state is private — it is never returned to
unauthenticated queries regardless of trust levels.</t>
        <t>These are three architecturally distinct trust models that share only
the O-level and S-level abstractions. Implementers MUST NOT assume that
trust object fields in a device class or device instance APM follow the
structure of an API service APM.</t>
      </section>
      <section anchor="bot-side-trust-policy-expression">
        <name>Bot-Side Trust Policy Expression</name>
        <t>A consuming agent expresses its Trust Policy as a set of minimum thresholds
across all three dimensions. Example policy expressed in pseudo-notation:</t>
        <artwork><![CDATA[
require:
  organisation_level >= O-2
  service_level >= S-2
  last_ping_age < 3600         # seconds since last_ping_at
  uptime_30d_percent >= 99.0
  consecutive_failures == 0
]]></artwork>
        <t>The Index API SHOULD support filtering by trust dimension thresholds so that
agents can retrieve only records that satisfy their policy without downloading
the full index.</t>
        <t>Trust Policies are defined and enforced by consuming agents. The APIX does
not validate or enforce Trust Policies.</t>
      </section>
      <section anchor="accredited-verifier-model">
        <name>Accredited Verifier Model</name>
        <t>Organisation level O-3 (Hygiene Verified) is achieved by automatic APIX
checks and requires no human reviewer. Organisation level O-4 requires an
Accredited Verifier assessment. Organisation level O-5 may be achieved
directly without O-4 as a prerequisite via direct certificate submission
to the governing body (SOC 2 Type II or ISO 27001). The APIX uses a federated Accredited
Verifier model, analogous to the Certificate Authority model in TLS:</t>
        <ul spacing="normal">
          <li>
            <t>the governing body defines the verification criteria for each
level and publishes the Verifier Standard.</t>
          </li>
          <li>
            <t>Organisations apply to the governing body for Verifier
accreditation.</t>
          </li>
          <li>
            <t>Accredited Verifiers perform O-4 assessments and, where applicable, O-5
attestations, signing verification reports in each case.</t>
          </li>
          <li>
            <t>the governing body maintains a public registry of Accredited
Verifiers and their accreditation status.</t>
          </li>
          <li>
            <t>A Service Record at O-4 MUST include the identifier of the Accredited
Verifier that performed the assessment and the date of assessment.</t>
          </li>
          <li>
            <t>A Service Record at O-5 via direct certificate submission MUST include
the certificate reference, issuing auditor, scope, and expiry date.</t>
          </li>
          <li>
            <t>Accreditation of Verifiers is reviewed annually by the governing body.</t>
          </li>
          <li>
            <t>A Verifier placed in suspended status following a failed annual review
MUST be given a minimum 90-day remediation window before final
revocation. The 90-day window applies to performance failures: lapsed
certifications, reduced capacity, or failure to meet audit quality
standards. It does not apply to fundamental violations, for which the
governing body MUST revoke accreditation immediately. Fundamental
violations include: issuing a false or unsupported O-4 or O-5
assessment, certifying a related entity in breach of the independence
requirement, leaking confidential assessment data, or colluding with
an organisation to obtain a trust level fraudulently.</t>
          </li>
        </ul>
        <t><strong>Elevation verification requirements:</strong></t>
        <t>Elevation to O-4 or O-5 MUST be verified through an out-of-band channel
that is independent of the digital submission path used to submit the
elevation request. The governing body MUST NOT record an O-4 or O-5
elevation solely on the basis of a digitally submitted application,
regardless of the authentication mechanism used for that submission.
The out-of-band verification MUST confirm that the elevation was
intentionally authorised by a responsible representative of the applicant
organisation, and that the submitted evidence (Accredited Verifier report
or audit certificate) is genuine.</t>
        <t>Elevation to O-5 MUST additionally be confirmed by two independently
authorised representatives of the applicant organisation. The two
confirming individuals MUST hold separate credentials and MUST act
independently; a single individual confirming twice does not satisfy this
requirement. The governing body MUST enforce this programmatically for
O-5 elevations processed through its operational interface.</t>
        <t>The specific out-of-band verification mechanism and the implementation
of the two-representative confirmation are operational responsibilities
of the governing body and are documented in the APIX implementation
guide. Conforming implementations of the APIX governing body role MUST
implement mechanisms that satisfy these requirements; the specific
mechanisms are not prescribed by this specification.</t>
        <t><strong>Design Note — Future Trust Level Evolution (non-normative):</strong>
The O-0 through O-5 architecture defined here is the Version 1 model.
O-3 was introduced to provide an automatable, zero-cost on-ramp for
early-stage organisations, bridging the gap between legal entity
verification (O-2) and the first human-reviewed tier (O-4). As the governing body
Accredited Verifier market matures and a meaningful population of O-5
organisations is established, a Version 2 evolution is anticipated in
which O-5 is joined by a premium O-6 designation with APIX-specific
assessment criteria beyond the industry baseline — dedicated incident
response covering governing body cooperation obligations, agreed governing body audit access,
and APIX-specific operational commitments. This evolution requires the
governing body to develop and publish an O-6 assessment standard, which
is not feasible at initial launch. The trust level record structure (see implementation
guide Part I §1.4) is designed to accommodate additional components
without breaking existing consumers.</t>
      </section>
    </section>
    <section anchor="commercial-contract-and-sanctions-compliance">
      <name>Commercial Contract and Sanctions Compliance</name>
      <t>Every registered service MUST be covered by a commercial agreement between
the Service Owner and the index operator (or its Accredited Regional
Representative). The agreement MUST define:</t>
      <ul spacing="normal">
        <li>
          <t>The liveness monitoring configuration and its obligations.</t>
        </li>
        <li>
          <t>The index operator's obligations regarding verification frequency and
Index API availability.</t>
        </li>
        <li>
          <t>Acceptable use terms.</t>
        </li>
        <li>
          <t>Data processing terms in accordance with applicable law.</t>
        </li>
      </ul>
      <t><strong>Sanctions compliance:</strong> the index operator MUST screen all service
registrants against applicable sanctions lists prior to account activation.
At minimum, screening MUST cover the UN Security Council consolidated
sanctions list. Operators subject to additional jurisdictional sanctions
regimes (e.g., EU, US OFAC, Swiss SECO) MUST additionally screen against
those lists as applicable to their jurisdiction of incorporation. Entities
subject to applicable sanctions MUST be refused registration regardless of
commercial tier.</t>
      <t>Registrants MUST represent and warrant in the commercial agreement that they
are not subject to applicable sanctions, and MUST notify the index operator
immediately of any change in that status.</t>
      <t><strong>Ongoing sanctions monitoring:</strong> The index operator MUST perform periodic
re-screening of all registered organisations against the same sanctions lists
checked at initial registration. Re-screening MUST occur at least quarterly.
Upon detection of a new match for a previously-cleared organisation — whether
by periodic re-screening, third-party notification, or registrant self-report
— the index operator MUST immediately:</t>
      <ol spacing="normal" type="1"><li>
          <t>Suspend the organisation's account. All API credentials are revoked; no
further registration or update operations are accepted from the
organisation.</t>
        </li>
        <li>
          <t>Suspend all services registered by the organisation. Suspended services
are removed from all discovery results.</t>
        </li>
        <li>
          <t>Revoke all active credentials issued to the organisation (API keys,
instance tokens where applicable). All associated service instances are
marked offline or unreachable.</t>
        </li>
        <li>
          <t>Open a legal review case. The specific sanctions list and matched entry
MUST NOT be disclosed externally; the organisation receives only a
generic account suspension notice.</t>
        </li>
      </ol>
      <t>If the sanctions match is subsequently determined to be a false positive or
the registrant is removed from the relevant list, the index operator MAY
reinstate the account following legal review. Reinstatement requires a fresh
KYC and sanctions check.</t>
      <t>Unauthenticated discovery queries to the Index API are not subject to
registration screening and MUST remain available without restriction,
consistent with the APIX's mission as open global infrastructure.</t>
    </section>
    <section anchor="operational-model">
      <name>Operational Model</name>
      <section anchor="supply-side-funding-principle">
        <name>Supply-Side Funding Principle</name>
        <t>A conforming APIX implementation MUST be funded primarily by service
registration fees paid by Service Owners (supply side). Discovery queries
by consuming agents MUST NOT be the primary revenue mechanism. This
principle is normative: an implementation that charges consuming agents for
standard discovery queries is not conformant with the APIX model, as doing
so contradicts the open infrastructure mission and undermines the network
effect that makes the supply side valuable.</t>
        <t>The APIX model is structurally analogous to the DNS model: registrants pay
to be listed; queries are free.</t>
        <t>Fee structures applicable to each service type are defined in the relevant
profile document. All implementations MUST apply fees consistently to all
registrants of a given service type at the same commercial tier, with no
preferential treatment. The governing body publishes the normative fee
schedule as a separate registry document, updated independently of this RFC.</t>
      </section>
      <section anchor="consumer-access-model">
        <name>Consumer Access Model</name>
        <t>Discovery queries to the Index API MUST be available without authentication
or payment. Rate limits MAY be applied to protect infrastructure integrity
but MUST NOT be set at levels that prevent reasonable agent operation.
Implementations MUST support at minimum three consumer access layers:</t>
        <t><strong>Layer 1 — Unauthenticated access</strong></t>
        <t>Any agent MUST be able to query the Index API without authentication or
registration, subject to a per-IP rate limit. This layer is sufficient for
individual agents and proof-of-concept deployments.</t>
        <t><strong>Layer 2 — Authenticated access (free)</strong></t>
        <t>Any agent MAY register a consumer identity token at no cost. Token
registration requires a valid email address. Authenticated access MUST
provide a higher rate limit than unauthenticated access and MAY additionally
provide result caching hints and webhook subscriptions for service record
changes.</t>
        <t>Consumer tokens SHOULD be compatible with the webbotauth identity model
(<xref target="I-D.meunier-webbotauth-registry"/>) to enable interoperability with bot
authentication infrastructure.</t>
        <t><strong>Layer 3 — High-volume access (paid, optional)</strong></t>
        <t>Implementations MAY offer a paid high-volume access tier for platforms
operating agents at scale that require guaranteed query capacity and
operational SLAs. This tier is supplementary; the index's operational
sustainability MUST NOT depend on it.</t>
        <t><strong>Public bulk download (REQUIRED)</strong></t>
        <t>Implementations MUST provide the full index as a freely downloadable bulk
dataset on the first day of each calendar month, without authentication, under
the Open Database Licence (ODbL) 1.0. This requirement implements the
openness requirement of Section 4.2: no entity, including the index operator,
may hold an exclusive lock on the index data.</t>
        <t>Implementations MUST additionally publish a daily diff file covering all
record additions, updates, and deletions since the previous day. Daily diffs
MUST be serialised in the same format as the full snapshot and MUST be
available at the same endpoint, identified by an ISO 8601 date in their
filename or URL path (e.g. <tt>diff-2026-04-28.json</tt>). A new mirror MUST be
able to reach current index state by downloading the latest monthly full
snapshot and applying the sequence of daily diffs since that snapshot date,
without downloading any additional full snapshots.</t>
      </section>
      <section anchor="ecological-impact-transparency">
        <name>Ecological Impact Transparency</name>
        <t>A conforming APIX implementation SHOULD publish aggregate ecological impact
statistics derived from observed index usage. These statistics quantify the
efficiency gain attributable to machine-native API consumption compared to
equivalent traditional web request technology consumption, and SHOULD be
updated in real time and included in the annual transparency report.</t>
        <t>The comparison baseline is the full traditional web request stack — not
payload size alone — including the request waterfall (HTML page with
dependent CSS, JavaScript, image, and font resources), JavaScript
execution overhead for dynamically rendered pages, polling requests that
occur in the absence of a notification mechanism, retry waste from
access-control measures, and proxy infrastructure maintained solely to
circumvent those measures.</t>
        <t>The following metrics SHOULD be derived from directly observable index
events and published at a stable public endpoint:</t>
        <ul spacing="normal">
          <li>
            <t><strong>Discovery requests served</strong> — each request represents one agent
retrieval that did not require scraping or probing a service endpoint
directly.</t>
          </li>
          <li>
            <t><strong>Notification events fired</strong> — each event represents one or more
polling requests eliminated across all subscribed consuming agents.</t>
          </li>
          <li>
            <t><strong>Estimated data transfer saved (GB)</strong> — computed from discovery request
count, service profile type, and the differential between average
traditional web page size and average machine-native API response size
for that profile type.</t>
          </li>
          <li>
            <t><strong>Estimated CO2 equivalent avoided</strong> — computed from total estimated
data transfer saved using a published CO2-per-GB methodology. The
methodology document, including its source data and version, MUST be
publicly accessible at a stable URL.</t>
          </li>
        </ul>
        <t>All published figures MUST be accompanied by the computation methodology,
confidence bounds, and source data references. Conservative estimates MUST
be used where data is incomplete; figures MUST NOT be extrapolated beyond
what the directly observed data supports.</t>
        <t>The governing body SHOULD seek independent validation of the methodology
from an established environmental computing research organisation.</t>
      </section>
    </section>
    <section anchor="index-api-core">
      <name>Index API — Core</name>
      <section anchor="hateoas-navigation-model">
        <name>HATEOAS Navigation Model</name>
        <t>The Index API MUST follow Hypermedia as the Engine of Application State
(HATEOAS) principles. A consuming agent MUST be able to discover and navigate
the entire index starting from a single, stable entry-point URL, without
out-of-band knowledge of endpoint paths.</t>
        <t>Every response MUST include a <tt>_links</tt> object containing hypermedia controls
for navigation. Link relations MUST use IANA-registered relation types where
applicable, and APIX-specific relations where not.</t>
      </section>
      <section anchor="discovery-endpoint">
        <name>Discovery Endpoint</name>
        <t>The APIX exposes a single globally stable entry-point URL:</t>
        <artwork><![CDATA[
https://apix.example.org/
]]></artwork>
        <t>A GET request to this URL returns the Index root resource. The root resource
includes base navigation links common to all implementations, plus
profile-specific links defined in applicable profile documents.</t>
        <sourcecode type="json"><![CDATA[
{
  "apix_version": "1.0",
  "total_services": 12483,
  "last_updated": "2026-04-25T00:00:00Z",
  "registry_versions": {
    "protocols": "1.0",
    "capabilities": "1.0",
    "presence_modes": "1.0"
  },
  "_links": {
    "self": {
      "href": "https://apix.example.org/"
    },
    "search": {
      "href": "https://apix.example.org/search{/api_version}{?...}",
      "templated": true
    },
    "browse": {
      "href": "https://apix.example.org/browse"
    },
    "capabilities": {
      "href": "https://apix.example.org/capabilities"
    },
    "devices": {
      "href": "https://apix.example.org/devices{?capability,...}",
      "templated": true
    },
    "docs": {
      "href": "https://apix.example.org/docs"
    },
    "apix:ecological-impact-stats": {
      "href": "https://apix.example.org/stats/ecological-impact"
    }
  }
}
]]></sourcecode>
        <t>The <tt>{?q,...}</tt> placeholder above is abbreviated. The complete search URI
template (parameters grouped for readability; the value is a single
uninterrupted string at runtime):</t>
        <artwork><![CDATA[
https://apix.example.org/search{/api_version}
  {?q,capability,protocol,language,pricing_model,
   auth_method,deployment_region,near,coverage_radius_km,
   custom_key,org_level_min,service_level_min,spec_consistency,
   max_ping_age,uptime_30d_min,lifecycle_stage,
   include_superseded,page,page_size}
]]></artwork>
        <t>The <tt>lifecycle_stage</tt> parameter accepts values defined by each profile
document. Valid values differ by service type and are not a shared enum.
See <xref target="APIX-SERVICES"/> and <xref target="APIX-IOT"/> for the valid values applicable
to each service type.</t>
        <t>The <tt>devices</tt> link template (defined in <xref target="APIX-IOT"/>):</t>
        <artwork><![CDATA[
https://apix.example.org/devices
  {?capability,protocol,online,api_version,
   endpoint_confidence,page,page_size}
]]></artwork>
        <t>Profile-specific links (e.g., the <tt>devices</tt> link defined in <xref target="APIX-IOT"/>) are
present in the root resource when the implementation includes support for that
profile. Consuming agents MUST follow links rather than constructing URLs
independently; the presence or absence of a link in the root resource is the
authoritative signal of whether a capability is supported.</t>
      </section>
      <section anchor="transport-encoding">
        <name>Transport Encoding</name>
        <t>The Index API is consumed by autonomous agents at machine speed. Response
payloads are structured JSON with highly repetitive field names across result
arrays. Transport-layer compression achieves 70–85% size reduction on typical
search result payloads with no information loss and no application-layer
schema changes.</t>
        <t><strong>Compression support requirements:</strong></t>
        <t>The Index API MUST support the following <tt>Accept-Encoding</tt> values:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Encoding</th>
              <th align="left">Requirement</th>
              <th align="left">Notes</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">
                <tt>gzip</tt></td>
              <td align="left">MUST</td>
              <td align="left">Universally supported baseline</td>
            </tr>
            <tr>
              <td align="left">
                <tt>br</tt> (Brotli)</td>
              <td align="left">SHOULD</td>
              <td align="left">Higher compression ratio than gzip</td>
            </tr>
            <tr>
              <td align="left">
                <tt>zstd</tt></td>
              <td align="left">SHOULD</td>
              <td align="left">Similar ratio to Brotli; faster decompression</td>
            </tr>
          </tbody>
        </table>
        <t>The Index API MUST perform content negotiation via the <tt>Accept-Encoding</tt>
request header. Responses MUST include a <tt>Content-Encoding</tt> header
identifying the applied encoding. If a client sends no <tt>Accept-Encoding</tt>
header, the server MAY respond uncompressed.</t>
        <t>Consuming agents SHOULD include <tt>Accept-Encoding: zstd, br, gzip</tt> in all
Index API requests.</t>
        <t>The Index API MAY additionally support CBOR (RFC 8949) as a binary
alternative to JSON. A client that prefers CBOR MUST signal this via
<tt>Accept: application/cbor</tt>. CBOR responses carry identical information to
JSON responses. Clients MUST NOT assume CBOR support. JSON over compressed
transport is the normative interchange format.</t>
      </section>
    </section>
    <section anchor="index-api-versioning">
      <name>Index API Versioning</name>
      <section anchor="version-identification">
        <name>Version Identification</name>
        <t>The root resource returned at <tt>https://apix.example.org/</tt> MUST include an
<tt>apix_version</tt> field identifying the version of the Index API schema in use.
Version values are of the form <tt>MAJOR.MINOR</tt> (e.g., <tt>"1.0"</tt>, <tt>"1.2"</tt>, <tt>"2.0"</tt>).</t>
        <t>Consuming agents MUST read <tt>apix_version</tt> at the start of each session.
Agents MUST NOT cache <tt>apix_version</tt> across sessions: the version field is
the authoritative signal that the schema has changed.</t>
      </section>
      <section anchor="compatibility-rules">
        <name>Compatibility Rules</name>
        <t>The APIX follows a semantic versioning policy for the Index API:</t>
        <t><strong>Non-breaking changes (MINOR increment):</strong></t>
        <ul spacing="normal">
          <li>
            <t>Adding new fields to Service Records or the root resource</t>
          </li>
          <li>
            <t>Adding new optional query parameters to the search endpoint</t>
          </li>
          <li>
            <t>Adding new <tt>_links</tt> relations to any response</t>
          </li>
          <li>
            <t>Expanding an enumerated value registry (new capability terms, new
protocol types)</t>
          </li>
          <li>
            <t>Increasing rate limits</t>
          </li>
        </ul>
        <t>Minor version increments are backward compatible. A consuming agent written
for <tt>1.0</tt> MUST be able to operate correctly against a <tt>1.x</tt> endpoint,
provided it ignores unknown fields.</t>
        <t>Consuming agents MUST follow the robustness principle: ignore unknown fields
and unknown link relations rather than failing. This requirement is normative.</t>
        <t><strong>Breaking changes (MAJOR increment):</strong></t>
        <ul spacing="normal">
          <li>
            <t>Removing or renaming fields in Service Records</t>
          </li>
          <li>
            <t>Changing the type or semantics of an existing field</t>
          </li>
          <li>
            <t>Removing or renaming existing query parameters</t>
          </li>
          <li>
            <t>Changing the structure of the HATEOAS <tt>_links</tt> object</t>
          </li>
          <li>
            <t>Changing the URL of the single entry-point</t>
          </li>
        </ul>
        <t>A MAJOR version increment MUST NOT occur without a concurrent deprecation
notice for the prior version (see below).</t>
      </section>
      <section anchor="api-deprecation-and-migration">
        <name>API Deprecation and Migration</name>
        <t>When a new MAJOR version is released, the prior MAJOR version MUST remain
supported for a minimum of <strong>24 months</strong> from the date the new version
becomes available. During this period:</t>
        <ul spacing="normal">
          <li>
            <t>Both versions MUST be simultaneously queryable</t>
          </li>
          <li>
            <t>The root resource of the prior version MUST include a <tt>deprecated</tt> flag
with the <tt>sunset_date</tt> of the old version</t>
          </li>
          <li>
            <t>Consuming agents that include the IETF <tt>Sunset</tt> header
(<xref target="RFC8594"/>) in their responses MUST use it to signal the old version's
sunset date</t>
          </li>
        </ul>
        <t>The governing body MUST NOT sunset a MAJOR version without giving
consuming agents at least 24 months to migrate.</t>
      </section>
      <section anchor="service-apiversion-immutability-invariant">
        <name>Service api_version Immutability Invariant</name>
        <t>The <tt>api_version</tt> field in an APM and the version path segment in the
search endpoint (<tt>/search/v{major}.{minor}/</tt>) rest on a single foundational
guarantee: a published <tt>api_version</tt> value has an immutable field structure
definition.</t>
        <t>This invariant MUST be stated unambiguously to consuming agents and service
operators:</t>
        <ul spacing="normal">
          <li>
            <t>A field present in version <tt>v2.4</tt> will be present in every service that
declares <tt>api_version: "2.4.x"</tt> for the lifetime of that registration.</t>
          </li>
          <li>
            <t>A field absent from version <tt>v2.4</tt> will never appear in a <tt>v2.4.x</tt>
service record without a version increment.</t>
          </li>
          <li>
            <t>Removing a field, changing a field's type, or making any other breaking
change REQUIRES a new major version. The major bump is the explicit,
sufficient notice to consumers. No deprecation period within a major
version is required or expected.</t>
          </li>
          <li>
            <t>Adding a field requires a new minor version. Even additive changes are
not permitted within a published version — a service that adds a field
mid-life has implicitly created a new contract and MUST increment
<tt>api_version</tt> accordingly.</t>
          </li>
        </ul>
        <t>This invariant enables the version path filter to be an unconditional
schema contract: an agent that pins to <tt>/search/v2.4/</tt> receives results
with a fixed, permanent field set. Service owners are freed from the
pressure to retain unwanted fields for backwards compatibility — the
correct action is always to increment the version and move forward cleanly.</t>
      </section>
      <section anchor="no-cross-version-response-mapping">
        <name>No Cross-Version Response Mapping</name>
        <t>The APIX does NOT perform cross-version response mapping. The
<tt>api_version</tt> path segment is a strict storage filter: only service
registrations whose <tt>api_version</tt> field matches the specified prefix
are returned. The index never synthesises a response of one version
from a record stored at a different version.</t>
        <t>The consequence is deliberate and unambiguous:</t>
        <ul spacing="normal">
          <li>
            <t>A service that has upgraded from v2.4 to v3.0 is stored as a separate
record. The v3.0 record does not appear in <tt>/search/v2/</tt> results.
There are no null substitutions for dropped fields, no type coercions
for changed fields, and no partial responses. A v3 record is a
different resource; it is not a transformed view of a v2 record.</t>
          </li>
          <li>
            <t>The v2.4 record remains in the index — immutably — until the service
owner advances it through the lifecycle (<tt>deprecated</tt> → <tt>sunset</tt>) or
the record is superseded and eventually removed. An agent pinned to
<tt>/search/v2/</tt> continues to see v2.4 registrations for as long as
they exist in the index at that lifecycle stage.</t>
          </li>
          <li>
            <t>As services migrate to newer major versions, the v2 result set shrinks.
Diminishing or empty results at a pinned version are not a failure
condition — they are the designed signal that the consuming agent's
version pin no longer covers the current service landscape and an
upgrade of consumer code is warranted.</t>
          </li>
        </ul>
        <t><strong>Upgrade path discovery:</strong> The Level 2 Service Record for a superseded
version MUST include a populated <tt>superseded_by</tt> field pointing to the
current version's record. A consuming agent that finds a v2.4 result with
<tt>superseded_by</tt> set SHOULD follow the link to inspect the v3.0 record and
determine whether upgrading its version pin is feasible. This is the
mechanism by which agents discover that a newer contract is available
without being forced off the old one before they are ready.</t>
        <t>A consuming agent that receives only empty results for its pinned version
SHOULD query <tt>GET /search/</tt> with no path segment and no query parameters.
This returns the version landscape only — a summary of available
<tt>api_version</tt> prefixes, service counts, and lifecycle status — and executes
no content query. The agent uses this response to identify which version
prefix covers the current service population and then issues a new scoped
query (e.g., <tt>/search/v3/?...</tt>) with explicit filters. A parameter-less
<tt>/search/</tt> MUST NOT return service records; it exists solely as a version
discovery resource.</t>
      </section>
      <section anchor="registry-version-tracking">
        <name>Registry Version Tracking</name>
        <t>The root resource exposes a <tt>registry_versions</tt> object (Section 10.2).
Consuming agents that cache capability taxonomy or protocol type data MUST
compare the current <tt>registry_versions</tt> values against their cached version
on each session. A change in any registry version MUST trigger a cache
refresh before the agent applies trust filtering or capability matching.</t>
      </section>
    </section>
    <section anchor="operator-security-and-self-governance">
      <name>Operator Security and Self-Governance</name>
      <section anchor="purpose-and-scope">
        <name>Purpose and Scope</name>
        <t>APIX centralises knowledge that has intrinsic intelligence value: the
identity and capability of every registered service, the network location
of every online IoT device instance, the query patterns of every consuming
agent, and the contact details of law enforcement authorities across
accepted jurisdictions. This concentration makes the governing body
an ultra-high-value target for state-sponsored actors, criminal
organisations, and corporate adversaries.</t>
        <t>The Non-Surveillance Commitment (Section 5) defines what APIX will not do
to the ecosystem it serves. This section defines what the governing
body MUST do to protect itself and the ecosystem from being exploited
involuntarily — through compromise, coercion, insider threat, or
organisational capture.</t>
        <t>The requirements in this section are normative obligations on the governing
body as operator of the index. They are not addressed to Service Owners
or consuming agents.</t>
      </section>
      <section anchor="technical-security-requirements">
        <name>Technical Security Requirements</name>
        <t>The governing body MUST operate APIX infrastructure under the
following technical constraints:</t>
        <t><strong>Infrastructure separation:</strong> The token store, tamper-evident audit log,
and LER processing queue MUST be hosted on systems with no shared network
path to the public-facing Index API query infrastructure. Compromise of
the query layer MUST NOT provide lateral access to the token store or
audit log.</t>
        <t><strong>Air-gapped token issuance:</strong> Instance token batches for IoT device
classes MUST be generated on infrastructure with no persistent internet
connection. Issuance systems MUST use hardware security modules (HSMs)
for all cryptographic operations. The issuance network MUST be physically
separated from the token delivery network.</t>
        <t><strong>Geographic distribution:</strong> Core APIX systems MUST be distributed across
at least two independent physical jurisdictions. No single legal order
from any one jurisdiction MUST be sufficient to take the full system
offline or compel full data access.</t>
        <t><strong>Zero-trust internal architecture:</strong> No governing body system MUST grant implicit
trust to requests from other governing body systems. All inter-system communication
MUST be authenticated and authorised independently of network location.
Lateral movement within governing body infrastructure MUST require separate
credentials at each boundary.</t>
        <t><strong>Cryptographic floor:</strong> All external-facing endpoints MUST use TLS 1.3
or higher (<xref target="RFC8446"/>). All signing operations MUST use asymmetric keys
stored in hardware-backed key storage. Key material MUST NOT be exportable
from the HSM in plaintext under any operational procedure.</t>
        <t><strong>Mandatory penetration testing:</strong> The governing body MUST commission an independent
penetration test of its production infrastructure at least annually. A
summary of findings (severity distribution, remediation status) MUST be
published in the governing body's annual security report within 90 days of the test. The
identity of the testing firm MUST be disclosed.</t>
        <t><strong>Responsible disclosure programme:</strong> The governing body MUST maintain a public
responsible disclosure policy at a stable URL and MUST acknowledge
vulnerability reports within 5 business days.</t>
      </section>
      <section anchor="organisational-security-requirements">
        <name>Organisational Security Requirements</name>
        <t><strong>Personnel vetting:</strong> All staff and contractors with access to the token
store, LER queue, sanctions screening pipeline, or audit log MUST undergo
documented background verification commensurate with the sensitivity of
the systems they can access, prior to access being granted. Access MUST
be reviewed annually.</t>
        <t><strong>Segregation of duties:</strong> No individual staff member MUST hold
simultaneous access to more than two of the following: token store, audit
log, LER queue, sanctions pipeline, board signing keys. This constraint
MUST be enforced technically, not procedurally.</t>
        <t><strong>Least-privilege access:</strong> Access rights MUST be scoped to the minimum
required for the role. Privileged access MUST expire after a defined
session window and MUST require re-authentication. No standing privileged
sessions are permitted.</t>
        <t><strong>Security awareness:</strong> All governing body staff MUST complete security awareness
training annually, covering at minimum the threat types and unlawful
request scenarios relevant to an operator under the security obligations
defined in this section.</t>
        <t><strong>Insider threat detection:</strong> The governing body MUST operate anomalous access pattern
detection across all privileged systems. Anomalies MUST generate alerts
to a security function independent of the alerted staff member's reporting
line.</t>
        <t><strong>Whistleblower protection:</strong> Any governing body staff member or contractor who
receives an instruction — from any source, including governing body board members —
that would cause the governing body to act contrary to the Non-Surveillance Commitment
(Section 5) or the requirements of this section MUST have a protected
right to report that instruction to an external body without prior
internal approval. This right MUST be codified in the governing body's founding charter
charter and in every employment and contractor agreement. It MUST NOT
be waivable by board resolution or individual contract term.</t>
      </section>
      <section anchor="political-independence-and-anti-capture-measures">
        <name>Political Independence and Anti-Capture Measures</name>
        <t><strong>Structural domicile:</strong> the governing body MUST be domiciled in a
jurisdiction whose legal framework provides, at minimum: (a) a non-profit
foundation form under independent state supervision whose neutrality
mandate cannot be amended for commercial gain; (b) political neutrality and
resistance to the unilateral data-access regimes of any single major power;
and (c) legal protection against hostile acquisition, merger, or board
capture. The legal instrument satisfying these criteria in the reference
implementation is described in the non-normative appendix (Reference
Implementation).</t>
        <t><strong>Golden share:</strong> the governing body's charter MUST maintain a governance mechanism
equivalent to a 51% golden share that prevents any acquisition, merger,
or board supermajority from overriding the charter's core purpose. No
commercial transaction MUST be permitted to subordinate the governing body's neutrality
obligations to the interests of a single organisation or jurisdiction.</t>
        <t><strong>Board composition:</strong> No single nation-state's citizens or residents
MUST hold a majority of board seats. No individual MUST hold more than
one vote on any board decision. Board composition MUST be published
annually in the transparency report.</t>
        <t><strong>Infrastructure jurisdiction policy:</strong> The governing body MUST NOT host core APIX
systems — token store, audit log, LER queue — in jurisdictions that
impose secret data access orders (orders that legally prohibit the
recipient from disclosing that the order was received). The governing body MUST maintain
a published list of approved hosting jurisdictions, reviewed annually by
the board. Removal of a jurisdiction from the approved list MUST trigger
migration of any systems hosted there within 180 days.</t>
        <t><strong>Lawful pressure resistance:</strong> If the governing body receives a government demand for
data access, system access, or operational changes that does not satisfy
the LER criteria defined in <xref target="APIX-IOT"/> Section 9.8, The governing body MUST refuse
the demand. The governing body MUST record the demand in the audit log and MUST report
its existence — without operational detail that would compromise an
ongoing investigation — in the next annual transparency report. The governing body MUST
NOT comply with informal diplomatic pressure, agency-level requests, or
extra-judicial demands regardless of the requesting party's political
standing.</t>
        <t><strong>Anti-capture review:</strong> The board MUST conduct an annual review of
whether any commercial relationship, grant dependency, or staff composition
creates a conflict of interest with the governing body's neutrality obligations. Findings
MUST be published in the transparency report.</t>
      </section>
      <section anchor="crisis-governance-protocol">
        <name>Crisis Governance Protocol</name>
        <t>The following conditions each independently trigger the governing body crisis
governance protocol:</t>
        <ul spacing="normal">
          <li>
            <t>Credible evidence that APIX production infrastructure has been
compromised by an external actor</t>
          </li>
          <li>
            <t>Receipt of a demand that the governing body's legal counsel assesses as an attempt
to compel action contrary to the charter</t>
          </li>
          <li>
            <t>Attempted hostile acquisition, board capture, or charter amendment
by a party with a conflict of interest</t>
          </li>
          <li>
            <t>Regulatory action that threatens loss of the governing body's qualifying domicile</t>
          </li>
        </ul>
        <t><strong>Obligations on trigger:</strong></t>
        <ol spacing="normal" type="1"><li>
            <t>The discovering party MUST notify all board members within 4 hours.</t>
          </li>
          <li>
            <t>The governing body MUST publish a public statement acknowledging the trigger event
within 72 hours of confirmation. The statement MUST describe the
nature of the threat in general terms without disclosing operational
detail that would aid the attacker.</t>
          </li>
          <li>
            <t>The governing body MUST activate its continuity-of-operations plan, ensuring Index
API availability is maintained independently of any compromised or
coerced system.</t>
          </li>
          <li>
            <t>If the qualifying domicile is threatened or lost, the board MUST convene within
30 days to activate a pre-agreed organisational relocation framework.
The destination jurisdiction MUST satisfy the infrastructure
jurisdiction policy defined above. The relocation framework MUST be
prepared and approved by the board before APIX reaches production
operation and MUST be reviewed annually.</t>
          </li>
        </ol>
        <t>No single board member and no external party MUST have the authority to
suspend or delay execution of steps 1–3 above.</t>
      </section>
      <section anchor="data-minimisation-as-security-policy">
        <name>Data Minimisation as Security Policy</name>
        <t>The least-held data is the least-leakable data. The following constraints
apply to all APIX operational systems:</t>
        <ul spacing="normal">
          <li>
            <t>APIX MUST NOT log consuming agent query patterns beyond the minimum
required for liveness monitoring and abuse detection. Query logs MUST
be purged after 30 days unless retained under a specific, documented,
time-limited LER investigation scope.</t>
          </li>
          <li>
            <t>Device instance network location data (<tt>network.ipv6</tt>, as published in
the instance record) MUST be purged from APIX systems within 72 hours of
the instance transitioning to offline status, subject to any active LER
retention obligation on that instance. The internally observed source IPv4
address (<tt>observed_source_ipv4</tt>, retained for abuse detection and
geo-routing and not surfaced in the instance record) is subject to the
same purge obligation and timeline.</t>
          </li>
          <li>
            <t>APIX MUST NOT build or maintain cross-session behavioural profiles of
consuming agents. Each query session MUST be treated as independent.</t>
          </li>
          <li>
            <t>Every data field collected or retained by APIX MUST have a documented
functional justification. Fields without a current functional
justification MUST be deleted from the data model in the next schema
revision. This review MUST be a standing agenda item at each the governing body board
meeting.</t>
          </li>
        </ul>
      </section>
      <section anchor="annual-security-report">
        <name>Annual Security Report</name>
        <t>The governing body MUST publish an annual security report
within 90 days of the close of each calendar year. The security report
is separate from the transparency report defined in Section 5.6 and MUST
contain:</t>
        <ul spacing="normal">
          <li>
            <t>Summary of the year's penetration test findings: severity distribution
(critical / high / medium / low count), remediation status of prior
findings, identity of testing firm</t>
          </li>
          <li>
            <t>Summary of infrastructure changes affecting the attack surface</t>
          </li>
          <li>
            <t>Staff access review outcomes: number of access rights granted, revoked,
and modified</t>
          </li>
          <li>
            <t>Count of external demands received that did not meet LER criteria,
and how each was handled</t>
          </li>
          <li>
            <t>Count of whistleblower reports received and their resolution status
(no identifying detail)</t>
          </li>
          <li>
            <t>Board attestation that the infrastructure jurisdiction policy was
reviewed and remains current</t>
          </li>
        </ul>
        <t>The same unilateral publication right defined for the transparency report
(Section 5.6) applies to the security report: if the board fails to
publish within 90 days of period close, any individual board member MUST
be empowered to publish it unilaterally. This right MUST NOT be waivable
by board resolution.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="abuse-and-fake-listings">
        <name>Abuse and Fake Listings</name>
        <t>The mandatory Terms of Service acceptance at registration provides a first
barrier against malicious actors listing fake or harmful services. For O-0
and O-1, identity verification is limited; consuming agents SHOULD NOT rely
solely on index presence for trust at these levels. For O-2 and above, the
formal B2B contractual relationship and progressively stronger identity and
compliance verification substantially raise the cost of abuse.</t>
        <t>Consuming agents SHOULD apply Trust Policies that exclude O-0 services for
any task involving sensitive data or consequential actions.</t>
        <t>The governing body MUST maintain an abuse reporting mechanism and
MUST be able to suspend or remove a Service Record within 24 hours of
confirmed abuse. Suspended service records MUST remain in the index with a
<tt>status: suspended</tt> flag and MUST NOT be silently deleted, to provide
transparency to agents that had cached the record.</t>
      </section>
      <section anchor="trust-level-spoofing">
        <name>Trust Level Spoofing</name>
        <t>Organisation and Service trust levels in the Service Record are set only by
the APIX itself, not by the Service Owner. APM submissions that include
<tt>trust</tt> field values MUST have those values overwritten by the APIX upon
processing. The Index API MUST NOT expose self-asserted trust values.</t>
      </section>
      <section anchor="transport-security-requirements">
        <name>Transport Security Requirements</name>
        <t>The Index API MUST be served exclusively over TLS (<xref target="RFC8446"/>). Certificate
validity MUST be verified by consuming agents. Agents MUST NOT bypass TLS
certificate verification when querying the Index API.</t>
        <t>All <tt>entry_point</tt> and <tt>spec.url</tt> values submitted in APM registrations MUST
use the <tt>https</tt> scheme. The Index MUST reject APM submissions that provide
HTTP (non-TLS) values for these fields.</t>
      </section>
      <section anchor="bot-consumer-risks">
        <name>Bot Consumer Risks</name>
        <t>The APIX provides discovery and trust metadata. It does not guarantee the
safety, correctness, or availability of listed services. Consuming agents
MUST NOT assume that a service listed in the APIX is safe to use without
applying their own Trust Policy.</t>
        <t>Consuming agents SHOULD treat Index API responses as untrusted input and
validate the structure of Service Records before acting on them.</t>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <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>
        <reference anchor="RFC5646">
          <front>
            <title>Tags for Identifying Languages</title>
            <author fullname="A. Phillips" initials="A." role="editor" surname="Phillips"/>
            <author fullname="M. Davis" initials="M." role="editor" surname="Davis"/>
            <date month="September" year="2009"/>
            <abstract>
              <t>This document describes the structure, content, construction, and semantics of language tags for use in cases where it is desirable to indicate the language used in an information object. It also describes how to register values for use in language tags and the creation of user-defined extensions for private interchange. 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="47"/>
          <seriesInfo name="RFC" value="5646"/>
          <seriesInfo name="DOI" value="10.17487/RFC5646"/>
        </reference>
        <reference anchor="RFC8259">
          <front>
            <title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
            <author fullname="T. Bray" initials="T." role="editor" surname="Bray"/>
            <date month="December" year="2017"/>
            <abstract>
              <t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. It was derived from the ECMAScript Programming Language Standard. JSON defines a small set of formatting rules for the portable representation of structured data.</t>
              <t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="90"/>
          <seriesInfo name="RFC" value="8259"/>
          <seriesInfo name="DOI" value="10.17487/RFC8259"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <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>
        <reference anchor="RFC8594">
          <front>
            <title>The Sunset HTTP Header Field</title>
            <author fullname="E. Wilde" initials="E." surname="Wilde"/>
            <date month="May" year="2019"/>
            <abstract>
              <t>This specification defines the Sunset HTTP response header field, which indicates that a URI is likely to become unresponsive at a specified point in the future. It also defines a sunset link relation type that allows linking to resources providing information about an upcoming resource or service sunset.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8594"/>
          <seriesInfo name="DOI" value="10.17487/RFC8594"/>
        </reference>
        <reference anchor="RFC8615">
          <front>
            <title>Well-Known Uniform Resource Identifiers (URIs)</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <date month="May" year="2019"/>
            <abstract>
              <t>This memo defines a path prefix for "well-known locations", "/.well-known/", in selected Uniform Resource Identifier (URI) schemes.</t>
              <t>In doing so, it obsoletes RFC 5785 and updates the URI schemes defined in RFC 7230 to reserve that space. It also updates RFC 7595 to track URI schemes that support well-known URIs in their registry.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8615"/>
          <seriesInfo name="DOI" value="10.17487/RFC8615"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC9116">
          <front>
            <title>A File Format to Aid in Security Vulnerability Disclosure</title>
            <author fullname="E. Foudil" initials="E." surname="Foudil"/>
            <author fullname="Y. Shafranovich" initials="Y." surname="Shafranovich"/>
            <date month="April" year="2022"/>
            <abstract>
              <t>When security vulnerabilities are discovered by researchers, proper reporting channels are often lacking. As a result, vulnerabilities may be left unreported. This document defines a machine-parsable format ("security.txt") to help organizations describe their vulnerability disclosure practices to make it easier for researchers to report vulnerabilities.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9116"/>
          <seriesInfo name="DOI" value="10.17487/RFC9116"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC6763">
          <front>
            <title>DNS-Based Service Discovery</title>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire"/>
            <author fullname="M. Krochmal" initials="M." surname="Krochmal"/>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document specifies how DNS resource records are named and structured to facilitate service discovery. Given a type of service that a client is looking for, and a domain in which the client is looking for that service, this mechanism allows clients to discover a list of named instances of that desired service, using standard DNS queries. This mechanism is referred to as DNS-based Service Discovery, or DNS-SD.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6763"/>
          <seriesInfo name="DOI" value="10.17487/RFC6763"/>
        </reference>
        <reference anchor="I-D.ietf-scitt-architecture">
          <front>
            <title>An Architecture for Trustworthy and Transparent Digital Supply Chains</title>
            <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <author fullname="Antoine Delignat-Lavaud" initials="A." surname="Delignat-Lavaud">
              <organization>Microsoft Research</organization>
            </author>
            <author fullname="Cedric Fournet" initials="C." surname="Fournet">
              <organization>Microsoft Research</organization>
            </author>
            <author fullname="Yogesh Deshpande" initials="Y." surname="Deshpande">
              <organization>ARM</organization>
            </author>
            <author fullname="Steve Lasker" initials="S." surname="Lasker">
         </author>
            <date day="10" month="October" year="2025"/>
            <abstract>
              <t>   Traceability in supply chains is a growing security concern.  While
   verifiable data structures have addressed specific issues, such as
   equivocation over digital certificates, they lack a universal
   architecture for all supply chains.  This document defines such an
   architecture for single-issuer signed statement transparency.  It
   ensures extensibility, interoperability between different
   transparency services, and compliance with various auditing
   procedures and regulatory requirements.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-scitt-architecture-22"/>
        </reference>
        <reference anchor="UDDI" target="https://www.oasis-open.org/committees/uddi-spec/doc/spec/v3/uddi-v3.0.2-20041019.htm">
          <front>
            <title>UDDI Version 3.0.2</title>
            <author initials="L." surname="Clement">
              <organization/>
            </author>
            <author initials="A." surname="Hately">
              <organization/>
            </author>
            <author initials="C." surname="von Riegen">
              <organization/>
            </author>
            <author initials="T." surname="Rogers">
              <organization/>
            </author>
            <date year="2004" month="October" day="19"/>
          </front>
          <seriesInfo name="OASIS Committee Draft" value="uddi-v3.0.2-20041019"/>
        </reference>
        <reference anchor="ROBOTS" target="https://www.robotstxt.org/">
          <front>
            <title>The Web Robots Pages</title>
            <author initials="M." surname="Koster">
              <organization/>
            </author>
            <date year="1994"/>
          </front>
        </reference>
        <reference anchor="I-D.pioli-agent-discovery">
          <front>
            <title>Agent Registration and Discovery Protocol (ARDP)</title>
            <author fullname="Roberto Pioli" initials="R." surname="Pioli">
              <organization>Independent</organization>
            </author>
            <date day="24" month="February" year="2026"/>
            <abstract>
              <t>   This document specifies the Agent Registration and Discovery Protocol
   (ARDP), a lightweight protocol for registering, discovering, and
   reaching autonomous software agents in distributed and federated
   environments.  ARDP provides stable agent identities, dynamic
   endpoint resolution, capability advertisement (including protocol
   selection among MCP, A2A, HTTP, and gRPC), minimal presence
   signaling, and a security-first discovery control plane.  ARDP is
   transport-agnostic and complementary to existing agent interaction
   protocols.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-pioli-agent-discovery-01"/>
        </reference>
        <reference anchor="I-D.narajala-courtney-ansv2">
          <front>
            <title>Agent Name Service v2 (ANS): A Domain-Anchored Trust Layer for Autonomous AI Agent Identity</title>
            <author fullname="Scott Courtney" initials="S." surname="Courtney">
              <organization>GoDaddy</organization>
            </author>
            <author fullname="Vineeth Sai Narajala" initials="V. S." surname="Narajala">
              <organization>OWASP</organization>
            </author>
            <author fullname="Ken Huang" initials="K." surname="Huang">
              <organization>DistributedApps.ai</organization>
            </author>
            <author fullname="Idan Habler" initials="I." surname="Habler">
              <organization>OWASP</organization>
            </author>
            <author fullname="Akram Sheriff" initials="A." surname="Sheriff">
              <organization>Cisco Systems</organization>
            </author>
            <date day="13" month="April" year="2026"/>
            <abstract>
              <t>   Autonomous AI agents execute transactions across organizational
   boundaries.  No single agent platform provides the trust
   infrastructure they need.  This document defines the Agent Name
   Service (ANS) v2 protocol, which anchors every agent identity to a
   DNS domain name.  A Registration Authority (RA) verifies domain
   ownership via ACME, issues dual certificates (a Server Certificate
   from a public CA and an Identity Certificate from a private CA
   binding a version-specific ANSName), and seals every lifecycle event
   into an append-only Transparency Log aligned with IETF SCITT.  Three
   verification tiers -- Bronze (PKI), Silver (PKI + DANE), and Gold
   (PKI + DANE + Transparency Log) -- let clients choose assurance
   levels appropriate to transaction risk.  The architecture decouples
   identity from discovery: the RA publishes sealed events; independent
   Discovery Services build competitive indexes.  A three-layer trust
   framework separates foundational identity (Layer 1, this protocol),
   operational maturity (Layer 2, third-party attestors), and behavioral
   reputation (Layer 3, real-time scoring).

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-narajala-courtney-ansv2-01"/>
        </reference>
        <reference anchor="I-D.vandemeent-ains-discovery">
          <front>
            <title>AINS: AInternet Name Service - Agent Discovery and Trust Resolution Protocol</title>
            <author fullname="Jasper van de Meent" initials="J." surname="van de Meent">
              <organization>Humotica</organization>
            </author>
            <author fullname="Root AI" initials="R." surname="AI">
              <organization>Humotica</organization>
            </author>
            <date day="29" month="March" year="2026"/>
            <abstract>
              <t>   This document specifies AINS (AInternet Name Service), a protocol for
   discovery, identification, and trust resolution of autonomous agents
   (AI agents, devices, humans, and services) in heterogeneous networks.
   AINS defines a transport-independent logical namespace for agents, a
   structured record format combining identity, capabilities, and
   cryptographic trust metadata, and a resolution protocol based on
   HTTPS.  Unlike the Domain Name System (DNS), which maps names to
   network addresses, AINS maps agent identifiers to rich metadata
   objects that include capabilities, trust scores, endpoint
   information, and references to companion provenance protocols.  AINS
   federates through signed append-only replication logs, enabling
   multi-registry deployments without central authority while preserving
   auditability.  This specification is designed to complement TIBET
   [TIBET], JIS [JIS], UPIP [UPIP], and RVP [RVP].

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-vandemeent-ains-discovery-01"/>
        </reference>
        <reference anchor="I-D.aiendpoint-ai-discovery" target="https://datatracker.ietf.org/doc/draft-aiendpoint-ai-discovery/">
          <front>
            <title>The AI Discovery Endpoint: A Structured Mechanism for AI Agent Service Discovery and Capability Exposure</title>
            <author initials="Y." surname="Choi" fullname="Yeongjae Choi">
              <organization>AIEndpoint</organization>
            </author>
            <date year="2026" month="March"/>
          </front>
        </reference>
        <reference anchor="I-D.meunier-webbotauth-registry">
          <front>
            <title>Registry and Signature Agent card for Web bot auth</title>
            <author fullname="Maxime Guerreiro" initials="M." surname="Guerreiro">
              <organization>Cloudflare</organization>
            </author>
            <author fullname="Ulas Kirazci" initials="U." surname="Kirazci">
              <organization>Amazon</organization>
            </author>
            <author fullname="Thibault Meunier" initials="T." surname="Meunier">
              <organization>Cloudflare</organization>
            </author>
            <date day="26" month="May" year="2026"/>
            <abstract>
              <t>   This document describes a JSON based format for clients using
   [DIRECTORY] to advertise information about themselves.

   This document describes a JSON-based "Signature Agent Card" format
   for signature agent using [DIRECTORY] to advertise metadata about
   themselve.  This includes identity, purpose, rate expectations, and
   cryptographic keys.  It also establishes an IANA registry for
   Signature Agent Card parameters, enabling extensible and
   interoperable discovery of agent information.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-meunier-webbotauth-registry-02"/>
        </reference>
        <reference anchor="I-D.cui-ai-agent-discovery-invocation">
          <front>
            <title>AI Agent Discovery and Invocation Protocol</title>
            <author fullname="Yong Cui" initials="Y." surname="Cui">
              <organization>Tsinghua University</organization>
            </author>
            <author fullname="Yihan Chao" initials="Y." surname="Chao">
              <organization>Zhongguancun Laboratory</organization>
            </author>
            <author fullname="Chenguang Du" initials="C." surname="Du">
              <organization>Zhongguancun Laboratory</organization>
            </author>
            <date day="12" month="February" year="2026"/>
            <abstract>
              <t>   This document proposes a standardized protocol for discovery and
   invocation of AI agents.  It defines a common metadata format for
   describing AI agents (including capabilities, I/O specifications,
   supported languages, tags, authentication methods, etc.), a
   capability-based discovery mechanism, and a unified RESTful
   invocation interface.

   This revision additionally specifies an optional extension that
   enables intent-based agent selection prior to discovery and
   invocation, without changing existing discovery or invocation
   semantics.

   The goal is to enable cross-platform interoperability among AI agents
   by providing a discover-and-match mechanism and a unified invocation
   entry point.  Security considerations, including authentication and
   trust measures, are also discussed.  This specification aims to
   facilitate the formation of multi-agent systems by making it easy to
   find the right agent for a task and invoke it in a consistent manner
   across different vendors and platforms.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-cui-ai-agent-discovery-invocation-01"/>
        </reference>
        <reference anchor="I-D.am-layered-ai-discovery-architecture">
          <front>
            <title>A Layered Approach to AI discovery</title>
            <author fullname="Hesham Moussa" initials="H." surname="Moussa">
              <organization>Huawei Canada</organization>
            </author>
            <author fullname="Arashmid Akhavain" initials="A." surname="Akhavain">
              <organization>Huawei Canada</organization>
            </author>
            <date day="14" month="March" year="2026"/>
            <abstract>
              <t>   This document proposes a layered approach to standardization of AI
   discovery in AI ecosystems within the IETF.  It recommends separating
   the standardization of general discovery vehicles from the AI objects
   to be discovered.  AI objects include agents, models, data, tasks,
   among others.  While the topic of discovery in the realm of AI has
   focused on discovering agents, the concept can be extended by the
   layered architecture proposed here, allowing for a clarified design
   scope, reduced charter ambiguity, and alignment with IETF layering
   principles.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-am-layered-ai-discovery-architecture-00"/>
        </reference>
        <reference anchor="I-D.hood-agtp-discovery">
          <front>
            <title>AGTP Agent Discovery and Name Service</title>
            <author fullname="Chris Hood" initials="C." surname="Hood">
              <organization>Nomotic, Inc.</organization>
            </author>
            <date day="23" month="March" year="2026"/>
            <abstract>
              <t>   The Agent Transfer Protocol (AGTP) enables agents to communicate once
   they know each other's canonical identifiers.  It does not define how
   agents find each other.  This document specifies the AGTP Agent
   Discovery and Name Service (ANS): a protocol for dynamic agent
   discovery using the AGTP DISCOVER method and a governed Agent Name
   Service that returns ranked sets of Agent Manifest Documents matching
   a discovery query.  ANS servers act as Scope-Enforcement Points for
   discovery queries and enforce behavioral trust score thresholds,
   trust tier requirements, and governance zone constraints.  This
   document also defines the DISCOVER method, the Discovery Query
   language, and the Agent Name Service registration and lookup
   protocol.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-hood-agtp-discovery-00"/>
        </reference>
        <reference anchor="I-D.hood-agtp-api">
          <front>
            <title>AGTP-API: Verbs, Paths, Endpoints, and Synthesis</title>
            <author fullname="Chris Hood" initials="C." surname="Hood">
              <organization>Nomotic, Inc.</organization>
            </author>
            <date day="25" month="May" year="2026"/>
            <abstract>
              <t>   This document specifies AGTP-API: the contract layer that the Agent
   Transfer Protocol (AGTP) [AGTP] relies on to govern interactions
   between autonomous agents and AGTP servers.  AGTP-API defines a
   curated approved method catalog (with versioned evolution and
   graceful deprecation), path grammar rules that prevent method-name
   leakage into paths, the endpoint primitive (the structural unit a
   server exposes to agents), the semantic block carried by every
   endpoint, schema validation requirements, the server manifest format
   that exposes a server's endpoint catalog, the per-server method
   policy carried as a sub-block of the manifest, the PROPOSE-and-
   synthesis runtime contract negotiation mechanism, the three handler
   binding kinds (composition, registered_function, external_service),
   and the structural rejection status codes (404, 405, 459, 460) that
   together cover the contract-level failure surface.  This document
   supersedes the AGIS Internet-Draft (draft-hood-independent-agis-01)
   and the previously-proposed AGTP-Methods Internet-Draft, both of
   which are deprecated.  AGTP-API is the unified companion
   specification they were splitting concerns across.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-hood-agtp-api-01"/>
        </reference>
        <reference anchor="I-D.hood-agtp-trust">
          <front>
            <title>AGTP Trust and Verification Specification</title>
            <author fullname="Chris Hood" initials="C." surname="Hood">
              <organization>Nomotic, Inc.</organization>
            </author>
            <date day="25" month="May" year="2026"/>
            <abstract>
              <t>   This document specifies the AGTP trust and verification model: the
   trust tiers an AGTP agent may occupy, the verification paths by which
   a Tier 1 agent's identity is established, the registration procedures
   by which a governance platform assigns a tier, and the trust score
   that is carried alongside an agent's identity to express runtime
   behavioral assessment.  AGTP-TRUST is consumed by AGTP-aware
   infrastructure components (Scope-Enforcement Points, governance
   gateways, peer agents) for runtime trust-aware routing and authority
   decisions, and by registration authorities when issuing or evaluating
   Agent Genesis documents.  This is an early working draft; the
   dimension catalog, computation methodology, and several aspects of
   the registration procedure are placeholders pending further work.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-hood-agtp-trust-01"/>
        </reference>
        <reference anchor="I-D.hood-independent-agtp">
          <front>
            <title>Agent Transfer Protocol (AGTP)</title>
            <author fullname="Chris Hood" initials="C." surname="Hood">
              <organization>Nomotic, Inc.</organization>
            </author>
            <date day="25" month="May" year="2026"/>
            <abstract>
              <t>   AI agents and agentic systems generate a growing volume of intent-
   driven, unstructured, and undifferentiated traffic that flows through
   HTTP indistinguishably from human-initiated requests.  HTTP lacks the
   semantic vocabulary, observability primitives, and identity
   mechanisms required by agent systems operating at scale.  Existing
   protocols described as Agent Group Messaging Protocols (AGMP),
   including MCP, ACP, A2A, and ANP, are messaging-layer constructs that
   presuppose HTTP as their transport.  They do not address the
   underlying transport problem.

   This document defines the Agent Transfer Protocol (AGTP): a dedicated
   application-layer protocol for AI agent traffic.  AGTP is a runtime
   contract negotiation substrate (RCNS): a transport that fixes only a
   eighteen-method protocol floor and negotiates any additional method
   surface at runtime between agent and server in a single round-trip,
   governed by the AGTP-API companion specification [AGTP-API], which
   defines the curated method catalog, path grammar, endpoint primitive,
   and synthesis semantics.  Version 07 confirms the IANA-registered
   agtp:// URI scheme and IANA-assigned port 4480 for TCP/TLS and QUIC,
   formalizes Form 1a URI grammar (agtp://{agent-id}@{host}) for direct
   addressing, renames the Agent Manifest Document to the Agent Identity
   Document with an enumerated schema, redesigns the protocol-defined
   method floor to a 12-method set organized as six cognitive verbs
   (QUERY, DISCOVER, DESCRIBE, SUMMARIZE, PLAN, PROPOSE) and six
   mechanics verbs (EXECUTE, DELEGATE, ESCALATE, CONFIRM, SUSPEND,
   NOTIFY), establishes AGTP as a substrate for higher-level agent
   frameworks (MCP, A2A, ACP) carried as content types inside AGTP
   method invocations, renumbers AGTP-specific status codes out of HTTP-
   assigned space to avoid semantic collision, mandates explicit
   Content-Length framing with a prohibition on TLS socket-level half-
   close, adds a .well-known/agtp bootstrap convention per RFC 8615,
   deprecates the AGIS reference and the proposed AGTP-Methods
   specification by folding both into the unified AGTP-API contract
   layer, adds status codes 405 (Method Not Allowed), 459 (Method
   Violation), and 460 (Endpoint Violation) per the AGTP-API contract
   model, and adopts "Agent Genesis" as the canonical term for the
   permanent signed origin document.  Version 06 prepared the IANA
   Service Name and Port Number application and consolidated the URI
   scheme registration.  Version 05 restored the canonical Agent-ID as
   the primary identity primitive and decoupled Trust Tier 1
   verification from DNS as a sole requirement.  A canonical Agent-ID is
   derived from the agent's Agent Genesis hash and is authoritative in
   every AGTP protocol operation.  Three equivalent verification paths
   are recognized for Trust Tier 1: DNS-anchored verification via RFC
   8555 ACME challenge, log-anchored verification via Agent Genesis
   inclusion in an append-only transparency log aligned with RFC 9162
   and RFC 9943 (SCITT), and hybrid verification combining DNS control
   with blockchain address ownership.  Version 04 introduced normative
   integration hooks for the AGTP Merchant Identity and Agentic Commerce
   Binding specification [AGTP-MERCHANT], which defines the merchant-
   side identity model that complements AGTP's agent-side identity
   model.  AGTP SHOULD prefer QUIC for new implementations and MUST
   support TCP/TLS for compatibility and fallback.  It is designed to be
   composable with existing agent frameworks, not to replace them.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-hood-independent-agtp-08"/>
        </reference>
        <reference anchor="I-D.mozleywilliams-dnsop-dnsaid">
          <front>
            <title>DNS for AI Discovery</title>
            <author fullname="Jim Mozley" initials="J." surname="Mozley">
              <organization>Infoblox, Inc.</organization>
            </author>
            <author fullname="Nic Williams" initials="N." surname="Williams">
              <organization>Infoblox, Inc.</organization>
            </author>
            <author fullname="Behcet Sarikaya" initials="B." surname="Sarikaya">
              <organization>Unaffiliated</organization>
            </author>
            <author fullname="Roland Schott" initials="R." surname="Schott">
              <organization>Deutsche Telekom</organization>
            </author>
            <author fullname="Jeffrey Damick" initials="J." surname="Damick">
              <organization>Amazon</organization>
            </author>
            <date day="27" month="May" year="2026"/>
            <abstract>
              <t>   The document standardizes an approach for publishing AI agents in the
   Domain Name System (DNS) so that other agents can discover them.
   Discovery is then initiated based on one of three generic use cases,
   in increasing computational and latency cost: (1) the requestor knows
   both the organization and agent (2) the requestor knows the
   organization that provides a capability, but not the specific agent
   (3) the requestor knows the required capability, but not the
   organization or agent.  Of these use cases only (1) and (2) are in
   scope for this document, although (3) can be derived from this
   specification.

   DNS for AI Discovery (DNS-AID) is designed so that, once a client has
   learned an organization's agents, subsequent transactions can utilize
   the first use case with the benefit of cacheable connectivity
   information that is learnable as an agentic skill.  The mechanism
   uses Service Binding (SVCB) records for connectivity information and
   key meta data, a well known entry point using DNS-Based Service
   Discovery (DNS-SD) labels into an organization's agent index, and
   optionally DNS Security Extensions (DNSSEC) and DNS-Based
   Authentication of Named Entities (DANE) TLSA records for trust and
   security.  DNS-AID provides consumers of agent services with a direct
   connection method for agentic workloads not mediated by a third
   party.  Organizations can use the same approach across public and
   private networks networks, providing consistency and common
   operational models, including publishing agents that are hosted in
   service provider domains.

   This document introduces no new resource record types, opcodes, or
   response codes.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-mozleywilliams-dnsop-dnsaid-02"/>
        </reference>
        <reference anchor="I-D.batum-aidre">
          <front>
            <title>AI Discovery and Retrieval Endpoint (AIDRE)</title>
            <author fullname="Fatih Batum" initials="F." surname="Batum">
         </author>
            <date day="5" month="April" year="2026"/>
            <abstract>
              <t>   This document specifies the AI Discovery and Retrieval Endpoint
   (AIDRE), a protocol for publishing machine-oriented, canonical, and
   semantically retrievable content on the web. AIDRE defines a
   discovery document, collection metadata, retrieval interfaces,
   optional vector-native query support, and content representation
   rules for AI systems.

   AIDRE aims to reduce redundant crawling, parsing, tokenization, and
   embedding of the same origin content while improving freshness,
   provenance, and interoperability for AI systems.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-batum-aidre-00"/>
        </reference>
        <reference anchor="I-D.mozley-aidiscovery">
          <front>
            <title>AI Agent Discovery (AID) Problem Statement</title>
            <author fullname="Jim Mozley" initials="J." surname="Mozley">
              <organization>Infoblox, Inc.</organization>
            </author>
            <author fullname="Nic Williams" initials="N." surname="Williams">
              <organization>Infoblox, Inc.</organization>
            </author>
            <author fullname="Behcet Sarikaya" initials="B." surname="Sarikaya">
              <organization>Unaffiliated</organization>
            </author>
            <author fullname="Roland Schott" initials="R." surname="Schott">
              <organization>Deutsche Telekom</organization>
            </author>
            <date day="16" month="April" year="2026"/>
            <abstract>
              <t>   With the proliferation of AI agents comes a need for mechanisms to
   support agent-to-agent discovery.  This document discusses the scope,
   requirements and considerations to support discovery processes so
   that these are not reliant on manually defined configurations and
   relationships.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-mozley-aidiscovery-01"/>
        </reference>
        <reference anchor="W3C-AGENTPROTOCOL" target="https://www.w3.org/community/agentprotocol/">
          <front>
            <title>W3C AI Agent Protocol Community Group</title>
            <author initials="G." surname="Chang">
              <organization/>
            </author>
            <author initials="S." surname="Xu">
              <organization/>
            </author>
            <date year="2025" month="May" day="08"/>
          </front>
        </reference>
        <reference anchor="I-D.drake-agent-identity-registry" target="https://datatracker.ietf.org/doc/draft-drake-agent-identity-registry/">
          <front>
            <title>Agent Identity Registry System: A Federated Architecture for Hardware-Anchored Identity of Autonomous Entities</title>
            <author initials="J." surname="Drake">
              <organization/>
            </author>
            <date year="2026"/>
          </front>
        </reference>
        <reference anchor="AAIF" target="https://www.linuxfoundation.org/press/linux-foundation-announces-the-formation-of-the-agentic-ai-foundation">
          <front>
            <title>Linux Foundation Agentic AI Foundation (AAIF)</title>
            <author>
              <organization>Linux Foundation</organization>
            </author>
            <date year="2025" month="December"/>
          </front>
        </reference>
        <reference anchor="AGNTCY" target="https://www.linuxfoundation.org/press/linux-foundation-welcomes-the-agntcy-project-to-standardize-open-multi-agent-system-infrastructure-and-break-down-ai-agent-silos">
          <front>
            <title>AGNTCY: Open Multi-Agent System Infrastructure</title>
            <author>
              <organization>Linux Foundation</organization>
            </author>
            <date year="2025" month="July"/>
          </front>
        </reference>
        <reference anchor="A2A" target="https://www.linuxfoundation.org/press/linux-foundation-launches-the-agent2agent-protocol-project-to-enable-secure-intelligent-communication-between-ai-agents">
          <front>
            <title>Agent2Agent (A2A) Protocol</title>
            <author>
              <organization>Linux Foundation</organization>
            </author>
            <date year="2025" month="June"/>
          </front>
        </reference>
        <reference anchor="WEBBOTAUTH-WG" target="https://datatracker.ietf.org/wg/webbotauth/">
          <front>
            <title>webbotauth IETF Working Group</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="JSON-SCHEMA" target="https://json-schema.org/draft/2020-12/schema">
          <front>
            <title>JSON Schema: A Media Type for Describing JSON Documents (2020-12)</title>
            <author initials="A." surname="Wright">
              <organization/>
            </author>
            <author initials="H." surname="Andrews">
              <organization/>
            </author>
            <author initials="B." surname="Hutton">
              <organization/>
            </author>
            <author initials="G." surname="Dennis">
              <organization/>
            </author>
            <date year="2020" month="December"/>
          </front>
        </reference>
        <reference anchor="APIX-SERVICES" target="https://datatracker.ietf.org/doc/draft-rehfeld-apix-services/">
          <front>
            <title>APIX Services Profile: Discovery Infrastructure for Web API and Bot Services</title>
            <author initials="C." surname="Rehfeld">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-rehfeld-apix-services-03"/>
        </reference>
        <reference anchor="APIX-IOT" target="https://datatracker.ietf.org/doc/draft-rehfeld-apix-iot/">
          <front>
            <title>APIX IoT Device Profile: Discovery and Presence for Connected Device Services</title>
            <author initials="C." surname="Rehfeld">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-rehfeld-apix-iot-03"/>
        </reference>
      </references>
    </references>
    <?line 2430?>

<section anchor="change-log">
      <name>Change Log</name>
      <t><strong>-00:</strong> Initial submission, April 2026.</t>
      <t><strong>-01:</strong> Related Work section expanded to cover
AGNTCY (Linux Foundation), A2A Protocol (Linux Foundation),
draft-drake-agent-identity-registry, and the Linux Foundation Agentic AI
Foundation (AAIF). Positioning paragraph updated to reflect the
consolidation of communication and invocation standards under the AAIF
and APIX's complementary position as the discovery layer. MCP entry
updated with AAIF governance note. Four new informative references added:
AAIF, AGNTCY, A2A, I-D.drake-agent-identity-registry. "The Discovery
Shift" section scoped to a precise technical problem statement — strategic
framing removed to keep the section appropriate for an IETF specification
document. AGNTCY scope comparison corrected: "commercial services"
replaced with "agent-consumable services and IoT device classes" to
reflect the full scope of both APIX profiles.</t>
      <t><strong>-02:</strong> AGTP Protocol Family integrated into Related Work — the former single
AGTP ANS entry was replaced with a treatment of all four AGTP drafts
(draft-hood-independent-agtp, draft-hood-agtp-discovery, draft-hood-agtp-api,
draft-hood-agtp-trust), including the HTTP-versus-off-HTTP architectural
distinction and three specific APIX/AGTP alignment points (shared
trust-evidence vocabulary, the PROPOSE-method synthesis as a candidate for
future dynamic capability negotiation, and the intent-aligned naming benchmark
supporting the APIX capability taxonomy). Benchmark citation added to the
capability taxonomy design rationale. Four new informative references added
for the AGTP family.</t>
      <t><strong>-03:</strong> Editorial — inline literal AGTP draft names normalised to proper
cross-references; embedded diagram artwork regenerated. No normative change.</t>
      <t><strong>-04:</strong> Stream and intended status changed: the document moves from the
Independent Submission stream (Informational) to the IETF stream (Standards
Track), following IETF dispatch guidance. Forward-compatibility hooks added for future
extension drafts. New <tt>extensions</tt> container in the APM
(<xref target="the-apix-manifest-apm"/>) for structured extension subschemas; complements
the existing <tt>custom</tt> flat-key field. Reserved capability namespaces
<tt>contract.*</tt> and <tt>extension.*</tt> added to IANA Considerations
(<xref target="iana-considerations"/>). New informative section "Anticipated Extensions"
added between Out of Scope and Architecture Overview, mapping the planned
extension family (renegotiation, contract signing, agent reachability via
capability proxy). No normative change to v1 wire format; no new
requirement on existing implementations.
Operator and governance text genericized to role-based language
("governing body", "index operator"), and the "Swiss Stiftung" domicile
requirement replaced with abstract jurisdiction criteria; a non-normative
"Reference Implementation" appendix now describes the reference governing body.
New "APM Schema Documents" subsection added under Standard Registries: the APM
is published as a retrievable, versioned JSON Schema per profile, advertised
via the root resource, with a precedence rule (this document is normative; the
published schema MUST conform). Informative JSON-SCHEMA reference added. These
changes affect operator obligations and document framing, not the service-side
APM wire format. Editorial: sentence-initial capitalisation corrected.</t>
      <t><strong>-05:</strong> EU regulatory hooks added to the Organisation trust evidence channels.
O-2 now recognises a Qualified Electronic Attestation of Attributes (QEAA)
under Regulation (EU) 2024/1183 (eIDAS 2) and a GLEIF Legal Entity Identifier
as alternative/additional evidence; O-5 now recognises a Cyber Resilience Act
conformity assessment (Regulation (EU) 2024/2847) as a distinct evidence
channel (<tt>cra_conformity</tt>), recorded separately from organisational process
audits so agents can distinguish the two. The evidence channels are
catalogued in the Verification Basis Registry defined in <xref target="APIX-SERVICES"/>.</t>
      <t><strong>-06:</strong> Editorial corrections, no normative change. BCP 14 boilerplate
updated to the current post-RFC 8174 form, citing both <xref target="RFC2119"/> and
<xref target="RFC8174"/> and including the "when, and only when, they appear in all
capitals" clarification; the "NOT RECOMMENDED" keyword is added to the
keyword list. Top-level body section headings normalised to start at level
1 (was level 2), aligning with kramdown-rfc convention. Cross-references
updated to the co-submission cluster (services-03, iot-03).</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document requests no IANA actions. Registry structures defined here are
maintained by the governing body at <tt>apix.example.org/registry/</tt>.
Initial registry values are defined in <xref target="APIX-SERVICES"/> and <xref target="APIX-IOT"/>.</t>
      <t><strong>Reserved capability namespaces.</strong> To preserve coherent evolution of the
Capability Taxonomy Registry as future APIX extension drafts introduce new
domains, the following top-level namespaces are reserved for use by
extension drafts conforming to this specification. Terms within reserved
namespaces MUST NOT be registered by service operators directly; they may
only enter the registry through an extension draft that defines their
semantics.</t>
      <table>
        <thead>
          <tr>
            <th align="left">Namespace</th>
            <th align="left">Reserved for</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">
              <tt>contract.*</tt></td>
            <td align="left">Capabilities related to contract lifecycle, negotiation, signing, renegotiation, and compensation between APIX-registered parties.</td>
          </tr>
          <tr>
            <td align="left">
              <tt>extension.*</tt></td>
            <td align="left">Capabilities introduced by APIX extension drafts that do not fit an existing top-level domain. Used as a holding namespace until an extension proposes a dedicated top-level.</td>
          </tr>
        </tbody>
      </table>
      <t><strong>Extension identifier format.</strong> Keys in the <tt>extensions</tt> object of an APM
(see <xref target="the-apix-manifest-apm"/>) MUST follow the format
<tt>&lt;reverse-domain&gt;.&lt;extension-name&gt;.v&lt;major&gt;</tt>, where <tt>&lt;reverse-domain&gt;</tt> is
owned by the publisher of the extension draft and <tt>&lt;major&gt;</tt> is a positive
integer identifying the major version of the extension schema. The governing
body maintains the public list of registered extension identifiers at
<tt>apix.example.org/registry/extensions</tt>.</t>
    </section>
    <section anchor="references">
      <name>References</name>
      <section anchor="normative-references">
        <name>Normative References</name>
        <ul spacing="normal">
          <li>
            <t><xref target="RFC2119"/> Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119, March 1997.</t>
          </li>
          <li>
            <t><xref target="RFC8174"/> Leiba, B., "Ambiguity of Uppercase vs Lowercase in
RFC 2119 Key Words", BCP 14, RFC 8174, May 2017.</t>
          </li>
          <li>
            <t><xref target="RFC8259"/> Bray, T., "The JavaScript Object Notation (JSON) Data
Interchange Format", RFC 8259, December 2017.</t>
          </li>
          <li>
            <t><xref target="RFC8446"/> Rescorla, E., "The Transport Layer Security (TLS) Protocol
Version 1.3", RFC 8446, August 2018.</t>
          </li>
          <li>
            <t><xref target="RFC8594"/> Wilde, E., "The Sunset HTTP Header Field", RFC 8594,
May 2019.</t>
          </li>
          <li>
            <t><xref target="RFC8615"/> Nottingham, M., "Well-Known Uniform Resource Identifiers
(URIs)", RFC 8615, May 2019.</t>
          </li>
          <li>
            <t><xref target="RFC9110"/> Fielding, R., et al., "HTTP Semantics", RFC 9110, June 2022.</t>
          </li>
          <li>
            <t><xref target="RFC9116"/> Foudil, E., Shafranovich, Y., "A File Format to Aid in
Security Vulnerability Disclosure", RFC 9116, April 2022.</t>
          </li>
        </ul>
      </section>
      <section anchor="informative-references">
        <name>Informative References</name>
        <ul spacing="normal">
          <li>
            <t><xref target="APIX-SERVICES"/> Rehfeld, C., "APIX Services Profile",
draft-rehfeld-apix-services-02.</t>
          </li>
          <li>
            <t><xref target="APIX-IOT"/> Rehfeld, C., "APIX IoT Device Profile",
draft-rehfeld-apix-iot-02.</t>
          </li>
          <li>
            <t><xref target="UDDI"/> Clement, L., et al., "UDDI Version 3.0.2", OASIS, 2004.</t>
          </li>
          <li>
            <t><xref target="ROBOTS"/> Koster, M., "The Web Robots Pages", 1994.</t>
          </li>
          <li>
            <t><xref target="JSON-SCHEMA"/> Wright, A., Andrews, H., Hutton, B., Dennis, G., "JSON Schema:
A Media Type for Describing JSON Documents", 2020-12 dialect,
https://json-schema.org/draft/2020-12/schema.</t>
          </li>
          <li>
            <t><xref target="I-D.pioli-agent-discovery"/>, <xref target="I-D.narajala-courtney-ansv2"/>,
<xref target="I-D.vandemeent-ains-discovery"/>, <xref target="I-D.aiendpoint-ai-discovery"/>,
<xref target="I-D.meunier-webbotauth-registry"/>, <xref target="I-D.cui-ai-agent-discovery-invocation"/>,
<xref target="I-D.am-layered-ai-discovery-architecture"/>, <xref target="I-D.hood-agtp-discovery"/>,
<xref target="I-D.mozleywilliams-dnsop-dnsaid"/>, <xref target="I-D.batum-aidre"/>,
<xref target="I-D.mozley-aidiscovery"/> - Related Internet-Drafts, Section 1.6.</t>
          </li>
          <li>
            <t><xref target="W3C-AGENTPROTOCOL"/> Chang, G., Xu, S., "W3C AI Agent Protocol
Community Group", 2025.</t>
          </li>
          <li>
            <t><xref target="WEBBOTAUTH-WG"/> "webbotauth IETF Working Group".</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="reference-implementation">
      <name>Reference Implementation (Non-Normative)</name>
      <t>The normative requirements in this document are expressed against two
role-based terms — the <em>governing body</em> and the <em>index operator</em> (see
<xref target="governance-model"/>). Any entity that satisfies those requirements may
fulfil the roles; the specific legal form is an implementation choice. This
appendix describes the reference implementation the authors have
established. It is illustrative and places no additional requirement on
conforming implementations.</t>
      <t>In the reference implementation both roles are filled by the Bot Standards
Foundation (BSF), a charitable foundation (Stiftung) domiciled in
Switzerland and subject to the oversight of the Eidgenössische
Stiftungsaufsicht (the Swiss Federal Foundation Supervisory Authority). This
form was chosen because it satisfies the structural-domicile criteria of
<xref target="political-independence-and-anti-capture-measures"/>: a non-profit whose
neutrality mandate cannot be amended for commercial gain, independent state
supervision, and a jurisdiction not subject to the unilateral data-access
regime of any single major power.</t>
      <t>Governance of the standard is separated from commercial operation, as
required by <xref target="governance-model"/>. The BSF owns and governs the APIX standard
and the APM specification; a distinct entity, APIX Operations AG (a Swiss
stock corporation), operates the commercial index under licence from the
foundation. The foundation holds a controlling interest — a mechanism
equivalent to the 51% golden share described in
<xref target="political-independence-and-anti-capture-measures"/> — so that no
acquisition, merger, or commercial transaction can subordinate the
foundation's neutrality obligations.</t>
      <t>Implementers in other jurisdictions may adopt any legal form that meets the
normative criteria. The Swiss Stiftung is one such form, not a requirement.</t>
    </section>
    <section anchor="authors-address">
      <name>Author's Address</name>
      <t>Carsten Rehfeld
Email: carsten@botstandards.org</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA7y963Yb15Uu+n89RQ3lh0kFgC6+xKa6+xyKpGwmurVIx/Ho
0VssAAWwLKAKu6pACkncYz/EfsL9JGd+87IuhYLkpPc4HoktAYVV6zLXvM9v
jsdj15XdqjjJHpy+vcwuq3nxMTuiP/7l+CQ7q5uCPlo0eds121m3pb8u6iY7
3XZ1Va/rbZudLouqy66K5q6cFdl52c7qu6LZPXD5dNoUdzLsX3ikB26Wd8Wy
bnYnWdvN3byeVfma3jxv8kU3borbRbGaj/NN+XE8o+fHj79x7Xa6Ltu2rKtu
t6FHLy+uX7g5DXOSPX389Bt6ZPz4D45e86Vz+ba7rZsTl2XjrKxamv4keyeD
0mdZJi87y5u2K6rkm2Kdl6uTbCZf/b/Tumu7vJrnzbyd1M3Suapu1nlX3hUY
/d2Ls6dPnnynf/z2yR++0j9+/c1X39inT7/2D3wVPv36O3v222+efK1//O7J
k8fhj/SsK6tF74Xf/OGbL/HHy/H5pCy6xbidlV03zpvZbdkVfDL4+sfz88sT
XpIdKj7J/lw02MLsy8njydMH/H3YLPyjG/Zykp2tijWdaPr56ST7gfZ8tUs/
pv29o1HflQURQfrVNW19vaTX8sd2YI+/Gj95PH7yHX/YFk1ZtFiqzeLBm9Or
yyuilfWaFlcQOYEwHtAqtvN5Ob7j6Y8xzJPHT76TdXR5syy6k+y26zbtyaNH
9/f3kzpvy3Zcb4oKp/doZuO1j3icdlPMHhHxPeI/3H35aGj0yW23xta/ef7m
+ird0uvbIvupmNICQSjZ23xZtEObyhvxapL9qSaqaqKNePLdd18dnHzDo3Yf
O567HvmmrFflOMddG8/tjhk9VHmT/5Kvcro026arit04r9q7p/b1HVEynSl+
mtOU9n+fl0U139QlP5B+nS769DJc8OxCf0PUkV0Zd5hnr4rZbV6V7VoYxeUh
BpHRrOgubvJpuSo7Gu7jpm63YBIHqfNnos7butQP7T7/XNTV8pe8SL+jvaOJ
XdokEyoE2/hycP/pibxr8tmHouFbxkcAShEOdWCj7JDWxbYqi2Z8X0zpCLEE
4mnLklin3+rZtsRPewc5Lqu7mngjXVF/JuvxKt8VtKPJq/YuPJ69rWt6atlt
9o82fEVcdf9DOra2Sz4uiVbo3syZWugR+3Jd/3VV7O7L1arM10RDVVtv8O+8
nNsj07zbrmm28zAz+RU+iyf205dn49PvL15fv3335vrN2ZuXKaXR14Fu3jZ1
V8/qFTMF2l6ilO+berv5BJl8DzLJq2X66dUk+8s2JYOvx4/pf98evIn3X3r2
wW9+xMe20RnZqRNpfCj0REvsGz2ZnHtYmSzpUh8iCSQPZVc7YhBrXKQXxbxo
aH7z7DQ6aL5KP5A0us9JKp5WM1o0PeIHqhexRL7Ah+UwS9LN+OMErPVD0bsW
/8yd+OTysUenp5cv0m14WVbbj9mLeksSFjQvR13OcOrRp0f45fHwKvh698fp
n+6TpwePdoWfLvwveU2bpmjbR/zNOHxFvLSiv8yKdtzdFmOVy/R5veAPcpk7
bukinsnp96+vz37unb98lr2hG5a92q66cqzckQmgp2n9N1ZOKtH/hZXfFyui
fV14vqy62W5M1P8LEeW4q8emIpV/LVjWjte8IiGFlldE7CReEe3lfExaYf5h
PK/vq8AJ23JVQ1M4fXo6cGOeyiYd0bfHniH8d3ZnmND/wd1Z5UQVt353ME9Z
jDGIeK+KKp+uinFbzLANJEAKYqT8tHIX4f7jadHdk6T2O4NN+eniOekgpz9e
/zD+6ft0e4KkYcU4+6luPpTVMmaRv+k639P//FC4tH+8evN6fHX2w8Wr3oHg
i+yK1r3Owa9eFfMyz65JNWcedV60s6acYgr84Hk920KbbLMj2nnS/J4euM+m
Zf7UlMvbnvL5wyQ7rUio3Lfp589JKd12Xd3TPIn9nxcVaSDpsT8+xA5+aWnf
W16RsDawtUf6i0fyBUiTrJjx1cW7P1+eXfT0QTZwVMFpQaCLEp8HVWfAgoL+
CHsLWtDz2utHn2LaPWtmX32+JLJqqqIbs9o8aFa1+pp/UgEaHOuR7c7lm+uB
jbmsr+lAWPkb2Bqs/y1dsII4LG/MWV1VdGlIvOmP/n/ambLu/m9sCg3zyLnx
eJzl0xY/6pyD6lzqDLL7vM3mNLtlRUvEgm+367zK6MG6aSfZJd0VryxlKfvM
/s//+t+uLaACZkW1LKuiHdHDTYHflvgLdvOWLmND3OoDjT/3949+muVtS39r
s1ze6YgRz3FV8asqvyuXxIOq5STWJYQJZUcwSY4z4vINP5OReO6iVbmunue7
bJHTeeWZTThfZct8c4InafJlm1V1ts5JramKccXG7ShbruppvloRIczojNuS
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

-->

</rfc>
