libxml2 2.9.1 clean sources
[tomato.git] / release / src / router / libxml2 / test / schemas / derivation-ok-extension-err_0.xsd
blob89be58120023c1a68dddbc12a9ca52efc0f14f50
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
3 xmlns="http://FOO" targetNamespace="http://FOO">
5 <xs:element name="foo">
6 <xs:complexType>
7 <xs:complexContent>
8 <xs:extension base="typeA">
9 <xs:attribute name="barA_1" type="xs:string" use="optional"/>
10 <xs:attribute name="barA_2" type="xs:string" use="required"/>
11 </xs:extension>
12 </xs:complexContent>
13 </xs:complexType>
14 </xs:element>
16 <xs:complexType name="typeA">
17 <xs:attribute name="barA_1" type="xs:string" use="required"/>
18 </xs:complexType>
20 </xs:schema>