Fuel Remaining

Liquid fuel tank: remaining range.

Name: fuelremaining

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": "Fuel Remaining",
  "technicalName": "fuelremaining",
  "description": "Liquid fuel tank: remaining range.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "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."
      }
    }
  }
}