triggered
The subject event or action directly caused the object consequence or chain of events.
proposed
Temporal/Lifecycle
triggered
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": "triggered",
"description": "The subject event or action directly caused the object consequence or chain of events"
}
atom id
0x2fef13ca888b1135a57a381aff5d78293402f51202f3a226a9f50ed9652af802
Semantics
Market patternattributive — describes the subject
Use it
// tree-shakeable: only this predicate ships in your bundle
import { triggeredId } from "@0xintuition/predicates/triggered";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.triggered; // 0x2fef13ca888b1135a57a381aff5d78293402f51202f3a226a9f50ed9652af802
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"triggered",
objectId,
);
// triple.predicateId === 0x2fef13ca… — resolved from the registry