cos-st-restricts-1-2-err_0.xsd 585 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <schema xmlns="http://www.w3.org/2001/XMLSchema"
  3. targetNamespace="http://FOO" xmlns:foo="http://FOO">
  4. <element name="foo" type="foo:type.A"/>
  5. <simpleType name="type.A">
  6. <restriction>
  7. <simpleType>
  8. <list itemType="integer"/>
  9. </simpleType>
  10. <length value="3"/>
  11. </restriction>
  12. </simpleType>
  13. <!--restriction base="foo:type.base.A">
  14. </restriction-->
  15. <simpleType name="type.base.A">
  16. <restriction>
  17. <simpleType>
  18. <list itemType="integer"/>
  19. </simpleType>
  20. </restriction>
  21. </simpleType>
  22. </schema>