# Base: http://protege.stanford.edu/swbp/books5.n3#
@prefix dcterms:  <http://purl.org/dc/terms/> .
@prefix dc:      <http://purl.org/dc/elements/1.1/> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix :        <> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .

:AfricanLion
      a       owl:Class ;
      rdfs:subClassOf :Lion .

:Lion
      a       owl:Class ;
      rdfs:subClassOf :Animal .

:Animal
      a       owl:Class .

:BookAboutAnimals
      a       owl:Class .

:LionsLifeInThePride
      a       :BookAboutAnimals ;
      rdfs:seeAlso <http://isbn.nu/0736809643> ;
      :bookTitle "Lions: Life In The Pride"^^<http://www.w3.org/2001/XMLSchema#string> ;
      dc:subject :Lion .

:bookTitle
      a       owl:DatatypeProperty ;
      rdfs:domain :BookAboutAnimals ;
      rdfs:range <http://www.w3.org/2001/XMLSchema#string> .

<http://protege.stanford.edu/swbp/books5>
      a       owl:Ontology ;
      owl:imports dc: .

:TheAfricanLionBook
      a       :BookAboutAnimals ;
      rdfs:seeAlso <http://isbn.nu/089686328X> ;
      :bookTitle "The African Lion"^^<http://www.w3.org/2001/XMLSchema#string> ;
      dc:subject :AfricanLion .
