Predicates/Knowledge/Expertise

student of

The subject is learning from or apprenticed under the object person or institution. The inverse of 'mentor of'.

proposed Knowledge/Expertise studentOf

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": "student of",
  "description": "The subject is learning from or apprenticed under the object person or institution. The inverse of 'mentor of'"
}
atom id 0xe6486e0a020bd559a4638e03dbd20806d61f197036a818d7ed002a10cb18c0a3

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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