Predicates/Affiliation/Membership

music group member

The subject music group includes the object person as a member.

proposed Affiliation/Membership musicGroupMember

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": "music group member",
  "description": "The subject music group includes the object person as a member"
}
atom id 0xdd76a1d3493af1c7025099650ae515cc1ad12a0e5d44be82d6a436dc790e61ef

Semantics

Market patternattributive — describes the subject
Propertieshierarchical

Recommended for

Classifications whose metadata vocabulary includes musicGroupMember:

Use it

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

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

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