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

@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix authors: <http://www.workingontologist.org/Examples/Chapter6/Authors#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .
@prefix dc:      <http://purl.org/dc/elements/1.1/> .


<http://www.workingontologist.org/Examples/Chapter6/Authors>
      a       owl:Ontology .


authors:Person a owl:Class ; rdfs:label "Person" .

authors:firstName a rdf:Property .
authors:lastName a rdf:Property .

authors:DeanAllemang rdf:type authors:Person ;
              authors:firstName "Dean" ;
              authors:lastName "Allemang" .

authors:JimHendler rdf:type authors:Person ;
            authors:firstName "James" ;
            authors:lastName "Hendler" .

authors:FabienGandon rdf:type authors:Person ;
              authors:firstName "Fabien" ;
              authors:lastName "Gandon" .

authors:WorkingOntologist rdf:type authors:Book ;
    rdfs:label "Semantic Web for the Working Ontologist" ;
    dc:creator authors:DeanAllemang , authors:JimHendler, authors:FabienGandon .


