Predicates/Curation/Containment

part of series

The subject episode or creative work belongs to the object series.

proposed Curation/Containment partOfSeries

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": "part of series",
  "description": "The subject episode or creative work belongs to the object series"
}
atom id 0xe8cbe7b41fa96e8057cdbe5283041981ba4c9fd050e13d357723979d5ae9568d

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes partOfSeries:

Use it

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

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

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