regulated by
The subject entity falls under the regulatory authority or jurisdiction of the object body.
proposed
Governance/Policy
regulatedBy
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.
{
"@context": "https://schema.org/",
"@type": "DefinedTerm",
"name": "regulated by",
"description": "The subject entity falls under the regulatory authority or jurisdiction of the object body"
}
atom id
0xa699796fe030cd54bec84c17883cfdf9805721306e6e2408d3f8516ae6fd31f4
Semantics
Market patternattributive — describes the subject
Use it
// tree-shakeable: only this predicate ships in your bundle
import { regulatedById } from "@0xintuition/predicates/regulatedBy";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.regulatedBy; // 0xa699796fe030cd54bec84c17883cfdf9805721306e6e2408d3f8516ae6fd31f4
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"regulatedBy",
objectId,
);
// triple.predicateId === 0xa699796f… — resolved from the registry