Mega Code Archive

 
Categories / XML / XML Schema
 

Choice with three elements

File: Data.xml <?xml version="1.0"?> <airport xmlns="http://www.rntsoft.com"            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"            xsi:schemaLocation= "http://www.rntsoft.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.rntsoft.com"             xmlns="http://www.rntsoft.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>