Predicates/Identity/Classification

same as

Declares that the subject and object refer to the same real-world entity across representations, naming systems, or aliases. Symmetric and transitive — use for identity resolution, duplicate collapsing, and alternate-name mapping.

enshrined Identity/Classification sameAs

Enshrined — the object model is decided and the ID below is what every conforming app and the contract resolve.

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": "same as",
  "description": "Declares that the subject and object refer to the same real-world entity across representations, naming systems, or aliases. Symmetric and transitive — use for identity resolution, duplicate collapsing, and alternate-name mapping"
}
atom id 0x13fa59de1639343483dd3c864cf585b571fe43b67e0ce9c2335a803c4e8f7348

Semantics

Market patternattributive — describes the subject
Propertiestransitive · symmetric

Examples

ETHsame asEther
vitalik.ethsame asVitalik Buterin

Recommended for

Classifications whose metadata vocabulary includes sameAs:

Use it

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

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

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