# baseURI: http://www.workingontologist.org/Examples/Chapter10/baseball.owl

@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix married: <http://www.workingontologist.org/Examples/Chapter8/married#>
@prefix owl:     <http://www.w3.org/2002/07/owl#> .

<http://www.workingontologist.org/Examples/Chapter8/married>
      a       owl:Ontology .


married:Woman a owl:Class ; rdfs:label "Woman" .
married:MarriedWoman a owl:Class  ; rdfs:label "Married woman" .

married:MarriedWoman rdfs:subClassOf married:Woman.

married:hasMaidenName a rdf:Property ; rdfs:label "has maiden name" ;
	       rdfs:domain married:MarriedWoman.

married:Karen married:hasMaidenName "Jones" .


