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.
{
"@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:
Article
→ url value
Brand
→ url value
Company
→ url value
Dataset
→ url value
Defined Term
→ url value
Image
→ url value
Job Posting
→ url value
Local Business
→ url value
Location
→ url value
Mobile Application
→ url value
News Article
→ url value
Person
→ url value
Podcast Episode
→ url value
Podcast Series
→ url value
Service
→ url value
Social Media Account
→ url value
Social Media Posting
→ url value
Software
→ url value
Software Application
→ url value
Thing
→ url value
Video Object
→ url value
Web Page
→ url value
Website
→ url value
Use it
// 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
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"url",
objectId,
);
// triple.predicateId === 0x71dbe597… — resolved from the registry