0

I am writing a xsd-schema file and I need to ensure that a value of an attribute (positve integer) is also the value of minOccurs and maxOccurs of another attribute. Is this somehow possible?

windler
  • 57
  • 4

1 Answers1

1

Not with XSD 1.0 alone.

If you could use another schema language with XSD 1.0, Schematron can do it. If you can move to XSD 1.1, an xsd:assert would do the same thing here (as the Schematron).

Petru Gardea
  • 21,373
  • 2
  • 50
  • 62