<table name="Test1"> <column> title </column> <column>createDate</column> <column>city</column> <column>country</column> </table>
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs = "http://www.w3.org/2001/XMLSchema">
<xs:element name = "table">
<xs:complexType>
<xs:element name="column" type="xs:string" minOccurs="1" maxOccurs="unbounded" />
<xs:attribute name="name" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:schema>