Harsh Acceleration

This value indicates if the harsh acceleration event was triggered by the vehicle.

Name: harshacceleration

Delivery Method: push

ATTRIBUTES

value required
string The harsh acceleration event. If ON, the vehicle’s acceleration rate exceeds the configurable limit for hard acceleration for a duration exceeding the configurable time duration limit.
timestamp required
string The timestamp the harsh acceleration event was recorded. Format according to ISO 8601 format.
{
  "name": "Harsh Acceleration",
  "technicalName": "harshacceleration",
  "description": "This value indicates if the harsh acceleration event was triggered by the vehicle."
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Harsh Acceleration",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "The harsh acceleration event. If ON, the vehicle’s acceleration rate exceeds the configurable limit for hard acceleration for a duration exceeding the configurable time duration limit.",
        "enum": [
            "ON",
            "OFF",
            "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the harsh acceleration event was recorded. Format according to ISO 8601 format."
      }
    }
  }
}