<?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-04" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.33.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-04"/>
    <author initials="C." surname="Rehfeld" fullname="Carsten Rehfeld">
      <organization/>
      <address>
        <email>carsten@botstandards.org</email>
      </address>
    </author>
    <date year="2026" month="May" day="27"/>
    <abstract>
      <?line 124?>

<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-01) defines the
web API and bot service profile; the APIX IoT Device Profile
(draft-rehfeld-apix-iot-01) defines the IoT device profile.</t>
    </abstract>
  </front>
  <middle>
    <?line 145?>

<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 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", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <xref target="RFC2119"/>.</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.</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). 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>
    </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="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-01"/>
        </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-01"/>
        </reference>
      </references>
    </references>
    <?line 2415?>

<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>
      <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="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-01.</t>
            </li>
            <li>
              <t><xref target="APIX-IOT"/> Rehfeld, C., "APIX IoT Device Profile",
draft-rehfeld-apix-iot-01.</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>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA7y9a3IbWZIu+J9m3EOY+keRKgB65KMrqXt7hklJmazSq0Vm
ZaW19U0GgCAZKQCBiwiQYlVl213E7GH2MUuZlYx/n7ufRyAoZXVfm7LulAQE
TpyHH3/75+PxeH+vq7tFdVQ8OH53Wpyu5tXH4kD++pfDo+Kk2VTy0eWmbLvN
dtZt5Z+XzaY43nbNqlk227Y4vqpWXXFWbW7qWVU8r9tZc1Nt7h7s75XT6aa6
0XH/wqHkw1nZVVfN5u6oaLv5/t68ma3Kpbx8vikvu/Gmur6sFvNxua4/jmfy
i/HjL/f32u10Wbdt3ay6u7U8e/ri/KX8VEY6Kp4+fvr1+PFX46f/vL8n7/pi
f09evO2um83R/l5RjIt61co6JsV7HRofFoW+86TctF21yr+qlmW9OCpm+t3/
OW26titX83IzbyfN5grjr5rNsuzqm4qveP/y5OmTJ9/437/6+suv/e9/ePpV
+PwPXyaff/XNl+HvXz/5yv/+zZMnj5O/4/n9vXp12X/f1//89Rf8++n4+aSu
ustxO6u7blxuZtd1V/Gc+P0Pz5+fHum6/JDxUfHnaoPtLL6YPJ48faAPJLuG
/9nOvZoUJ4tqKWfc++J4UnwvJ7C4630uW30jI7+vKyGM3nfncgzNlbxbP/cT
fPzl+Mnj8ZNv9NO22tRVi1WHuTx4e3x2eiYktFzKMishM1DLA1nNdj6vxzdc
xhgDPXn85BtbT1durqruqLjuunV79OjR7e3tpCnbuh0362qFs3w08wHbRxyo
XVezR0KSj/iXmy8eDQ0/ue6WPIe33749P+vt7vl1VfxYTWWZIJziXXlVtcP7
yw15PSn+1AidbdINefLNN1/ev4QNR+4+dlyBE8G6bhb1uMRdHM/9DgYSWZWb
8pdyUcqV2m66VXU3LlftzdPw/Y0QuJwxflzKvAZGKOtqNV83NZ/ofZ+v/vg0
MoHihf1IyKU4cw4yL15Xs+tyVbdLZSan9zGRQuYlt3RdTutF3clwH9dNuyUf
uZ9ifxKKvW5q/9Qv+09Vs7r6pax6X8omyuROfaI5YYK1fDF8FPJI2W3K2Ydq
wxvI0wDpKCO7Z7/CeS2r7aquNuPbairHiYUI77uqhcvGPZ9ta/y4d6jjenXT
CBeV6xtPZzlelHeVbG32tl1+gIevm0Yeu+rWA8ccvxMOPPCpHGHb5Z/XQjpy
n+YkHnkmfLts/rqo7m7rxaIul0JTq7ZZ479lPQ/PTMtuu5Q5z5P56e/wYTa9
H784GR9/9+LN+bv3b8/fnrx91aM9+T5S0rtN0zWzZkGWITsttPPdptmuP0k4
34FwytVV7+OzSfGXbY8uvoLIefyH+2/p7ReBwfD1j3iKa5tWIAMhlg+VnXCN
LZRHc0KIC9SVndpTIrT0qeLsThjIEjfsZTWvNjLFeXGcHDzv2Pciv25LkafH
q5ksXR4JAzWXqTh/gQ/r+5iWbckfJ+DAH6r+bflPXZVP7gF36vj49GVvM17V
q+3H4mWzFcmMq6DnXs9AAsmnB/jp4X1r4d3vj7Rz0k+e3n/MC/z4MvyWK1tv
qrZ9xG/G8SvhuCv5x6xqx911NTaRLp83l/yg1Pnj/l5mczn+7s35yU99WtAP
i7dy84rX20VXj42Fkhh6Ktt/bf2P//l/y/pvq4XcBlt+ebXqZndjuQ+/CJGO
u2bsSlb914ryebzkqpQsWq5KWE26KtnR+Vg0zPLDeN7criKrbOtFQw3j+Onx
0B16qlt1IF8fBk7xX9yje0j/H9yjRSkUch32CHPVJTnjSHesWpXTRTVuqxk2
QyRNJZyWTxvXUSExnlbdrYj2sD/cmh9ffCvay/EP59+Pf/yut0lRJlHTLn5s
Nh/q1VXGQX/THb+V/wtj8Sb/8eztm/HZyfcvXvdPBt8UZ7L4ZQlW9rqa12Vx
Luo+2dfzqp1t6ilmwQefN7MtdNK2OJD9F93x6b2X3JXVHzf11XVfif1+Uhyv
RPjctr0vvhXtdtt1TV+DFRnxvFqJ6tIjgcf3solfWjmDlgtTxgem98h+8ki/
ILGKkTQ+e/H+z6cnL/paJQ0o045akOxljc+jnjRgokELhUEHFerbJihXn2bs
fTtpQBc/FULbrKpuTB180HBr7VXjx0/+UxJhcLBHYZNO354P7c9pcy5nQwVy
YIewDe/k1lXCgrk/J81qJTdJJKH96P/HDaqb7n/L3sg4j2Aijsfjopy2+FmH
f0MPr20axW3ZFnOZ49VK1oqVX2+X5aqQR5tNOylO5RIFTavIWWzx//6v/0vM
7wp6ZFGtrupV1Y7k6U2FH9f4B/b1Wq7pRpjZB3nBPNxM+W1Rtq38qy1Kfen+
nrDrOW4xfrYqb+or4VGrq0mqgSiTKg5g5hwWIgs2fKYQcd4l69rf65p5eVdc
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
TKrNmEDopuAHFldlaxSbYVG1VgwatiZNpOH0v9vJwcjMDktre90Xb0al7pWc
a9qD3PJYz2nDZefCKtjjHICE1S8s85LbWyM7pVxVYoQvYkl/mE30BGvG/0YD
keEN1rcozCbrQGFp4nFyZZdHwx4+fHuPtP8sFXqU/P4kBACfYKXX8sJFlYaC
Yo4sCC9cqiwnYXLvwBjJO66pQ00WWYVS293L+CzJj7IqGA3PmrPFDsfh56Fo
f5LQw9KjQYm1WjxmIEWEr4GEa43xdGm2yKQYSK1WDS+tV1aHawL+doIQ/KWC
Pzo6kzZo5XrRU1zEmsJdfXI9nt6v1DuAH8qcHs/dWDDGiooSDUFGv2ivSi0r
h+t9R0gIemojZoCeZYl9JFQGQCz1YD85e9/2Ibxy5G/0shVXKjaz+NgfDuNt
WJHl3XsVkvRNZwnLch4SkhcGYXspM0DDFWvFogmsXkfeVqSIJgXYnJd3Cvoo
YhaZQtgTCFbUaUevMREXn3t/tFe6O1zO2+fTV4fFk8njSfGmMT7T96z2ku71
cjaLuWZjGMvWJKvZB5+ertW0p7Gc6Ey3xWDkCnYGD3vh/Z+EVcl+3FmMLjYa
WSwsbzPNiBTOb4qd1zUtKjvJOgIaiKoIwpeNghRblev2uukIJlxwn1tIiGUM
1vYScRW2wftBxwzcTjOLrbuwR0i484s7PW5/WfAsWuiBAoTr5FbE6WqqmP8s
1kY6OZhsTuGEshdputHznaCuVSj1cpKnKfX5q/K8EZKbCNdSWzkeJCE0slF2
x2qfFYNB43+iCqfM8R07PMHxyVE15/yTCQGW+hXy0JK8jxi2DGCJm4TVR8iL
odKqhLZjyoV3s0eNUqyL5v0JIxuIHkXMj4Sj3LigqTO4H8QnVjSKCPVds45T
U+LGdKNbJVt4OGzMaEgj1I3Y34s7Yam/cTgm++alIbT/2raZMZ06sdyxxGyv
1DmtBU66PIVFsglmytSKtcZYVlKXjd22n6o1lSDNxIYgSS634Vi657uyxDEL
MWknWuUUCBEhvwulBUGtTGcUTIUzV3zehyKzzFoIilGsSUs1/tgYTnjpCnyA
23ZTLrZVG+pKNwGpNcMlDN3MtUZbf6Qgxq6iWHxhfy8x9ViSNyl+YA6C/WjF
9CyejhNxoMgA4ciuxzHyIvxtkRZcBShFr6kQQVT0FhD5rYgd7Cw73SR5gWBF
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
/T9L7jFVsv0BAA==

-->

</rfc>
