Predicates/Authorship/Contribution

manufacturer

The subject product was manufactured by the object organization.

proposed Authorship/Contribution manufacturer

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.

predicate atom data
{
  "@context": "https://schema.org/",
  "@type": "DefinedTerm",
  "name": "manufacturer",
  "description": "The subject product was manufactured by the object organization"
}
atom id 0x33138cc38f644287fbf03a4d06dc4c83ff7b64d7679f9239d3c7a35cc73e4f2a

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes manufacturer:

Use it

import
// tree-shakeable: only this predicate ships in your bundle
import { manufacturerId } from "@0xintuition/predicates/manufacturer";

// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.manufacturer; // 0x33138cc38f644287fbf03a4d06dc4c83ff7b64d7679f9239d3c7a35cc73e4f2a
make a claim
import { buildTripleByName } from "@0xintuition/primitives/triple";

const { value: triple } = buildTripleByName(
	subjectId,
	"manufacturer",
	objectId,
);
// triple.predicateId === 0x33138cc3… — resolved from the registry