Streaming Schema V2

We are sending multiple vehicle data points in a single message. You may find the full JSON Schema at :

Here is an example of a single message.

{
  "version": 2,
  "application_id": "00000000-0000-0000-0000-000000000000",
  "message_id": "4F02FFB01650060FA8888E5C3ED46FF2A0E4A49EACF1A92E264CD0C137971B28",
  "vin": "EXV10000000",
  "data": {
    "diagnostics": {
      "odometer": [
        {
          "data": {
            "unit": "kilometers",
            "value": 19201.01
          },
          "timestamp": "2025-09-23T18:07:36Z"
        }
      ]
    },
    "vehicle_location": {
      "altitude": [
        {
          "data": {
            "unit": "meters",
            "value": 63
          },
          "timestamp": "2025-08-12T16:07:48.000Z"
        }
      ],
      "coordinates": [
        {
          "data": {
            "latitude": 11.572,
            "longitude": 8.487
          },
          "timestamp": "2025-08-12T16:07:48.000Z"
        }
      ],
      "heading": [
        {
          "data": {
            "unit": "degrees",
            "value": 58
          },
          "timestamp": "2025-08-12T16:07:48.000Z"
        }
      ]
    }
  }
}

Last updated

Was this helpful?