I know this is probably a stupid question but I've just received a document that specifies the XML document (format, etc) and I just wanted to verify that this is in fact actually what I think it is....
an integer
<xs:simpleType name="ThreeDigitNumbers">
<xs:restriction base="xs:int">
<xs:pattern value="[0-9]{0,1}[0-9]{0,1}[0-9]{1}"/>
</xs:restriction>
I have a field with the following type....
type="ThreeDigitNumbers"/>
Does this basically mean that it can be but doesn't have to be up to 3 numbers. Since this actually is supposed to be a value in a combobox - I'm assuming anything between 0-999?
Complete noob when it comes to XML