This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
I believe that userdefined.xsd is not a valid schema. The two notation declarations <xs:notation name="value1" public="image/jpeg" system="viewer.exe"/> <xs:notation name="value2" public="image/png" system="viewer.exe"/> defined notations in the target namespace of the schema. This means that when they are referred to (line 56) <xs:restriction base = "xs:NOTATION"> <xs:enumeration value="value1"/> <xs:enumeration value="value2"/> </xs:restriction> the names should be prefixed, thus: <xs:restriction base = "xs:NOTATION"> <xs:enumeration value="myType:value1"/> <xs:enumeration value="myType:value2"/> </xs:restriction>
Michael: Thanks for the comment. The schema was corrected and resubmitted with the suggested changes. I am working with the qname and notation tests. Carmelo