status.trailer

This section explains each field included in the Trailer Status event. These definitions help integrators and end‑users understand how to interpret and utilize the data transmitted through Raw Message Streaming (RMS).

Payload JSON

{
   "eventSubscriptionId":"517db07f-6e95-475e-8cc0-a371f9deed2b",
   "eventType":"status.trailer",
   "eventVersion":1,
   "eventId":"c37f8ac9-8206-4f95-afd1-74e442d09c07",
   "assetId":"2412ba2f-4499-4933-a9ce-69f6a38f44ee",
   "unitId":"traxee:358014094033866",
   "registeredOn":"2022-07-04T15:38:16Z",
   "eventData":{
      "axleLoad":12345,
      "mileage":357005,
      "speed":57
   }
}

Field level Description

FieldTypeOptional/RequiredDescription
eventSubscriptionIdString (UUID)RequiredA unique identifier representing the subscription through which this event was delivered. It ensures traceability between the event and the organization's registered RMS subscription.
eventTypeStringRequiredSpecifies the nature of the event being reported. For this payload, status.trailer indicates that the event provides operational status details related to the trailer.
eventVersionNumberRequiredeventVersion indicates the schema version of the event, allowing producers and consumers to interpret the event consistently as the schema evolves.
eventIdString (UUID)RequiredA globally unique identifier assigned to this specific event instance. Useful for event deduplication, tracking, and audit logging.
assetIdString (UUID)RequiredIdentifies the physical asset (e.g., vehicle, trailer, equipment) associated with this event. Used to correlate telemetry with a specific asset in fleet management systems.
unitIdStringRequiredA unique identifier of the telematics device generating the event. It often includes a namespace (e.g., traxee:) followed by the device's serial or IMEI-like identifier.
registeredOnDateTime (ISO 8601 timestamp, UTC)RequiredThe timestamp representing when the event was detected and recorded by the device.
eventDataObjectRequiredThe eventData section contains all trailer-specific operational metrics recorded at the time of the event.
axleLoadNumber (kilograms)OptionalRepresents the measured load applied across the trailer's axles at the moment the event was generated. This value helps monitor vehicle loading conditions for safety, compliance, and performance optimization.
mileageNumber (kilometers)OptionalIndicates the total cumulative distance traveled by the trailer up to the event timestamp. Mileage values support maintenance scheduling, lifecycle tracking, and operational reporting.
speedNumber (km/h)OptionalShows the instantaneous speed of the trailer at the time of measurement. This metric assists in understanding movement patterns and verifying operational conditions during transport.