Tariff Policies
JSON-LDEnergy tariff policies delivered over Beckn protocol as JSON-LD documents. Policies are cryptographically signed and verified via DeDi registry.
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
}
]
}