action smart_me_virtual_tariff_get { label: "Gets all Virtual Tariffs of a user" description: "Gets all Virtual Tariffs of a user" provider: smart_me method: GET path: "/api/VirtualTariff" encoding: json output: { type: "array" items: { type: "object" properties: { Date: { type: "string" format: "date-time" description: "The DateTime (UTC) of this virtual tarfifs" } FolderId: { type: "string" } Name: { type: "string" description: "The name of this folder" } VirtualTariffs: { type: "array" items: { type: "object" properties: { Factor: { type: "number" format: "double" description: "Says how many of the active power is used in this tariff. This is calculated from the last meter values." } Id: { type: "string" } Name: { type: "string" } Type: { type: "string" enum: ["Battery", "Solar", "Normal"] } Unit: { type: "string" } Value: { type: "number" format: "double" description: "The Counter Value of this tariff" } } } } } } } }