reviewed by
The subject page or work was reviewed by the object person or organization.
proposed
Social/Reputation
reviewedBy
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": "reviewed by",
"description": "The subject page or work was reviewed by the object person or organization"
}
atom id
0x28e649797ca059be09c524658e3b48bb9e05826e4679b0d6c3b53b613ba617d0
Semantics
Market patternattributive — describes the subject
Use it
// tree-shakeable: only this predicate ships in your bundle
import { reviewedById } from "@0xintuition/predicates/reviewedBy";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.reviewedBy; // 0x28e649797ca059be09c524658e3b48bb9e05826e4679b0d6c3b53b613ba617d0
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"reviewedBy",
objectId,
);
// triple.predicateId === 0x28e64979… — resolved from the registry