Choice with three elements : choice « XML Schema « XML






Choice with three elements



File: Data.xml

<?xml version="1.0"?>
<airport xmlns="http://www.java2s.com"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation= "http://www.java2s.com Schema.xsd">
        <plane>data</plane>
</airport>

File: Schema.xsd
<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            targetNamespace="http://www.java2s.com"
            xmlns="http://www.java2s.com"
            elementFormDefault="qualified">
    <xsd:element name="airport">
        <xsd:complexType>
            <xsd:choice>
                <xsd:element name="train" type="xsd:string"/>
                <xsd:element name="plane" type="xsd:string"/>
                <xsd:element name="automobile" type="xsd:string"/>
            </xsd:choice>
        </xsd:complexType>
    </xsd:element>
</xsd:schema>

 








Related examples in the same category

1.choice minOccurs="0" maxOccurs="unbounded"
2.Use choice to define elements with random number and occurence
3.complexType mixed="true" and choice