Predicates/Provenance/Evidence

cited by

The subject work is referenced or cited in the object work. A backward citation link.

proposed Provenance/Evidence citedBy

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": "cited by",
  "description": "The subject work is referenced or cited in the object work. A backward citation link"
}
atom id 0xb9c12eaf5fb5c952ec1a25d993f49e8dc5027708d02bcb47ab077c02930a6d35

Semantics

Market patternattributive — describes the subject
Inversereference

Use it

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

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

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