Predicates/Domain-Specific

compatible with

The subject works correctly or interoperates with the object system, standard, or platform.

proposed Domain-Specific compatibleWith

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": "compatible with",
  "description": "The subject works correctly or interoperates with the object system, standard, or platform"
}
atom id 0x7cc0975a6e368c14bf4b64d33befd656b6091ba7a4686d4a8e250b39e43d475d

Semantics

Market patternattributive — describes the subject
Propertiessymmetric

Recommended for

Classifications whose metadata vocabulary includes compatibleWith:

Use it

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

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

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