schema:url leaf node


URI

http://schema.org/url

Label

url

Description

URL of the item.

Usage

DOMAINPROPERTYRANGE
schema:Thing schema:url sh:IRI

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .

schema:url a rdf:Property ;
    rdfs:label "url" ;
    schema:domainIncludes schema:Thing ;
    schema:rangeIncludes sh:IRI ;
    rdfs:comment "URL of the item." .