@prefix : <https://w3id.org/MON/person.owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
:Male a owl:Class,
owl:NamedIndividual,
:Sex ;
rdfs:label "Male"@en .
[] a owl:AllDifferent ;
owl:distinctMembers ( :Female :Male ) .
<?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:nodeID="n95f55a29380c4ba1bf2250d29bdd454cb9">
<rdf:first rdf:resource="https://w3id.org/MON/person.owl#Male"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/MON/person.owl#Male">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="https://w3id.org/MON/person.owl#Sex"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label xml:lang="en">Male</rdfs:label>
</rdf:Description>
<rdf:Description rdf:nodeID="n95f55a29380c4ba1bf2250d29bdd454cb7">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDifferent"/>
<owl:distinctMembers rdf:nodeID="n95f55a29380c4ba1bf2250d29bdd454cb8"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n95f55a29380c4ba1bf2250d29bdd454cb8">
<rdf:first rdf:resource="https://w3id.org/MON/person.owl#Female"/>
<rdf:rest rdf:nodeID="n95f55a29380c4ba1bf2250d29bdd454cb9"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "_:n95f55a29380c4ba1bf2250d29bdd454cb7",
"@type": [
"http://www.w3.org/2002/07/owl#AllDifferent"
],
"http://www.w3.org/2002/07/owl#distinctMembers": [
{
"@list": [
{
"@id": "https://w3id.org/MON/person.owl#Female"
},
{
"@id": "https://w3id.org/MON/person.owl#Male"
}
]
}
]
},
{
"@id": "https://w3id.org/MON/person.owl#Male",
"@type": [
"http://www.w3.org/2002/07/owl#NamedIndividual",
"https://w3id.org/MON/person.owl#Sex",
"http://www.w3.org/2002/07/owl#Class"
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@language": "en",
"@value": "Male"
}
]
}
]_:n95f55a29380c4ba1bf2250d29bdd454cb9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
<https://w3id.org/MON/person.owl#Male> <http://www.w3.org/2000/01/rdf-schema#label> "Male"@en .
_:n95f55a29380c4ba1bf2250d29bdd454cb7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AllDifferent> .
<https://w3id.org/MON/person.owl#Male> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://w3id.org/MON/person.owl#Male> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
_:n95f55a29380c4ba1bf2250d29bdd454cb8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/MON/person.owl#Female> .
_:n95f55a29380c4ba1bf2250d29bdd454cb8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:n95f55a29380c4ba1bf2250d29bdd454cb9 .
_:n95f55a29380c4ba1bf2250d29bdd454cb7 <http://www.w3.org/2002/07/owl#distinctMembers> _:n95f55a29380c4ba1bf2250d29bdd454cb8 .
_:n95f55a29380c4ba1bf2250d29bdd454cb9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/MON/person.owl#Male> .
<https://w3id.org/MON/person.owl#Male> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/MON/person.owl#Sex> .
@prefix : <https://w3id.org/MON/person.owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
:Male rdfs:subClassOf [ a owl:Restriction ;
owl:hasValue :Male ;
owl:onProperty :hasGender ],
:Person .
[] a owl:AllDifferent ;
owl:distinctMembers ( :Female :Male ) .
<?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:nodeID="n95f55a29380c4ba1bf2250d29bdd454cb9">
<rdf:first rdf:resource="https://w3id.org/MON/person.owl#Male"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n95f55a29380c4ba1bf2250d29bdd454cb7">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDifferent"/>
<owl:distinctMembers rdf:nodeID="n95f55a29380c4ba1bf2250d29bdd454cb8"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/MON/person.owl#Male">
<rdfs:subClassOf rdf:nodeID="n95f55a29380c4ba1bf2250d29bdd454cb2"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/MON/person.owl#Person"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n95f55a29380c4ba1bf2250d29bdd454cb8">
<rdf:first rdf:resource="https://w3id.org/MON/person.owl#Female"/>
<rdf:rest rdf:nodeID="n95f55a29380c4ba1bf2250d29bdd454cb9"/>
</rdf:Description>
<rdf:Description rdf:nodeID="n95f55a29380c4ba1bf2250d29bdd454cb2">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:hasValue rdf:resource="https://w3id.org/MON/person.owl#Male"/>
<owl:onProperty rdf:resource="https://w3id.org/MON/person.owl#hasGender"/>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "https://w3id.org/MON/person.owl#Male",
"http://www.w3.org/2000/01/rdf-schema#subClassOf": [
{
"@id": "_:n95f55a29380c4ba1bf2250d29bdd454cb2"
},
{
"@id": "https://w3id.org/MON/person.owl#Person"
}
]
},
{
"@id": "_:n95f55a29380c4ba1bf2250d29bdd454cb2",
"@type": [
"http://www.w3.org/2002/07/owl#Restriction"
],
"http://www.w3.org/2002/07/owl#hasValue": [
{
"@id": "https://w3id.org/MON/person.owl#Male"
}
],
"http://www.w3.org/2002/07/owl#onProperty": [
{
"@id": "https://w3id.org/MON/person.owl#hasGender"
}
]
},
{
"@id": "_:n95f55a29380c4ba1bf2250d29bdd454cb7",
"@type": [
"http://www.w3.org/2002/07/owl#AllDifferent"
],
"http://www.w3.org/2002/07/owl#distinctMembers": [
{
"@list": [
{
"@id": "https://w3id.org/MON/person.owl#Female"
},
{
"@id": "https://w3id.org/MON/person.owl#Male"
}
]
}
]
}
]_:n95f55a29380c4ba1bf2250d29bdd454cb9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:n95f55a29380c4ba1bf2250d29bdd454cb7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AllDifferent> .
<https://w3id.org/MON/person.owl#Male> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:n95f55a29380c4ba1bf2250d29bdd454cb2 .
<https://w3id.org/MON/person.owl#Male> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/MON/person.owl#Person> .
_:n95f55a29380c4ba1bf2250d29bdd454cb8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/MON/person.owl#Female> .
_:n95f55a29380c4ba1bf2250d29bdd454cb9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/MON/person.owl#Male> .
_:n95f55a29380c4ba1bf2250d29bdd454cb2 <http://www.w3.org/2002/07/owl#hasValue> <https://w3id.org/MON/person.owl#Male> .
_:n95f55a29380c4ba1bf2250d29bdd454cb8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:n95f55a29380c4ba1bf2250d29bdd454cb9 .
_:n95f55a29380c4ba1bf2250d29bdd454cb7 <http://www.w3.org/2002/07/owl#distinctMembers> _:n95f55a29380c4ba1bf2250d29bdd454cb8 .
_:n95f55a29380c4ba1bf2250d29bdd454cb2 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/MON/person.owl#hasGender> .
_:n95f55a29380c4ba1bf2250d29bdd454cb2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> .