1<table xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 2       xsi:noNamespaceSchemaLocation="http://chart/schemas/table.xsd">
 3    <description>Executable Schedule Storage</description>
 4    <type>raw</type>
 5    <stats-storage>none</stats-storage>
 6    <period>PT10M</period>
 7
 8    <!-- This the primary key index/constraint place holder
 9        for future implementation of flexible DDL that allows custom PK
10
11        PLEASE NOTE: For the time being, when running the current DLL
12        against this TS Table XML in particular, 2 additional steps are required:
13         - delete the 'default' PK constraint:
14            ALTER TABLE exec_schedule DROP CONSTRAINT exec_schedule_c;
15
16         - add the custom PK
17            ALTER TABLE exec_schedule ADD CONSTRAINT exec_schedule_pk PRIMARY KEY (sid_num,sensing_time, name);
18        -->
19    <index>
20        <name>GEO_EVENTS_PK</name>
21        <type>primary-key</type>
22        <sid-fields/>
23        <field>SENSING_TIME</field>
24        <field>NAME</field>
25    </index>
26
27    <field>
28        <name>PRODUCT</name> <!-- Added this field as its not created with ddl command -->
29        <description></description>
30        <datatype>int</datatype>
31        <length>64</length>
32    </field>
33
34    <field>
35        <name>NAME</name>
36        <description>Event name</description>
37        <datatype>string</datatype>
38        <length>20</length>
39    </field>
40
41    <field>
42        <name>DESCRIPTION</name>
43        <description>Event or Request item description</description>
44        <datatype>string</datatype>
45        <length>256</length>
46        <allow-null>true</allow-null>
47    </field>
48
49    <field>
50        <name>ABSOLUTE_ORBIT_NUMBER</name>
51        <description>Event absolute orbit</description>
52        <datatype>uint</datatype>
53        <length>64</length>
54    </field>
55
56    <field>
57        <name>TIME_FROM_ANX</name>
58        <description>Event time from ANX</description>
59        <datatype>float</datatype>
60    </field>
61
62    <field>
63        <name>DEG_FROM_ANX</name>
64        <description>Degree from ANX</description>
65        <datatype>float</datatype>
66    </field>
67
68    <field>
69        <name>PARAMETERS</name>
70        <description>Parameters list</description>
71        <datatype>jsonb</datatype>
72        <allow-null>true</allow-null>
73    </field>
74</table>