Guest User

Untitled

a guest
Jul 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. The goal is to have atleast 1 element of either the value type or the patternedValue type in the column element. The patternedValue elements must come after the value elements.
  2. <xs:complexType name="column">
  3. <xs:sequence>
  4. <xs:choice>
  5. <xs:choice>
  6. <xs:element name="value" type="value" minOccurs="1">
  7. </xs:element>
  8. <xs:element name="patternedvalue" type="patternedValue" minOccurs="1">
  9. </xs:element>
  10. </xs:choice>
  11. <xs:choice>
  12. <xs:element name="value" type="value" minOccurs="1">
  13. </xs:element>
  14. <xs:element name="patternedvalue" type="patternedValue" minOccurs="1">
  15. </xs:element>
  16. </xs:choice>
  17. <xs:element name="value" type="value" minOccurs="1">
  18. </xs:element>
  19. <xs:element name="patternedvalue" type="patternedValue" minOccurs="1">
  20. </xs:element>
  21. </xs:choice>
  22. </xs:sequence>
  23. </xs:complexType>
Add Comment
Please, Sign In to add comment