Elements


Elements with Simple types:
     <xsd:element name="cname" type="xsd:string"/>
Elements with Anonymous Complex types:
   <xsd:element name="owner>
      <xsd:complexType>
         <xsd:sequence>
            <xsd:element name="cname" type="xsd:string"/>
            <xsd:element name="email" type="xsd:string/>
         </xsd:sequence>
      </xsd:complexType>
   </xsd:element>
Elements with Named Complex types:
   <xsd:complexType name="record">
      <xsd:sequence>
         <xsd:element name="cname" type="xsd:string"/>
         <xsd:element name="email" type="xsd:string/>
      </xsd:sequence>
   </xsd:complexType>

   <xsd:element name="owner" type="record"/>