learned from
The subject acquired knowledge or skills from the object actor or resource. A directed knowledge-attribution edge.
proposed
Knowledge/Expertise
learnedFrom
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.
{
"@context": "https://schema.org/",
"@type": "DefinedTerm",
"name": "learned from",
"description": "The subject acquired knowledge or skills from the object actor or resource. A directed knowledge-attribution edge"
}
atom id
0x72e820cf62bac4cea99d2cc625f407587802749777a111f63561582dea43bc87
Semantics
Market patterndepositional — conviction accrues by staking
Use it
// tree-shakeable: only this predicate ships in your bundle
import { learnedFromId } from "@0xintuition/predicates/learnedFrom";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.learnedFrom; // 0x72e820cf62bac4cea99d2cc625f407587802749777a111f63561582dea43bc87
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"learnedFrom",
objectId,
);
// triple.predicateId === 0x72e820cf… — resolved from the registry