<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:tns="http://example.com"
targetNamespace="http://example.com">
<xs:simpleType name="MyEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="" />
<xs:enumeration value="Var1" />
<xs:enumeration value="Var2" />
</xs:restriction>
</xs:simpleType>
</xs:schema>