Predicates/Provenance/Evidence

disputed by

The subject claim is challenged or contradicted by the object counter-evidence or actor.

proposed Provenance/Evidence disputedBy

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": "disputed by",
  "description": "The subject claim is challenged or contradicted by the object counter-evidence or actor"
}
atom id 0xc612acf846c25ad4241856dc8ceceeb3fce64357dd566e0caa4295b9974172c0

Semantics

Market patternattributive — describes the subject

Use it

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

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

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