[Home] [By Thread] [By Date] [Recent Entries]
Henry, thanks for the speedy response. I've tried your suggestion,
but XML Spy will not validate it. It claims that the schema might be
valid as a part of another schema, but not standalone. As standalone,
the <xs:attribute> element is unexpected. I think there is
something basic that I'm missing here. I've reprinted the revised
definition below.
Thanks, Russ
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:element name="ElemName">
<xs:complexType>
<xs:simpleContent>
<xs:restriction
base="xs:anyType">
<xs:simpleType>
<xs:list>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration
value="Value1"></xs:enumeration>
<xs:enumeration
value="Value2"></xs:enumeration>
<xs:enumeration
value="Value3"></xs:enumeration>
<xs:enumeration
value="Value4"></xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:list>
</xs:simpleType>
</xs:restriction>
</xs:simpleContent>
<xs:attribute name="attr" type="xs:string"></xs:attribute>
</xs:complexType>
</xs:element>
|

Cart



