Fuel Level Source

This value indicates if the fuel level value was measured or calculated.

Name: fuellevelsource

Delivery Method: pull

ATTRIBUTES

value required
string Fuel level source value
timestamp required
string The timestamp the vehicle fuel level source value was recorded. Format according to ISO 8601 format.
{
  "name": "Fuel Level Source",
  "technicalName": "fuellevelsource",
  "description": "This value indicates if the fuel level value was measured or calculated.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Fuel Level Source",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "MEASURED",
          "CALCULATED"
        ],
        "title": "Fuel level source value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle fuel level source value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}