@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#> .
:childOf a owl:ObjectProperty ;
rdfs:label "child of"@en ;
rdfs:domain :Person ;
rdfs:range :Person ;
rdfs:subPropertyOf :hasRelationshipWith ;
owl:inverseOf :parentOf .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:owl="http://www.w3.org/2002/07/owl#"
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#childOf">
<rdfs:domain rdf:resource="https://w3id.org/MON/person.owl#Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<owl:inverseOf rdf:resource="https://w3id.org/MON/person.owl#parentOf"/>
<rdfs:label xml:lang="en">child of</rdfs:label>
<rdfs:range rdf:resource="https://w3id.org/MON/person.owl#Person"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/MON/person.owl#hasRelationshipWith"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "https://w3id.org/MON/person.owl#childOf",
"@type": [
"http://www.w3.org/2002/07/owl#ObjectProperty"
],
"http://www.w3.org/2000/01/rdf-schema#domain": [
{
"@id": "https://w3id.org/MON/person.owl#Person"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "child of"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "https://w3id.org/MON/person.owl#Person"
}
],
"http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [
{
"@id": "https://w3id.org/MON/person.owl#hasRelationshipWith"
}
],
"http://www.w3.org/2002/07/owl#inverseOf": [
{
"@id": "https://w3id.org/MON/person.owl#parentOf"
}
]
}
]<https://w3id.org/MON/person.owl#childOf> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/MON/person.owl#Person> .
<https://w3id.org/MON/person.owl#childOf> <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#childOf> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/MON/person.owl#hasRelationshipWith> .
<https://w3id.org/MON/person.owl#childOf> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/MON/person.owl#parentOf> .
<https://w3id.org/MON/person.owl#childOf> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/MON/person.owl#Person> .
<https://w3id.org/MON/person.owl#childOf> <http://www.w3.org/2000/01/rdf-schema#label> "child of"@en .