Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns:m="http://www.fh-ooe.at/xml4/ue61" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.fh-ooe.at/xml4/ue61" elementFormDefault="qualified">
  3. <xs:element name="list">
  4. <xs:complexType>
  5. <xs:sequence>
  6. <xs:element name="value" type="xs:integer" minOccurs="1"/>
  7. <xs:element name="innerList" type="m:innerListType"/>
  8. </xs:sequence>
  9. </xs:complexType>
  10. </xs:element>
  11.  
  12. <xs:complexType name="innerListType">
  13. <xs:sequence>
  14. <xs:element name="innerList" type="m:innerListType" minOccurs="0" maxOccurs="1"/>
  15. <xs:element name="value" type="xs:integer" minOccurs="1"/>
  16. </xs:sequence>
  17. </xs:complexType>
  18. </xs:schema>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement