# baseURI: http://www.workingontologist.org/Examples/Chapter6/Shopping

@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix shop:    <http://www.workingontologist.org/Examples/Chapter7/Shopping#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix daml:    <http://www.daml.org/2001/03/daml+oil#> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .

<http://www.workingontologist.org/Examples/Chapter7/Shopping>
      a       owl:Ontology ;
      owl:versionInfo "Created with TopBraid Composer"^^xsd:string .

shop:BikerT rdfs:label "Biker T" ;
      a       shop:Tshirts .

shop:Blouses rdfs:label "Blouses" ;
      a       owl:Class ;
      rdfs:subClassOf shop:WomensWear .

shop:ChamoisHenley rdfs:label "Chamois Henley" ;
      a       shop:Henleys .

shop:ClassicOxford rdfs:label "Classic Oxford" ;
      a       shop:Oxfords .

shop:Henleys rdfs:label "Henleys" ;
      a       owl:Class ;
      rdfs:subClassOf shop:Shirts .

shop:MensWear rdfs:label "MensWear" ;
      a       owl:Class ;
      rdfs:subClassOf owl:Thing .

shop:Oxfords rdfs:label "Oxfords" ;
      a       owl:Class ;
      rdfs:subClassOf shop:Shirts .

shop:Shirts rdfs:label "Shirts" ;
      a       owl:Class ;
      rdfs:subClassOf shop:MensWear .

shop:Tshirts rdfs:label "Tshirts" ;
      a       owl:Class ;
      rdfs:subClassOf shop:Shirts .

shop:WomensWear rdfs:label "WomensWear" ;
      a       owl:Class ;
      rdfs:subClassOf owl:Thing .
