NTNames:spouseOf leaf node


URI

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

Label

spouse of

Description

Similar to http://purl.org/vocab/relationship vocabulary, but with different domain and range. Multiple spouses are all included, whether sequential (Herodias) or simultaneous (the woman at the well).

Usage

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

:spouseOf a owl:ObjectProperty,
        owl:SymmetricProperty ;
    rdfs:label "spouse of"@en ;
    rdfs:comment "Similar to http://purl.org/vocab/relationship vocabulary, but with different domain and range. Multiple spouses are all included, whether sequential (Herodias) or simultaneous (the woman at the well). "@en ;
    rdfs:domain :Human ;
    rdfs:range :Human ;
    owl:inverseOf :spouseOf .