@prefix dc: <http://purl.org/dc/elements/1.1/>.
@prefix ont: <http://www.daml.org/2001/03/daml+oil#>.

<http://www.w3.org/2001/04dun/goodColorUse> a ont:Ontology;
  ont:versionInfo "$Id: goodColorUse.n3,v 1.2 2001/05/16 19:10:13 connolly Exp $";
  dc:description
  """A good use of the colors ontology.""";
  dc:source <colors>;
  ont:imports <colors>.

@prefix u: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix c: <http://www.w3.org/2001/04dun/colors#>.
@prefix : <http://www.w3.org/2001/04dun/goodColorUse#>.

:Car
  u:subClassOf [
    ont:onProperty :color;
    ont:toClass c:Color;
  ].

:yellowGreen c:colorName "yellowGreen".

:thisCar :color c:blue.
:thatCar :color :yellowGreen.

