Navigation Fuel Remaining

Remaining fuel range in km or mi, updated when an accident call or the concierge service is triggered.

Name: navigationfuelremaining

Delivery Method: pull

ATTRIBUTES

value required
number Remaining range in given unit.
unit required
string The fuel tank range unit.
timestamp required
string The timestamp the fuel tank range was recorded. Format according to ISO 8601 format.
{
  "name": "Navigation Fuel Remaining",
  "technicalName": "navigationfuelremaining",
  "description": "Remaining fuel range in km or mi, updated when an accident call or the concierge service is triggered.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Navigation Fuel Remaining",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Remaining range in given unit."
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "The fuel tank range unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the fuel tank range was recorded. Format according to ISO 8601 format."
      }
    }
  }
}