Object Coordinates History API v3

Note
This API is not included in any plan. Please contact your sales manager to order and enable this API.

Navigate to sections within this page:

The Object Coordinates History API is used to output historical data (coordinates, parameters, etc.) of an object. This API is similar to Object Coordinates History API v2, but v3 also has a new address field. This API has two endpoints, thus there are two types of requests:

  1. Request for object data for a specific date and time. Only data recorded at the specified date and time is displayed.
  2. Request for object data for a specified period. All data recorded during the specified period is displayed.

Data request for a specific date and time

Request structure:


GET /objects/{objectId}/coordinates/{datetime}?version=3&api_key=<..>&include_geozones=<…>&include_tire_parameters=<…> HTTP/1.1
Host: api.fm-track.com
Content-Type: application/json;charset=UTF-8

Request parameters:

ParameterTypeDescriptionRequired
object_idStringExternal object IDYes
datetimeDate timeSpecified date and time. Date and time format example: “2019-04-17T11:58:48.090Z” in accordance to the ISO-8601 standardYes
versionStringAPI versionYes
api_keyStringUser identification keyYes
include_geozonesbooleanIf true geozones information in the answer will be returned No
include_tire_parametersbooleanIf true information about tire pressure in the answer will be returnedNo

Response example:

{
    "object_id":"abc123",
    "datetime":"2019-02-11T02:00:00.000Z",
    "ignition_status":"OFF",
    "position":{
        "altitude" : 0,
        "direction" : 0,
        "latitude" : 0,
        "longitude" : 0,
        "satellites_count" : 0,
        "speed" : 0
    },
    "address": {
        "country": "Poland",
        "country_code": "PL",
        "county": "Województwo dolnośląskie",
        "region": "",
        "locality": "",
        "street": "E67",
        "house_number": "",
        "zip": "55"
    },
    "inputs":{
        "other":{
            "virtual_gps_odometer":0.0000,
            "country_code_geonames":91
        },
        "device_inputs":{
            "virtual_odometer":5.00,
            "digital_input_4":false,
            "driver_1_state":"DRIVE",
            "input_trigger":0,
            "tco_first_driver_state":"DRIVE",
            "priority":"LOW",
            ....,
            "hdop":"0.0"
        },
        "calculated_inputs":{
            "din4_working_time":0.00,
            "custom_input_3":0.00,
            "custom_input_6":0.00,
            "temperature":0.00,
            "custom_input_1":0.00,
            ....,
            "custom_input_2":0.00,
            "mileage":5000.00
    	},
  		"geozone_ids": [
      		"0d5d7bc2",
          	"0d5d7bc2"
        	],
      	"tires": {
            "tire01": {
              "tire_pressure_threshold_detection": "2",
              "tire_sensor_electrical_fault": "2",
              "tire_status": "1",
              "tire_temperature": "39.5",
              "tire_air_leakage_rate": "2001.0",
              "tire_pressure": "400",
              "tire_sensor_enable_status": "0",
              "tire_location": "23",
              "tire_extended_tire_pressure_support": "3"
            },
            ....,
            "tire36": {
              "tire_pressure_threshold_detection": "2",
              "tire_sensor_electrical_fault": "2",
              "tire_status": "1",
              "tire_temperature": "39.5",
              "tire_air_leakage_rate": "2036.0",
              "tire_pressure": "400",
              "tire_sensor_enable_status": "0",
              "tire_location": "23",
              "tire_extended_tire_pressure_support": "3"
            }
         },
   .....
}


If a parameter was entered incorrectly, the system will respond with an error code. All error codes are described in the APIs section. Parameters for which no data is provided are not included in the response. A full list of response parameters is available at the end of this section.

Data request for a specific period

Request structure:


GET /objects/{objectId}/coordinates?version=3&from_datetime=<..>&to_datetime=<..>&continuation_token=<..>&limit=<..>&api_key=<..>&include_geozones=<…>&include_tire_parameters=<…> HTTP/1.1
Host: api.fm-track.com
Content-Type: application/json;charset=UTF-8

Request parameters:

ParameterTypeDescriptionRequired
objectIdStringExternal object IDYes
from_datetimeDate timeFinds records starting from the specified date and time. Date and time format example: “2017-04-13T06:58:48.090Z”Yes
to_datetimeDate timeFinds records ending at the specified date and time. Date and time format example: “2017-04-13T06:58:48.090Z”No
continuation_tokenDate timeDisplays from what date and time the data is shown if the record limit was reached.No
limitIntegerHow many records will be included in the response (default value - 100 records, maximum value - 1000 records).No
versionStringAPI versionYes
api_keyStringUser identification keyYes
include_geozonesbooleanIf true geozones information in the answer will be returned No
include_tire_parametersbooleanIf true information about tire pressure in the answer will be returnedNo

Response example:

{
  "continuation_token": "2017-04-13T06:58:48.121Z",
  "items": [
{
 
    "object_id":"abc123",
    "datetime":"2019-02-11T02:00:00.000Z",
    "ignition_status":"OFF",
    "business_or_private":"BUSINESS",
    "position":{
        "altitude" : 0,
        "direction" : 0,
        "latitude" : 0,
        "longitude" : 0,
        "satellites_count" : 0,
        "speed" : 0
    },
    "address": {
        "country": "Poland",
        "country_code": "PL",
        "county": "Województwo dolnośląskie",
        "region": "",
        "locality": "",
        "street": "E67",
        "house_number": "",
        "zip": "55"
    },
    "inputs":{
        "other":{
            "virtual_gps_odometer":0.0000,
            "country_code_geonames":91
        },
        "device_inputs":{
            "virtual_odometer":5.00,
            "digital_input_4":false,
            "driver_1_state":"DRIVE",
            "input_trigger":0,
            "tco_first_driver_state":"DRIVE",
            "priority":"LOW",
            ....,
 
            "hdop":"0.0"
        },
        "calculated_inputs":{
            "din4_working_time":0.00,
            "custom_input_3":0.00,
            "custom_input_6":0.00,
            "temperature":0.00,
            "custom_input_1":0.00,
            ....,
            "custom_input_2":0.00,
            "mileage":5000.00
    	},
  		"geozone_ids": [
          	"0d5d7bc2",
          	"0d5d7bc2"
        ],
		"tires": {
            "tire01": {
              "tire_pressure_threshold_detection": "2",
              "tire_sensor_electrical_fault": "2",
              "tire_status": "1",
              "tire_temperature": "39.5",
              "tire_air_leakage_rate": "2001.0",
              "tire_pressure": "400",
              "tire_sensor_enable_status": "0",
              "tire_location": "23",
              "tire_extended_tire_pressure_support": "3"
            },
            ....,
            "tire36": {
              "tire_pressure_threshold_detection": "2",
              "tire_sensor_electrical_fault": "2",
              "tire_status": "1",
              "tire_temperature": "39.5",
              "tire_air_leakage_rate": "2036.0",
              "tire_pressure": "400",
              "tire_sensor_enable_status": "0",
              "tire_location": "23",
              "tire_extended_tire_pressure_support": "3"
            }
         },
	.....
}


If a parameter was entered incorrectly, the system will respond with an error code. All error codes are described in the APIs section. Parameters for which no data is provided are not included in the response. A full list of response parameters is available at the end of this section.

Response parameters:

NameTypeArrayDescriptionUnits
itemsArrayContains all parameters in accordance to the request
object_idStringObject identifierText
datetimeDateDate and time point of coordinate generated in hardware
Format: "yyyy-mm-ddThh:mm:ss.sssZ"
Datetime
ignition_statusEnumIndicates if the object's ignition is on
Possible values:
ON
OFF
UNKNOWN
trip_typeEnumTrip type
Possible values:
UNKNOWN
NONE
PRIVATE
BUSINESS
WORK
otherArrayContainer for other system parameters
country_code_geonamesNumberotherCountry code numeral
virtual_gps_odometerNumberotherVirtual odometer value km
calculated_inputsArraycalculated_inputsContainer for parameters calculated in the system from other parameters according to the configuration
fuel_consumptionNumbercalculated_inputsFuel consumptionl
fuel_levelNumbercalculated_inputsFuel levell
mileageNumbercalculated_inputsMileagekm
rpmNumbercalculated_inputsEngine RPMRPM
temperatureNumbercalculated_inputsTemperature°C
custom_input_1Numbercalculated_inputsCustom input 1
custom_input_2Numbercalculated_inputsCustom input 2
custom_input_3Numbercalculated_inputsCustom input 3
custom_input_4Numbercalculated_inputsCustom input 4
custom_input_5Numbercalculated_inputsCustom input 5
custom_input_6Numbercalculated_inputsCustom input 6
custom_input_7Numbercalculated_inputsCustom input 7
custom_input_8Numbercalculated_inputsCustom input 8
din1_working_timeNumbercalculated_inputsDIN1 working time
din2_working_timeNumbercalculated_inputsDIN2 working time
din3_working_timeNumbercalculated_inputsDIN3 working time
din4_working_timeNumbercalculated_inputsDIN4 working time
weightNumbercalculated_inputsWeightkg
device_inputsArraydevice_inputsContainer for parameters received from hardware
x_axisNumberdevice_inputsAccelerometer X axisG
y_axisNumberdevice_inputsAccelerometer Y axisG
z_axisNumberdevice_inputsAccelerometer Z axisG
g_peak_xNumberdevice_inputsG peak in X axisG
g_peak_yNumberdevice_inputsG peak in Y axisG
g_peak_zNumberdevice_inputsG peak in Z axisG
x_axis_tilt_angleNumberdevice_inputsX axis tilt angleDegrees
y_axis_tilt_angleNumberdevice_inputsY axis tilt angleDegrees
z_axis_tilt_angleNumberdevice_inputsZ axis tilt angleDegrees
canbus_distanceNumberdevice_inputsCAN high resolution total vehicle distance km
canbus_engine_coolant_temperatureNumberdevice_inputsCAN engine coolant temperature°C
canbus_fuel_rateNumberdevice_inputsCAN fuel ratel/h
engine_rpmNumberdevice_inputsCAN engine speedRPM
engine_hoursNumberdevice_inputsCAN engine hoursh
service_distNumberdevice_inputsCAN service distancekm
pedal_posNumberdevice_inputsCAN accelerator pedal position%
fuel_level_canNumberdevice_inputsCAN fuel level%
fuel_usedNumberdevice_inputsCAN engine total fuel usedl
speed_wheelNumberdevice_inputsCAN wheel based speedkm/h
speed_tachoNumberdevice_inputsCAN tachograph vehicle speedkm/h
tacho_statusEnumdevice_inputsCAN tachograph performance
Possible values:
NORMAL_PERFORMANCE
PERFORMANCE_ANALYSIS
overspeeding_eventsEnumdevice_inputsCAN tacho vehicle overspeed
Possible values:
NO_OVERSPEED
OVERSPEED
axle_countNumberdevice_inputsCAN axle location
canbus_brake_switchEnumdevice_inputsCAN brake switch
Possible values:
RELEASED
PRESSED
canbus_clutch_switchEnumdevice_inputsCAN clutch switch
Possible values:
RELEASED
PRESSED
canbus_pto_stateEnumdevice_inputsCAN PTO state
Possible values:
OFF_DISABLED
SET
NOT_AVAILABLE
canbus_cruise_control_stateEnumdevice_inputsCAN cruise control active
Possible values:
OFF
ON
canbus_request_supportedEnumdevice_inputsCAN request supported
Possible values:
NOT_SUPPORTED
SUPPORTED
RESERVED
DO_NOT_CARE
canbus_diagnostics_supportedEnumdevice_inputsCAN diagnostics supported
Possible values:
NOT_SUPPORTED
SUPPORTED
RESERVED
DO_NOT_CARE
canbus_vehicle_motionEnumdevice_inputsCAN tacho vehicle motion
Possible values:
NOT_DETECTED
DETECTED
canbus_driver_1_timeEnumdevice_inputsCAN tacho driver 1 time related status
Possible values:
NORMAL
15_MIN_BEFORE_4,5H
4,5H_REACHED
15_MIN_BEFORE_9H
9H_REACHED
15_MIN_BEFORE_16H
16H_REACHED
ERROR
NOT_AVAILABLE
canbus_driver_1_cardEnumdevice_inputsCAN tacho driver 1 card
Possible values:
CARD_NOT_PRESENT
CARD_PRESENT
ERROR
NOT_AVAILABLE
canbus_driver_2_timeEnumdevice_inputsCAN tacho driver 2 time related status
Possible values:
NORMAL
15_MIN_BEFORE_4,5H
4,5H_REACHED
15_MIN_BEFORE_9H
9H_REACHED
15_MIN_BEFORE_16H
16H_REACHED
ERROR
NOT_AVAILABLE
canbus_driver_2_cardEnumdevice_inputsCAN tacho driver 2 card
Possible values:
CARD_NOT_PRESENT
CARD_PRESENT
ERROR
NOT_AVAILABLE
canbus_engine_plcsNumberdevice_inputsCAN engine percent load at current speed%
canbus_tire_locationNumberdevice_inputsCAN tire location
canbus_system_eventEnumdevice_inputsCAN system event
Possible values:
NO_TACHO_EVENT
TACHO_EVENT
canbus_handling_informationEnumdevice_inputsCAN tacho handling information
Possible values:
NO_HANDLING_INFORMATION
HANDLING_INFORMATION
canbus_direction_indicatorEnumdevice_inputsCAN tacho direction indicator
Possible values:
FORWARD
REVERSE
canbus_ambient_air_temperatureNumberdevice_inputsCAN ambient air temperature°C
canbus_fuel_economyNumberdevice_inputsCAN instantaneous fuel economykm/l
canbus_ptoEnumdevice_inputsCAN at least one PTO engaged
Possible values:
NO_PTO_DRIVER
AT_LEAST_ONE_PTO_DRIVER
ERROR
NOT_AVAILABLE
canbus_hrfcNumberdevice_inputsCAN high resolution engine total fuel usedl
vehicle_idStringdevice_inputsCAN vehicle ID
first_driver_idStringdevice_inputsCAN first driver ID
second_driver_idStringdevice_inputsCAN second driver ID
canbus_driver_1_stateEnumdevice_inputsCAN tacho driver 1 working state
Possible values:
REST
DRIVER_AVAILABLE
WORK
DRIVE
ERROR
NOT_AVAILABLE
canbus_driver_2_stateEnumdevice_inputsCAN tacho driver 2 working state
Possible values:
REST
DRIVER_AVAILABLE
WORK
DRIVE
ERROR
NOT_AVAILABLE
canbus_axle_weight_1Numberdevice_inputsCAN axle 1 weightkg
canbus_axle_weight_2Numberdevice_inputsCAN axle 2 weightkg
canbus_axle_weight_3Numberdevice_inputsCAN axle 3 weightkg
canbus_axle_weight_4Numberdevice_inputsCAN axle 4 weightkg
canbus_axle_weight_5Numberdevice_inputsCAN axle 5 weightkg
fuel_level_can_lNumberdevice_inputsCAN fuel level litersl
fuel_used_diffNumberdevice_inputsCAN fuel used deltal
canbus_parking_brake_switchEnumdevice_inputsCAN parking brake switch
Possible values:
OFF
ON
canbus_battery_powerNumberdevice_inputsCAN battery power%
canbus_distance_until_rechargeNumberdevice_inputsCAN distance until rechargekm
canbus_battery_chargingEnumdevice_inputsCAN battery charging
Possible values:
NO_CHARGING
CHARGING
lcv_hoodEnumdevice_inputsLCV hood
Possible values:
CLOSE
OPEN
lcv_driver_doorsEnumdevice_inputsLCV driver doors
Possible values:
CLOSE
OPEN
lcv_passenger_doorsEnumdevice_inputsLCV passenger doors
Possible values:
CLOSE
OPEN
lcv_left_back_doorsEnumdevice_inputsLCV left back doors
Possible values:
CLOSE
OPEN
lcv_right_back_doorsEnumdevice_inputsLCV right back doors
Possible values:
CLOSE
OPEN
lcv_trunkEnumdevice_inputsLCV trunk
Possible values:
CLOSE
OPEN
canbus_hours_to_serviceNumberdevice_inputsCAN hours to serviceh
can_interface_configuration_can1_interfaceEnumdevice_inputsCAN interface configuration CAN1 interface
Possible values:
NONE
FMS
LCV
OBD
TACHO
MOBILEYE
TRAILERS
DXP
can_interface_configuration_can2_interfaceEnumdevice_inputsCAN interface configuration CAN2 interface
Possible values:
NONE
FMS
LCV
OBD
TACHO
MOBILEYE
TRAILERS
DXP
can_interface_configuration_can1_statusEnumdevice_inputsCAN interface configuration CAN1 status
Possible values:
INACTIVE
ACTIVE
can_interface_configuration_can1_modeEnumdevice_inputsCAN interface configuration CAN1 mode
Possible values:
SILENT
ACTIVE
can_interface_configuration_can1_auto_baud_rateEnumdevice_inputsCAN interface configuration CAN1 auto baud rate
Possible values:
OFF
ON
can_interface_configuration_can1_ff_filters_statusEnumdevice_inputsCAN interface configuration CAN1 filters status
Possible values:
OFF
ON
can_interface_configuration_can2_statusEnumdevice_inputsCAN interface configuration CAN2 status
Possible values:
INACTIVE
ACTIVE
can_interface_configuration_can2_modeEnumdevice_inputsCAN interface configuration CAN2 mode
Possible values:
SILENT
ACTIVE
can_interface_configuration_can2_auto_baud_rateEnumdevice_inputsCAN interface configuration CAN2 auto baud rate
Possible values:
OFF
ON
can_interface_configuration_can2_ff_filters_statusEnumdevice_inputsCAN interface configuration CAN2 filters status
Possible values:
OFF
ON
canbus_electric_motor_temperatureNumberdevice_inputsCAN electric motor temperature°C
can_lcv_configuration_can2_subgroupNumberdevice_inputsCAN LCV configuration CAN2 subgroup
can_lcv_configuration_can1_subgroupNumberdevice_inputsCAN LCV configuration CAN1 subgroup
can_lcv_configuration_can2_groupEnumdevice_inputsCAN LCV configuration CAN2 group
Possible values:
VAG
MERCEDES
CITROEN
FORD
FIAT
OPEL
RENAULT
TOYOTA
TRACTOR
TRUCK
HYUNDAI
LEXUS
VOLVO
BMW
NISSAN
HONDA
MITSUBISHI
SUBARU
CHRYSLER
ISUZU
SSANGYONG
MAZDA
KOMATSU
RANGEROVER
CLAAS
SAAB
LANDROVER
PORSCHE
KIA
JAGUAR
INFINITI
LINDE
HITACHI
SUZUKI
can_lcv_configuration_can1_groupEnumdevice_inputsCAN LCV configuration CAN1 group
Possible values:
VAG
MERCEDES
CITROEN
FORD
FIAT
OPEL
RENAULT
TOYOTA
TRACTOR
TRUCK
HYUNDAI
LEXUS
VOLVO
BMW
NISSAN
HONDA
MITSUBISHI
SUBARU
CHRYSLER
ISUZU
SSANGYONG
MAZDA
KOMATSU
RANGEROVER
CLAAS
SAAB
LANDROVER
PORSCHE
KIA
JAGUAR
INFINITI
LINDE
HITACHI
SUZUKI
can_ignitionEnumdevice_inputsCAN ignition
Possible values:
OFF
ON
can_lcv_window_state_front_leftNumberdevice_inputsCAN LCV window state Front Left
can_lcv_window_state_front_rightNumberdevice_inputsCAN LCV window state Front Right
can_lcv_window_state_back_leftNumberdevice_inputsCAN LCV window state Back Left
can_lcv_window_state_back_rightNumberdevice_inputsCAN LCV window state Back Right
can_lcv_window_state_sunroofNumberdevice_inputsCAN LCV window state Sunroof
can_fuel_level_millilitersNumberdevice_inputsCAN fuel level milllilitersml
can_door_lock_stateEnumdevice_inputsCAN door lock state
Possible values:
UNLOCKED
LOCKED
NOT_AVAILABLE
gsm_signal_strengthNumberdevice_inputsGSM signal strength
operatorNumberdevice_inputsGSM operator
gps_speedNumberdevice_inputsGPS speedkm/h
gsm_umts_signal_strengthNumberdevice_inputsGSM/UMTS signal strength
gsm_umts_operatorNumberdevice_inputsGSM/UMTS operator
umts_enabledEnumdevice_inputsUMTS enabled status
Possible values:
DISABLED
ENABLED
gnss_antennaEnumdevice_inputsGNSS antenna status
Possible values:
DISABLED
ENABLED
UNKNOWN
gsm_umts_jammingEnumdevice_inputsGSM/UMTS jamming status
Possible status:
JAMMING_NOT_DETECTED
JAMMING_DETECTED
gprs_errorsNumberdevice_inputsGPRS errors
gprs_statusEnumdevice_inputsGPRS status
Possible values:
DISCONNECTED
CONNECTED
gps_altitudeNumberdevice_inputsGPS altitudem
dout1_statusEnumdevice_inputsDOUT1 status
Possible values:
ACTIVE
INACTIVE
dout2_statusEnumdevice_inputsDOUT2 status
Possible values:
ACTIVE
INACTIVE
dxp_battery_battery_voltageNumberdevice_inputsDXP battery voltageV
dxp_battery_nominal_capacity_usedNumberdevice_inputsDXP battery nominal capacity usedA
dxp_battery_charging_counterNumberdevice_inputsDXP battery charging counter
dxp_battery_state_of_chargeNumberdevice_inputsDXP battery charging state%
dxp_battery_charging_currentNumberdevice_inputsDXP battery charging currentA
dxp_battery_battery_currentNumberdevice_inputsDXP battery currentA
dxp_battery_battery_tempNumberdevice_inputsDXP battery temperature°C
dxp_battery_charger_stop_reasonNumberdevice_inputsDXP battery charge stop reason
dxp_switches_switch1Enumdevice_inputsDXP switch 1 value
Possible values:
OFF
ON
dxp_switches_switch2Enumdevice_inputsDXP switch 2 value
Possible values:
OFF
ON
dxp_switches_switch3Enumdevice_inputsDXP switch 3 value
Possible values:
OFF
ON
dxp_switches_switch4Enumdevice_inputsDXP switch 4 value
Possible values:
OFF
ON
dxp_switches_switch5Enumdevice_inputsDXP switch 5 value
Possible values:
OFF
ON
dxp_switches_switch6Enumdevice_inputsDXP switch 6 value
Possible values:
OFF
ON
dxp_switches_switch7Enumdevice_inputsDXP switch 7 value
Possible values:
OFF
ON
dxp_switches_switch8Enumdevice_inputsDXP switch 8 value
Possible values:
OFF
ON
dxp_switches_parameters_setNumberdevice_inputsDXP switch parameters set
dxp_other_parameters_chassis_number_nrNumberdevice_inputsDXP chassis number
dxp_other_parameters_servie_odometerNumberdevice_inputsDXP service odometer
dxp_other_parameters_vcl_versionNumberdevice_inputsDXP VCL version
dxp_other_parameters_parameter_blk_versionNumberdevice_inputsDXP parameter BLK version
dxp_faults1_status1_faults_error_codesNumberdevice_inputsDXP status 1 fault error codes
dxp_faults1_status2_faults_error_codesNumberdevice_inputsDXP status 2 fault error codes
dxp_faults1_status3_faults_error_codesNumberdevice_inputsDXP status 3 fault error codes
dxp_faults1_status4_faults_error_codesNumberdevice_inputsDXP status 4 fault error codes
dxp_faults1_status5_faults_error_codesNumberdevice_inputsDXP status 5 fault error codes
dxp_faults1_status6_faults_error_codesNumberdevice_inputsDXP status 6 fault error codes
dxp_faults1_status7_faults_error_codesNumberdevice_inputsDXP status 7 fault error codes
dxp_faults1_status8_faults_error_codesNumberdevice_inputsDXP status 8 fault error codes
dxp_faults2_user_fault_1_error_codesNumberdevice_inputsDXP user fault 1 error codes
dxp_faults2_user_fault_2_error_codesNumberdevice_inputsDXP user fault 2 error codes
dxp_faults2_user_fault_2_history_error_codesNumberdevice_inputsDXP user fault 1 history error codes
dxp_faults2_user_fault_1_history_error_codesNumberdevice_inputsDXP user fault 2 history error codes
dxp_faults2_kyb_hist_fault_codesNumberdevice_inputsDXP KYB hist fault codes
dxp_charger_statusNumberdevice_inputsDXP charger status
ecodrive_maximum_speedNumberdevice_inputsEco-Drive maximum speedkm/h
ecodrive_overspeedNumberdevice_inputsEco-Drive overspeeding timers
ecodrive_rpm_on_redNumberdevice_inputsEco-Drive RPM in red band timers
ecodrive_maximum_rpmNumberdevice_inputsEco-Drive maximum RPMRPM
ecodrive_braking_eventsNumberdevice_inputsEco-Drive brake counter
ecodrive_harsh_accelerationNumberdevice_inputsEco-Drive harsh acceleration counter
ecodrive_idling_timeNumberdevice_inputsEco-Drive idling counters
ecodrive_engine_onNumberdevice_inputsEco-Drive engine on timers
ecodrive_time_cruise_control_could_be_onNumberdevice_inputsEco-Drive time cruise control could be ons
ecodrive_time_cruise_control_was_on_when_it_could_be_onNumberdevice_inputsEco-Drive time cruise control was on when it could be ons
ecodrive_extreme_braking_countNumberdevice_inputsEco-Drive extreme braking count
ecodrive_harsh_braking_countNumberdevice_inputsEco-Drive harsh braking count
ecodrive_mileage_in_rpm_green_zoneNumberdevice_inputsEco-Drive mileage in RPM green zonem
ecodrive_mileage_when_speed_is_below_overspeedNumberdevice_inputsEco-Drive mileage when speed is below overspeedm
ecodrive_mileage_when_cruise_control_could_be_onNumberdevice_inputsEco-Drive mileage when cruise control could be onm
ecodrive_mileage_when_cruise_control_was_on_when_it_could_be_onNumberdevice_inputsEco-Drive mileage when cruise control was on when it could be onm
ecodrive_cornering_counterNumberdevice_inputsEco-Drive cornering counter
ecodrive_stops_counterNumberdevice_inputsEco-Drive stop counter
ecodrive_fuel_used_at_stopsNumberdevice_inputsEco-Drive fuel used while idlingl
ecodrive_mileage_while_free_rollingNumberdevice_inputsEco-Drive free rolling distancem
ecodrive_mileage_while_engine_overloadedNumberdevice_inputsEco-Drive engine overloaded distancem
ecodrive_fuel_used_while_engine_overloadedNumberdevice_inputsEco-Drive engine overloaded fuel usedl
ecodrive_mileage_while_overspeedingNumberdevice_inputsEco-Drive overspeeding distancem
ecodrive_fuel_used_while_overspeedingNumberdevice_inputsEco-Drive overspeeding fuel usedl
ecodrive_mileage_when_cruise_control_was_onNumberdevice_inputsEco-Drive cruise control on distancem
ecodrive_fuel_used_when_when_cruise_control_was_onNumberdevice_inputsEco-Drive cruise control on fuel usedl
ecodrive_mileage_in_highest_gearNumberdevice_inputsEco-Drive highest gear distancem
ecodrive_fuel_used_in_highest_gearNumberdevice_inputsEco-Drive highest gear fuel usedl
ecodrive_mileage_in_range_1_900_rpmNumberdevice_inputsEco-Drive RPM range 1 (<900 RPM) distancem
ecodrive_fuel_used_in_range_1_900_rpmNumberdevice_inputsEco-Drive RPM range 1 (<900 RPM) fuel usedl
ecodrive_mileage_in_range_900_1300_rpmNumberdevice_inputsEco-Drive RPM range 2 (900-1300 RPM) distancem
ecodrive_fuel_used_in_range_900_1300_rpmNumberdevice_inputsEco-Drive RPM range 2 (900-1300 RPM) fuel usedl
ecodrive_mileage_in_range_1300_1500_rpmNumberdevice_inputsEco-Drive RPM range 3 (1300-1500 RPM) distancem
ecodrive_fuel_used_in_range_1300_1500_rpmNumberdevice_inputsEco-Drive RPM range 3 (1300-1500 RPM) fuel usedl
ecodrive_mileage_in_range_1500_2300_rpmNumberdevice_inputsEco-Drive RPM range 4 (1500-2300 RPM) distancem
ecodrive_fuel_used_in_range_1500_2300_rpmNumberdevice_inputsEco-Drive RPM range 4 (1500-2300 RPM) fuel usedl
ecodrive_idling_stateEnumdevice_inputsEco-Drive idling state
Possible values:
NO_IDLING
IDLING
ecodrive_braking_valueNumberdevice_inputsEco-Drive braking valuem/s^2
ecodrive_acceleration_valueNumberdevice_inputsEco-Drive acceleration valuem/s^2
ecodrive_cornering_valueNumberdevice_inputsEco-Drive cornering value m/s^2
eco_rpm_in_red_band_distanceNumberdevice_inputsEco-Drive RPM in red band distancem
eco_engine_braking_distanceNumberdevice_inputsEco-Drive engine braking distancem
eco_braking_distanceNumberdevice_inputsEco-Drive braking distancem
eco_braking_durationNumberdevice_inputsEco-Drive braking durations
eco_retarder_durationNumberdevice_inputsEco-Drive retarder durations
eco_stops_counterNumberdevice_inputsEco-Drive stop counter
thermoking_air_return_tempNumberdevice_inputsThermoKing air return temperature°C
thermoking_alarmsNumberdevice_inputsThermoKing alarm code
thermoking_set_pointNumberdevice_inputsThermoKing temperature setpoint°C
thermoking_fuel_levelNumberdevice_inputsThermoKing fuel level%
thermoking_battery_voltageNumberdevice_inputsThermoKing battery voltageV
thermoking_total_electric_hoursNumberdevice_inputsThermoKing total electric hoursh
thermoking_vehicle_hoursNumberdevice_inputsThermoKing total vehicle hoursh
thermoking_total_engine_hoursNumberdevice_inputsThermoKing total engine hoursh
thermoking_alarm_typeEnumdevice_inputsThermoKing alarm type
Possible values:
NO_ALARM
LOG_STORED_OR_ROUTINE_MAINTENANCE
LOW_FUEL
MAINTENANCE_PAST_DUE
RESERVED
IMMEDIATE_ATTENTION_REQUIRED
SHUTDOWN_OR_CATASTROPHIC_SYSTEM_FAILURE
thermoking_discharge_temperatureNumberdevice_inputsThermoKing discharge air temperature°C
thermoking_evaporator_coil_temperatureNumberdevice_inputsThermoKing evaporator coil temperature°C
thermoking_operating_modeEnumdevice_inputsThermoKing operating mode
Possible values:
POWER_OFF_OR_UNKNOWN
COOLING
HEATING
DEFROST
NULL
PRETRIP
SLEEP
RESERVED
thermoking_cycle_modeEnumdevice_inputsThermoKing cycle mode
Possible values:
CYCLE_SENTRY_MODE
CONTINUOUS_MODE
START_STOP_MODE
thermoking_high_speed_statusBooleandevice_inputsThermoKing high speed status
thermoking_door_statusEnumdevice_inputsThermoKing door status
Possible values:
CLOSED
OPEN
thermoking_diesel_electric_statusEnumdevice_inputsThermoKing diesel/electric status
Possible values:
DIESEL_MODE
ELECTRIC_MODE
tk_touchprint_input_1Numberdevice_inputsTK Touchprint input 1°C
tk_touchprint_input_2Numberdevice_inputsTK Touchprint input 2°C
tk_touchprint_input_3Numberdevice_inputsTK Touchprint input 3°C
tk_touchprint_input_4Numberdevice_inputsTK Touchprint input 4°C
tk_touchprint_input_5Numberdevice_inputsTK Touchprint input 5°C
tk_touchprint_input_6Numberdevice_inputsTK Touchprint input 6°C
tk_temperature_sensor1Numberdevice_inputsTK temperature sensor 1°C
tk_temperature_sensor2Numberdevice_inputsTK temperature sensor 2°C
tk_temperature_sensor3Numberdevice_inputsTK temperature sensor 3°C
tk_temperature_sensor4Numberdevice_inputsTK temperature sensor 4°C
tk_temperature_sensor5Numberdevice_inputsTK temperature sensor 5°C
tk_temperature_sensor6Numberdevice_inputsTK temperature sensor 6°C
fuel_counterNumberdevice_inputsFuel counter 1
digital_fuel_sensor_a1Numberdevice_inputsDigital fuel sensor A1
fuel_counter_2Numberdevice_inputsFuel counter 2
digital_fuel_sensor_b1Numberdevice_inputsDigital fuel sensor B1
digital_fuel_sensor_a2Numberdevice_inputsDigital fuel sensor A2
digital_fuel_sensor_a3Numberdevice_inputsDigital fuel sensor A3
digital_fuel_sensor_a4Numberdevice_inputsDigital fuel sensor A4
digital_fuel_sensor_a5Numberdevice_inputsDigital fuel sensor A5
digital_fuel_sensor_a6Numberdevice_inputsDigital fuel sensor A6
digital_fuel_sensor_a7Numberdevice_inputsDigital fuel sensor A7
digital_fuel_sensor_a8Numberdevice_inputsDigital fuel sensor A8
digital_fuel_sensor_a9Numberdevice_inputsDigital fuel sensor A9
digital_fuel_sensor_a10Numberdevice_inputsDigital fuel sensor A10
digital_fuel_sensorc1_temperatureNumberdevice_inputsDigital fuel sensor C1 temperature°C
digital_fuel_sensorc2_temperatureNumberdevice_inputsDigital fuel sensor C2 temperature°C
digital_fuel_sensorc3_temperatureNumberdevice_inputsDigital fuel sensor C3 temperature°C
digital_fuel_sensorc4_temperatureNumberdevice_inputsDigital fuel sensor C4 temperature°C
digital_fuel_sensorc5_temperatureNumberdevice_inputsDigital fuel sensor C5 temperature°C
digital_fuel_sensorc6_temperatureNumberdevice_inputsDigital fuel sensor C6 temperature°C
digital_fuel_sensorc7_temperatureNumberdevice_inputsDigital fuel sensor C7 temperature°C
digital_fuel_sensorc8_temperatureNumberdevice_inputsDigital fuel sensor C8 temperature°C
digital_fuel_sensorc9_temperatureNumberdevice_inputsDigital fuel sensor C9 temperature°C
digital_fuel_sensorc10_temperatureNumberdevice_inputsDigital fuel sensor C10 temperature°C
digital_fuel_sensorc1Numberdevice_inputsDigital fuel sensor C1
digital_fuel_sensorc2Numberdevice_inputsDigital fuel sensor C2
digital_fuel_sensorc3Numberdevice_inputsDigital fuel sensor C3
digital_fuel_sensorc4Numberdevice_inputsDigital fuel sensor C4
digital_fuel_sensorc5Numberdevice_inputsDigital fuel sensor C5
digital_fuel_sensorc6Numberdevice_inputsDigital fuel sensor C6
digital_fuel_sensorc7Numberdevice_inputsDigital fuel sensor C7
digital_fuel_sensorc8Numberdevice_inputsDigital fuel sensor C8
digital_fuel_sensorc9Numberdevice_inputsDigital fuel sensor C9
digital_fuel_sensorc10Numberdevice_inputsDigital fuel sensor C10
digital_fuel_sensora1_temperatureNumberdevice_inputsDigital fuel sensor A1 temperature°C
fuel_level_sensorb1_temperatureNumberdevice_inputsFuel level sensor B1 temperature°C
bt_humidity_sensor_0Numberdevice_inputsBT humidity sensor 0%
bt_humidity_sensor_1Numberdevice_inputsBT humidity sensor 1%
bt_humidity_sensor_2Numberdevice_inputsBT humidity sensor 2%
bt_humidity_sensor_3Numberdevice_inputsBT humidity sensor 3%
bt_humidity_sensor_4Numberdevice_inputsBT humidity sensor 4%
ibuttonStringdevice_inputsiButton driver ID
rfid_aStringdevice_inputsRFID PortA
rfid_bStringdevice_inputsRFID PortB
magnetic_card_idStringdevice_inputsMagnetic card ID
ds1971_ibutton_internal_8b_driver_idStringdevice_inputsDS1971 iButton internal 8B driver ID
ds1971_ibutton_internal_16b_driver_idStringdevice_inputsDS1971 iButton internal 16B driver ID
ds1971_ibutton_internal_8b_passenger_idStringdevice_inputsDS1971 iButton internal 8B passenger ID
ds1971_ibutton_internal_16b_passenger_idStringdevice_inputsDS1971 iButton internal 16B passenger ID
ultra_high_frequency_rfid_port_bStringdevice_inputsUltra High Frequency RFID port B
ultra_high_frequency_rfid_port_aStringdevice_inputsUltra High Frequency RFID port A
digital_input_1Booleandevice_inputsDIN1 value
digital_input_2Booleandevice_inputsDIN2 value
digital_input_3Booleandevice_inputsDIN3 value
digital_input_4Booleandevice_inputsDIN4 value
analog_input_1Numberdevice_inputsAIN1 valueV
analog_input_2Numberdevice_inputsAIN2 valueV
din1_working_time_diffNumberdevice_inputsDIN1 hour counters
din2_working_time_diffNumberdevice_inputsDIN2 hour counters
din3_working_time_diffNumberdevice_inputsDIN3 hour counters
din4_working_time_diffNumberdevice_inputsDIN4 hour counters
ot_digital_input_1Booleandevice_inputsOT digital input 1
ot_digital_input_2Booleandevice_inputsOT digital input 2
ot_digital_input_3Booleandevice_inputsOT digital input 3
ot_digital_input_4Booleandevice_inputsOT digital input 4
frequency_input_1Numberdevice_inputsFrequency input 1Hz
frequency_input_2Numberdevice_inputsFrequency input 2Hz
kimax_total_trailer_weightNumberdevice_inputsKimax total trailer weightkg
kimax_total_truck_weightNumberdevice_inputsKimax total truck weightkg
moba_netto_weightNumberdevice_inputsMOBA netto weightg
moba_timestampDatetimedevice_inputsMOBA timestamp
moba_rfid_idStringdevice_inputsMOBA RFID ID
mobileye_sound_typeEnumdevice_inputsMobileye sound type
Possible values:
SILENT
LDWL
LDWR
HW1
TSR
UFCW
FCW_PCW
PEDS_IN_DZ
mobileye_pedestrians_in_dzBooleandevice_inputsMobileye pedestrians in danger zone
mobileye_pedestrians_fcwBooleandevice_inputsMobileye pedestrians forward collision warning
mobileye_night_time_indicatorEnumdevice_inputsMobileye night time indicator
Possible values:
DAY
NIGHT
mobileye_dusk_time_indicatorEnumdevice_inputsMobileye dusk time indicator
Possible values:
DAY
DUSK
mobileye_error_codeNumberdevice_inputsMobileye error code
mobileye_error_validBooleandevice_inputsMobileye error valid
mobileye_zero_speedBooleandevice_inputsMobileye zero speed
mobileye_headway_validBooleandevice_inputsMobileye headway valid
mobileye_headway_measurementNumberdevice_inputsMobileye headway measurement
mobileye_ldw_offBooleandevice_inputsMobileye LDW off
mobileye_right_ldw_onBooleandevice_inputsMobileye right LDW on
mobileye_left_ldw_onBooleandevice_inputsMobileye left LDW on
mobileye_maintenanceEnumdevice_inputsMobileye maintenance
Possible values:
NO_ERROR
ERROR
mobileye_failsafeBooleandevice_inputsMobileye failsafe
mobileye_fcw_onBooleandevice_inputsMobileye forward collision warning on
mobileye_headway_warning_levelEnumdevice_inputsMobileye headway warning level
Possible values:
NO_COPV
CIPV_WITH_HW_MORE_THAN_HW_CONFIG
CIPV_WITH_LESS_THAN_HW_CONFIG
mobileye_hi_beamEnumdevice_inputsMobileye high beam
Possible values:
OFF
ON
mobileye_low_beamEnumdevice_inputsMobileye low beam
Possible values:
OFF
ON
mobileye_wipersEnumdevice_inputsMobileye wipers
Possible values:
OFF
ON
mobileye_right_signalBooleandevice_inputsMobileye right signal
mobileye_left_signalBooleandevice_inputsMobileye left signal
mobileye_brake_signalBooleandevice_inputsMobileye brake signal
mobileye_wipers_availableBooleandevice_inputsMobileye wipers available
mobileye_low_beam_availableBooleandevice_inputsMobileye low beam available
mobileye_hi_beam_availableBooleandevice_inputsMobileye high beam available
mobileye_speed_availableBooleandevice_inputsMobileye speed available
mobileye_speedNumberdevice_inputsMobileye speedkm/h
mobileye_tamper_alertEnumdevice_inputsMobileye tamper alert
Possible values:
OFF
ON
mobileye_tsr_enabledBooleandevice_inputsMobileye TSR enabled
mobileye_tsr_warning_levelNumberdevice_inputsMobileye TSR warning level
mobileye_hw_repeat_enabledBooleandevice_inputsMobileye headway warning repeat enabled
mobileye_vision_only_signNumberdevice_inputsMobileye vision only sign
mobileye_vision_only_supplementary_sign_typeNumberdevice_inputsMobileye vision only supplementary sign type
mobileye_sign_position_xNumberdevice_inputsMobileye sign position X
mobileye_sign_position_yNumberdevice_inputsMobileye sign position Y
mobileye_sign_position_zNumberdevice_inputsMobileye sign position Z
mobileye_filter_typeNumberdevice_inputsMobileye filter type
mobileye_vision_sign_type_display_1Numberdevice_inputsMobileye vision sign type display 1
mobileye_vision_only_suplementary_sign_type_display_1Numberdevice_inputsMobileye vision only supplementary sign type display 1
mobileye_vision_sign_type_display_2Numberdevice_inputsMobileye vision sign type display 2
mobileye_vision_only_suplementary_sign_type_display_2Numberdevice_inputsMobileye vision only suplementary sign type display 2
mobileye_vision_sign_type_display_3Numberdevice_inputsMobileye vision sign type display 3
mobileye_vision_only_suplementary_sign_type_display_3Numberdevice_inputsMobileye vision only suplementary sign type display 3
mobileye_vision_sign_type_display_4Numberdevice_inputsMobileye vision sign type display 4
mobileye_vision_only_suplementary_sign_type_display_4Numberdevice_inputsMobileye vision only suplementary sign type display 4
obd_kline_dtc_and_milNumberdevice_inputsOBD DTC and MIL
obd_kline_rpmNumberdevice_inputsOBD RPMRPM
obd_kline_vehicle_speed_sensorNumberdevice_inputsOBD vehicle speedkm/h
obd_kline_engine_coolant_temperatureNumberdevice_inputsOBD engine coolant temperature°C
obd_kline_ambient_air_temperatureNumberdevice_inputsOBD ambient air temperature°C
obd_kline_fuel_level_inputNumberdevice_inputsOBD fuel level%
obd_kline_type_of_fuelEnumdevice_inputsOBD fuel type
Possible values:
NOT_AVAILABLE
GASOLINE
METHANOL
ETHANOL
DIESEL
LPG
CNG
PROPANE
ELECTRIC
BIFUEL_RUNNING_GASOLINE
BIFUEL_RUNNING_METHANOL
BIFUEL_RUNNING_ETHANOL
BIFUEL_RUNNING_LPG
BIFUEL_RUNNING_CNG
BIFUEL_RUNNING_PROPANE
BIFUEL_RUNNING_ELECTRICITY
BIFUEL_RUNNING_ELECTRIC_AND_COMBUSTION_ENGINE
HYBRID_GASOLINE
HYBRID_ETHANOL
HYBRID_DIESEL
HYBRID_ELECTRIC
HYBRID_RUNNING_ELECTRIC_AND_COMBUSTION_ENGINE
HYBRID_REGENERATIVE
BIFUEL_DIESEL
obd_kline_engine_fuel_rateNumberdevice_inputsOBD engine fuel ratel/h
obd_kline_actual_engine_percent_torqueNumberdevice_inputsOBD actual engine percent torque%
obd_kline_distance_traveled_while_mil_is_activatedNumberdevice_inputsOBD distance traveled while MIL is activatedkm
obd_kline_relative_accelerator_pedal_positionNumberdevice_inputsOBD accelerator pedal position%
obd_kline_vin_1Stringdevice_inputsOBD VIN 1
obd_kline_vin_2Stringdevice_inputsOBD VIN 2
obd_kline_vin_3Stringdevice_inputsOBD VIN 3
obd_kline_time_since_engine_startNumberdevice_inputsOBD time since engine starts
obd_kline_dtc_countedNumberdevice_inputsOBD DTC count
satellite_messages_sentNumberdevice_inputsSatellite messages sent
pending_satellite_messagesNumberdevice_inputsPending satellite messages
spr_spreader_modeNumberdevice_inputsSpreader mode
spr_spreader_adjustment_of_simulation_driving_speedNumberdevice_inputsSpreader adjustment of simulation driving speedkm/h
spr_spreader_spreading_widthNumberdevice_inputsSpreader spreading widthm
spr_spreading_solid_material_dosage_from_reservoir_1Numberdevice_inputsSpreader spreading solid material dosage from reservoir 1g/m^2
spr_spreading_brine_dosageNumberdevice_inputsSpreader spreading brine dosageg/m^2
spr_spreader_maximum_buttondevice_inputsSpreader maximum button
spr_spread_solid_material_from_reservoir_1Numberdevice_inputsSpreader spread solid material from reservoir 1kg
spr_spread_brine_materialNumberdevice_inputsSpreader spread brine materiall
spr_driven_length_while_spreadingNumberdevice_inputsSpreader driven length while spreadingm
spr_driven_hours_while_spreadingNumberdevice_inputsSpreader driven hours while spreadingh
spr_error_codeBitmapdevice_inputsSpreader error code
Possible values:
RESERVED
NO_SALT
NO_BRINE
MIN_LEVEL_OF_TANK
MIN_LEVEL_OF_HOPPER
NO_FEEDBACK_FROM_SPINNER
NO_FEEDBACK_FROM_CONVEYER
NO_FEEDBACK_FROM_CONVEYER_2
NO_FEEDBACK_FROM_PUMP
SPINNER_RPM_OUT_OF_RANGE
CONVEYER_RPM_OUT_OF_RANGE
CONVEYER_2_RPM_OUT_OF_RANGE
PUMP_RPM_OUT_OF_RANGE
SETTING_OUT_OF_RANGE
AUX_ENGINE_CHARGE_CONTROL_FAULT
AUX_ENGINE_OIL_PRESSURE_TOO_LOW
AUX_ENGINE_WATER_TEMP_TOO_HIGH
RESERVED
spr_liquid_materialStringdevice_inputsSpreader liquid material
spr_solid_materialStringdevice_inputsSpreader solid material
driver_1_stateEnumdevice_inputsDriver 1 state
Possible values:
REST
DRIVER_AVAILABLE
WORK
DRIVE
ERROR
NOT_AVAILABLE
driver_2_stateEnumdevice_inputsDriver 2 state
Possible values:
REST
DRIVER_AVAILABLE
WORK
DRIVE
ERROR
NOT_AVAILABLE
tco_first_driver_stateEnumdevice_inputsTCO first driver state
Possible values:
REST
DRIVER_AVAILABLE
WORK
DRIVE
ERROR
NOT_AVAILABLE
tco_second_driver_stateEnumdevice_inputsTCO second driver state
Possible values:
REST
DRIVER_AVAILABLE
WORK
DRIVE
ERROR
NOT_AVAILABLE
tco_first_driver_cardEnumdevice_inputsTCO first driver card
Possible values:
NOT_INSERTED
INSERTED
tco_second_driver_cardEnumdevice_inputsTCO second driver card
Possible values:
NOT_INSERTED
INSERTED
tco_distanceNumberdevice_inputsTCO distancekm
tco_tripNumberdevice_inputsTCO trip distancekm
tco_vehicle_speedNumberdevice_inputsTCO vehicle speedkm/h
tco_rpmNumberdevice_inputsTCO engine speedRPM
tco_registration_numberStringdevice_inputsTCO registration number
tacho_ddd_availableEnumdevice_inputsTacho card reader state
NOT_AVAILABLE
AVAILABLE
tco_first_driver_driving_time_(prev_and_curr_week)Numberdevice_inputsTCO first driver driving time (prev. and curr. week)min
tco_second_driver_driving_time_(prev_and_curr_week)Numberdevice_inputsTCO second driver driving time (prev. and curr. week)min
tco_first_driver_duration_of_selected_activityNumberdevice_inputsTCO first driver duration of selected activitymin
tco_second_driver_duration_of_selected_activityNumberdevice_inputsTCO second driver duration of selected activitymin
tco_first_driver_continuous_driving_timeNumberdevice_inputsTCO first driver continuous driving timemin
tco_second_driver_continuous_driving_timeNumberdevice_inputsTCO second driver continuous driving timemin
tco_first_driver_cumulated_break_timeNumberdevice_inputsTCO first driver accumulated break timemin
tco_second_driver_cumulated_break_timeNumberdevice_inputsTCO second driver accumulated break timemin
tco_first_driver_time_related_statesNumberdevice_inputsTCO first driver time related states
tco_second_driver_time_related_statesNumberdevice_inputsTCO second driver time related states
tco_timeDatetimedevice_inputsTCO tacho time
tco_can_tacho_timeDatetimedevice_inputsTCO CAN tacho Time
temperature_sensor_0Numberdevice_inputsTemperature sensor 0°C
temperature_sensor_1Numberdevice_inputsTemperature sensor 1°C
temperature_sensor_2Numberdevice_inputsTemperature sensor 2°C
temperature_sensor_3Numberdevice_inputsTemperature sensor 3°C
temperature_sensor_0_idStringdevice_inputsTemperature sensor 0 ID
temperature_sensor_1_idStringdevice_inputsTemperature sensor 1 ID
temperature_sensor_2_idStringdevice_inputsTemperature sensor 2 ID
temperature_sensor_3_idStringdevice_inputsTemperature sensor 3 ID
ot_temperature_sensor_1Numberdevice_inputsOT temperature sensor 1°C
ot_temperature_sensor_2Numberdevice_inputsOT temperature sensor 2°C
ot_temperature_sensor_3Numberdevice_inputsOT temperature sensor 3°C
ot_temperature_sensor_4Numberdevice_inputsOT temperature sensor 4°C
ot_temperature_sensor_5Numberdevice_inputsOT temperature sensor 5°C
ot_temperature_sensor_6Numberdevice_inputsOT temperature sensor 6°C
bt_temperature_sensor_1Numberdevice_inputsBT Temperature sensor 0°C
bt_temperature_sensor_2Numberdevice_inputsBT Temperature sensor 1°C
bt_temperature_sensor_3Numberdevice_inputsBT Temperature sensor 2°C
bt_temperature_sensor_4Numberdevice_inputsBT Temperature sensor 3°C
bt_temperature_sensor_5Numberdevice_inputsBT Temperature sensor 4°C
trailers_vehicle_abs_statusEnumdevice_inputsTrailers vehicle ABS status
Possible values:
PASSIVE
ACTIVE
trailers_vehicle_service_brake_statusEnumdevice_inputsTrailers vehicle service brake status
Possible values:
PASSIVE
ACTIVE
trailers_vdc_activeEnumdevice_inputsTrailers VDC active
Possible values:
PASSIVE
ACTIVE
trailers_vehicle_electrical_supply_statusEnumdevice_inputsTrailers vehicle electrical supply status
Possible values:
INSUFFICIENT
SUFFICIENT
trailers_external_brake_request_statusEnumdevice_inputsTrailers external brake request status
NO_REQUEST
REQUEST_ACTIVE
trailers_braking_via_electric_control_line_supportEnumdevice_inputsTrailers braking via electric control line support
Possible values:
NOT_SUPPORTED
SUPPORTED
trailers_electrical_supply_of_non_braking_system_statusEnumdevice_inputsTrailers electrical supply of non-braking system status
Possible values:
OFF
ON
trailers_electrical_load_proportional_function_installation_statusEnumdevice_inputsTrailers electrical load proportional function installation status
Possible values:
NOT_INSTALLED
INSTALLED
trailers_vehicle_typeEnumdevice_inputsTrailers vehicle type
Possible values:
TOWED_VEHICLE
CONVERTED_DOLLY_AXLE_LSB
trailers_stop_lamps_requestEnumdevice_inputsTrailers stop lamps request
Possible values:
NO_REQUEST
REQUEST_ACTIVE
trailers_red_warning_signal_requestEnumdevice_inputsTrailers red warning signal request
Possible values:
OFF
ON
trailers_amber_warning_signal_requestEnumdevice_inputsTrailers amber warning signal request
Possible values:
OFF
ON
trailers_vehicle_pneumatic_supply_statusEnumdevice_inputsTrailers vehicle pneumatic supply status
Possible values:
OFF
ON
trailers_braking_system_wheel_based_vehicle_speedNumberdevice_inputsTrailers braking system wheel–based vehicle speedkm/h
trailers_wheel_speed_difference_main_axleNumberdevice_inputsTrailers wheel speed difference main axlekm/h
trailers_lateral_accelerationNumberdevice_inputsTrailers lateral accelerationm/s^2
trailers_axle_load_sumNumberdevice_inputsTrailers axle load sumkg
trailers_pneumatic_supply_pressureNumberdevice_inputsTrailers pneumatic supply pressurekPa
trailers_brake_cylinder_pressure_first_axle_left_wheelNumberdevice_inputsTrailers brake cylinder pressure first axle, left wheelkPa
trailers_brake_cylinder_pressure_first_axle_right_wheelNumberdevice_inputsTrailers brake cylinder pressure first axle, right wheelkPa
trailers_brake_cylinder_pressure_second_axle_left_wheelNumberdevice_inputsTrailers brake cylinder pressure second axle, left wheelkPa
trailers_brake_cylinder_pressure_second_axle_right_wheelNumberdevice_inputsTrailers brake cylinder pressure second axle, right wheelkPa
trailers_brake_cylinder_pressure_third_axle_left_wheelNumberdevice_inputsTrailers brake cylinder pressure third axle, left wheelkPa
trailers_brake_cylinder_pressure_third_axle_right_wheelNumberdevice_inputsTrailers brake cylinder pressure third axle, right wheelkPa
trailers_high_resolution_vehicle_distanceNumberdevice_inputsTrailers high resolution vehicle distancekm
trailers_service_distanceNumberdevice_inputsTrailers service distancekm
wireless_enabledEnumdevice_inputsWireless enabled
Possible values:
DISABLED
ENABLED
wireless_pairBooleandevice_inputsWireless pair
wireless_driver_idNumberdevice_inputsWireless driver ID
current_profileNumberdevice_inputsCurrent profile
power_supply_voltageNumberdevice_inputsPower supply voltageV
battery_voltageNumberdevice_inputsBattery voltageV
pcb_temperatureNumberdevice_inputsPCB temperature°C
virtual_odometerNumberdevice_inputsVirtual odometerkm
input_triggerNumberdevice_inputsInput trigger
priorityEnumdevice_inputsPriority
Possible values:
LOW
HIGH
battery_currentNumberdevice_inputsBattery charge currentmA
movementEnumdevice_inputsMovement sensor
Possible values:
STILL
MOVING
hdopStringdevice_inputsHDOP
modem_temperatureNumberdevice_inputsModem temperature°C
virtual_odometer_diffNumberdevice_inputsVirtual odometer DIFFm
ignition_plugtrackEnumdevice_inputsVirtual ignition
Possible values:
OFF
ON
sleep_timerEnumdevice_inputsSleep timer
Possible values:
NO_EVENT
DEVICE_WAKE_UP_BY_TIMER_EVENT
custom_ignitionEnumdevice_inputsCustom ignition
Possible values:
OFF
ON
panicBooleandevice_inputsPanic status
shock_durationNumberdevice_inputsShock durationms
roll_over_alarmBooleandevice_inputsRollover alarm
positionArrayContainer for all record GPS parameters
altitudeNumberpositionAltitudem
longitudeNumberpositionLongitudeDegrees
latitudeNumberpositionLatitudeDegrees
directionNumberpositionDirectionDegrees
satellites_countNumberpositionSatellites count
speedNumberpositionSpeedkm/h
addressArrayContainer for all address components
countryStringaddressCountry name
country_codeStringaddressCountry code
countyStringaddressCounty name
regionStringaddressRegion name
localityStringaddressLocality name
streetStringaddressStreet name
house_numberStringaddressHouse number
zipStringaddressZIP code
geozone_idsArrayContainer for all geozones IDs
tiresArrayinputsContainer for TPMS parameters received from device
tireXXArraytiresContainer for tireXX received from hardware
XX goes from 01 to 36
tire_pressure_threshold_detectionNumbertireXXSignal indicating the pressure level of the tire. The levels defined represent different pressure conditions of the tire:
000 Extreme over pressure - The tire pressure is at a level where the safety of the vehicle may be jeopardised.
001 Over pressure - The tire pressure is higher than the pressure defined by the vehicle or tire manufacturer.
010 No warning pressure - The tire pressure is within the thresholds defined by the vehicle or tire manufacturer.
011 Under pressure - The tire pressure is lower than the pressure defined by the vehicle or tire manufacturer.
100 Extreme under pressure - The tire pressure is at a level where the safety of the vehicle may be jeopardised.
101 Not defined
110 Error indicator
111 Not available
tire_sensor_electrical_faultNumbertireXXIndicates the status of electrical fault on the tire sensor.

00 Ok (No Fault)
01 Not Defined (Fault)
10 Error
11 Not Supported
tire_statusNumbertireXXIndicates the status of the tire.

00 Ok (no fault)
01 Tire leak detected
10 Error
11 Not Supported
tire_temperatureNumbertireXXTemperature at the surface of the tire sidewall.
Resolution: 0.03125 °C/bit
Offset: 0
Data Range: -273 to 1734.96875 °C
°C
tire_air_leakage_rateNumbertireXXThe pressure loss rate of a tire.
Resolution: 0.05 kPa/bit
Offset: 0
Data Range: 0 to 12.5 kPa
kPa
tire_pressureNumbertireXXPressure at which air is contained in cavity formed by tire and rim.
Resolution: 0.05 kPa/bit
Offset: 0
Data Range: 0 to 125 kPa
kPa
tire_sensor_enable_statusNumbertireXXIndicates whether the tire sensor is being monitored by the controller or is Enabled/Disabled.

00 Off / Isolated / Disabled
01 On (tire is polled) / Enabled
10 Not Defined
11 Not Supported
tire_locationNumbertireXXIdentifies which tire is associated with the parametric data in this PGN.

The low order 4 bits represent a position number, counting left to right when facing in the direction of normal vehicle travel (forward).
The high order 4 bits represent a position number, counting front to back on the vehicle.

The value 0xFF indicates not available.
It is recommended that output devices add 1 to the position number (range 1 to 15, not 0 to 14) for use by drivers and service technicians.
Examples: Tire pressure for location 0x00 would be left front tire.
Tire pressure for location 0x23 would be right outside rear rear on a 3-axle tractor with dual axle per side (3rd axle, 4th tire).
tire_extended_tire_pressure_supportNumbertireXXDefines the choice of using the tire pressure (PGN 65268) or Extended Tire Pressure (PGN 64578). The state value '01' indicates the extended tire pressure SPN is used for the pressure data. Any other value indicates the extended tire pressure SPN is not being used.
00 - Not Using Extended Tire Pressure
01 - Using Extended Tire Pressure
10 - Error
11 - Not Available/Not Supported

TPMS data support

TPMS stands for Tire Pressure Monitoring System. Ruptela transport telematic devices are supporting TPMS as per documentation:

Telematic data gathered by devices via configured TPMS inputs can be retrieved using Object Coordinates History API v2 and v3. By default TPMS data is not added into API request and therefore it should be enabled by providing additional parameter in url request, specifically:


&include_tire_parameters=true

Example of API request with TPMS data included:


GET /objects/{objectId}/coordinates?version=3&api_key=<…>&include_geozones=false&from_datetime=2022-06-20T08:33:03.000Z&to_datetime=2022-06-20T08:35:03.000Z&include_tire_parameters=true
Host: api.fm-track.com
Content-Type: application/json;charset=UTF-8

Example of response when TPMS data is included:

{
    "items": [
        {
            "object_id": "abc123",
            "datetime": "2022-06-20T08:34:34.000Z",
            "trip_type": "NONE",
            "ignition_status": "OFF",
            "position": {
                "latitude": 52.3411054,
                "longitude": 21.4358205,
                "altitude": 30,
                "direction": 166,
                "speed": 50,
                "satellites_count": 13
            },
            "address": {
                "country": "Poland",
                "country_code": "PL",
                "county": "Masovian Voivodeship",
                "region": "Wołomin County",
                "locality": "Nowy Cygów",
                "street": "",
                "house_number": "",
                "zip": "05-326"
            },
            "inputs": {
                "other": {
                    "country_code_geonames": 227,
                    "virtual_gps_odometer": 741.33
                },
                "calculated_inputs": {
                    "fuel_consumption": 0.00,
                    "fuel_level": 0.00,
                    "mileage": 0.00,
                    "rpm": 0.00,
                    "temperature": 0.00,
                    "custom_input_1": 0.00,
                    "custom_input_2": 0.00,
                    "custom_input_3": 0.00,
                    "custom_input_4": 0.00,
                    "custom_input_5": 0.00,
                    "custom_input_6": 0.00,
                    "custom_input_7": 0.00,
                    "custom_input_8": 0.00,
                    "din1_working_time": 0.00,
                    "din2_working_time": 0.00,
                    "din3_working_time": 0.00,
                    "din4_working_time": 0.00,
                    "weight": 0.00
                },
                "device_inputs": {
                    "input_trigger": 0,
                    "priority": "LOW",
                    "hdop": "0.0"
                },
                "tires": {
                    "tire01": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2001.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire02": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2002.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire03": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2003.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire04": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2004.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire05": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2005.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire06": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2006.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire07": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2007.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire08": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2008.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire09": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2009.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire10": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2010.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire11": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2011.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire12": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2012.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire13": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2013.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire14": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2014.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire15": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2015.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire16": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2016.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire17": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2017.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire18": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2018.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire19": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2019.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire20": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2020.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire21": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2021.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire22": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2022.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire23": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2023.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire24": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2024.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire25": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2025.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire26": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2026.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire27": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2027.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire28": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2028.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire29": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2029.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire30": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2030.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire31": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2031.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire32": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2032.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire33": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2033.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire34": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2034.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire35": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2035.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    },
                    "tire36": {
                        "tire_pressure_threshold_detection": "2",
                        "tire_sensor_electrical_fault": "2",
                        "tire_status": "1",
                        "tire_temperature": "39.5",
                        "tire_air_leakage_rate": "2036.0",
                        "tire_pressure": "400",
                        "tire_sensor_enable_status": "0",
                        "tire_location": "23",
                        "tire_extended_tire_pressure_support": "3"
                    }
                }
            }
        }
    ],
    "continuation_token": null
}