ranked above
The subject is explicitly ranked higher than the object within a shared ordering context.
proposed
Curation/Containment
rankedAbove
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": "ranked above",
"description": "The subject is explicitly ranked higher than the object within a shared ordering context"
}
atom id
0xad2cf8c1b6a55e3a820cf993f6de90dd8aa03a77c850e62c2910f3e8e26bc838
Semantics
Market patterncomparative — ranks subject against object
Use it
// tree-shakeable: only this predicate ships in your bundle
import { rankedAboveId } from "@0xintuition/predicates/rankedAbove";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.rankedAbove; // 0xad2cf8c1b6a55e3a820cf993f6de90dd8aa03a77c850e62c2910f3e8e26bc838
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"rankedAbove",
objectId,
);
// triple.predicateId === 0xad2cf8c1… — resolved from the registry