deprecated by
The subject is formally deprecated in favor of the object replacement. The subject still exists but is no longer recommended.
proposed
Temporal/Lifecycle
deprecatedBy
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": "deprecated by",
"description": "The subject is formally deprecated in favor of the object replacement. The subject still exists but is no longer recommended"
}
atom id
0xd52897e940e8b03a17259ded4810b96212522ad42f62ad477d26749343b0e969
Semantics
Market patternattributive — describes the subject
Use it
// tree-shakeable: only this predicate ships in your bundle
import { deprecatedById } from "@0xintuition/predicates/deprecatedBy";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.deprecatedBy; // 0xd52897e940e8b03a17259ded4810b96212522ad42f62ad477d26749343b0e969
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"deprecatedBy",
objectId,
);
// triple.predicateId === 0xd52897e9… — resolved from the registry