12 lines
460 B
XML
Raw Normal View History

<xs:schema targetNamespace="urn:bar" xmlns="urn:bar" xmlns:x="urn:bar"
xmlns:m="http://schemas.microsoft.com/2003/10/Serialization/"
xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:element name="E1" type="T1" nillable="true" />
<xs:simpleType name="T1">
<xs:restriction base="xs:string">
<xs:enumeration value="x" />
<xs:enumeration value="y" />
</xs:restriction>
</xs:simpleType>
</xs:schema>