Predicates/Metadata/Linking

has source

Points to the authoritative origin or reference material for the subject.

proposed Metadata/Linking hasSource

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": "has source",
  "description": "Points to the authoritative origin or reference material for the subject"
}
atom id 0xbc4438d7673da79765cc523da63f715c42977c894211df31fedfbdd94bccef52

Semantics

Market patternattributive — describes the subject

Use it

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

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

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