Mega Code Archive

 
Categories / XML Tutorial / XML Schema
 

To specify the maximum length of an element

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="description">     <xsd:simpleType>       <xsd:restriction base="xsd:string">         <xsd:maxLength value="200" />       </xsd:restriction>     </xsd:simpleType>   </xsd:element> </xsd:schema>   File: Data.xml  <?xml version="1.0"?> <description xmlns="http://www.rntsoft.com">test</description>