1<table 
 2    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://chart/schemas/table.xsd">
 3    <description>Schedule History Activities Storage</description>
 4    <type>raw</type>
 5    <stats-storage>none</stats-storage>
 6    <visible>false</visible>
 7    <!--period>PT10M</period -->
 8    <index>
 9        <name>SCHEDULE_ACTIVITY_PK</name>
10        <type>primary-key</type>
11        <sid-fields/>
12        <field>SENSING_TIME</field>
13        <field>INTERNAL_ID</field>
14    </index>
15    <field>
16        <name>INTERNAL_ID</name>
17        <description>Activity Internal ID</description>
18        <datatype>string</datatype>
19        <length>40</length>
20    </field>
21    <field>
22        <name>NAME</name>
23        <description>Activity name</description>
24        <datatype>string</datatype>
25        <length>40</length>
26    </field>
27    <field>
28        <name>PROC_ID</name>
29        <description>Procedure ID</description>
30        <datatype>string</datatype>
31        <length>40</length>
32        <allow-null>true</allow-null>
33    </field>
34    <field>
35        <name>SSID</name>
36        <description>SS ID</description>
37        <datatype>string</datatype>
38        <length>40</length>
39        <allow-null>true</allow-null>
40    </field>
41    <field>
42        <name>TYPE</name>
43        <description>Activity type</description>
44        <datatype>string</datatype>
45        <length>20</length>
46    </field>
47    <field>
48        <name>CLASS</name>
49        <description>Activity class</description>
50        <datatype>string</datatype>
51        <length>20</length>
52    </field>
53    <field>
54        <name>EXECUTION_TIME</name>
55        <description>Schedule Execution Time</description>
56        <datatype>datetime</datatype>
57        <allow-null>true</allow-null>
58    </field>
59    <field>
60        <name>TRIGGER_TIME</name>
61        <description>Schedule Execution Time</description>
62        <datatype>datetime</datatype>
63        <allow-null>true</allow-null>
64    </field>
65    <field>
66        <name>ABS_ORBIT</name>
67        <description>Absolute orbit</description>
68        <datatype>int</datatype>
69        <length>64</length>
70    </field>
71    <field>
72        <name>PSO</name>
73        <description>Acitivty PSO</description>
74        <datatype>float</datatype>
75    </field>
76    <field>
77        <name>FINAL_STATUS</name>
78        <description>Activity final status</description>
79        <datatype>string</datatype>
80        <length>20</length>
81    </field>
82    <field>
83        <name>ACTIONS</name>
84        <description>Activity Actions</description>
85        <datatype>jsonb</datatype>
86        <allow-null>true</allow-null>
87    </field>
88    <field>
89        <name>PARAMETERS</name>
90        <description>Activity Parameters</description>
91        <datatype>jsonb</datatype>
92        <allow-null>true</allow-null>
93    </field>
94</table>