Diesel Particulate Filter Status

This value indicates the diesel particulate filter status at the time of data capturing.

Name: dieselparticulatefilterstatus

Delivery Method: pull

ATTRIBUTES

value required
string Diesel particulate filter status
timestamp required
string The timestamp the diesel particulate filter value was recorded. Format according to ISO 8601 format.
{
  "name": "Diesel Particulate Filter Status",
  "technicalName": "dieselparticulatefilterstatus",
  "description": "This value indicates the diesel particulate filter status at the time of data capturing.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Diesel Particulate Filter Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "UNKNOWN",
          "NORMAL_OPERATION",
          "OVERLOADED",
          "AT_LIMIT",
          "OVER_LIMIT"
        ],
        "title": "Diesel particulate filter status"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the diesel particulate filter value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}