Predicates/Affiliation/Membership

founded

The subject actor established or co-founded the object organization or project.

proposed Affiliation/Membership founded

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": "founded",
  "description": "The subject actor established or co-founded the object organization or project"
}
atom id 0xcbcfeb175813f275b952eb9df762bef10fe90e16bc8bbc1b1b21a2565b7ad16b

Semantics

Market patternattributive — describes the subject
Inversefounder

Recommended for

Classifications whose metadata vocabulary includes founded:

Use it

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

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

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