Mega Code Archive

 
Categories / XML / XML Schema
 

Complex type with sequence

<?xml version="1.0"?> <name xmlns="http://www.rntsoft.com/name"   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   xsi:schemaLocation="http://www.rntsoft.com/name Schema.xsd"   title="Mr.">   <first>f</first>   <middle>m</middle>   <last>l</last> </name> File: Schema.xsd <?xml version="1.0"?> <schema xmlns="http://www.w3.org/2001/XMLSchema"   xmlns:target="http://www.rntsoft.com/name"   targetNamespace="http://www.rntsoft.com/name"   elementFormDefault="qualified">   <element name="name">     <complexType>       <sequence>         <element name="first" type="string" />         <element name="middle" type="string" />         <element name="last" type="string" />       </sequence>       <attribute name="title" type="string" />     </complexType>   </element> </schema>