# Base: http://protege.stanford.edu/swbp/books2.n3#
@prefix p1:      <http://isbn.nu/089686328> .
@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 daml:    <http://www.daml.org/2001/03/daml+oil#> .
@prefix :        <> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .

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

:LionSubject
      a       :Lion .

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

:BookAboutAnimals
      a       owl:Class ;
      rdfs:subClassOf
              [ a       owl:Restriction ;
                owl:onProperty dc:subject ;
                owl:someValuesFrom :Animal
              ] .

<http://protege.stanford.edu/swbp/books2>
      a       owl:Ontology .

:Animal
      a       owl:Class .

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

dc:subject
      a       owl:ObjectProperty ;
      rdfs:domain :BookAboutAnimals .

:AfricanLionBook
      a       :BookAboutAnimals ;
      rdfs:seeAlso p1:X ;
      :bookTitle "The African Lion"^^<http://www.w3.org/2001/XMLSchema#string> ;
      dc:subject :AfricanLionSubject .

:LionsLifeInThePrideBook
      a       :BookAboutAnimals ;
      rdfs:seeAlso <http://isbn.nu/0736809643> ;
      :bookTitle "Lions: Life in the Pride"^^<http://www.w3.org/2001/XMLSchema#string> ;
      dc:subject :LionSubject .

:AfricanLionSubject
      a       :AfricanLion .
