You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
563 B
25 lines
563 B
<?xml version="1.0"?>
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:foo="http://FOO"
|
|
targetNamespace="http://BAR"
|
|
elementFormDefault="qualified">
|
|
|
|
<xsd:import namespace="http://FOO" schemaLocation="import2_0.imp"/>
|
|
|
|
<xsd:simpleType name="fooType">
|
|
<xsd:restriction base="xsd:string">
|
|
<xsd:maxLength value="10"/>
|
|
</xsd:restriction>
|
|
</xsd:simpleType>
|
|
|
|
<xsd:element name="bar">
|
|
<xsd:complexType>
|
|
<xsd:sequence>
|
|
<xsd:element ref="foo:foo" minOccurs="0"/>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
</xsd:element>
|
|
|
|
|
|
</xsd:schema>
|