Predicates/Affiliation/Membership

branch of

The subject local business is a branch of the object organization.

proposed Affiliation/Membership branchOf

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": "branch of",
  "description": "The subject local business is a branch of the object organization"
}
atom id 0x5ec48ef77880acba5d340787e32107171df17fc9b354483fe13ec4b73aa2148c

Semantics

Market patternattributive — describes the subject
Propertieshierarchical

Recommended for

Classifications whose metadata vocabulary includes branchOf:

Use it

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

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

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