schema:sameAs leaf node


URI

http://schema.org/sameAs

Label

sameAs

Description

URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.

Usage

DOMAINPROPERTYRANGE
schema:Thing schema:sameAs 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:sameAs a rdf:Property ;
    rdfs:label "sameAs" ;
    schema:domainIncludes schema:Thing ;
    schema:rangeIncludes sh:IRI ;
    rdfs:comment "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website." .