Predicates/Authorship/Contribution

performer

The subject event or creative work includes the object performer.

proposed Authorship/Contribution performer

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": "performer",
  "description": "The subject event or creative work includes the object performer"
}
atom id 0xfcf209b610d68918af7dac25c3d568eb769af4d71e9f750caec0e25679a6adb2

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes performer:

Use it

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

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

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