action smart_me_virtual_tariff_consumption_get { label: "Gets the consumption of a folder with a virtuall tariffs." description: "Gets the consumption of a folder with a virtuall tariffs." provider: smart_me method: GET path: "/api/VirtualTariffConsumption" encoding: json input: { type: "object" properties: { endDate: { type: "string" format: "date-time" } folderId: { type: "string" } startDate: { type: "string" format: "date-time" } } required: ["endDate", "folderId", "startDate"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "Container class for the virtual tariff consumption" properties: { Consumption: { type: "number" format: "double" description: "The consumption (e.g. kWh) of this tariff" } Currency: { type: "string" description: "The currency of the price" } Name: { type: "string" description: "The Name of this virtual tariff" } Price: { type: "number" format: "double" description: "The price of the energy in this timerange" } TariffType: { type: "string" description: "The type of the virtual tariff (e.g. solar)" enum: ["Battery", "Solar", "Normal"] } } } } }