target product
The subject software source code targets or produces the object software application.
proposed
Metadata/Linking
targetProduct
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": "target product",
"description": "The subject software source code targets or produces the object software application"
}
atom id
0x4358665d150cde6db0e40ffa4aa4715855028a775e1f67a78ef07033ee8a0cca
Semantics
Market patternattributive — describes the subject
Use it
// tree-shakeable: only this predicate ships in your bundle
import { targetProductId } from "@0xintuition/predicates/targetProduct";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.targetProduct; // 0x4358665d150cde6db0e40ffa4aa4715855028a775e1f67a78ef07033ee8a0cca
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"targetProduct",
objectId,
);
// triple.predicateId === 0x4358665d… — resolved from the registry