Predicates/Metadata/Linking

trailer

The subject media work has the object video as its trailer.

proposed Metadata/Linking trailer

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": "trailer",
  "description": "The subject media work has the object video as its trailer"
}
atom id 0x498107ee5d558569166098517065b028b478ffe177d1d13bc50d8251814b0ab5

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes trailer:

Use it

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

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

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