5543eb9de8
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1824563 13f79535-47bb-0310-9956-ffa450edef68
23 lines
768 B
XML
23 lines
768 B
XML
<xsd:schema
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns="http://xbean/scomp/derivation/ComplexExtension"
|
|
targetNamespace="http://xbean/scomp/derivation/ComplexExtension"
|
|
xmlns:base="http://xbean/scomp/contentType/ComplexTypeTest"
|
|
>
|
|
|
|
<xsd:import namespace="http://xbean/scomp/contentType/ComplexTypeTest"
|
|
schemaLocation="../contentType/ComplexTypeTest.xsd"/>
|
|
|
|
<xsd:complexType name="ExtendedMixedT" mixed="true">
|
|
<xsd:complexContent>
|
|
<xsd:extension base="base:mixedT">
|
|
<xsd:attribute name="extendedAttr" type="xsd:string"/>
|
|
</xsd:extension>
|
|
</xsd:complexContent>
|
|
</xsd:complexType>
|
|
|
|
|
|
<xsd:element name="ExtendedMixedElt" type="ExtendedMixedT"/>
|
|
|
|
|
|
</xsd:schema> |