For Developers
Vehicles Overview
A vehicle is a piece of equipment that is used to transport people or goods.
Properties
| Property | Type | Description |
|---|---|---|
id | string | The UUID for the vehicle. $filter operators: equals in not in |
created_date | Date | When the vehicle was first seen by Edlink. |
updated_date | Date | When the vehicle was last changed in Edlink. $filter operators: equals gt lt gte lte |
properties | object | Non-standard properties that may be of interest to the developer. |
name | string | The name of the vehicle. |
type | VehicleType | The type of the vehicle. |
state | VehicleState | The operational state of the vehicle. |
capacity | number | The maximum number of passengers the vehicle can hold. |
fuel_type | FuelType | The type of fuel used by the vehicle. |
vehicle_code | string | A code assigned to the vehicle for identification purposes. |
flags | VehicleFlag[] | The flags for the vehicle. All, some, or none of the possible flags may be included. |
comments | string | Useful comments about the vehicle. |
vehicle_identification_number | string | The unique identification number assigned to the vehicle. |
license_number | string | The license number assigned to the vehicle. |
last_operation_date | Date | The date of the last operation of the vehicle. |
last_safety_inspection_date | Date | The date of the last safety inspection of the vehicle. |
safety_inpsection_state | VehicleSafteyInspectionState | The safety inspection state of the vehicle. |
identifiers | Identifier[] | Additional IDs associated with the object. |
asset_id | string | The UUID of the associated Asset. |
JSON Example
{
"created_date": "2024-06-21T20:54:06.263Z",
"updated_date": "2025-02-28T17:29:00.907Z",
"properties": {},
"name": "Smart Accord",
"capacity": 31,
"code": "5SEOM",
"comments": "Smart Accord engage holistic users",
"vehicle_identification_number": "PM3LB8GMDWC936876",
"license_number": "QQ85SZI",
"last_operation_date": "2023-01-12T20:00:41.448Z",
"last_safety_inspection_date": "2023-02-21T13:10:37.929Z",
"identifiers": [],
"id": "88a2f703-d337-59e6-88b6-3a0d8b019232",
"type": "car",
"state": "operational",
"flags": [
"commerical_advertising",
"gps_system",
"privately_owned",
"specially_equipped",
"two_way_communication"
],
"safety_inspection_state": "current",
"asset_id": "c5d0af43-e6de-5872-b385-f1458e1228d0"
}
