Skip to main content

Is Heater Active

Signal code: tractionbattery-isheateractive A boolean flag indicating whether the high voltage battery’s heating system is currently operating.
value
boolean

Max Range Charge Counter

Signal code: tractionbattery-maxrangechargecounter A counter tracking the number of times the vehicle has been charged to its maximum range capacity.
unit
string
value
integer

Nominal Capacities

Signal code: tractionbattery-nominalcapacity An object containing the gross battery capacity and a list of multiple available gross capacity configurations for the high voltage battery.
source
string
Identifies the origin or method used to determine the battery’s gross capacity.Possible values: SMARTCAR, USER_SELECTED
capacity
number
The total gross energy storage capacity of the high voltage battery, typically measured in kilowatt-hours (kWh). This value represents the nominal rated battery capacity for a vehicle.
availableCapacities
array
An array of available battery capacity configurations for the vehicle.
unit
string
The unit of measurement for the battery capacity.
Example
{
  "source": "SMARTCAR",
  "capacity": 73.5,
  "availableCapacities": [
    {
      "capacity": 73.5,
      "description": "BEV:Extended Range"
    },
    {
      "capacity": 80.9,
      "description": null
    }
  ],
  "unit": "kWhr"
}

Range

Signal code: tractionbattery-range Returns the most accurate real world estimate that is available. Estimated > Ideal > Rated.
unit
string
Possible values: DEFAULT
value
number
required
additionalValues
array
required
Example
{
  "unit": "kilometers",
  "value": 350
}

State Of Charge

Signal code: tractionbattery-stateofcharge The current charge level of the high voltage battery, expressed as a percentage (0 - 100).
unit
string
value
number
Example
{
  "unit": "percent",
  "value": 75
}