XSV handling of restriction of anyType

I'm trying to validate an instance against a schema which restricts
"anyType".  The schema validates fine, but when I try to validate the
instance against the schema, it cannot find the anyType type.  The error
message I get is:

Error: Undefined type {http://www.w3.org/2000/10/XMLSchema}:anyType
referenced as basetype of [anonymous]

Am I doing something wrong with the namespaces?

Thanks,
Priscilla
--------------
The schema is:

<schema targetNamespace="http://www.example.com/Report"
        xmlns="http://www.w3.org/2000/10/XMLSchema"
       xmlns:r="http://www.example.com/Report"
        elementFormDefault="qualified">

 <element name="regions" type="r:RegionsType"/>
 <complexType name="RegionsType">
  <sequence>
   <element name="zip" maxOccurs="unbounded">
    <complexType>
     <sequence>
      <element name="part">
       <complexType>
        <complexContent>
         <restriction base="anyType">
          <attribute name="number" type="positiveInteger"/>
          <attribute name="quantity" type="positiveInteger"/>
         </restriction>
        </complexContent>
       </complexType>
      </element>
     </sequence>
    </complexType>
   </element>
  </sequence>
 </complexType>

</schema>


And the instance is:

<regions
  xmlns="http://www.example.com/Report">
  <zip>
   <part number="872" quantity="1"/>
   <part number="926" quantity="1"/>
   <part number="833" quantity="1"/>
   <part number="455" quantity="1"/>
  </zip>
  <zip>
   <part number="455" quantity="4"/>
  </zip>
 </regions>

Received on Friday, 29 September 2000 10:24:11 UTC