Predicates/Authorship/Contribution

inspired by

The subject was creatively or conceptually influenced by the object without direct derivation.

proposed Authorship/Contribution inspiredBy

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": "inspired by",
  "description": "The subject was creatively or conceptually influenced by the object without direct derivation"
}
atom id 0x358bba81484329400267a570e59d4f18ff1f7b7be825cc58033b2907b6dd39ca

Semantics

Market patternattributive — describes the subject

Use it

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

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

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