A union datatype can embed one or more elements : union « XML Schema « XML

Home
XML
1.CSS Style
2.SVG
3.XML Schema
4.XQuery
5.XSLT stylesheet
XML » XML Schema » union 
A union datatype can embed one or more elements


<?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="myIntegerUnion">
    <xs:union>
      <xs:simpleType>
        <xs:restriction base="xs:integer" />
      </xs:simpleType>
      <xs:simpleType>
        <xs:restriction base="xs:NMTOKEN">
          <xs:enumeration value="undefined" />
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>
</xs:schema>

 
Related examples in the same category
1.A union datatype by reference to existing types
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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.