http://semanticbible.org/ns/2006/NTNames#knows
"A person known by this person (indicating some level of reciprocated interaction between the parties)", similar to http://purl.org/vocab/relationship vocabulary, but with different domain and range. Therefore this is a symmetric relationship: if I know you, you also know me (or else we don't "know" each other in this sense).
DOMAIN | PROPERTY | RANGE |
---|---|---|
NTNames:Human | NTNames:knows | NTNames:Human |
@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#> .
:knows a owl:ObjectProperty,
owl:SymmetricProperty ;
rdfs:label "knows"@en ;
rdfs:comment "\"A person known by this person (indicating some level of reciprocated interaction between the parties)\", similar to http://purl.org/vocab/relationship vocabulary, but with different domain and range. Therefore this is a symmetric relationship: if I know you, you also know me (or else we don't \"know\" each other in this sense). "@en ;
rdfs:domain :Human ;
rdfs:range :Human ;
owl:inverseOf :knows .