Motion Status

Indicates whether vehicle was in motion

Name: motionstatus

Delivery Method: pull

ATTRIBUTES

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