blob: b97e688124c03df4f993ea0276b6c0c78b509183 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="length3">
<xs:sequence>
<xs:element name="size" type="xs:non-positive-integer"/>
<xs:element name="unit" type="xs:NMTOKEN"/>
</xs:sequence>
</xs:complexType>
<xs:element name="depth" type="length3"/>
</xs:schema>
|