depend on
The subject requires or relies on the object to function or exist.
proposed
Curation/Containment
dependOn
Proposed — in the registry with a stable definition and a deterministic ID, but not yet promoted to the enshrined set. Semantics may still be refined before promotion.
Identity
A predicate is itself an atom. Its ID is derived from these exact bytes — the same value in your app, in anyone else's, and onchain.
{
"@context": "https://schema.org/",
"@type": "DefinedTerm",
"name": "depend on",
"description": "The subject requires or relies on the object to function or exist"
}
atom id
0xc74aa2d983b42f73f0114e775b6b9442fde072c7f3448cc01ced338e61532ce6
Semantics
Market patternattributive — describes the subject
Propertiestransitive
Use it
// tree-shakeable: only this predicate ships in your bundle
import { dependOnId } from "@0xintuition/predicates/dependOn";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.dependOn; // 0xc74aa2d983b42f73f0114e775b6b9442fde072c7f3448cc01ced338e61532ce6
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"dependOn",
objectId,
);
// triple.predicateId === 0xc74aa2d9… — resolved from the registry