blob: d40d80bd11a73f5afc1dec161b6d0f6bb9bad4b7 [file] [log] [blame]
<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>