<?xml version="1.0" encoding="UTF-8"?>
<schema>
  <table name="employees" file ="c:/Test/JSON/employees.xml" path="/employees/employee" dateFormat="dd-MM-yyyy">
	<!-- In this example the file "employees.xml" is located in the same directory where the schema is-->
	<!-- The attribute "dateFormat" sets a date format used in a specified XML file-->
    <column name="documentname" type="VARCHAR" size="30" path="/employees/document_name"/>
    <column name="firstname" type="VARCHAR" size="15" path="first_name"/>
    <column name="lastname" type="VARCHAR" size="20" path="last_name"/>
    <column name="title" type="VARCHAR" size="20" path="title"/>
    <column name="id" type="INTEGER" path="id"/>
    <column name="age" type="INTEGER" path="age"/>
    <column name="hiredate" type="DATETIME" path="hire_date"/>
  </table>  
</schema>