<!-- $Id$ -->
<xsd:schema 
   xmlns="http://www.w3.org/2001/03/earl/0.95datatypes#" 
   xmlns:xsd="http://www.w3.org/2000/10/XMLSchema" 
   xml:lang="en" >
<xsd:simpleType name="Date">
  <!-- Date is an XMLS union datatype -->
  <!-- values of Date may be either dates or dateTimes -->
  <!-- "Date" must be referred to using the following URI:- 
       http://www.w3.org/2001/03/earl/0.95datatypes#Date -->
  <xsd:union>
     <xsd:simpleType>
       <xsd:restriction base="xsd:date"/>
     </xsd:simpleType>
     <xsd:simpleType>
       <xsd:restriction base="xsd:dateTime"/>
     </xsd:simpleType>
  </xsd:union>
</xsd:simpleType>
</xsd:schema>