NTNames:residentPlace leaf node


URI

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

Label

resident place

Description

The location a person or group of people resides in. Range values may change over time: no attempt is made to capture this. Transient residence of very short duration is assumed to be visited, not resident. People addressed in a letter bound for a specific destination (e.g. the epistle of Paul to the Romans) are assumed to be resident there unless there is indication to the contrary (since the timing of a letter's arrival could not be determined with high precision).

Inherits from

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) NTNames:residentPlace 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#> .

:residentPlace a owl:ObjectProperty ;
    rdfs:label "resident place"@en ;
    rdfs:comment "The location a person or group of people resides in. Range values may change over time: no attempt is made to capture this. Transient residence of very short duration is assumed to be visited, not resident. People addressed in a letter bound for a specific destination (e.g. the epistle of Paul to the Romans) are assumed to be resident there unless there is indication to the contrary (since the timing of a letter's arrival could not be determined with high precision). "@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( :Human :GroupOfPeople ) ] ;
    rdfs:range :Region ;
    rdfs:subPropertyOf :visitedPlace ;
    owl:inverseOf :residentPlaceOf .