Predicates/Comparison/Ranking

worse than

The subject is asserted as subjectively inferior to the object. The inverse of 'better than'.

proposed Comparison/Ranking worseThan

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.

predicate atom data
{
  "@context": "https://schema.org/",
  "@type": "DefinedTerm",
  "name": "worse than",
  "description": "The subject is asserted as subjectively inferior to the object. The inverse of 'better than'"
}
atom id 0xbd3a5761ee94d989d602dfc45ed6946d4b242746b8999aac2b67acce8a840736

Semantics

Market patterncomparative — ranks subject against object

Use it

import
// tree-shakeable: only this predicate ships in your bundle
import { worseThanId } from "@0xintuition/predicates/worseThan";

// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.worseThan; // 0xbd3a5761ee94d989d602dfc45ed6946d4b242746b8999aac2b67acce8a840736
make a claim
import { buildTripleByName } from "@0xintuition/primitives/triple";

const { value: triple } = buildTripleByName(
	subjectId,
	"worseThan",
	objectId,
);
// triple.predicateId === 0xbd3a5761… — resolved from the registry