NTNames:relativeOf


URI

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

Label

relative of

Description

A person who is related by kinship to this person. No attempt is made to delineate precisely which kinship relations qualify: this is used when a description indicates two people are "related". parent/child/siblingOf are subproperties of this, properly speaking.

Usage

DOMAINPROPERTYRANGE
NTNames:Human NTNames:relativeOf NTNames:Human

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#> .

:relativeOf a owl:ObjectProperty,
        owl:SymmetricProperty ;
    rdfs:label "relative of"@en ;
    rdfs:comment "A person who is related by kinship to this person. No attempt is made to delineate precisely which kinship relations qualify: this is used when a description indicates two people are \"related\". parent/child/siblingOf are subproperties of this, properly speaking. "@en ;
    rdfs:domain :Human ;
    rdfs:range :Human ;
    owl:inverseOf :relativeOf .