Vehicle Time Status

Time shown in the vehicle

Name: vehicletimestatus

Delivery Method: pull

ATTRIBUTES

value required
string Vehicle time value
timestamp required
string The timestamp the vehicle time was recorded. Format according to ISO 8601 format.
{
  "name": "Vehicle Time Status",
  "technicalName": "vehicletimestatus",
  "description": "Time shown in the vehicle",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Vehicle Time Status",
    "required": [
      "value",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "string",
        "title": "Vehicle time value"
      },
      "timestamp": {
        "type": "string",
        "format": "date-time",
        "title": "The timestamp the vehicle time was recorded. Format according to ISO 8601 format."
      }
    }
  }
}