NTNames:visitedPlace


URI

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

Label

visited place

Description

Places that a human visited. For current purposes, only instances which are explicitly mentioned in Scripture are included, not those that might be inferred (e.g. if going from from A to B implies visiting C, C would not be listed).

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) NTNames:visitedPlace NTNames:Region

Implementation

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

:visitedPlace a owl:ObjectProperty ;
    rdfs:label "visited place"@en ;
    rdfs:comment "Places that a human visited. For current purposes, only instances which are explicitly mentioned in Scripture are included, not those that might be inferred (e.g. if going from from A to B implies visiting C, C would not be listed). "@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( :Human :GroupOfPeople ) ] ;
    rdfs:range :Region ;
    owl:inverseOf :visitedPlaceOf .