available on
Indicates the subject can be accessed, purchased, or used on the object platform or chain.
proposed
Metadata/Linking
availableOn
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": "available on",
"description": "Indicates the subject can be accessed, purchased, or used on the object platform or chain"
}
atom id
0xea46b891287568210d4614fdb31147cd009ad6d7731657c5341889b3789eceeb
Semantics
Market patternattributive — describes the subject
Recommended for
Classifications whose metadata vocabulary includes availableOn:
Use it
// tree-shakeable: only this predicate ships in your bundle
import { availableOnId } from "@0xintuition/predicates/availableOn";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.availableOn; // 0xea46b891287568210d4614fdb31147cd009ad6d7731657c5341889b3789eceeb
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"availableOn",
objectId,
);
// triple.predicateId === 0xea46b891… — resolved from the registry