schema:spatialCoverage leaf node


URI

http://schema.org/spatialCoverage

Label

spatialCoverage

Description

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.

Usage

DOMAINPROPERTYRANGE
schema:CreativeWork schema:spatialCoverage schema:Place

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/> .

schema:spatialCoverage a rdf:Property ;
    rdfs:label "spatialCoverage" ;
    schema:domainIncludes schema:CreativeWork ;
    schema:rangeIncludes schema: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.""" .