action i_cue_post_portfolio { label: "ABCxyz Analysis" description: "Calculate and retrieve results of ABC (pareto analysis) and xyz (Coefficient of variation) per timeseries and planning level. This analysis is a powerful means to estbalish a proper planning cadence, best accuracy messures and optimal hyperparameters for the organization. It provides a balanced and actionable overview of the entire product portfolio." provider: i_cue method: POST path: "/portfolio" 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 } } planningLevelId: { type: "string" } startDate: { type: "string" } } required: ["planningLevelId", "startDate"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { abc12: { type: "string" } abc12Value: { type: "number" format: "double" } abc6: { type: "string" } abc6Value: { type: "number" format: "double" } abc9: { type: "string" } abc9Value: { type: "number" format: "double" } id: { type: "string" } thresholdA: { type: "number" format: "double" } thresholdB: { type: "number" format: "double" } thresholdC: { type: "number" format: "double" } thresholdX: { type: "number" format: "double" } thresholdY: { type: "number" format: "double" } thresholdZ: { type: "number" format: "double" } xyz12: { type: "string" } xyz12Value: { type: "number" format: "double" } xyz6: { type: "string" } xyz6Value: { type: "number" format: "double" } xyz9: { type: "string" } xyz9Value: { type: "number" format: "double" } } additionalProperties: false } } }