<?xml version="1.0"?>
<!-- Resource Indication - Multiple Special Classes -->

<rdf:RDF
  xmlns:rdf ="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
  xmlns:xsd ="http://www.w3.org/2000/10/XMLSchema#"
  xmlns:daml="http://www.daml.org/2001/03/daml+oil#"
  xmlns     ="http://www.daml.org/validator/examples/cv2.daml#"
  >

<daml:Class rdf:ID="Color"/>
<daml:Class rdf:ID="Pastel"/>

<!-- is there a possibility of this being valid? -->

<!-- This is a Collection and a ComplementOf -->
<daml:Class rdf:ID="PrimaryColors">
  <daml:oneOf rdf:parseType="daml:collection">
    <Color rdf:ID="red"/>
    <Color rdf:ID="blue"/>
    <Color rdf:ID="yellow"/>
  </daml:oneOf>
  <daml:complementOf rdf:resource="#Pastel"/>
</daml:Class>

</rdf:RDF>
