5543eb9de8
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1824563 13f79535-47bb-0310-9956-ffa450edef68
19 lines
568 B
XML
19 lines
568 B
XML
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns="http://xbean.test/xmlcursor/XQueryInput"
|
|
targetNamespace="http://xbean.test/xmlcursor/XQueryInput"
|
|
>
|
|
<xsd:element name="company">
|
|
<xsd:complexType>
|
|
<xsd:sequence>
|
|
<xsd:element name="employee" type="EmpT"/>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
</xsd:element>
|
|
|
|
<xsd:complexType name="EmpT">
|
|
<xsd:sequence>
|
|
<xsd:element name="name" type="xsd:string"/>
|
|
<xsd:element name="ssn" type="xsd:positiveInteger"/>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
</xsd:schema> |