Predicates/Metadata/Linking

url

Links the subject atom to its canonical URL or web-addressable identifier.

enshrined Metadata/Linking url

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": "url",
  "description": "Links the subject atom to its canonical URL or web-addressable identifier"
}
atom id 0x71dbe59780ccedf37166aa55781573d8aea463285cdfe94a5b08ed5f474613a3

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes url:

Use it

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

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

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