Every ontology in common use — BFO, DOLCE, Schema.org, the OBO Foundry — starts with a collection of primitive relations. Part-of, instance-of, participates-in, has-quality, depends-on. BFO has 36. DOLCE has more. Each comes with its own axioms, its own edge cases, its own arguments about whether part-of should be transitive across categories.
We show that you need exactly one: belongs-to.
Everything else — parthood, instantiation, participation, dependence, quality attribution — is belongs-to with a different quality attached. The quality tells you what kind of belonging it is. The relation itself is always the same.
How it works
An entity is anything that can belong to something or have something belong to it. A belonging is a triple: an entity (the dependent), another entity (the context it belongs to), and a quality (the kind of belonging). That's it. Three things.
A person belongs to a meeting (quality: participant). A heart belongs to a body (quality: part). A color belongs to a surface (quality: attribute). A student belongs to a class (quality: instance). The relation is always belongs-to. The quality disambiguates.
This means BFO's part-of is just belongs-to with a parthood quality. DOLCE's quale is belongs-to with a quale quality. Every one of their primitives reduces to the same single relation plus a distinguishing quality. We demonstrate this for 12 relations across both frameworks — 6 from BFO, 6 from DOLCE — and prove in Lean 4 that all 12 reductions are valid and that all 12 qualities are distinct.
The reflexive trick
Here's where it gets interesting. Qualities are entities. If a quality is an entity, then it can belong to things. And the quality of that belonging is itself a quality, which is itself an entity.
This sounds like infinite regress. It isn't. We prove that the reflexive closure terminates at depth 1. Qualities of qualities are just qualities. The system is self-grounding: five meta-qualities (instance, inverse, implies, transitive, applies-to) describe the behavior of all qualities, including themselves. They form a closed grammar.
This is not a philosophical convenience. It's a formal result: the meta-quality closure is finite, complete, and mechanically verified. No infinite tower. No external metalanguage. The system describes itself.
Social structure for free
Once you have belongings, social structure emerges without being stored. Two entities that share a context are co-participants. This gives you a graph — the situation graph — where edges represent shared belonging. It's symmetric (if A shares a context with B, B shares one with A). It's irreflexive (you can't co-participate with yourself). And it's grounded: every edge is witnessed by two explicit belongings.
The situation graph is never stored as its own data structure. It's a view over the belongings. This is a design principle, not a shortcut: the social structure is always derivable, always consistent with the raw data, and never stale.
Why this matters for AI
Every AI system that interacts with structured data needs an ontology, whether it admits it or not. The question is whether you inherit someone else's 36 primitives or build from one.
With one primitive, interoperability becomes trivial. Two systems that both use belongs-to can merge their data without a concept-alignment step. The quality tells you what kind of relationship it is; the structure is already shared. No mapping tables, no crosswalks, no ontology alignment workshops.
With reflexive grounding, the system can reason about its own structure without a separate metalanguage. A policy that says "this entity type requires approval before modification" is itself a belonging — a policy belongs to a domain with a governance quality. The system that enforces the policy is described by the same ontology as the data it governs.
One relation. Everything else is a quality of that relation. The simplicity is not a limitation — it is the point.All results mechanically verified in Lean 4: 5 modules, 12 reductions, reflexive closure termination, meta-quality completeness. Zero sorry axioms. Full details in "Belongs-To and Nothing Else: A Single-Primitive Relational Ontology" (Mainen 2026).