<?xml version="1.0"?>
<rdf:RDF
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
    xmlns:owl="http://www.w3.org/2002/07/owl#"
    xmlns="http://www.owl-ontologies.com/unnamed.owl#"
  xml:base="http://www.owl-ontologies.com/unnamed.owl">
  <owl:Ontology rdf:about=""/>
  <owl:Class rdf:ID="Son">
    <owl:equivalentClass>
      <owl:Class>
        <owl:intersectionOf rdf:parseType="Collection">
          <owl:Class rdf:ID="Child"/>
          <owl:Class rdf:ID="Man"/>
        </owl:intersectionOf>
      </owl:Class>
    </owl:equivalentClass>
  </owl:Class>
  <owl:Class rdf:ID="Person"/>
  <owl:Class rdf:ID="Uncle">
    <rdfs:subClassOf>
      <owl:Class rdf:ID="Relative"/>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Class rdf:about="#Man"/>
    </rdfs:subClassOf>
  </owl:Class>
  <owl:Class rdf:ID="Parent">
    <rdfs:subClassOf>
      <owl:Class rdf:about="#Relative"/>
    </rdfs:subClassOf>
    <rdfs:subClassOf>
      <owl:Restriction>
        <owl:onProperty>
          <owl:ObjectProperty rdf:ID="hasChild"/>
        </owl:onProperty>
        <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
        >1</owl:minCardinality>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf rdf:resource="#Person"/>
  </owl:Class>
  <owl:Class rdf:ID="Special">
    <rdfs:subClassOf>
      <owl:Restriction>
        <owl:allValuesFrom>
          <owl:Class rdf:ID="Woman"/>
        </owl:allValuesFrom>
        <owl:onProperty>
          <owl:ObjectProperty rdf:about="#hasChild"/>
        </owl:onProperty>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf rdf:resource="#Parent"/>
  </owl:Class>
  <owl:Class rdf:ID="Father">
    <owl:equivalentClass>
      <owl:Class>
        <owl:intersectionOf rdf:parseType="Collection">
          <owl:Class rdf:about="#Man"/>
          <owl:Class rdf:about="#Parent"/>
        </owl:intersectionOf>
      </owl:Class>
    </owl:equivalentClass>
  </owl:Class>
  <owl:Class rdf:about="#Relative">
    <rdfs:subClassOf rdf:resource="#Person"/>
  </owl:Class>
  <owl:Class rdf:about="#Child">
    <rdfs:subClassOf rdf:resource="#Person"/>
    <rdfs:subClassOf>
      <owl:Restriction>
        <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
        >1</owl:cardinality>
        <owl:onProperty>
          <owl:ObjectProperty rdf:ID="hasMother"/>
        </owl:onProperty>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf rdf:resource="#Relative"/>
    <rdfs:subClassOf>
      <owl:Restriction>
        <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
        >1</owl:cardinality>
        <owl:onProperty>
          <owl:ObjectProperty rdf:ID="hasFather"/>
        </owl:onProperty>
      </owl:Restriction>
    </rdfs:subClassOf>
  </owl:Class>
  <owl:Class rdf:about="#Man">
    <owl:disjointWith>
      <owl:Class rdf:about="#Woman"/>
    </owl:disjointWith>
    <owl:equivalentClass>
      <owl:Class>
        <owl:intersectionOf rdf:parseType="Collection">
          <owl:Restriction>
            <owl:onProperty>
              <owl:ObjectProperty rdf:ID="hasGender"/>
            </owl:onProperty>
            <owl:hasValue>
              <Gender rdf:ID="Male"/>
            </owl:hasValue>
          </owl:Restriction>
          <owl:Class rdf:about="#Person"/>
        </owl:intersectionOf>
      </owl:Class>
    </owl:equivalentClass>
  </owl:Class>
  <owl:Class rdf:ID="Aunt">
    <rdfs:subClassOf>
      <owl:Class rdf:about="#Woman"/>
    </rdfs:subClassOf>
    <rdfs:subClassOf rdf:resource="#Relative"/>
  </owl:Class>
  <owl:Class rdf:ID="Nephew">
    <rdfs:subClassOf rdf:resource="#Relative"/>
    <rdfs:subClassOf rdf:resource="#Man"/>
  </owl:Class>
  <owl:Class rdf:ID="Sibling">
    <rdfs:subClassOf rdf:resource="#Person"/>
    <owl:equivalentClass>
      <owl:Class>
        <owl:unionOf rdf:parseType="Collection">
          <owl:Class rdf:ID="Brother"/>
          <owl:Class rdf:ID="Sister"/>
        </owl:unionOf>
      </owl:Class>
    </owl:equivalentClass>
    <rdfs:subClassOf rdf:resource="#Relative"/>
  </owl:Class>
  <owl:Class rdf:ID="Daughter">
    <owl:equivalentClass>
      <owl:Class>
        <owl:intersectionOf rdf:parseType="Collection">
          <owl:Class rdf:about="#Child"/>
          <owl:Class rdf:about="#Woman"/>
        </owl:intersectionOf>
      </owl:Class>
    </owl:equivalentClass>
  </owl:Class>
  <owl:Class rdf:ID="Mother">
    <owl:equivalentClass>
      <owl:Class>
        <owl:intersectionOf rdf:parseType="Collection">
          <owl:Class rdf:about="#Parent"/>
          <owl:Class rdf:about="#Woman"/>
        </owl:intersectionOf>
      </owl:Class>
    </owl:equivalentClass>
  </owl:Class>
  <owl:Class rdf:ID="Gender">
    <owl:equivalentClass>
      <owl:Class>
        <owl:oneOf rdf:parseType="Collection">
          <Gender rdf:about="#Male"/>
          <Gender rdf:ID="Female"/>
        </owl:oneOf>
      </owl:Class>
    </owl:equivalentClass>
  </owl:Class>
  <owl:Class rdf:ID="Niece">
    <rdfs:subClassOf>
      <owl:Class rdf:about="#Woman"/>
    </rdfs:subClassOf>
    <rdfs:subClassOf rdf:resource="#Relative"/>
  </owl:Class>
  <owl:Class rdf:about="#Woman">
    <owl:equivalentClass>
      <owl:Class>
        <owl:intersectionOf rdf:parseType="Collection">
          <owl:Restriction>
            <owl:hasValue rdf:resource="#Female"/>
            <owl:onProperty>
              <owl:ObjectProperty rdf:about="#hasGender"/>
            </owl:onProperty>
          </owl:Restriction>
          <owl:Class rdf:about="#Person"/>
        </owl:intersectionOf>
      </owl:Class>
    </owl:equivalentClass>
    <owl:disjointWith rdf:resource="#Man"/>
  </owl:Class>
  <owl:Class rdf:about="#Brother">
    <rdfs:subClassOf rdf:resource="#Sibling"/>
    <rdfs:subClassOf>
      <owl:Restriction>
        <owl:someValuesFrom rdf:resource="#Person"/>
        <owl:onProperty>
          <owl:ObjectProperty rdf:ID="hasBrother"/>
        </owl:onProperty>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf rdf:resource="#Man"/>
  </owl:Class>
  <owl:Class rdf:about="#Sister">
    <rdfs:subClassOf rdf:resource="#Sibling"/>
    <rdfs:subClassOf>
      <owl:Restriction>
        <owl:someValuesFrom rdf:resource="#Person"/>
        <owl:onProperty>
          <owl:ObjectProperty rdf:ID="hasSister"/>
        </owl:onProperty>
      </owl:Restriction>
    </rdfs:subClassOf>
    <rdfs:subClassOf rdf:resource="#Woman"/>
  </owl:Class>
  <owl:ObjectProperty rdf:about="#hasGender">
    <rdfs:range rdf:resource="#Gender"/>
    <rdfs:domain rdf:resource="#Person"/>
  </owl:ObjectProperty>
  <owl:ObjectProperty rdf:about="#hasChild">
    <rdfs:range rdf:resource="#Child"/>
    <owl:inverseOf>
      <owl:ObjectProperty rdf:ID="hasParent"/>
    </owl:inverseOf>
    <rdfs:domain rdf:resource="#Parent"/>
  </owl:ObjectProperty>
  <owl:ObjectProperty rdf:ID="hasUncle">
    <rdfs:domain rdf:resource="#Person"/>
    <rdfs:range rdf:resource="#Uncle"/>
  </owl:ObjectProperty>
  <owl:ObjectProperty rdf:about="#hasMother">
    <owl:inverseOf>
      <owl:ObjectProperty rdf:ID="inverse_of_family_Slot_1"/>
    </owl:inverseOf>
    <rdfs:subPropertyOf>
      <owl:ObjectProperty rdf:about="#hasParent"/>
    </rdfs:subPropertyOf>
  </owl:ObjectProperty>
  <owl:ObjectProperty rdf:ID="inverse_of_family_Slot_0">
    <owl:inverseOf>
      <owl:ObjectProperty rdf:about="#hasFather"/>
    </owl:inverseOf>
    <rdfs:subPropertyOf rdf:resource="#hasChild"/>
  </owl:ObjectProperty>
  <owl:ObjectProperty rdf:about="#hasSister">
    <rdfs:range rdf:resource="#Person"/>
    <rdfs:domain rdf:resource="#Person"/>
    <rdfs:subPropertyOf>
      <owl:SymmetricProperty rdf:ID="hasSibling"/>
    </rdfs:subPropertyOf>
  </owl:ObjectProperty>
  <owl:ObjectProperty rdf:about="#hasFather">
    <rdfs:subPropertyOf>
      <owl:ObjectProperty rdf:about="#hasParent"/>
    </rdfs:subPropertyOf>
    <owl:inverseOf rdf:resource="#inverse_of_family_Slot_0"/>
  </owl:ObjectProperty>
  <owl:ObjectProperty rdf:about="#hasParent">
    <rdfs:range rdf:resource="#Parent"/>
    <owl:inverseOf rdf:resource="#hasChild"/>
    <rdfs:domain rdf:resource="#Child"/>
  </owl:ObjectProperty>
  <owl:ObjectProperty rdf:about="#hasBrother">
    <rdfs:subPropertyOf>
      <owl:SymmetricProperty rdf:about="#hasSibling"/>
    </rdfs:subPropertyOf>
    <rdfs:domain rdf:resource="#Person"/>
    <rdfs:range rdf:resource="#Person"/>
  </owl:ObjectProperty>
  <owl:ObjectProperty rdf:ID="hasAunt">
    <rdfs:range rdf:resource="#Aunt"/>
    <rdfs:domain rdf:resource="#Person"/>
  </owl:ObjectProperty>
  <owl:ObjectProperty rdf:about="#inverse_of_family_Slot_1">
    <owl:inverseOf rdf:resource="#hasMother"/>
    <rdfs:subPropertyOf rdf:resource="#hasChild"/>
  </owl:ObjectProperty>
  <owl:DatatypeProperty rdf:ID="oftenSay">
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
  </owl:DatatypeProperty>
  <owl:DatatypeProperty rdf:ID="ageOf">
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
  </owl:DatatypeProperty>
  <owl:DatatypeProperty rdf:ID="isSpecial">
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
  </owl:DatatypeProperty>
  <owl:SymmetricProperty rdf:about="#hasSibling">
    <rdfs:range rdf:resource="#Person"/>
    <rdfs:domain rdf:resource="#Person"/>
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
  </owl:SymmetricProperty>
  <Mother rdf:ID="thp">
    <hasSister>
      <Sister rdf:ID="tjp">
        <hasSister rdf:resource="#thp"/>
      </Sister>
    </hasSister>
    <hasChild>
      <Daughter rdf:ID="mj">
        <hasSister>
          <Sister rdf:ID="lt">
            <hasSister rdf:resource="#mj"/>
          </Sister>
        </hasSister>
        <ageOf rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
        >24</ageOf>
        <hasParent>
          <Father rdf:ID="mdg">
            <hasChild rdf:resource="#mj"/>
            <hasBrother>
              <Brother rdf:ID="mdq">
                <hasBrother rdf:resource="#mdg"/>
              </Brother>
            </hasBrother>
            <hasSister>
              <Sister rdf:ID="mym"/>
            </hasSister>
          </Father>
        </hasParent>
        <hasParent rdf:resource="#thp"/>
        <hasBrother>
          <Brother rdf:ID="tw"/>
        </hasBrother>
      </Daughter>
    </hasChild>
  </Mother>
  <Special rdf:ID="ygmo">
    <oftenSay rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
    >I love you</oftenSay>
    <isSpecial rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean"
    >true</isSpecial>
  </Special>
</rdf:RDF>

<!-- Created with Protege (with OWL Plugin 1.3, Build 192)  http://protege.stanford.edu/ -->
