IRI: https://w3id.org/MON/person.owl#fatherInLaw
@prefix : <https://w3id.org/MON/person.owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
:fatherInLaw a owl:ObjectProperty ;
rdfs:label "father in law of"@en ;
rdfs:comment "A father-in-law is the father of a person's spouse."@en ;
rdfs:domain :Male ;
rdfs:subPropertyOf :parentInLaw .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="https://w3id.org/MON/person.owl#fatherInLaw">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/MON/person.owl#Male"/>
<rdfs:comment xml:lang="en">A father-in-law is the father of a person's spouse.</rdfs:comment>
<rdfs:label xml:lang="en">father in law of</rdfs:label>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/MON/person.owl#parentInLaw"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "https://w3id.org/MON/person.owl#fatherInLaw",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "A father-in-law is the father of a person's spouse."
}
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "https://w3id.org/MON/person.owl#Male"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "father in law of"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "https://w3id.org/MON/person.owl#parentInLaw"
}
]
}
]<https://w3id.org/MON/person.owl#fatherInLaw> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://w3id.org/MON/person.owl#fatherInLaw> <http://www.w3.org/2000/01/rdf-schema#label> "father in law of"@en .
<https://w3id.org/MON/person.owl#fatherInLaw> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/MON/person.owl#parentInLaw> .
<https://w3id.org/MON/person.owl#fatherInLaw> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/MON/person.owl#Male> .
<https://w3id.org/MON/person.owl#fatherInLaw> <http://www.w3.org/2000/01/rdf-schema#comment> "A father-in-law is the father of a person's spouse."@en .