In this example, the import file is called
schemas.ccl and contains:
CREATE SCHEMA TradesSchema (
Id integer,
TradeTime date,
Venue string,
Symbol string,
Price float,
Shares integer
);
Note: You can define schemas directly inside a module or project; however, this example uses an import file to decrease code duplication and increase maintainability of the CCL.