Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is an excerpt from my schema:

  <xs:simpleType name="atypes.priorities">
  <xs:restriction base="xs:string">
  <xs:enumeration value="low" />
  <xs:enumeration value="standard" />
  <xs:enumeration value="normal" />
  <xs:enumeration value="high" />
  <xs:enumeration value="critical" />
  <xs:pattern value="[0-9]+" />
  </xs:restriction>
  </xs:simpleType>

When loading the schema in my XML editor (I am using XML Pad 3.0), I get the following validation error:

"Element value 'low' is not the value space of the base type, string"

Could someone explain this error to me? After all, 'low' looks like a string to me.

How do I correct this? Basically, my simple type should be either consist of digits, or be one of the words low, normal, high and critical.

share|improve this question

1 Answer

In your pattern restriction (regular expression) you say only numbers are allowed. Maybe removing that restriction will help.

Or try changing it into: <xs:pattern value="[a-zA-Z0-9]+" />

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.