# baseURI: http://www.workingontologist.org/Examples/Chapter9/stones

@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
@prefix dm:      <http://www.workingontologist.org/Examples/Chapter9/dm#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix gm:      <http://www.workingontologist.org/Examples/Chapter9/gm#> .
@prefix stones:        <http://www.workingontologist.org/Examples/Chapter9/stones#> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .

dm:partOf
      a       owl:ObjectProperty ;
      rdfs:subPropertyOf gm:partOf .

gm:partOf
      a       owl:ObjectProperty , owl:TransitiveProperty .

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

stones:MickJagger rdfs:label "Mick Jagger" ;
      a       owl:Thing ;
      dm:partOf stones:TheRollingStones .

stones:MickJaggersThumb rdfs:label "Mick Jagger's Thumb" ;
      a       owl:Thing ;
      dm:partOf stones:MickJagger .

stones:TheRollingStones rdfs:label "The Rolling Stones" ;
      a       owl:Thing .
