Mega Code Archive

 
Categories / XML Tutorial / XML Schema
 

The simpleContent element is used if the complex type may only have text content

The difference between  this and a simple type is that it may carry one or more attributes.  The only children that are permitted for this element are the restriction and extension elements.  <?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"   targetNamespace="http://www.rntsoft.com" xmlns="http://www.rntsoft.com"   elementFormDefault="qualified">   <xs:element name="Person">     <xs:complexType>       <xs:simpleContent>         <xs:extension base="xs:string">           <xs:attribute name="age" type="xs:integer" />         </xs:extension>       </xs:simpleContent>     </xs:complexType>   </xs:element> </xs:schema>