@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .

dcterms:spatial a owl:ObjectProperty ;
    rdfs:label "has spatial coverage" ;
    vann:example """
        :my-dataset
                dcterms:spatial :my-dataset-location .

        :my-dataset-location a geo:Feature .
        """ ;
    vaem:rationale """
This is used to link a resource with a geographical feature (such as its location), i.e., an individual of the class `geo:Feature`.
        """@en ;
    rdfs:comment "Spatial characteristics of the resource."@en ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:subPropertyOf dcterms:coverage ;
    vs:term_status reg:statusStable .

