@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#> .
<https://w3id.org/MON/spatial.owl#hasResidence> a owl:ObjectProperty ;
rdfs:label "has residence"@en ;
rdfs:domain :Person .
<?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/spatial.owl#hasResidence">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdfs:label xml:lang="en">has residence</rdfs:label>
<rdfs:domain rdf:resource="https://w3id.org/MON/person.owl#Person"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "https://w3id.org/MON/spatial.owl#hasResidence",
"@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": "has residence"
}
]
}
]<https://w3id.org/MON/spatial.owl#hasResidence> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://w3id.org/MON/spatial.owl#hasResidence> <http://www.w3.org/2000/01/rdf-schema#label> "has residence"@en .
<https://w3id.org/MON/spatial.owl#hasResidence> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/MON/person.owl#Person> .