E
Enerzy AI
api.enerzy.ai

Tariff Policies

JSON-LD

Energy tariff policies delivered over Beckn protocol as JSON-LD documents. Policies are cryptographically signed and verified via DeDi registry.

Residential Telescopic
RES-T1
Telescopic slab tariff for residential consumers. Higher usage brackets attract higher per-unit rates.
Usage RangeRate (Rs/kWh)
0-100 kWhRs. 4.50
101-300 kWhRs. 7.50
301+ kWhRs. 10.50
Time Adjustments
Night Discount
23:00-05:00
-10%
Commercial ToD
COM-TOU1
Time-of-Day tariff for commercial consumers. Evening peak surcharge to incentivize demand shifting.
PeriodRate (Rs/kWh)
Base Rate
All hours
Rs. 8.50
Evening Peak Surcharge
18:00-22:00
Rs. 1.50
Peak Hours TotalRs. 10.00
24-Hour ToD Window
00:0006:0012:0018:0024:00
Off-peak Rs. 8.50
Peak 18-22h Rs. 10.00
RES-T1 — Slab Rate Visualization
Low (Rs. 4.50) Mid (Rs. 7.50) High (Rs. 10.50)
COM-TOU1 — 24h ToD Rate Profile
Off-peak Rs. 8.50 Peak 18-22h Rs. 10.00

Raw Policy JSON-LD

RES-T1 — Residential Telescopic
{
  "@context": "https://schema.enerzy.ai/tariff/v1",
  "@type": "TariffPolicy",
  "@id": "policy-res-telescopic-001",
  "name": "Residential Telescopic Tariff",
  "consumerCategory": "residential",
  "tariffType": "telescopic",
  "currency": "INR",
  "slabs": [
    {
      "from": 0,
      "to": 100,
      "ratePerKwh": 4.5
    },
    {
      "from": 101,
      "to": 300,
      "ratePerKwh": 7.5
    },
    {
      "from": 301,
      "to": null,
      "ratePerKwh": 10.5
    }
  ],
  "timeAdjustments": [
    {
      "name": "night_discount",
      "startHour": 23,
      "endHour": 5,
      "adjustmentPercent": -10
    }
  ]
}
COM-TOU1 — Commercial ToD
{
  "@context": "https://schema.enerzy.ai/tariff/v1",
  "@type": "TariffPolicy",
  "@id": "policy-com-tou1-001",
  "name": "Commercial Time-of-Day Tariff",
  "consumerCategory": "commercial",
  "tariffType": "time-of-day",
  "currency": "INR",
  "baseRatePerKwh": 8.5,
  "timeAdjustments": [
    {
      "name": "evening_peak",
      "startHour": 18,
      "endHour": 22,
      "adjustmentPerKwh": 1.5
    }
  ]
}