Predicates/Affiliation/Membership

employed by

The subject person is employed by the object organization.

proposed Affiliation/Membership employedBy

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": "employed by",
  "description": "The subject person is employed by the object organization"
}
atom id 0x89968d0be91dc584b7747967541df3947129cb107b5fb97e79a4c8305eb2356e

Semantics

Market patterndepositional — conviction accrues by staking

Recommended for

Classifications whose metadata vocabulary includes employedBy:

Use it

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

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

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