summaryrefslogtreecommitdiff
path: root/test/schemas/facet-unionST-err1_0.xsd
blob: 476668bc998eb9704decb39562c8fb9a6e76f77c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://FOO" xmlns:foo="http://FOO">

  	<xsd:element name="foo" type="foo:fooType.B"/>

	<xsd:simpleType name="fooType.B">
		<xsd:restriction base="foo:fooType.A">
			<xsd:enumeration value="medium"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="fooType.A">
    	<xsd:union>
      		<xsd:simpleType>
        		<xsd:restriction base="xsd:NMTOKEN">
          			<xsd:enumeration value="small"/>
          			<xsd:enumeration value="medium"/>
          			<xsd:enumeration value="large"/>
        		</xsd:restriction>
      		</xsd:simpleType>
    	</xsd:union>
  	</xsd:simpleType>



</xsd:schema>