Remaining Range (Total)

This value indicates the total remaining range at the time of data collection.

Name: remainingrangetotal

Delivery Method: pull

ATTRIBUTES

value required
number Total remaining range value
unit required
string Total remaining range unit
timestamp required
string The timestamp the vehicle total remaining range value was recorded. Format according to ISO 8601 format.
{
  "name": "Remaining Range (Total)",
  "technicalName": "remainingrangetotal",
  "description": "This value indicates the total remaining range at the time of data collection.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Remaining Range (Total)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Total remaining range value"
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "Total remaining range unit"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle total remaining range value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}