1<table xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 2       xsi:noNamespaceSchemaLocation="http://chart/schemas/table.xsd">
 3    <description>OEM Orbit Prediction Storage</description>
 4    <type>raw</type>
 5    <stats-storage>none</stats-storage>
 6    <period>PT1M</period>
 7    <field>
 8        <name>PRODUCT</name> <!-- Added this field as its not created with ddl command -->
 9        <description></description>
10        <datatype>int</datatype>
11        <length>64</length>
12    </field>
13
14    <field>
15        <name>X</name>
16        <description>X co-ordinate</description>
17        <datatype>float</datatype>
18    </field>
19    <field>
20        <name>Y</name>
21        <description>Y co-ordinate</description>
22        <datatype>float</datatype>
23    </field>
24    <field>
25        <name>Z</name>
26        <description>Z co-ordinate</description>
27        <datatype>float</datatype>
28    </field>
29    
30    <field>
31        <name>X_DOT</name>
32        <description>X DOT</description>
33        <datatype>float</datatype>
34    </field>
35    <field>
36        <name>Y_DOT</name>
37        <description>Y DOT</description>
38        <datatype>float</datatype>
39    </field>
40    <field>
41        <name>Z_DOT</name>
42        <description>Z DOT</description>
43        <datatype>float</datatype>
44    </field>
45</table>