action i_cue_post_forecast_ai { label: "Forecast utilizing advanced machine learning models" description: "Forecast AI is utilizing advanced machine learning models. Please be mindful of enhanced execution times (~1-2s per timeseries)." provider: i_cue method: POST path: "/forecast/AI" encoding: json input: { type: "object" properties: { Token: { type: "string" } data: { type: "array" items: { type: "object" properties: { historyValues: { type: "array" items: { type: "number" format: "double" } } timeSeriesId: { type: "string" } } additionalProperties: false } } method: { type: "string" enum: ["icueMLP", "icueMLO", "icueMLN"] } params: { type: "object" required: ["discardData", "errorType", "holdOutPeriod", "noFcst", "outlierDetection", "periodicity"] properties: { discardData: { type: "boolean" } errorType: { type: "string" enum: ["MeanAbsolutePercentageError", "MeanSquaredError", "MeanAbsoluteError", "MedianAbsoluteDeviation", "None"] } holdOutPeriod: { type: "integer" format: "int32" } noFcst: { type: "integer" format: "int32" } outlierDetection: { type: "boolean" } periodicity: { type: "integer" format: "int32" } } additionalProperties: false } planningLevelId: { type: "string" } startDate: { type: "string" } } required: ["method", "planningLevelId", "startDate"] additionalProperties: false } output: { type: "object" properties: { jobId: { type: "integer" format: "int32" } } additionalProperties: false } }