Mega Code Archive

 
Categories / XML / XML Schema
 

A union datatype by reference to existing types

<?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"   targetNamespace="http://www.rntsoft.com" xmlns="http://www.rntsoft.com"   elementFormDefault="qualified">   <xs:simpleType name="integerOrData">     <xs:union memberTypes="xs:integer xs:date" />   </xs:simpleType> </xs:schema>