EV Charging Streaming

This API delivers real-time EV charging data stream to a customer's business system (such as ADMS).

  • Example use cases:

    • Distribution system planning. A list of charging events including kW peak, time, and kWh will help distribution system planners create better models and proactively upgrade or defer upgrades down to the secondary of distribution transformers, as required.

    • EV programs. Knowledge of EV charging loads will help EV program groups target appropriate customers and design better rates for EV programs, optimizing marketing O&M and participation in programs.

    • Data scientists. Forecasting loads and creating models of EV charging behavior may be performed by data scientists in utilities for distribution system planning and EV program impacts.

    • Controls. Use of the real-time EV charging events to inform transformer protection, VVO, DERMS, or other applications.

Response

Copy
{
   "type" : "record",
   "namespace": "Itron.Shared.Contracts.DistributedIntelligence.EVAwareness",
   "name": "EVAwarenessCollection",
   "doc": "Collection of EV Awareness Events",
   "fields" : [
      {"name": "ServicePointId", "type": ["null", "string"], "doc": "Service Point as of Charge Start Time"},
      {"name": "MeterID", "type": ["null", "string"]},
      {"name": "MeterNumber", "type": ["null", "string"]},
      {"name": "ESN", "type": ["null", "string"], "doc": "Electronic Serial Number"},
      {"name": "TransformerId", "type": ["null", "string"]},
      {"name": "PremiseId", "type": ["null", "string"]},
      {"name": "ReceivedTime", "type": [{"type": "long", "logicalType": "timestamp-millis"}], "doc": "When the data was received by the App Platform"},
      {"name": "ChargeStartTime", "type": [{"type": "long", "logicalType": "timestamp-millis"}]},
      {"name": "ChargeEndTime", "type": [{"type": "long", "logicalType": "timestamp-millis"}]},
      {"name": "ChargeW", "type": ["null", "float"], "doc": "W of EV charging event"},
      {"name": "ChargeDuration", "type": ["null", "int"], "doc": "Duration of the charge in hours"},
      {"name": "ChargeEnergy", "type": ["null", "float"], "doc": "Wh of EV charging event"}
   ]
}