@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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
:personalHomepage a owl:DatatypeProperty ;
rdfs:label "personal homepage"@en ;
rdfs:domain :Person ;
rdfs:range xsd:anyURI .
<?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#personalHomepage">
<rdfs:domain rdf:resource="https://w3id.org/MON/person.owl#Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:label xml:lang="en">personal homepage</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#anyURI"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "https://w3id.org/MON/person.owl#personalHomepage",
"@type": [
"http://www.w3.org/2002/07/owl#DatatypeProperty"
],
"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": "personal homepage"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://www.w3.org/2001/XMLSchema#anyURI"
}
]
}
]<https://w3id.org/MON/person.owl#personalHomepage> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/MON/person.owl#Person> .
<https://w3id.org/MON/person.owl#personalHomepage> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://w3id.org/MON/person.owl#personalHomepage> <http://www.w3.org/2000/01/rdf-schema#label> "personal homepage"@en .
<https://w3id.org/MON/person.owl#personalHomepage> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#anyURI> .