i have an XML file like below and wanted to create an XML schema using type substitution method so that it can validate the below XML file. But the schema that i created is totally wrong.please show me how to code the schema to validate the file XML below.
Details:
- there are only two types of animals being stored one is bird and one is fish.
- for both type, name and origin element is required
- for type:bird, additional color element can be optionally stored.
for type:fish, additional size element is required to be store
<animals> <animal animalID="b-1" xsi:type="bird"> <name>Humming Bird</name> <origin>Asia</origin> <color>Blue</color> </animal> <animal animalID="b-2" xsi:type="bird"> <name>Horn Bill</name> <origin>Asia</origin> </animal> <animal animalID="f-2" xsi:type="fish"> <name>Whale</name> <origin>Europe</origin> <size>Large</size> </animal> <animal animalID="b-5" xsi:type="bird"> <name>Parrot</name> <origin>Europe</origin> </animal>
i have come out with the below schema and i think its totally wrong.
<xsd:element name="bird" substitutionGroup="animals"
type="birdType"/>
<xsd:element name="fish" substitutionGroup="animals"
type="fishType"/>
<xsd:element name="animals">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="animal" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="animal">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="bird" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>