Predicates/Curation/Containment

pinned in

The subject is pinned or highlighted within the object collection for prominent display.

proposed Curation/Containment pinnedIn

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": "pinned in",
  "description": "The subject is pinned or highlighted within the object collection for prominent display"
}
atom id 0xe85518b66264af0f9619ed2b71cfb6bfd07aa94aa6998a0c31d0e8f1fa00eea1

Semantics

Market patternattributive — describes the subject
Propertieshierarchical

Use it

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

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

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