5543eb9de8
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1824563 13f79535-47bb-0310-9956-ffa450edef68
18 lines
469 B
Plaintext
18 lines
469 B
Plaintext
<xs:schema
|
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
>
|
|
<xs:simpleType name="SizeT">
|
|
<xs:restriction base="xs:integer"/>
|
|
</xs:simpleType>
|
|
|
|
<xs:simpleType name="ColorT">
|
|
<xs:restriction base="xs:string">
|
|
<xs:pattern value="white|green"/>
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
|
|
|
|
<xs:element name="OldSizeElt" type="SizeT"/>
|
|
<xs:element name="OldColorElt" type="ColorT"/>
|
|
</xs:schema>
|