Created
August 5, 2015 08:21
-
-
Save mh-github/ef64ec43b14311a1b48b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <xs:element name="persons"> | |
| <xs:complexType> | |
| <xs:sequence> | |
| <xs:element name="person" maxOccurs="unbounded"> | |
| <xs:complexType> | |
| <xs:sequence> | |
| <xs:element name="full_name" type="xs:string"/> | |
| <xs:element name="child_name" type="xs:string" | |
| minOccurs="0" maxOccurs="5"/> | |
| </xs:sequence> | |
| </xs:complexType> | |
| </xs:element> | |
| </xs:sequence> | |
| </xs:complexType> | |
| </xs:element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment