5543eb9de8
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1824563 13f79535-47bb-0310-9956-ffa450edef68
25 lines
992 B
XML
Executable File
25 lines
992 B
XML
Executable File
<xsd:schema targetNamespace="http://openuri.org/test/MixedContent"
|
|
xmlns:tns="http://openuri.org/test/MixedContent"
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
elementFormDefault="qualified">
|
|
|
|
<xsd:element name="Letter" type="tns:letterType"/>
|
|
|
|
<xsd:complexType name="letterType" mixed="true">
|
|
<xsd:sequence>
|
|
<xsd:element name="name" type="xsd:string"/>
|
|
<xsd:element name="orderid" type="xsd:positiveInteger"/>
|
|
<xsd:element name="shipdate" type="xsd:date"/>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
|
|
<xsd:element name="NoMixed" type="tns:letterTypeNoMixed"/>
|
|
|
|
<xsd:complexType name="letterTypeNoMixed" mixed="false">
|
|
<xsd:sequence>
|
|
<xsd:element name="name" type="xsd:string"/>
|
|
<xsd:element name="orderid" type="xsd:positiveInteger"/>
|
|
<xsd:element name="shipdate" type="xsd:date"/>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
</xsd:schema> |