NTNames:location leaf node


URI

http://semanticbible.org/ns/2006/NTNames#location

Label

location

Description

The location property relates a GeographicArea to a GeographicLocation. Each GeographicArea is assumed to have only one location, and no GeographicAreas share a location.

Usage

DOMAINPROPERTYRANGE
NTNames:GeographicArea NTNames:location NTNames:GeographicLocation

Implementation

@prefix : <http://semanticbible.org/ns/2006/NTNames#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

:location a owl:FunctionalProperty,
        owl:InverseFunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "location"@en ;
    rdfs:comment "The location property relates a GeographicArea to a GeographicLocation. Each GeographicArea is assumed to have only one location, and no GeographicAreas share a location. "@en ;
    rdfs:domain :GeographicArea ;
    rdfs:range :GeographicLocation ;
    owl:inverseOf :locationOf .