compete with
The subject and object are direct competitors in the same market or category.
proposed
Comparison/Ranking
competeWith
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": "compete with",
"description": "The subject and object are direct competitors in the same market or category"
}
atom id
0x9ec407d56a32528625f3682bce413fc56d60659b7124aa75e12df30538e255a4
Semantics
Market patterncomparative — ranks subject against object
Propertiessymmetric
Use it
// tree-shakeable: only this predicate ships in your bundle
import { competeWithId } from "@0xintuition/predicates/competeWith";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.competeWith; // 0x9ec407d56a32528625f3682bce413fc56d60659b7124aa75e12df30538e255a4
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"competeWith",
objectId,
);
// triple.predicateId === 0x9ec407d5… — resolved from the registry