5543eb9de8
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1824563 13f79535-47bb-0310-9956-ffa450edef68
24 lines
678 B
XML
Executable File
24 lines
678 B
XML
Executable File
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<!-- XMLBEANS-57: colon at end of targetNamespace -->
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:bar="barNS"
|
|
xmlns="dumbNS:::"
|
|
targetNamespace="dumbNS:::"
|
|
elementFormDefault="qualified">
|
|
|
|
<xs:import namespace="barNS" schemaLocation="sub/bar.xsd" />
|
|
|
|
<xs:attribute name="a" type="xs:integer" />
|
|
<xs:attribute name="b" type="xs:integer" />
|
|
<xs:attribute name="c" type="xs:integer" />
|
|
|
|
<xs:element name="root">
|
|
<xs:complexType>
|
|
<xs:attribute ref="b"/>
|
|
<xs:attribute ref="bar:b"/>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
|
|
</xs:schema>
|