Predicates/Comparison/Ranking

equivalent to

The subject and object are functionally interchangeable or at parity. Distinct from 'same as' — the entities are different but serve the same role.

proposed Comparison/Ranking equivalentTo

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": "equivalent to",
  "description": "The subject and object are functionally interchangeable or at parity. Distinct from 'same as' — the entities are different but serve the same role"
}
atom id 0x4c8820a3facf2bb8ed499a01dce9e5367363024166ff42bff0ebb19829d2f1e9

Semantics

Market patterncomparative — ranks subject against object
Propertiestransitive · symmetric

Use it

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

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

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