software add on
The subject software application supports the object software application as an add-on.
proposed
Domain-Specific
softwareAddOn
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": "software add on",
"description": "The subject software application supports the object software application as an add-on"
}
atom id
0x5e264c12e3d97061d9c9562f296ae1f31b806fd90cddd5a7cddd8e0f17008bee
Semantics
Market patternattributive — describes the subject
Recommended for
Classifications whose metadata vocabulary includes softwareAddOn:
Use it
// tree-shakeable: only this predicate ships in your bundle
import { softwareAddOnId } from "@0xintuition/predicates/softwareAddOn";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.softwareAddOn; // 0x5e264c12e3d97061d9c9562f296ae1f31b806fd90cddd5a7cddd8e0f17008bee
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"softwareAddOn",
objectId,
);
// triple.predicateId === 0x5e264c12… — resolved from the registry