located in
Asserts that the subject is geographically or logically situated within the object location.
proposed
Metadata/Linking
locatedIn
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": "located in",
"description": "Asserts that the subject is geographically or logically situated within the object location"
}
atom id
0x165f0f2f51314106e280a6e6a828dda617322e7ee861dfcdad42f3f1faf7c781
Semantics
Market patternattributive — describes the subject
Propertiestransitive · hierarchical
Recommended for
Classifications whose metadata vocabulary includes locatedIn:
Use it
// tree-shakeable: only this predicate ships in your bundle
import { locatedInId } from "@0xintuition/predicates/locatedIn";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.locatedIn; // 0x165f0f2f51314106e280a6e6a828dda617322e7ee861dfcdad42f3f1faf7c781
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"locatedIn",
objectId,
);
// triple.predicateId === 0x165f0f2f… — resolved from the registry