Predicates/Affiliation/Membership

alumni of

The subject person is an alumnus of the object organization.

proposed Affiliation/Membership alumniOf

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": "alumni of",
  "description": "The subject person is an alumnus of the object organization"
}
atom id 0x45e98e5eef934cae066c53a0af0195e78b2c6e2c1c2077aad31466763782507c

Semantics

Market patterndepositional — conviction accrues by staking

Recommended for

Classifications whose metadata vocabulary includes alumniOf:

Use it

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

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

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