XPath filter 2.0 schema

merlin <[email protected]> Tue, 16 Jul 2002 01:11:54 +0100
Newsgroups gmane.ietf.xmldsig
Message-ID <[email protected]>

Just wondering if the schema is valid:
  <complexType name="XPathType" content="textOnly" ... />

Should it be:
  <complexType name="XPathType">
    <simpleContent>
      <extension base="string">
        <attribute name="Filter">
           <simpleType>
             <restriction base="NOTATION">
               <enumeration value="intersect"/>
               <enumeration value="subtract"/>
               <enumeration value="union"/>
             </restriction>
           </simpleType>
        </attribute>
      </extension>
    </simpleContent>
  </complexType>

Merlin