item reviewed
The subject review or aggregate rating evaluates the object item.
proposed
Social/Reputation
itemReviewed
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": "item reviewed",
"description": "The subject review or aggregate rating evaluates the object item"
}
atom id
0x483aae34762186dd047937e9571b79f01378d9ace06c5a79ce4a31708c9546c6
Semantics
Market patternattributive — describes the subject
Recommended for
Classifications whose metadata vocabulary includes itemReviewed:
Use it
// tree-shakeable: only this predicate ships in your bundle
import { itemReviewedId } from "@0xintuition/predicates/itemReviewed";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.itemReviewed; // 0x483aae34762186dd047937e9571b79f01378d9ace06c5a79ce4a31708c9546c6
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"itemReviewed",
objectId,
);
// triple.predicateId === 0x483aae34… — resolved from the registry