Predicates/Affiliation/Membership

parent organization

The subject organization is a child or subsidiary of the object organization.

proposed Affiliation/Membership parentOrganization

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": "parent organization",
  "description": "The subject organization is a child or subsidiary of the object organization"
}
atom id 0x5d93f5ba8db84190cc557cc9288caf032206e9c880c9a16e5333af2067fdc59c

Semantics

Market patternattributive — describes the subject
Propertiestransitive · hierarchical

Recommended for

Classifications whose metadata vocabulary includes parentOrganization:

Use it

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

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

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