action i_cue_post_portfolio_xyz { label: "xyz Analysis" description: "Calculate and retrieve results of xyz (Coefficient of variation) per timeseries and planning level." provider: i_cue method: POST path: "/portfolio/xyz" 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: { id: { type: "string" } 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 } } }