Excessive speeding

This value indicates if the excessive speeding event was triggered by the vehicle.

Name: excessivespeeding

Delivery Method: push

ATTRIBUTES

value required
string The excessive speeding event. If ON, the vehicle speed exceeds the configurable limit for vehicle speed for a duration exceeding the configurable time duration limit.
timestamp required
string The timestamp the excessive speeding event was recorded. Format according to ISO 8601 format.
{
	"name": "Excessive speeding",
	"technicalName": "excessivespeeding",
	"description": "This value indicates if the excessive speeding 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": "Excessive speeding",
		"required": [
			"value",
			"timestamp"
		],
		"properties": {
			"value": {
				"type": "string",
				"title": "The excessive speeding event. If ON, the vehicle speed exceeds the configurable limit for vehicle speed for a duration exceeding the configurable time duration limit.",
				"enum": [
						"ON",
						"OFF",
						"UNKNOWN"
				]
			},
			"timestamp": {
				"type": "string",
				"format": "date-time",
				"title": "The timestamp the excessive speeding event was recorded. Format according to ISO 8601 format."
			}
		}
	}
}