Vehicle Speed

Vehicle speed at timestamp in given unit.

Name: vehiclespeed

Delivery Method: pull

ATTRIBUTES

value required
number Vehicle speed in km/h or mi/h.
unit required
string The vehicle speed unit.
timestamp required
string The timestamp the vehicle speed was recorded. Format according to ISO 8601 format.
{
  "name": "Vehicle Speed",
  "technicalName": "vehiclespeed",
  "description": "Vehicle speed at timestamp in given unit.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Vehicle speed",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "Vehicle speed in km/h or mi/h."
      },
      "unit": {
        "type": "string",
        "enum": [
          "km/h",
          "mi/h"
        ],
        "title": "The vehicle speed unit."
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle speed was recorded. Format according to ISO 8601 format."
      }
    }
  }
}