A union datatype by reference to existing types : union « XML Schema « XML






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.java2s.com" xmlns="http://www.java2s.com"
  elementFormDefault="qualified">

  <xs:simpleType name="integerOrData">
    <xs:union memberTypes="xs:integer xs:date" />
  </xs:simpleType>

</xs:schema>

 








Related examples in the same category

1.A union datatype can embed one or more elements
2.The order between derivation by list and derivation by union depends on the result to achieve
3.union types with restriction
4.Union anonymous simple types
5.union with memberTypes