Mileage

The mileage of the vehicle with given VIN.

Name: mileage

Delivery Method: pull

ATTRIBUTES

value required
number The actual mileage number
unit required
string The mileage unit
timestamp required
string The timestamp when the mileage was recorded. Format according to ISO 8601 format.
{
  "name": "Mileage",
  "technicalName": "mileage",
  "description": "The mileage of the vehicle with given VIN.",
  "lifecycleStatus": "PUBLISHED",
  "type": "IN_VEHICLE",
  "personalData": false,
  "schema": {
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "title": "Mileage",
    "required": [
      "value",
      "unit",
      "timestamp"
    ],
    "properties": {
      "value": {
        "type": "number",
        "title": "The actual mileage number"
      },
      "unit": {
        "type": "string",
        "enum": [
          "km",
          "mi"
        ],
        "title": "The mileage unit"
      },
      "timestamp": {
        "type": "string",
        "title": "The timestamp when the mileage was recorded. Format according to ISO 8601 format.",
        "format": "date-time"
      }
    }
  }
}