TripSummary

Represents a summary of trips driven by a vehicle hosted by a MiX Telematics system.

Fields

SystemType
The type of MiX Telematics system that hosts the trips.
VehicleId
The identifier of the vehicle which drove the trips.
Date
The date of the summary record (only applicable when summary_type=daily).
TripCount
The number of trips that were driven by the vehicle during the summary period.
SubTripCount
The number of sub trips that were driven by the vehicle during the summary period.
TotalDistance
The total distance driven by the vehicle during the summary period.
TotalDistanceUnits
The units of measure for the total distance.
MaxSpeed
The maximum speed reached during the summary period.
MaxSpeedUnits
The units for the maximum speed value.
OverSpeedingCount
The number of over speeding events that occurred during the summary period.
MaxAcceleration
The maximum acceleration reached during the summary period.
MaxAccelerationUnits
The units for the maximum acceleration value.
HarshAccelerationCount
The number of harsh acceleration events that occurred during the summary period.
MaxDeceleration
The maximum deceleration reached during the summary period.
MaxDecelerationUnits
The units for the maximum deceleration value.
HarshBrakingCount
The number of harsh braking events that occurred during the summary period.
VideoEventCount
The number of video events that were recorded during the summary period.

Note: Fields which are not available will be omitted.

Examples

JSON body:

{"SystemType":"FM","VehicleId":"69","Date":"\/Date(1349049600000)\/","TripCount":11,"SubTripCount":12,"TotalDistance":128.3,"TotalDistanceUnits":"km","MaxSpeed":112,"MaxSpeedUnits":"km/h","OverSpeedingCount":0,"MaxAcceleration":7,"MaxAccelerationUnits":"km/h/s","HarshAccelerationCount":0,"MaxDeceleration":10,"MaxDecelerationUnits":"km/h/s","HarshBrakingCount":0,"VideoEventCount":0}

XML body:

<?xml version="1.0"?>
<TripSummary SystemType="FM" VehicleId="69">
	<Date>2012-10-01T00:00:00</Date>
	<TripCount>11</TripCount>
	<SubTripCount>12</SubTripCount>
	<TotalDistance>128.3</TotalDistance>
	<TotalDistanceUnits>km</TotalDistanceUnits>
	<MaxSpeed>112</MaxSpeed>
	<MaxSpeedUnits>km/h</MaxSpeedUnits>
	<OverSpeedingCount>0</OverSpeedingCount>
	<MaxAcceleration>7</MaxAcceleration>
	<MaxAccelerationUnits>km/h/s</MaxAccelerationUnits>
	<HarshAccelerationCount>0</HarshAccelerationCount>
	<MaxDeceleration>10</MaxDeceleration>
	<MaxDecelerationUnits>km/h/s</MaxDecelerationUnits>
	<HarshBrakingCount>0</HarshBrakingCount>
	<VideoEventCount>0</VideoEventCount>
</TripSummary>