You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
611 B

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType name="fooType">
<xs:restriction base="xs:string">
<xs:enumeration value="a"/>
<xs:enumeration value="b"/>
<xs:enumeration value="c"/>
<xs:enumeration value="d"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="barType">
<xs:restriction base="fooType">
<xs:enumeration value="a"/>
<xs:enumeration value="b"/>
<xs:enumeration value="d"/>
</xs:restriction>
</xs:simpleType>
<xs:element name="foo" type="barType" />
</xs:schema>