@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix : <foo://bla/names#>.
[ a :Male; a :ThreeChildrenParent; :name "John";
   :child [a :Female; :name "Alice"], [a :Male; :name "Bob"],
          [a :Female; :name "Carol"]].
[ a :Female; a :TwoChildrenParent; :name "Sue";
   :child [a :Female; :name "Anne";], [a :Female; :name "Barbara"]].
:name a owl:FunctionalProperty.
:OneChildParent owl:equivalentClass [a owl:Restriction;
  owl:onProperty :child; owl:cardinality 1].
:TwoChildrenParent owl:equivalentClass [a owl:Restriction;
  owl:onProperty :child; owl:cardinality 2].
:ThreeChildrenParent owl:equivalentClass [a owl:Restriction;
  owl:onProperty :child; owl:cardinality 3].
:OnlyFemaleChildrenParent owl:equivalentClass [a owl:Restriction;
  owl:onProperty :child; owl:allValuesFrom :Female].
