http://schema.org/spatialCoverage
The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of
contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates
areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.
DOMAIN | PROPERTY | RANGE |
---|---|---|
schema1:CreativeWork | schema1:spatialCoverage | schema1:Place |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema1: <http://schema.org/> .
schema1:spatialCoverage a rdf:Property ;
rdfs:label "spatialCoverage" ;
schema1:domainIncludes schema1:CreativeWork ;
schema1:rangeIncludes schema1:Place ;
rdfs:comment """The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of
contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates
areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York.""" .