Predicates/Authorship/Contribution

by artist

The subject music work was created or performed by the object artist.

proposed Authorship/Contribution byArtist

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": "by artist",
  "description": "The subject music work was created or performed by the object artist"
}
atom id 0x13d5d4ad6ae3a4e1b5043141b6ce4633c2df4646eaefc9e45eba899c45ce235b

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes byArtist:

Use it

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

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

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