blob: 42ab46f43465df57b303c89d69f4de09645cf1fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<schema>
<complexType name="Person">
<attribute name="id" type="xs:string"/>
<sequence>
<element name="Name" type="xs:string"/>
<element name="Lastname" type="xs:string"/>
<element name="Degree" type="xs:int"/>
<element name="Project" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>
</schema>
|