Guest User

Untitled

a guest
Mar 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <MyType>
  2. <tag1>Something</tag1>
  3. <tag2>Tag 1</tag2>
  4. <tag2>Tag 2</tag2>
  5. <tag3>Another something</tag3>
  6. </MyTpe>
  7.  
  8. <xsd:complexType name="MyType">
  9. <xsd:all>
  10. <xsd:element name="tag1" />
  11. <xsd:element name="tag3" />
  12. </xsd:all>
  13. <xsd:choice maxOccurs="unbounded">
  14. <xsd:element maxOccurs="unbounded" name="tag2" />
  15. </xsd:choice>
  16. </xsd:complexType>
Add Comment
Please, Sign In to add comment