12 lines
260 B
XML
12 lines
260 B
XML
|
<xs:schema
|
||
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||
|
xmlns="urn:bar"
|
||
|
targetNamespace="urn:foo"
|
||
|
>
|
||
|
|
||
|
<xs:import schemaLocation="4.xsd" namespace="urn:bar" />
|
||
|
<xs:element name="Foo" type="xs:string" />
|
||
|
<xs:element name="Bar" type="xs:string" />
|
||
|
|
||
|
</xs:schema>
|