brand
The subject product, service, or organization is associated with the object brand.
proposed
Identity/Classification
brand
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": "brand",
"description": "The subject product, service, or organization is associated with the object brand"
}
atom id
0xb4bff7194354fe3119bbf4c207a8128bd174242d728668f14e6d80fb05bff74d
Semantics
Market patternattributive — describes the subject
Examples
iPhone—brand→Apple
AWS—brand→Amazon Web Services
Recommended for
Classifications whose metadata vocabulary includes brand:
Use it
// tree-shakeable: only this predicate ships in your bundle
import { brandId } from "@0xintuition/predicates/brand";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.brand; // 0xb4bff7194354fe3119bbf4c207a8128bd174242d728668f14e6d80fb05bff74d
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"brand",
objectId,
);
// triple.predicateId === 0xb4bff719… — resolved from the registry