Indicator Light - Diesel Engine Idle-Shutdown

This value indicates status of the diesel engine idle-shutdown indicator light at time of data capturing.

Name: dieselengineidleshutdownindicatorlight

Delivery Method: pull

ATTRIBUTES

value required
string Status of the indicator light.
timestamp required
string The timestamp the indicator light value was recorded. Format according to ISO 8601 format.
{
  "name": "Indicator Light - Diesel Engine Idle-Shutdown",
  "technicalName": "dieselengineidleshutdownindicatorlight",
  "description": "This value indicates status of the diesel engine idle-shutdown indicator light at time of data capturing.",
  "type": "IN_VEHICLE",
  "lifecycleStatus": "PUBLISHED",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Indicator Light - Diesel Engine Idle-Shutdown",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "enum": [
          "ON",
          "OFF",
          "UNKNOWN"
        ],
        "title": "Status of the indicator light."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the indicator light value was recorded. Format according to ISO 8601 format."
      }
    }
  }
}