NTNames:siblingOf leaf node


URI

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

Label

sibling of

Description

Similar to http://purl.org/vocab/relationship vocabulary, but with different domain and range.

Inherits from

Usage

DOMAINPROPERTYRANGE
NTNames:Human NTNames:siblingOf 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#> .

:siblingOf a owl:ObjectProperty,
        owl:SymmetricProperty,
        owl:TransitiveProperty ;
    rdfs:label "sibling of"@en ;
    rdfs:comment "Similar to http://purl.org/vocab/relationship vocabulary, but with different domain and range."@en ;
    rdfs:domain :Human ;
    rdfs:range :Human ;
    rdfs:subPropertyOf :relativeOf ;
    owl:inverseOf :siblingOf .