Predicates/Curation/Containment

sub event

The subject event contains the object event as a sub-event.

proposed Curation/Containment subEvent

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": "sub event",
  "description": "The subject event contains the object event as a sub-event"
}
atom id 0xcd49e0f14c378b8156a4b9cc583ae5bd539491c38e17be66285b08fd63be9c2f

Semantics

Market patternattributive — describes the subject
Propertiestransitive · hierarchical

Recommended for

Classifications whose metadata vocabulary includes subEvent:

Use it

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

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

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