1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="MultiComponent.xsd"/>
<xsd:complexType name="InformativeComponent">
<xsd:annotation>
<xsd:documentation>
It is used to define labeled groups or entities that are not essential for
the model but useful for separating or manipulating a given set of
structures.
The informative components is optional.
</xsd:documentation>
</xsd:annotation>
<xsd:group ref="MultiComponent"/>
</xsd:complexType>
</xsd:schema>
|