IRI: https://w3id.org/MON/person.owl#maidenName
@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#> .
:maidenName a owl:DatatypeProperty ;
rdfs:label "maiden name"@en ;
rdfs:comment "The original surname of a married woman who uses her husband's surname name after marriage."@en ;
rdfs:domain :Person ;
rdfs:range xsd:string .
<?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#maidenName">
<rdfs:comment xml:lang="en">The original surname of a married woman who uses her husband's surname name after marriage.</rdfs:comment>
<rdfs:label xml:lang="en">maiden name</rdfs:label>
<rdfs:domain rdf:resource="https://w3id.org/MON/person.owl#Person"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "https://w3id.org/MON/person.owl#maidenName",
"@type": [
"http://www.w3.org/2002/07/owl#DatatypeProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@language": "en",
"@value": "The original surname of a married woman who uses her husband's surname name after marriage."
}
],
"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": "maiden name"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://www.w3.org/2001/XMLSchema#string"
}
]
}
]<https://w3id.org/MON/person.owl#maidenName> <http://www.w3.org/2000/01/rdf-schema#comment> "The original surname of a married woman who uses her husband's surname name after marriage."@en .
<https://w3id.org/MON/person.owl#maidenName> <http://www.w3.org/2000/01/rdf-schema#label> "maiden name"@en .
<https://w3id.org/MON/person.owl#maidenName> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/MON/person.owl#Person> .
<https://w3id.org/MON/person.owl#maidenName> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://w3id.org/MON/person.owl#maidenName> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .