supersede
The subject is the designated replacement for the object. Implies the object is deprecated or obsolete.
proposed
Comparison/Ranking
supersede
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": "supersede",
"description": "The subject is the designated replacement for the object. Implies the object is deprecated or obsolete"
}
atom id
0x4ef2f2cb0d54a6ebdbdd7847c7b824ad0c2ef22f6b5db42f26c6f278fdc89131
Semantics
Market patterncomparative — ranks subject against object
Use it
// tree-shakeable: only this predicate ships in your bundle
import { supersedeId } from "@0xintuition/predicates/supersede";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.supersede; // 0x4ef2f2cb0d54a6ebdbdd7847c7b824ad0c2ef22f6b5db42f26c6f278fdc89131
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"supersede",
objectId,
);
// triple.predicateId === 0x4ef2f2cb… — resolved from the registry