I have a question with an XSD that I am working with.
I have the following block:
<xs:element name="Artist">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:length value="0" />
</xs:restriction>
</xs:simpleType>
</xs:element>
I would expect that the string would be limited to 0. However when I use an online sample generator, the string can be of any length.
Could anyone give me some insight as to what is really happening? Does 0 have a special action for xml generation?