IsAtHome

Signal code: location-isathome A boolean indicating if the vehicle is at home. Vehicle owners can set their home location in their OEM application.
value
boolean
Boolean indicating if the vehicle is at the configured home location
Example
{
  "value": true
}

Location

Signal code: location-preciselocation An object containing information about a vehicle’s precise location.
heading
number
The precise angular heading of the vehicle.
latitude
number
The vehicle’s current geographic latitude coordinate.
direction
string
A cardinal or intercardinal direction representing the vehicle’s current heading or orientation.Possible values: N, NE, E, SE, S, SW, W, NW
longitude
number
The vehicle’s current geographic longitude coordinate.
locationType
string
Indicates whether the location-related fields are expected to update in real time or when the vehicle is parked.Possible values: LAST_PARKED, CURRENT
Example
{
  "heading": 45.5,
  "latitude": 37.7749,
  "longitude": -122.4194,
  "direction": "NE",
  "locationType": "CURRENT"
}