Trip Maximum Speed (Trip)

This value indicates the maximum speed recorded since the last igntion on.

Name: tripmaximumspeed

Delivery Method: pull

ATTRIBUTES

value required
number The maximum speed recorded since the last igntion on.
unit required
string Vehicle speed unit.
timestamp required
string The timestamp the maximum speed was recorded since the last igntion on was recorded. Format according to ISO 8601 format.
{
  "name": "Trip Maximum Speed (Trip)",
  "technicalName": "tripmaximumspeed",
  "description": "This value indicates the maximum speed recorded since the last igntion on.",
  "lifecycleStatus": "tbd",
  "type": "IN_VEHICLE",
  "personalData": true,
  "event": true,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Trip Maximum Speed (Trip)",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The maximum speed recorded since the last igntion on."
      },
      "unit": {
        "type": "string",
        "enum": [
          "m/s"
        ],
        "title": "Vehicle speed unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the maximum speed was recorded since the last igntion on was recorded. Format according to ISO 8601 format."
      }
    }
  }
}