Predicates/Curation/Containment

track

The subject music album, playlist, or group includes the object music recording as a track.

proposed Curation/Containment track

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": "track",
  "description": "The subject music album, playlist, or group includes the object music recording as a track"
}
atom id 0x144c129178c900adc2624ed7f85313979c955266f3b4fa56bc54c55fb1855396

Semantics

Market patternattributive — describes the subject
Propertieshierarchical

Recommended for

Classifications whose metadata vocabulary includes track:

Use it

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

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

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