Improving Calculation Accuracy with Rate Criteria Properties
This guide explains the importance of being explicit about billing rate criteria properties to enhance calculation precision. Learn when to use them effectively and how to determine their relevance for your specific scenarios.
What is "Rate Criteria"?
Simply put, Rate Criteria inform you about the basis of rates in a specific tariff, thereby determining costs. Most tariffs have rates based on load (or usage)—that is, the electricity consumed. Sometimes rates vary based on where the customer is located within the utility service area. However, other factors, including customer characteristics and choices, often influence costs. In this guide, we will explore these factors in detail.
What are My Tariff's Rate Criteria Properties?
Many residential and almost all commercial and industrial tariffs feature one or more rates that fluctuate depending on specific customer characteristics or choices. For instance, it's quite common for a commercial customer's distribution rate to vary based on the size of their grid connection (connectionType). Let's examine Arizona Public Service's E-32-M tariff with its tiered demand charge as an example:
| connectionType | Up to 100 kW | Over 100 kW |
|---|---|---|
| Secondary Connection ** | $9.254/kW | $4.065/kW |
| Primary Connection | $8.356/kW | $3.327/kW |
| Transmission Connection | $6.186/kW | $0.999/kW |
** Arcadia's default value
As shown in the example above, costs can vary significantly for different customers under this tariff. For instance, a customer with a secondary connection pays $1,431.90 for 200 kW, while a customer with a transmission-level connection would see their charges almost halved to $718.50.
Here are some other common rate criteria examples:
lowIncomeCustomer- Many utilities have assistance programs with lower rates for low-income householdsphase- Monthly fixed charges or other rates that depend on a Single or Three-Phase (Poly) connectionbillingMeter- The number of billing meters the site hascityLimits- Whether the customer is within or outside city limits (popular with municipal utilities)electricSpaceHeaterPresent- Whether the customer has electric or gas heating, with rates that vary accordinglyutilityEmployee- Whether the customer is a utility employee (many utilities offer discounts to their staff)
There is significant rate criteria variability across utilities, so Arcadia takes a data-driven approach to modeling these variations.
Let's learn how...
Retrieving Rate Criteria Properties
Each tariff in our database includes a list of tariff properties, which can be found in the properties list within the JSON response. You can request these properties to be populated in the results of the [api-ref-get-tariffs] and [api-ref-get-tariff] API endpoints by including populateProperties=true in your request. Each property returned has a propertyTypes field, which denotes what the property is used for. The subset of tariff properties we care about here for rate applicabilities have the propertyTypes property set to RATE_CRITERIA.
Here's Sonoma Clean Power's E-1 Residential tariff with populateProperties=true:
GET /rest/public/tariffs/3200682?populateProperties=true&populateRates=true
{
"status": "success",
"count": 1,
"type": "Tariff",
"results": [
{
"tariffId": 3519600,
"masterTariffId": 3200682,
"tariffCode": "E-1",
"tariffName": "Residential",
"lseId": 100747,
"lseName": "Sonoma Clean Power",
"priorTariffId": 3499710,
"tariffType": "DEFAULT",
"customerClass": "RESIDENTIAL",
"customerCount": 135845,
"customerLikelihood": null,
"territoryId": 7571,
"effectiveDate": "2025-09-01",
"endDate": null,
"timeZone": "US/Pacific",
"billingPeriod": "MONTHLY",
"currency": "USD",
"chargeTypes": "FIXED_PRICE,CONSUMPTION_BASED,QUANTITY,MINIMUM",
"chargePeriod": "HOURLY",
"hasTimeOfUseRates": false,
"hasTieredRates": true,
"hasContractedRates": false,
"hasRateApplicability": true,
"isActive": true,
"properties": [
{
"keyName": "solarPvEligible",
"quantityKey": null,
"displayName": "Solar PV Eligible",
"family": "system",
"keyspace": "solarPV",
"description": "Whether a tariff can be selected if solar PV is installed.",
"dataType": "BOOLEAN",
"propertyTypes": "APPLICABILITY",
"operator": "=",
"propertyValue": "false",
"isDefault": true
},
{
"keyName": "consumption",
"quantityKey": null,
"displayName": "Consumption (kWh)",
"family": "load",
"keyspace": "electricity",
"description": "Quantity in kWh of load that is used for a period of time",
"dataType": "DECIMAL",
"propertyTypes": "RATE_CRITERIA",
"operator": null,
"isDefault": false
},
{
"keyName": "dailyMedicalAllowance",
"quantityKey": null,
"displayName": "Daily Medical Allowance ",
"family": "load",
"keyspace": "electricity",
"description": "Residential customers on a medical allowance get additional quantities of energy at the lowest (baseline) price. The medical allowance is a daily value derived from an additional 500 kWh per month (16.438 kWh/Day) and is listed under \"Additional Medical Baseline\" on the customer's bill. Medical Baseline customers can have 1 or more additional allotments at multiples of 16.438 kWh per day.",
"dataType": "DECIMAL",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "0",
"isDefault": true
},
{
"keyName": "hasCAEnergySurchargeExemption",
"quantityKey": null,
"displayName": "Has Energy Surcharge Exemption",
"family": "billing",
"keyspace": "electricity",
"description": "Exemptions for CA Energy Surcharge apply to the following: 1. Federal Agencies 2. American National Red Cross facilities 3. Energy consumed on Indian reservations 4. Foreign consular employees 5. Federal Credit Unions",
"dataType": "BOOLEAN",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "false",
"isDefault": true
},
{
"keyName": "hasCaliforniaClimateCredit",
"quantityKey": null,
"displayName": "Has California Climate Credit",
"family": "service",
"keyspace": "electricity",
"description": "Small Business Customer California Climate Credit: For purposes of receiving the California Climate Credit from the State of California, non-residential customers receiving service on a General Service or Agricultural Pumping rate schedule with an electric Billing Demand that does not exceed 20 kW in more than three months within the previous twelve-month period are designated as Small Business Customers and are eligible to receive the California Climate Credit. The credit is applied monthly, per billing period, on a $/kWh basis. For customers that lack twelve months of billing data, eligibility is based on the customer's rate schedule and the number of times the customer has exceeded 20 kW. Customers who meet the eligibility criteria for Small Business Customers but who are designated as Emissions-Intensive and Trade-Exposed (EITE) are not considered Small Business Customers under this Special Condition and are not eligible to receive the California Climate Credit. Customers receiving generation services from the City of Cerritos, the City of Corona and the Eastside Power Authority are not eligible to receive the California Climate Credit.",
"dataType": "BOOLEAN",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "true",
"isDefault": true
},
{
"keyName": "hasDWRChargeExemption",
"quantityKey": null,
"displayName": "Has DWR Charge Exemption",
"family": "customerStatus",
"keyspace": "customer",
"description": "DWR charge exemption applies to medical and low income customers",
"dataType": "BOOLEAN",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "false",
"isDefault": true
},
{
"keyName": "isFERACustomer",
"quantityKey": null,
"displayName": "Is FERA Customer",
"family": "customerStatus",
"keyspace": "customer",
"description": "Family Electric Rate Assistance (FERA) is the rate reduction program in California for household with maximum annual income of between 200% and 250% of federal poverty guidelines and have three or more persons residing full time in their household.",
"dataType": "BOOLEAN",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "false",
"isDefault": true
},
{
"keyName": "nemTrueUpPeriod",
"quantityKey": null,
"displayName": "NEM True Up Period",
"family": "billing",
"keyspace": "electricity",
"description": "Indicates whether this is a Net Energy Metering True up period.",
"dataType": "BOOLEAN",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "false",
"isDefault": true
},
{
"keyName": "powerChargeIndifferenceAdjustmentVintageYear",
"quantityKey": null,
"displayName": "Power Charge Indifference Adjustment Vintage Year ",
"family": "load",
"keyspace": "electricity",
"description": "The adjustment (either a charge or credit) is intended to ensure that customers that purchase electricity from non-utility suppliers pay their share of cost for generation acquired prior to 2003",
"dataType": "CHOICE",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "Pre 2009 Vintage",
"choices": [
{
"displayValue": "Pre 2009 Vintage",
"value": "Pre 2009 Vintage",
"dataValue": "Pre 2009 Vintage",
"likelihood": null
},
{
"displayValue": "2009 Vintage",
"value": "2009 Vintage",
"dataValue": "2009 Vintage",
"likelihood": null
},
{
"displayValue": "2010 Vintage",
"value": "2010 Vintage",
"dataValue": "2010 Vintage",
"likelihood": null
},
{
"displayValue": "2011 Vintage",
"value": "2011 Vintage",
"dataValue": "2011 Vintage",
"likelihood": null
},
{
"displayValue": "2012 Vintage",
"value": "2012 Vintage",
"dataValue": "2012 Vintage",
"likelihood": null
},
{
"displayValue": "2013 Vintage",
"value": "2013 Vintage",
"dataValue": "2013 Vintage",
"likelihood": null
},
{
"displayValue": "2014 Vintage",
"value": "2014 Vintage",
"dataValue": "2014 Vintage",
"likelihood": null
},
{
"displayValue": "2015 Vintage",
"value": "2015 Vintage",
"dataValue": "2015 Vintage",
"likelihood": null
},
{
"displayValue": "2016 Vintage",
"value": "2016 Vintage",
"dataValue": "2016 Vintage",
"likelihood": null
},
{
"displayValue": "2017 Vintage",
"value": "2017 Vintage",
"dataValue": "2017 Vintage",
"likelihood": null
},
{
"displayValue": "2018 Vintage",
"value": "2018 Vintage",
"dataValue": "2018 Vintage",
"likelihood": null
},
{
"displayValue": "2019 Vintage",
"value": "2019 Vintage",
"dataValue": "2019 Vintage",
"likelihood": null
},
{
"displayValue": "None",
"value": "None",
"dataValue": "None",
"likelihood": null
},
{
"displayValue": "2020 Vintage",
"value": "2020 Vintage",
"dataValue": "2020 Vintage",
"likelihood": null
},
{
"displayValue": "2021 Vintage",
"value": "2021 Vintage",
"dataValue": "2021 Vintage",
"likelihood": null
},
{
"displayValue": "2022 Vintage",
"value": "2022 Vintage",
"dataValue": "2022 Vintage",
"likelihood": null
},
{
"displayValue": "2023 Vintage",
"value": "2023 Vintage",
"dataValue": "2023 Vintage",
"likelihood": null
},
{
"displayValue": "2024 Vintage",
"value": "2024 Vintage",
"dataValue": "2024 Vintage",
"likelihood": null
},
{
"displayValue": "2025 Vintage",
"value": "2025 Vintage",
"dataValue": "2025 Vintage",
"likelihood": null
}
],
"isDefault": true
},
{
"keyName": "priorTrueUpConsumption",
"quantityKey": null,
"displayName": "NEM Consumption Prior to True Up",
"family": "nemTrueUpConsumption",
"keyspace": "tariff",
"description": "Net Energy Metering Consumption from before the True Up period.",
"dataType": "DECIMAL",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "0",
"isDefault": true
},
{
"keyName": "rateOption100747",
"quantityKey": null,
"displayName": "Sonoma Energy Choice",
"family": "load",
"keyspace": "electricity",
"description": "Customers electing the 100% Local Renewable service option will pay the otherwise applicable SCP rate plus the 100% Renewable Energy Charge.",
"dataType": "CHOICE",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "CleanStart Surcharge",
"choices": [
{
"displayValue": "EverGreen Surcharge",
"value": "EverGreen Surcharge",
"dataValue": "EverGreen Surcharge",
"likelihood": null
},
{
"displayValue": "CleanStart Surcharge",
"value": "CleanStart Surcharge",
"dataValue": "CleanStart Surcharge",
"likelihood": null
}
],
"isDefault": true
},
{
"keyName": "territoryId",
"quantityKey": null,
"displayName": "Territory",
"family": "billing",
"keyspace": "electricity",
"description": "Rate Baseline Region",
"dataType": "CHOICE",
"propertyTypes": "RATE_CRITERIA",
"operator": null,
"choices": [
{
"displayValue": "Baseline Region P",
"value": "3534",
"dataValue": "3534",
"likelihood": null
},
{
"displayValue": "Baseline Region Q",
"value": "3535",
"dataValue": "3535",
"likelihood": null
},
{
"displayValue": "Baseline Region R",
"value": "3536",
"dataValue": "3536",
"likelihood": null
},
{
"displayValue": "Baseline Region S",
"value": "3537",
"dataValue": "3537",
"likelihood": null
},
{
"displayValue": "Baseline Region T",
"value": "3538",
"dataValue": "3538",
"likelihood": null
},
{
"displayValue": "Baseline Region V",
"value": "3539",
"dataValue": "3539",
"likelihood": null
},
{
"displayValue": "Baseline Region W",
"value": "3540",
"dataValue": "3540",
"likelihood": null
},
{
"displayValue": "Baseline Region X",
"value": "3541",
"dataValue": "3541",
"likelihood": null
},
{
"displayValue": "Baseline Region Y",
"value": "3542",
"dataValue": "3542",
"likelihood": null
},
{
"displayValue": "Baseline Region Z",
"value": "3543",
"dataValue": "3543",
"likelihood": null
}
],
"isDefault": true
},
{
"keyName": "utilityEmployee",
"quantityKey": null,
"displayName": "Is Utility Employee",
"family": "customerStatus",
"keyspace": "customer",
"description": "Applicable to domestic service utility employees",
"dataType": "BOOLEAN",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "false",
"isDefault": true
},
{
"keyName": "chargeClass",
"quantityKey": null,
"displayName": "Charge Class Type",
"family": "service",
"keyspace": "electricity",
"description": "The tariff has rates with the following charge class.",
"dataType": "CHOICE",
"propertyTypes": "SERVICE_TERMS",
"operator": "=",
"propertyValue": "TRANSMISSION,DISTRIBUTION,SUPPLY,NON_BYPASSABLE",
"choices": [
{
"displayValue": "Transmission",
"value": "1",
"dataValue": "1",
"likelihood": null
},
{
"displayValue": "Distribution",
"value": "2",
"dataValue": "2",
"likelihood": null
},
{
"displayValue": "Supply",
"value": "4",
"dataValue": "4",
"likelihood": null
},
{
"displayValue": "Tax",
"value": "8",
"dataValue": "8",
"likelihood": null
},
{
"displayValue": "Other",
"value": "16",
"dataValue": "16",
"likelihood": null
},
{
"displayValue": "Contracted",
"value": "32",
"dataValue": "32",
"likelihood": null
}
],
"isDefault": false
}
],
"rates": [
{
"tariffRateId": 20706490,
"tariffId": 3519600,
"riderId": 3210800,
"tariffSequenceNumber": 2,
"rateGroupName": "Generation",
"rateName": "Evergreen Rate",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": null,
"chargePeriod": "MONTHLY",
"rateBands": []
},
{
"tariffRateId": 20706491,
"tariffId": 3519600,
"tariffSequenceNumber": 2,
"rateGroupName": "Generation",
"rateName": "Energy Charge",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "SUPPLY",
"chargePeriod": "MONTHLY",
"rateBands": [
{
"tariffRateBandId": 15645255,
"tariffRateId": 20706491,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.141410,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20706492,
"tariffId": 3519600,
"tariffSequenceNumber": 3,
"rateGroupName": "FERA Discount",
"rateName": "FERA Discount",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "QUANTITY",
"chargeClass": "TRANSMISSION,DISTRIBUTION,SUPPLY",
"chargePeriod": "MONTHLY",
"applicabilityKey": "isFERACustomer",
"rateBands": [
{
"tariffRateBandId": 15645256,
"tariffRateId": 20706492,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "true",
"rateAmount": 18.000000,
"rateUnit": "PERCENTAGE",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20706493,
"tariffId": 3519600,
"riderId": 3275071,
"tariffSequenceNumber": 4,
"rateGroupName": "T&D Rider",
"rateName": "T&D Rider",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": null,
"chargePeriod": "MONTHLY",
"rateBands": []
},
{
"tariffRateId": 20706494,
"tariffId": 3519600,
"riderId": 3276174,
"tariffSequenceNumber": 5,
"rateGroupName": "Adjustments",
"rateName": "Adjustments",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": null,
"chargePeriod": "MONTHLY",
"rateBands": []
},
{
"tariffRateId": 20706495,
"tariffId": 3519600,
"riderId": 3253822,
"tariffSequenceNumber": 6,
"rateGroupName": "Franchise Fee",
"rateName": "Franchise Fee",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": null,
"chargePeriod": "MONTHLY",
"rateBands": []
},
{
"tariffRateId": 20706496,
"tariffId": 3519600,
"riderId": 3253851,
"tariffSequenceNumber": 7,
"rateGroupName": "PCIA",
"rateName": "PCIA",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": null,
"chargePeriod": "MONTHLY",
"rateBands": []
},
{
"tariffRateId": 20706497,
"tariffId": 3519600,
"riderId": 3227139,
"tariffSequenceNumber": 8,
"rateGroupName": "Energy Surcharge",
"rateName": "Energy Surcharge",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": null,
"chargePeriod": "MONTHLY",
"rateBands": []
},
{
"tariffRateId": 20706498,
"tariffId": 3519600,
"riderId": 3419366,
"tariffSequenceNumber": 9,
"rateGroupName": "NetGreen",
"rateName": "NetGreen",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": null,
"chargePeriod": "MONTHLY",
"rateBands": []
},
{
"tariffRateId": 19680413,
"tariffId": 3519600,
"tariffSequenceNumber": 2,
"rateGroupName": "EverGreen Surcharge",
"rateName": "EverGreen Surcharge",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargePeriod": "MONTHLY",
"applicabilityKey": "rateOption100747",
"rateBands": [
{
"tariffRateBandId": 14214594,
"tariffRateId": 19680413,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "CleanStart Surcharge",
"rateAmount": 0.000000,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 14214595,
"tariffRateId": 19680413,
"rateSequenceNumber": 2,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "EverGreen Surcharge",
"rateAmount": 0.025000,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703929,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Distribution",
"rateName": "Distribution",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"rateBands": [
{
"tariffRateBandId": 15641500,
"tariffRateId": 20703929,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.205890,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703930,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Summer - Territory P)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3534,
"territoryName": "Baseline Region P",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 38.81323759210526,
"longitude": -121.25965298684213
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641501,
"tariffRateId": 20703930,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 13.5,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641502,
"tariffRateId": 20703930,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 13.5,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641503,
"tariffRateId": 20703930,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703931,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Summer - Territory Q)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3535,
"territoryName": "Baseline Region Q",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.018478,
"longitude": -121.92218766666667
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641504,
"tariffRateId": 20703931,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 9.8,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641505,
"tariffRateId": 20703931,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 9.8,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641506,
"tariffRateId": 20703931,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703932,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Summer - Territory R)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3536,
"territoryName": "Baseline Region R",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.306934865921825,
"longitude": -120.1438516871509
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641507,
"tariffRateId": 20703932,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 17.7,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641508,
"tariffRateId": 20703932,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 17.7,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641509,
"tariffRateId": 20703932,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703933,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Summer - Territory S)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3537,
"territoryName": "Baseline Region S",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 38.47617793415636,
"longitude": -121.43255658024695
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641510,
"tariffRateId": 20703933,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 15.0,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641511,
"tariffRateId": 20703933,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 15.0,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641512,
"tariffRateId": 20703933,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703934,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Summer - Territory T)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3538,
"territoryName": "Baseline Region T",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.282924351020434,
"longitude": -122.07243274285725
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641513,
"tariffRateId": 20703934,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 6.5,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641514,
"tariffRateId": 20703934,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 6.5,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641515,
"tariffRateId": 20703934,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703935,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Summer - Territory V)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3539,
"territoryName": "Baseline Region V",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 40.690513440000004,
"longitude": -124.06306692000003
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641516,
"tariffRateId": 20703935,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 7.1,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641517,
"tariffRateId": 20703935,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 7.1,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641518,
"tariffRateId": 20703935,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703936,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Summer - Territory W)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3540,
"territoryName": "Baseline Region W",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 35.71898616666665,
"longitude": -119.22503353333336
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641519,
"tariffRateId": 20703936,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 19.2,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641520,
"tariffRateId": 20703936,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 19.2,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641521,
"tariffRateId": 20703936,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703937,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Summer - Territory X)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3541,
"territoryName": "Baseline Region X",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.60216264261168,
"longitude": -122.0893179725086
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641522,
"tariffRateId": 20703937,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 9.8,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641523,
"tariffRateId": 20703937,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 9.8,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641524,
"tariffRateId": 20703937,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703938,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Summer - Territory Y)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3542,
"territoryName": "Baseline Region Y",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 39.67346465333334,
"longitude": -121.53281651999998
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641525,
"tariffRateId": 20703938,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 10.5,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641526,
"tariffRateId": 20703938,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 10.5,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641527,
"tariffRateId": 20703938,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703939,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Summer - Territory Z)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3543,
"territoryName": "Baseline Region Z",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 39.317859545454546,
"longitude": -120.64584263636362
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641528,
"tariffRateId": 20703939,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 5.9,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641529,
"tariffRateId": 20703939,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 5.9,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641530,
"tariffRateId": 20703939,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703940,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Winter - Territory P)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3534,
"territoryName": "Baseline Region P",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 38.81323759210526,
"longitude": -121.25965298684213
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641531,
"tariffRateId": 20703940,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 11.0,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641532,
"tariffRateId": 20703940,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 11.0,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641533,
"tariffRateId": 20703940,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703941,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Winter - Territory Q)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3535,
"territoryName": "Baseline Region Q",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.018478,
"longitude": -121.92218766666667
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641534,
"tariffRateId": 20703941,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 11.0,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641535,
"tariffRateId": 20703941,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 11.0,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641536,
"tariffRateId": 20703941,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703942,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Winter - Territory R)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3536,
"territoryName": "Baseline Region R",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.306934865921825,
"longitude": -120.1438516871509
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641537,
"tariffRateId": 20703942,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 10.4,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641538,
"tariffRateId": 20703942,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 10.4,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641539,
"tariffRateId": 20703942,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703943,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Winter - Territory S)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3537,
"territoryName": "Baseline Region S",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 38.47617793415636,
"longitude": -121.43255658024695
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641540,
"tariffRateId": 20703943,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 10.2,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641541,
"tariffRateId": 20703943,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 10.2,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641542,
"tariffRateId": 20703943,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703944,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Winter - Territory T)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3538,
"territoryName": "Baseline Region T",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.282924351020434,
"longitude": -122.07243274285725
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641543,
"tariffRateId": 20703944,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 7.5,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641544,
"tariffRateId": 20703944,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 7.5,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641545,
"tariffRateId": 20703944,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703945,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Winter - Territory V)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3539,
"territoryName": "Baseline Region V",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 40.690513440000004,
"longitude": -124.06306692000003
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641546,
"tariffRateId": 20703945,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 8.1,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641547,
"tariffRateId": 20703945,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 8.1,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641548,
"tariffRateId": 20703945,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703946,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Winter - Territory W)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3540,
"territoryName": "Baseline Region W",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 35.71898616666665,
"longitude": -119.22503353333336
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641549,
"tariffRateId": 20703946,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 9.8,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641550,
"tariffRateId": 20703946,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 9.8,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641551,
"tariffRateId": 20703946,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703947,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Winter - Territory X)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3541,
"territoryName": "Baseline Region X",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.60216264261168,
"longitude": -122.0893179725086
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641552,
"tariffRateId": 20703947,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 9.7,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641553,
"tariffRateId": 20703947,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 9.7,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641554,
"tariffRateId": 20703947,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703948,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Winter - Territory Y)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3542,
"territoryName": "Baseline Region Y",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 39.67346465333334,
"longitude": -121.53281651999998
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641555,
"tariffRateId": 20703948,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 11.1,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641556,
"tariffRateId": 20703948,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 11.1,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641557,
"tariffRateId": 20703948,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703949,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Conservation Incentive Adjustment",
"rateName": "Conservation Incentive Adjustment (Winter - Territory Z)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3543,
"territoryName": "Baseline Region Z",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 39.317859545454546,
"longitude": -120.64584263636362
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641558,
"tariffRateId": 20703949,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 7.8,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"rateAmount": 0.043220,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641559,
"tariffRateId": 20703949,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 7.8,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 4.000000,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641560,
"tariffRateId": 20703949,
"rateSequenceNumber": 3,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"rateAmount": 0.057620,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703950,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Summer - Territory P)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3534,
"territoryName": "Baseline Region P",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 38.81323759210526,
"longitude": -121.25965298684213
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641561,
"tariffRateId": 20703950,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 13.5,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641562,
"tariffRateId": 20703950,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703951,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Summer - Territory Q)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3535,
"territoryName": "Baseline Region Q",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.018478,
"longitude": -121.92218766666667
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641563,
"tariffRateId": 20703951,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 9.8,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641564,
"tariffRateId": 20703951,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703952,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Summer - Territory R)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3536,
"territoryName": "Baseline Region R",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.306934865921825,
"longitude": -120.1438516871509
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641565,
"tariffRateId": 20703952,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 17.7,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641566,
"tariffRateId": 20703952,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703953,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Summer - Territory S)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3537,
"territoryName": "Baseline Region S",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 38.47617793415636,
"longitude": -121.43255658024695
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641567,
"tariffRateId": 20703953,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 15.0,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641568,
"tariffRateId": 20703953,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703954,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Summer - Territory T)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3538,
"territoryName": "Baseline Region T",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.282924351020434,
"longitude": -122.07243274285725
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641569,
"tariffRateId": 20703954,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 6.5,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641570,
"tariffRateId": 20703954,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703955,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Summer - Territory V)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3539,
"territoryName": "Baseline Region V",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 40.690513440000004,
"longitude": -124.06306692000003
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641571,
"tariffRateId": 20703955,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 7.1,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641572,
"tariffRateId": 20703955,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703956,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Summer - Territory W)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3540,
"territoryName": "Baseline Region W",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 35.71898616666665,
"longitude": -119.22503353333336
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641573,
"tariffRateId": 20703956,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 19.2,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641574,
"tariffRateId": 20703956,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703957,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Summer - Territory X)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3541,
"territoryName": "Baseline Region X",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.60216264261168,
"longitude": -122.0893179725086
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641575,
"tariffRateId": 20703957,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 9.8,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641576,
"tariffRateId": 20703957,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703958,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Summer - Territory Y)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3542,
"territoryName": "Baseline Region Y",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 39.67346465333334,
"longitude": -121.53281651999998
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641577,
"tariffRateId": 20703958,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 10.5,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641578,
"tariffRateId": 20703958,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703959,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Summer - Territory Z)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3543,
"territoryName": "Baseline Region Z",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 39.317859545454546,
"longitude": -120.64584263636362
}
},
"season": {
"seasonId": 2235,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Summer",
"seasonFromMonth": 6,
"seasonFromDay": 1,
"seasonToMonth": 9,
"seasonToDay": 30
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641579,
"tariffRateId": 20703959,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 5.9,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641580,
"tariffRateId": 20703959,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703960,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Winter - Territory P)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3534,
"territoryName": "Baseline Region P",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 38.81323759210526,
"longitude": -121.25965298684213
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641581,
"tariffRateId": 20703960,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 11.0,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641582,
"tariffRateId": 20703960,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703961,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Winter - Territory Q)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3535,
"territoryName": "Baseline Region Q",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.018478,
"longitude": -121.92218766666667
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641583,
"tariffRateId": 20703961,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 11.0,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641584,
"tariffRateId": 20703961,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703962,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Winter - Territory R)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3536,
"territoryName": "Baseline Region R",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.306934865921825,
"longitude": -120.1438516871509
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641585,
"tariffRateId": 20703962,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 10.4,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641586,
"tariffRateId": 20703962,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703963,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Winter - Territory S)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3537,
"territoryName": "Baseline Region S",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 38.47617793415636,
"longitude": -121.43255658024695
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641587,
"tariffRateId": 20703963,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 10.2,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641588,
"tariffRateId": 20703963,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703964,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Winter - Territory T)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3538,
"territoryName": "Baseline Region T",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.282924351020434,
"longitude": -122.07243274285725
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641589,
"tariffRateId": 20703964,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 7.5,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641590,
"tariffRateId": 20703964,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703965,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Winter - Territory V)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3539,
"territoryName": "Baseline Region V",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 40.690513440000004,
"longitude": -124.06306692000003
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641591,
"tariffRateId": 20703965,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 8.1,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641592,
"tariffRateId": 20703965,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703966,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Winter - Territory W)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3540,
"territoryName": "Baseline Region W",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 35.71898616666665,
"longitude": -119.22503353333336
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641593,
"tariffRateId": 20703966,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 9.8,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641594,
"tariffRateId": 20703966,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703967,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Winter - Territory X)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3541,
"territoryName": "Baseline Region X",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 37.60216264261168,
"longitude": -122.0893179725086
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641595,
"tariffRateId": 20703967,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 9.7,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641596,
"tariffRateId": 20703967,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703968,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Winter - Territory Y)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3542,
"territoryName": "Baseline Region Y",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 39.67346465333334,
"longitude": -121.53281651999998
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641597,
"tariffRateId": 20703968,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 11.1,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641598,
"tariffRateId": 20703968,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703969,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Employee Discount",
"rateName": "Employee Discount (Winter - Territory Z)",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"territory": {
"territoryId": 3543,
"territoryName": "Baseline Region Z",
"lseId": 734,
"lseName": "Pacific Gas & Electric Co",
"parentTerritoryId": 807,
"usageType": "TARIFF",
"itemTypes": "ZIPCODE",
"deregRes": false,
"deregCandi": false,
"centerPoint": {
"latitude": 39.317859545454546,
"longitude": -120.64584263636362
}
},
"season": {
"seasonId": 2236,
"lseId": 734,
"seasonGroupId": 4,
"seasonName": "Winter",
"seasonFromMonth": 10,
"seasonFromDay": 1,
"seasonToMonth": 5,
"seasonToDay": 31
},
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "utilityEmployee",
"variableLimitKey": "consumptionTiersCaliforniaWithMedicalAllowance",
"rateBands": [
{
"tariffRateBandId": 15641599,
"tariffRateId": 20703969,
"rateSequenceNumber": 1,
"hasConsumptionLimit": true,
"consumptionUpperLimit": 7.8,
"hasDemandLimit": false,
"demandUpperLimit": 1.0,
"hasPropertyLimit": true,
"propertyUpperLimit": 1.000000,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.398340,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15641600,
"tariffRateId": 20703969,
"rateSequenceNumber": 2,
"hasConsumptionLimit": true,
"hasDemandLimit": false,
"demandUpperLimit": 0.0,
"hasPropertyLimit": true,
"applicabilityValue": "true",
"calculationFactor": 0.250000,
"rateAmount": 0.499180,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20703970,
"tariffId": 3519600,
"tariffSequenceNumber": 4,
"rateGroupName": "Delivery Minimum Bill Amount Charge",
"rateName": "Delivery Minimum Bill Amount Charge",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "MINIMUM",
"chargeClass": "TRANSMISSION,DISTRIBUTION",
"chargePeriod": "DAILY",
"rateBands": [
{
"tariffRateBandId": 15641601,
"tariffRateId": 20703970,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.403170,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704039,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "California Climate Credit",
"rateName": "California Climate Credit",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "FIXED_PRICE",
"chargeClass": "AFTER_TAX,NON_BYPASSABLE",
"chargePeriod": "DAILY",
"applicabilityKey": "hasCaliforniaClimateCredit",
"variableRateKey": "californiaClimateCredit",
"rateBands": [
{
"tariffRateBandId": 15641730,
"tariffRateId": 20704039,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "true",
"rateAmount": 0.000000,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704040,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "Transmission",
"rateName": "Transmission",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "TRANSMISSION",
"chargePeriod": "MONTHLY",
"rateBands": [
{
"tariffRateBandId": 15641731,
"tariffRateId": 20704040,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.051220,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704041,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "Transmission",
"rateName": "Transmission Rate Adjustments",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "TRANSMISSION",
"chargePeriod": "MONTHLY",
"rateBands": [
{
"tariffRateBandId": 15641732,
"tariffRateId": 20704041,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.012130,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704042,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "Transmission",
"rateName": "Reliability Services",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "TRANSMISSION",
"chargePeriod": "MONTHLY",
"rateBands": [
{
"tariffRateBandId": 15641733,
"tariffRateId": 20704042,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.000320,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704043,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "Public Purpose Programs",
"rateName": "Public Purpose Programs",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION,NON_BYPASSABLE",
"chargePeriod": "HOURLY",
"rateBands": [
{
"tariffRateBandId": 15641734,
"tariffRateId": 20704043,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.026440,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704044,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "Nuclear Decommissioning",
"rateName": "Nuclear Decommissioning",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION,NON_BYPASSABLE",
"chargePeriod": "HOURLY",
"rateBands": [
{
"tariffRateBandId": 15641735,
"tariffRateId": 20704044,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.000240,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704045,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "Wildfire Fund Charge",
"rateName": "Wildfire Fund Charge",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION,NON_BYPASSABLE",
"chargePeriod": "HOURLY",
"applicabilityKey": "hasDWRChargeExemption",
"rateBands": [
{
"tariffRateBandId": 15641736,
"tariffRateId": 20704045,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "false",
"rateAmount": 0.005950,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704046,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "Ongoing CTC",
"rateName": "Ongoing CTC",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION,NON_BYPASSABLE",
"chargePeriod": "HOURLY",
"rateBands": [
{
"tariffRateBandId": 15641737,
"tariffRateId": 20704046,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.000720,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704047,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "Energy Cost Recovery Amount",
"rateName": "Energy Cost Recovery Amount",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"rateBands": [
{
"tariffRateBandId": 15641738,
"tariffRateId": 20704047,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.000010,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704048,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "Distribution",
"rateName": "New System Generation Charge",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"rateBands": [
{
"tariffRateBandId": 15641739,
"tariffRateId": 20704048,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.005740,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704049,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "Recovery Bond Charge",
"rateName": "Recovery Bond Charge",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"rateBands": [
{
"tariffRateBandId": 15641740,
"tariffRateId": 20704049,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.007780,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704050,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "Recovery Bond Credit",
"rateName": "Recovery Bond Credit",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"rateBands": [
{
"tariffRateBandId": 15641741,
"tariffRateId": 20704050,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.007780,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20704051,
"tariffId": 3519600,
"tariffSequenceNumber": 5,
"rateGroupName": "Wildfire Hardening",
"rateName": "Wildfire Hardening",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"rateBands": [
{
"tariffRateBandId": 15641742,
"tariffRateId": 20704051,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"rateAmount": 0.003390,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20412387,
"tariffId": 3519600,
"tariffSequenceNumber": 6,
"rateGroupName": "Franchise Fee Surcharge",
"rateName": "Franchise Fee Surcharge",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "powerChargeIndifferenceAdjustmentVintageYear",
"rateBands": [
{
"tariffRateBandId": 15244467,
"tariffRateId": 20412387,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "Pre 2009 Vintage",
"rateAmount": 0.001130,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244468,
"tariffRateId": 20412387,
"rateSequenceNumber": 2,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2009 Vintage",
"rateAmount": 0.001050,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244469,
"tariffRateId": 20412387,
"rateSequenceNumber": 3,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2010 Vintage",
"rateAmount": 0.001050,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244470,
"tariffRateId": 20412387,
"rateSequenceNumber": 4,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2011 Vintage",
"rateAmount": 0.001050,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244471,
"tariffRateId": 20412387,
"rateSequenceNumber": 5,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2012 Vintage",
"rateAmount": 0.001040,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244472,
"tariffRateId": 20412387,
"rateSequenceNumber": 6,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2013 Vintage",
"rateAmount": 0.001050,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244473,
"tariffRateId": 20412387,
"rateSequenceNumber": 7,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2014 Vintage",
"rateAmount": 0.001050,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244474,
"tariffRateId": 20412387,
"rateSequenceNumber": 8,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2015 Vintage",
"rateAmount": 0.001050,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244475,
"tariffRateId": 20412387,
"rateSequenceNumber": 9,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2016 Vintage",
"rateAmount": 0.001050,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244476,
"tariffRateId": 20412387,
"rateSequenceNumber": 10,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2017 Vintage",
"rateAmount": 0.001050,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244477,
"tariffRateId": 20412387,
"rateSequenceNumber": 11,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2018 Vintage",
"rateAmount": 0.001080,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244478,
"tariffRateId": 20412387,
"rateSequenceNumber": 12,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2019 Vintage",
"rateAmount": 0.001110,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244479,
"tariffRateId": 20412387,
"rateSequenceNumber": 13,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2020 Vintage",
"rateAmount": 0.001110,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244480,
"tariffRateId": 20412387,
"rateSequenceNumber": 14,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2021 Vintage",
"rateAmount": 0.001270,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244481,
"tariffRateId": 20412387,
"rateSequenceNumber": 15,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2022 Vintage",
"rateAmount": 0.001270,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244482,
"tariffRateId": 20412387,
"rateSequenceNumber": 16,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2023 Vintage",
"rateAmount": 0.001290,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244483,
"tariffRateId": 20412387,
"rateSequenceNumber": 17,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2024 Vintage",
"rateAmount": 0.001330,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15244484,
"tariffRateId": 20412387,
"rateSequenceNumber": 18,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2025 Vintage",
"rateAmount": 0.001300,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20412484,
"tariffId": 3519600,
"tariffSequenceNumber": 7,
"rateGroupName": "Power Charge Indifference Adjustment",
"rateName": "Power Charge Indifference Adjustment",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "DISTRIBUTION",
"chargePeriod": "MONTHLY",
"applicabilityKey": "powerChargeIndifferenceAdjustmentVintageYear",
"variableFactorKey": "medicalBaselineExemptionFactor2021",
"rateBands": [
{
"tariffRateBandId": 15245042,
"tariffRateId": 20412484,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "Pre 2009 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.000000,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245043,
"tariffRateId": 20412484,
"rateSequenceNumber": 2,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2009 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.010710,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245044,
"tariffRateId": 20412484,
"rateSequenceNumber": 3,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2010 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.011490,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245045,
"tariffRateId": 20412484,
"rateSequenceNumber": 4,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2011 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.011610,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245046,
"tariffRateId": 20412484,
"rateSequenceNumber": 5,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2012 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.011690,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245047,
"tariffRateId": 20412484,
"rateSequenceNumber": 6,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2013 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.011250,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245048,
"tariffRateId": 20412484,
"rateSequenceNumber": 7,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2014 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.011190,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245049,
"tariffRateId": 20412484,
"rateSequenceNumber": 8,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2015 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.011110,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245050,
"tariffRateId": 20412484,
"rateSequenceNumber": 9,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2016 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.011100,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245051,
"tariffRateId": 20412484,
"rateSequenceNumber": 10,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2017 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.010730,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245052,
"tariffRateId": 20412484,
"rateSequenceNumber": 11,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2018 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.006700,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245053,
"tariffRateId": 20412484,
"rateSequenceNumber": 12,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2019 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.003370,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245054,
"tariffRateId": 20412484,
"rateSequenceNumber": 13,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2020 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.003240,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245055,
"tariffRateId": 20412484,
"rateSequenceNumber": 14,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2021 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.019080,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245056,
"tariffRateId": 20412484,
"rateSequenceNumber": 15,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2022 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.019260,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245057,
"tariffRateId": 20412484,
"rateSequenceNumber": 16,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2023 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.022020,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245058,
"tariffRateId": 20412484,
"rateSequenceNumber": 17,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2024 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.027560,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
},
{
"tariffRateBandId": 15245059,
"tariffRateId": 20412484,
"rateSequenceNumber": 18,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "2025 Vintage",
"calculationFactor": 0.750000,
"rateAmount": 0.023270,
"rateUnit": "COST_PER_UNIT",
"isCredit": true,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20414764,
"tariffId": 3519600,
"tariffSequenceNumber": 8,
"rateGroupName": "Energy Surcharge",
"rateName": "Energy Surcharge",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "AFTER_TAX",
"chargePeriod": "MONTHLY",
"applicabilityKey": "hasCAEnergySurchargeExemption",
"rateBands": [
{
"tariffRateBandId": 15253082,
"tariffRateId": 20414764,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "false",
"rateAmount": 0.000300,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
},
{
"tariffRateId": 20500620,
"tariffId": 3519600,
"tariffSequenceNumber": 9,
"rateGroupName": "NetGreen Net Surplus Compensation Rate",
"rateName": "NetGreen Net Surplus Compensation Rate",
"fromDateTime": "2025-09-01T00:00:00-07:00",
"toDateTime": null,
"chargeType": "QUANTITY",
"chargePeriod": "MONTHLY",
"quantityKey": "nemTrueUpExcessConsumption",
"applicabilityKey": "nemTrueUpPeriod",
"rateBands": [
{
"tariffRateBandId": 15364835,
"tariffRateId": 20500620,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "true",
"rateAmount": 0.051650,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
}
]
}
]
}If you examine all the tariff properties and filter for those that have propertyTypes including RATE_CRITERIA, you'll find the following rate criteria:
| keyName | family | dataType |
|---|---|---|
| consumption | load | Decimal |
| dailyMedicalAllowance | load | Decimal |
| hasCAEnergySurchargeExemption | billing | Boolean |
| powerChargeIndifferenceAdjustmentVintageYear | load | Choice |
| rateOption100747 | load | Choice |
| territoryId | billing | Choice |
What do these properties mean?
Rate Criteria Based on Load or Usage
The first property in the list is consumption. This is quite common and falls into a group of rate criteria properties that indicate what types of usage data drive costs. consumption is by far the most common and can sometimes be divided into Time of Use (TOU) groups. For many commercial tariffs, you might also see the keyName of demand or a property with a dataType of DEMAND. This indicates that the tariff has rates based on billing demand.
The collection of [how-to-usage] provides good resources for passing usage data, whether from bills or meter data, to our calculators.
Territory (Baseline Region) Rate Criteria
The last property in our example is territoryId. If you find territoryId in your list of rate criteria properties, it means the tariff rates vary according to the customer's location within the utility's service area. This occurs for residential customers in California and all customers for certain Northeastern utilities such as Consolidated Edison. It's somewhat unusual elsewhere.
We have a separate [how-to-baseline-territories] guide that covers the specific case of territoryId.
Rate Criteria Properties That Drive Rate Changes
With load data and territory addressed, we're left with four remaining rate criteria in our example. Every tariff is different, and rate criteria in the properties list are fully data-driven and specific to that tariff. The returned data includes a plain text description of what the property represents, the data type of the property, and the valid choices (where applicable).
Smart Default Values
Our rate criteria properties also have smart defaults, so if you don't specify a value, we select the most likely one. Many properties have a high percentage of utility customers using the default, with only a small population requiring an alternative value. Arcadia determines the default value for each tariff property and will use the default value in calculations unless you override it with a specific value.
Is the Default Value Good Enough?
Arcadia includes all tariff properties on its tariffs, even those that have minimal impact on calculations. Before providing your customers with numerous choices, you should consider evaluating that tariff's impact on calculation accuracy. Using the additional parameter populateRates=true, you can identify the rates affected by the tariff property. Let's examine two examples from the call above:
First, find the rate with applicabilityKey of rateOption100747:
{
"tariffRateId": 17805934,
"tariffId": 3279203,
"tariffSequenceNumber": 1,
"rateGroupName": "EverGreen Surcharge",
"rateName": "EverGreen Surcharge",
"fromDateTime": "2017-03-01T00:00:00-08:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargePeriod": "MONTHLY",
"applicabilityKey": "rateOption100747",
"rateBands": [
{
"tariffRateBandId": 11534251,
"tariffRateId": 17805934,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "CleanStart Surcharge",
"rateAmount": 0,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
},
{
"tariffRateBandId": 11534252,
"tariffRateId": 17805934,
"rateSequenceNumber": 2,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "EverGreen Surcharge",
"rateAmount": 0.025,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
}As shown above, the rate affected by "rateOption100747" is consumption-based. The rate varies from 0¢/kWh (CleanStart Surcharge) to 2.5¢/kWh (EverGreen Surcharge). The 2.5¢ difference represents a significant percentage of total charges, making this a good property to surface to your customers.
Next, let's review the rate with applicabilityKey = "hasCAEnergySurchargeExemption":
{
"tariffRateId": 17419812,
"tariffId": 3279203,
"tariffSequenceNumber": 3,
"rateGroupName": "Energy Surcharge",
"rateName": "Energy Surcharge",
"fromDateTime": "2017-03-01T00:00:00-08:00",
"toDateTime": null,
"chargeType": "CONSUMPTION_BASED",
"chargeClass": "AFTER_TAX",
"chargePeriod": "MONTHLY",
"applicabilityKey": "hasCAEnergySurchargeExemption",
"rateBands": [
{
"tariffRateBandId": 10836003,
"tariffRateId": 17419812,
"rateSequenceNumber": 1,
"hasConsumptionLimit": false,
"hasDemandLimit": false,
"hasPropertyLimit": false,
"applicabilityValue": "false",
"rateAmount": 0.00029,
"rateUnit": "COST_PER_UNIT",
"isCredit": false,
"prevUpperLimit": null
}
]
}This rate is also consumption-based, but the rate is much smaller (0.00029¢/kWh). You only need to ask your customer for this value if you're aiming for bill-level accuracy.
Tariff Property Data Types
The tariff property itself provides valuable information about what values to pass in. The display name and description are useful for data entry form labels and tooltips. The data type indicates whether it's a choice (dropdown list), a boolean (checkbox), or an integer/decimal (input box). Finally, the default value is shown in the propertyValue field.
Boolean Properties
Here's an example of a boolean (True/False) property, hasCAEnergySurchargeExemption:
{
"keyName": "hasCAEnergySurchargeExemption",
"quantityKey": null,
"displayName": "Has Energy Surcharge Exemption",
"family": "billing",
"keyspace": "electricity",
"description": "Exemptions for CA Energy Surcharge apply to the following:\n1. Federal Agencies\n2. American National Red Cross facilities\n3. Energy consumed on Indian reservations\n4. Foreign consular employees\n5. Federal Credit Unions",
"dataType": "BOOLEAN",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "false",
"isDefault": true
}Integer or Decimal Properties
Integer and decimal properties are driven by numeric values—either whole numbers (integer) or decimals. Here's an example of a decimal tariff property, dailyMedicalAllowance:
{
"keyName": "dailyMedicalAllowance",
"quantityKey": null,
"displayName": "Daily Medical Allowance ",
"family": "load",
"keyspace": "electricity",
"description": "Residential customers on a medical allowance get additional quantities of energy at the lowest (baseline) price. The medical allowance is a daily value derived from an additional 500 kWh per month (16.438 kWh/Day). Medical Baseline customers can have one or more additional allotments at multiples of 16.438 kWh per day.",
"dataType": "DECIMAL",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "0",
"isDefault": true
}Choice Properties
Choice properties provide you with a list of strings (choices) that are used to select the appropriate rate for the customer. Here's a simple choice property with only two options:
{
"keyName": "rateOption100747",
"quantityKey": null,
"displayName": "Sonoma Energy Choice",
"family": "load",
"keyspace": "electricity",
"description": "Customers electing the 100% Local Renewable service option will pay the otherwise applicable SCP rate plus the 100% Renewable Energy Charge.",
"dataType": "CHOICE",
"propertyTypes": "RATE_CRITERIA",
"operator": "=",
"propertyValue": "CleanStart Surcharge",
"choices": [
{
"displayValue": "EverGreen Surcharge",
"value": "EverGreen Surcharge",
"dataValue": "EverGreen Surcharge",
"likelihood": null
},
{
"displayValue": "CleanStart Surcharge",
"value": "CleanStart Surcharge",
"dataValue": "CleanStart Surcharge",
"likelihood": null
}
],
"isDefault": true
}Being Explicit About Rate Criteria Properties
Once you've surfaced rate criteria properties in your application, you'll need to pass that information into your calculations. There are two approaches, and the one you choose depends on your use case.
Passing Rate Criteria Properties to Calculations
Passing tariff properties directly into your calculation is the best approach if you're not storing your customer's data with Arcadia or are performing a one-time calculation, including a "what-if" scenario where you change the tariff property settings.
Read more about passing tariff properties in Calculations as propertyInputs.
Updated 7 days ago
