http://semanticbible.org/ns/2006/NTNames#nativePlace
Birthplace, or place in which a person grows up. Unlike residentOf, only one possible value. residentPlace is to be preferred unless the birthplace relationship is clearly identified.
DOMAIN | PROPERTY | RANGE |
---|---|---|
Blank node (see implementation) | NTNames:nativePlace | 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#> .
:nativePlace a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:label "native place"@en ;
rdfs:comment "Birthplace, or place in which a person grows up. Unlike residentOf, only one possible value. residentPlace is to be preferred unless the birthplace relationship is clearly identified."@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( :Human :GroupOfPeople ) ] ;
rdfs:range :Region ;
rdfs:subPropertyOf :visitedPlace ;
owl:inverseOf :nativePlaceOf .