Preview release. These docs are a work in progress. Pages are still being written, links may break, and structure may shift without notice. Treat everything here as a draft and report issues on GitHub.
Architecture overview
The registry stack is organized around two layers: a portable metadata layer and a runtime services layer. The metadata layer (Registry Manifest) compiles and renders discovery artifacts that describe what a registry exposes, without touching production sources. The runtime services layer (Registry Relay, Registry Notary) binds those artifacts to real data, enforces access control, evaluates claims, serves delegated evaluation between trusted Notaries, and issues credentials. Registry Platform provides shared Rust primitives consumed by both runtime services. Registry Atlas inspects the published artifacts. Registry Lab runs all services together in a local demo.
This split matters because it separates the obligation to describe (what a registry declares it can expose and under what policy) from the obligation to enforce (what a running service will actually return to an authorized caller). A reviewer can audit the portable metadata bundle before any runtime service is deployed. An integrator can validate schemas and claim shapes offline. A governance team can publish updated policy documents without touching deployment config.
Data and contract flow
Section titled “Data and contract flow”- Registry Platform provides reusable security and operational primitives consumed by runtime services.
- A metadata manifest (
registry-manifest/v1schema) describes datasets, entities, fields, policies, and evidence offerings. - Registry Manifest compiles and validates the manifest, then renders a static discovery bundle
(catalog, DCAT, SHACL, JSON Schemas, OGC Records items, policies, evidence-offering metadata,
and an
index.json). - Registry Relay starts with runtime config that binds the manifest’s logical datasets and entities to actual data sources. Clients reach entity routes, metadata routes, and evidence-offering endpoints through configured auth.
- Registry Notary evaluates claims against configured HTTP sources (
registry_data_apiordciconnectors). It renders results asapplication/vnd.registry-notary.claim-result+json, CCCEV-shaped JSON-LD (application/ld+json; profile="cccev"), or SD-JWT VCs (application/dc+sd-jwt). - A trusted Registry Notary can call another trusted Registry Notary through
POST /federation/v1/evaluationsfor signed delegated evaluation. Registry Manifest can publish discovery metadata for that relationship, but local Notary peer policy grants access. - Registry Atlas fetches published catalog and discovery artifacts through its proxy, classifies them by artifact kind, and runs strict capability queries over the indexed metadata terms.
For what each project does and does not own, see ownership boundaries and map.
- Publishing pipeline explains the metadata compilation and artifact rendering path.
- Consultation flow explains how Registry Relay serves authorized callers and scopes metadata by caller visibility.
- Evidence issuance explains claim evaluation, disclosure policy, delegated evaluation, and credential issuance in Registry Notary.