Predicates/Authorship/Contribution

publisher

The subject creative work or dataset was published by the object person or organization.

proposed Authorship/Contribution publisher

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": "publisher",
  "description": "The subject creative work or dataset was published by the object person or organization"
}
atom id 0x1b3ba08e8f437a820dce9077ed0f5b853bc7c4ddc46bb3961dc9a902180ac90b

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes publisher:

Use it

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

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

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