Skip to content
Snippets Groups Projects
Commit 8375e977 authored by Goik Martin's avatar Goik Martin
Browse files

Folder renaming for correct "progress" ordering

parent 822ae7d8
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<employee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="employee.xsd">
<id>21</id>
<givenName>Bob</givenName>
<surname>Hope</surname>
<birthday>1982-07-22</birthday>
<sex>m</sex>
<email>hope@exploitation.com</email>
<phone>1123-33244</phone>
</employee>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<employeeList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="employeeList.xsd">
<employee>
<id>21</id>
<givenName>Bob</givenName>
<surname>Hope</surname>
<birthday>1982-07-22</birthday>
<sex>m</sex>
<email>hope@exploitation.com</email>
<phone>1123-33244</phone>
</employee>
<employee>
<id>22</id>
<givenName>Gill</givenName>
<surname>Evans</surname>
<birthday>1973-01-15</birthday>
<sex>f</sex>
<email>gill@flashmaster.com</email>
<phone>9771-43421</phone>
</employee>
</employeeList>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<employeeList>
<employee>
<id>21</id>
<givenName>Bob</givenName>
<surname>Hope</surname>
<birthday>1982-07-22</birthday>
<sex>m</sex>
<email>hope@exploitation.com</email>
<phone>1123-33244</phone>
</employee>
<employee>
<id>22</id>
<givenName>Gill</givenName>
<surname>Evans</surname>
<birthday>1973-01-15</birthday>
<sex>f</sex>
<email>gill@flashmaster.com</email>
<phone>9771-43421</phone>
</employee>
</employeeList>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" >
<xs:element name="employee">
<xs:complexType>
<xs:sequence>
<xs:element name="id" type="xs:int"/>
<xs:element name="givenName" type="xs:string"/>
<xs:element name="surname" type="xs:string"/>
<xs:element name="birthday" type="xs:string"/>
<xs:element name="sex" type="xs:string"/>
<xs:element name="email" type="xs:string"/>
<xs:element name="phone" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" >
<xs:element name="employee">
<xs:complexType>
<xs:sequence>
<xs:element name="id" type="xs:int"/>
<xs:element name="givenName" type="xs:string"/>
<xs:element name="surname" type="xs:string"/>
<xs:element name="birthday" type="xs:string"/>
<xs:element name="sex" type="xs:string"/>
<xs:element name="email" type="xs:string"/>
<xs:element name="phone" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="employeeList">
<xs:complexType>
<xs:sequence>
<xs:element ref="employee"
minOccurs="0"
maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment