Predicates/Domain-Specific

governed by

The subject protocol, contract, or entity is under the governance authority of the object.

proposed Domain-Specific governedBy

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": "governed by",
  "description": "The subject protocol, contract, or entity is under the governance authority of the object"
}
atom id 0x3faa6781f4475e91fecce9a5aba7fbb9b31bbacdb1e3d6313ec353764d75a21f

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes governedBy:

Use it

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

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

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