<?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/cv4.daml#"
>

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

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

<!-- This is a Collection and a Intersection -->
<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:intersectionOf rdf:parseType="daml:collection">
    <daml:Class rdf:about="#Pastel"/>
    <daml:Class rdf:about="#Gray"/>
  </daml:intersectionOf>
</daml:Class>

</rdf:RDF>
