Machine-readable exports of the ontology and its drift report. Per-concept artifacts also live at /concept/<slug>.jsonld and the dereferenceable URI https://ontology.dev.hiolly.com/concept/<slug> (content-negotiated via Accept: application/ld+json or text/turtle).
Full graph: every concept, relation, alignment, and the namespace context.
The reconciler diffs ontology claims against scanned code reality (OpenAPI, Postgres, Kafka protos, MCP tools). See the drift dashboard for the rendered view.
JSON Schema (draft-2020-12) describing every field in a concept YAML file. VS Code's yaml-language-server picks this up automatically — open any ontology/concepts/**/*.yaml file and get red squiggles for typos and unknown keys at author time. The schema annotation (# yaml-language-server: $schema=...) is already present on every concept file in the repo.
The YAML source-of-truth lives in ontology/ on GitHub. Per-concept Spec tabs serve the raw YAML at /spec/<slug>.yaml.
Examples for fetching a single concept by IRI:
# JSON-LD
curl -H 'Accept: application/ld+json' https://ontology.dev.hiolly.com/concept/policy
# Turtle
curl -H 'Accept: text/turtle' https://ontology.dev.hiolly.com/concept/policy
# Direct
curl https://ontology.dev.hiolly.com/concept/policy.jsonld