Mirror Federation

Mirror federation is the mechanism by which multiple Mirror endpoints — operated by independent publishers across different domains and organisations — are discovered, aggregated, and queried as a coherent network without central coordination.

This is defined in P64 and P65.


The problem federation solves

A single publisher’s Mirror at /.well-known/aiep/ is useful in isolation. But the value of AIEP scales with the number of publishers. An AI agent that must query each domain individually cannot build a cross-organisation evidence picture efficiently.

Without federation:

  • An AI agent querying a pharmaceutical company’s Mirror has no automatic way to discover the independent clinical auditor’s Mirror that corroborates it
  • A regulator cannot query all regulated entities in a sector from a single starting point
  • A compliance team cannot aggregate evidence from subsidiaries across jurisdictions without manual configuration

Mirror federation solves this by allowing publishers to declare, in machine-readable form, which other Mirrors they federate with — and at what trust level.


How federation works

StepWhat happens
1Publisher A declares a federation.json manifest at /.well-known/aiep/federation.json
2The manifest lists every Mirror A federates with: domain, trust level, scope, last verified timestamp
3A retrieval agent queries A’s Mirror, discovers federation.json
4The agent traverses each federated Mirror in the manifest
5Results from all federated Mirrors are assembled into a unified result set
6Each result carries its originating Mirror’s issuer_did — provenance is never masked
7The agent weights results by the trust level declared in A’s federation manifest

The federation manifest

Published at /.well-known/aiep/federation.json:

FieldPurpose
federation_versionFederation protocol version
federates_withArray of federated Mirror declarations (see below)
federation_scopeWhich artefact types are federated: ALL or specific schema types
trust_modelHow federated results are weighted: EQUAL, WEIGHTED, or ISSUER_REGISTRY
manifest_hashSHA-256 of this manifest in canonical form
manifest_signaturePublisher signature over manifest_hash

Each entry in federates_with:

FieldPurpose
mirror_domainDomain of the federated Mirror
trust_levelHIGH, STANDARD, or LOW
scopeWhich artefact types to include from this Mirror
last_verifiedISO 8601 timestamp of most recent verification of this federation link

Trust levels

LevelWhat it requiresEffect on aggregated results
HIGHFederated Mirror is a registered certified AIEP publisher — DID resolvable from registryFull weight contribution to evidence aggregation
STANDARDMirror is structurally conformant — discovery files valid, schema conformance verifiedStandard weight contribution
LOWMirror is known but not validated by declaring publisherResults included but flagged unverified_federation

A retrieval agent may apply its own trust policy on top of the declaring publisher’s manifest. An enterprise deployment may refuse to include LOW trust results entirely, regardless of what the declaring publisher permits.


Global Mirror Registry (P65)

P65 defines the global federation registry — a machine-readable index of all known AIEP Mirrors:

EndpointContents
/.well-known/aiep/registry/mirrors.jsonIndex of all registered Mirror endpoints
/.well-known/aiep/registry/mirrors/<domain>.jsonIndividual Mirror registration record with certification level, artefact types, and last verified timestamp

Registration is open. Any conformant Mirror can register. Registration is distinct from certification — a Mirror can be listed in the registry at STANDARD level without being a certified issuer.


Use cases

Use caseHow federation applies
Enterprise complianceAggregate compliance evidence from subsidiaries and third-party auditors, verified against each issuer DID
Regulated sector oversightA regulator federates the Mirrors of all regulated entities and queries across the sector in a single traversal
Clinical trial aggregationFederate trial site Mirrors under the principal investigator’s Mirror to assemble multi-site evidence
Supply chain provenanceQuery all supplier Mirrors starting from the primary supplier’s federation manifest
AI knowledge retrievalAn AI agent discovers the full relevant Mirror network for a domain query from a single well-known entry point

Patents

  • P64 — Mirror Federation Protocol and Trust Level Declaration. Filed November 2025.
  • P65 — Global Mirror Registry. Filed November 2025.