5543eb9de8
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1824563 13f79535-47bb-0310-9956-ffa450edef68
27 lines
810 B
XML
27 lines
810 B
XML
<?xml version="1.0"?>
|
|
<schema xmlns="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:self="http://www.world.com"
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
targetNamespace="http://www.world.com">
|
|
|
|
<complexType name="stringItemType" final="extension">
|
|
<simpleContent>
|
|
<extension base="string">
|
|
<attribute name="date" type="xsd:string" use="required"/>
|
|
<anyAttribute namespace="##other" processContents="lax"/>
|
|
</extension>
|
|
</simpleContent>
|
|
</complexType>
|
|
|
|
<complexType name="countryItemType">
|
|
<simpleContent>
|
|
<restriction base="self:stringItemType">
|
|
<length value="0" fixed="true"/>
|
|
</restriction>
|
|
</simpleContent>
|
|
</complexType>
|
|
|
|
<element name="Test" type="self:countryItemType" fixed="" nillable="true" id="int-Test"/>
|
|
|
|
</schema>
|