action smart_me_virtual_tariffs_for_property_get { label: "Gets all Virtual Tariffs for a property (folder)" description: "Gets all Virtual Tariffs for a property (folder)" provider: smart_me method: GET path: "/api/VirtualTariffsForProperty/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } 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" } } } } } } } }