Predicates/Curation/Containment

curated by

The subject collection or content set is maintained and organized by the object actor.

enshrined Curation/Containment curatedBy

Enshrined — the object model is decided and the ID below is what every conforming app and the contract resolve.

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": "curated by",
  "description": "The subject collection or content set is maintained and organized by the object actor"
}
atom id 0x0eeaeab1a9342622fe04b414f1bbb75d9528f491cdd1568bb7b08d708087d7bf

Semantics

Market patternattributive — describes the subject

Use it

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

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

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