Union model example.
<xs:schema xmlns:nm = "http://nomagic.com" xmlns:xs = "http://www.w3.org/2001/XMLSchema" targetNamespace = "http://nomagic.com" >
<xs:simpleType name = "my_simple_union" >
		<xs:union id = "unionID" memberTypes = "xs:string xs:number" />
</xs:simpleType>
	<xs:simpleType name = "my_simple_union2" >
		<xs:annotation >
			<xs:documentation >very important documentation</xs:documentation>
		</xs:annotation>
		<xs:union id = "unionID" memberTypes = "xs:number" > 
<xs:simpleType >
<xs:restriction base = "xs:number" />
			</xs:simpleType> 
</xs:union>
	</xs:simpleType>
</xs:schema>