action i_cue_post_administration_file_to_json { label: "Transform data file to JSON format" description: "Transform data file to JSON format" provider: i_cue method: POST path: "/administration/file-to-json" encoding: json input: { type: "object" properties: { Token: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { 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" } } additionalProperties: false } }