Consumption Profile Object

Information about the consumption profile used in the system.

Table of Consumption Profile Object

Value NameDescriptionValue Type
idUnique identifier for the consumption profile.string
rateThe electricity rate in dollars per kWhfloat
titleDescriptive title for the consumption profilestring
tariffContains details about the electricity tariff.object
utilityDetails about the utility provider.object
annualBillThe estimated annual electricity bill in dollars.float
consumptionMonthly energy consumption in kWh, with 12 entries corresponding to each month.array
buildingAreaThe area of the building in square feet.integer
postSolarRateThe electricity rate in dollars per kWh after the installation of the solar system.float
postSolarTariffTariff details applicable after solar installation (structure similar to tariff object)object
postSolarUtilityUtility information post-solar installationobject
annualConsumptionTotal annual energy consumption in kWh.float
averageMonthlyBillThe average monthly electricity bill in dollars.float
averageUtilityRateThe average electricity rate in dollars per kWh.float
averageMonthlyConsumptionThe average monthly energy consumption in kWh.float

Example of Consumption Profile Object

"consumptionProfile": {
							"id": "1a123bcd-10a1-12be-a23e-1234acb53ba4",
							"rate": 0.16,
							"title": "Default Consumption Profile",
							"tariff": {
								"lseId": 2654,
								"tariffId": 3463777,
								"tariffName": "Residential",
								"effectiveDate": "2024-02-01",
								"masterTariffId": 355
							},
							"utility": {
								"id": "0abcd01c-234b-56cd-7890-123a4b5c67d8",
								"name": "Enerflo Power and Light",
								"genabilityId": 0001
							},
							"annualBill": 2295.67005892,
							"consumption": [
								843.464829,
								776.133676,
								846.805105,
								976.220281,
								1256.7218,
								1487.6522,
								1730.28309,
								1647.481535,
								1323.235658,
								1050.337327,
								862.774665,
								827.910474
							],
							"buildingArea": 1704,
							"postSolarRate": 0.16009294552803613,
							"postSolarTariff": {
								"lseId": 2654,
								"tariffId": 3463777,
								"tariffName": "Residential",
								"effectiveDate": "2024-02-01",
								"masterTariffId": 355
							},
							"postSolarUtility": null,
							"annualConsumption": 13629.02064,
							"averageMonthlyBill": 191.31,
							"averageUtilityRate": 0.16,
							"averageMonthlyConsumption": 1135.75
						}