Fuel Level

Liquid fuel tank: level in percentage, liters or gallons.

Name: fuellevel

Delivery Method: pull

ATTRIBUTES

value required
number Fuel tank level in percentage, liters or gallons.
unit required
string The fuel tank level unit.
timestamp required
string The timestamp the fuel tank level was recorded. Format according to ISO 8601 format.
{
  "name": "Fuel Level",
  "technicalName": "fuellevel",
  "description": "Liquid fuel tank: level in percentage, liters or gallons.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Fuel Level",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Fuel tank level in percentage, liters or gallons."
      },
      "unit": {
        "type": "string",
        "enum": [
          "PERCENTAGE",
          "L",
          "GAL"
        ],
        "title": "The fuel tank level unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the fuel tank level was recorded. Format according to ISO 8601 format."
      }
    }
  }
}