vectie/moonfish/planning does not have a README file
pub(all) struct AnalysisPlan {
run_id : String
market_request : MarketSourceRequest
market_plan : MarketSourcePlan
refresh_plan : MarketRefreshPlan
gateway : ModelGateway
routine_plan : RoutinePlan
issues : Array[ValidationIssue]
can_start : Bool
can_complete_without_external_data : Bool
summary : String
} derive(Eq, ToJson, Debug, FromJson)pub(all) struct AnalysisPlanInput {
run_id : String
operator_request : String
data_source : DataSource
symbol : String
timeframe : String
limit : Int
captured_at_ms : Int64
suite_status : SuiteStatusRef
} derive(Eq, ToJson, Debug, FromJson)fn analysis_plan_input(run_id : String, operator_request : String, data_source : DataSource, symbol : String, timeframe : String, suite_status : SuiteStatusRef, limit? : Int, captured_at_ms? : Int64) -> AnalysisPlanInputDependencies