preceded by
The subject event or state was preceded by the object event or state in a temporal sequence.
proposed
Temporal/Lifecycle
precededBy
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": "preceded by",
"description": "The subject event or state was preceded by the object event or state in a temporal sequence"
}
atom id
0x18c52e78123f0d1e77b1098bf2c469bcd944dd38a9a8ec34b709188def806ef4
Semantics
Market patternattributive — describes the subject
Propertiestransitive
Use it
// tree-shakeable: only this predicate ships in your bundle
import { precededById } from "@0xintuition/predicates/precededBy";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.precededBy; // 0x18c52e78123f0d1e77b1098bf2c469bcd944dd38a9a8ec34b709188def806ef4
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"precededBy",
objectId,
);
// triple.predicateId === 0x18c52e78… — resolved from the registry