http://semanticbible.org/ns/2006/NTNames#visitedPlace
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).
DOMAIN | PROPERTY | RANGE |
---|---|---|
Blank node (see implementation) | NTNames:visitedPlace | NTNames:Region |
@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 .