Harsh braking

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

Name: harshbraking

Delivery Method: push

ATTRIBUTES

value required
string The harsh braking event. If ON, the vehicle experienced a hard braking event that causes deceleration to exceed a configurable limit for a duration exceeding the configurable time duration limit.
timestamp required
string The timestamp the harsh braking event was recorded. Format according to ISO 8601 format.
{
  "name": "Harsh braking",
  "technicalName": "harshbraking",
  "description": "This value indicates if the harsh braking 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 braking",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "The harsh braking event. If ON, the vehicle experienced a hard braking event that causes deceleration to exceed a configurable limit for a duration exceeding the configurable time duration limit.",
        "enum": [
            "ON",
            "OFF",
            "UNKNOWN"
        ]
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the harsh braking event was recorded. Format according to ISO 8601 format."
      }
    }
  }
}