class CountResultSet(Model): count = IntType() top_rank = FloatType() rank_levels = DictType(IntType) categories = DictType(IntType) labels = DictType(IntType)
class CalendarDay(Model): date = DateType() count = IntType() top_rank = FloatType() rank_levels = DictType(IntType) categories = DictType(IntType) labels = DictType(IntType) top_events = ModelType(EventResultSet)
class ImpactDay(Model): date = DateType() count = IntType() impact = IntType() rank_levels = DictType(IntType, export_level=NONEMPTY) rank_levels_impact = DictType(IntType, export_level=NONEMPTY) aviation_rank_levels = DictType(IntType, export_level=NONEMPTY) aviation_rank_levels_impact = DictType(IntType, export_level=NONEMPTY) categories = DictType(IntType) categories_impact = DictType(IntType)