action corrently_tariffcomponents { label: "Energy Tariff price components" description: "Provides insides into the different cost components of energy for a private household.\nSample Request: https://api.corrently.io/v2.0/tariff/components?email=demo%40corrently.io&zip=69168&kwha=3300\n" provider: corrently method: GET path: "/tariff/components" encoding: json input: { type: "object" properties: { email: { type: "string" } kwha: { type: "integer" } milliseconds: { type: "integer" } wh: { type: "integer" } zipcode: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { components: { type: "array" description: "Sub components of this price" items: { type: "object" additionalProperties: true } } describtion: { type: "string" description: "What is this price component about" } mutlityplier: { type: "string" description: "Frequency/dependency of component" } per: { type: "number" format: "double" description: "Single unit price multiyplier is based on" } sum: { type: "number" format: "double" description: "Total sum in Euro for this price component." } } } }