Predicates/Affiliation/Membership

founder

The subject organization or business was founded by the object person or organization.

proposed Affiliation/Membership founder

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": "founder",
  "description": "The subject organization or business was founded by the object person or organization"
}
atom id 0x12798cbb0392c40e4e46c692ee94c7345032a9a4970e26c4821920cd12832591

Semantics

Market patternattributive — describes the subject
Inversefounded

Recommended for

Classifications whose metadata vocabulary includes founder:

Use it

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

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

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