contained in place
The subject place or local business is contained within the object place.
proposed
Curation/Containment
containedInPlace
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": "contained in place",
"description": "The subject place or local business is contained within the object place"
}
atom id
0x5a26a9bd3ae73815e33de43ff44356bd60b19ed3fb243023d4318def9ce620fc
Semantics
Market patternattributive — describes the subject
Propertiestransitive · hierarchical
Recommended for
Classifications whose metadata vocabulary includes containedInPlace:
Use it
// tree-shakeable: only this predicate ships in your bundle
import { containedInPlaceId } from "@0xintuition/predicates/containedInPlace";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.containedInPlace; // 0x5a26a9bd3ae73815e33de43ff44356bd60b19ed3fb243023d4318def9ce620fc
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"containedInPlace",
objectId,
);
// triple.predicateId === 0x5a26a9bd… — resolved from the registry