config.tbs

The config.tbs event provides configuration‑related information for the Trailer Braking System (TBS) installed on the asset. This configuration data is typically static or infrequently changing and helps fleet systems correctly identify and manage TBS components.

Payload JSON

{
   "eventSubscriptionId":"517db07f-6e95-475e-8cc0-a371f9deed2b",
   "eventType":"config.tbs",
   "eventVersion":1,
   "eventId":"c37f8ac9-8206-4f95-afd1-74e442d09c07",
   "assetId":"2412ba2f-4499-4933-a9ce-69f6a38f44ee",
   "unitId":"traxee:358014094033866",
   "registeredOn":"2021-03-26T22:20:59Z",
   "eventData":{
      "brand":"wabco",
      "model":"RSS+",
      "serialNumber":"123456AB",
      "type":"abs",
      "vin":"LM1234567NO123456"
   }
}

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.
eventTypeStringRequiredIndicates the type of event being delivered. config.tbs specifically represents a Trailer Braking System configuration event.
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.
eventDataObjectRequiredContains the detailed configuration parameters of the Trailer Braking System.
brandStringOptionalSpecifies the manufacturer of the Trailer Braking System. Allowed values:
none, wabco, notWabco, knorr, haldex
modelStringOptionalIdentifies the TBS model name or series used on the asset. Example: RSS+.
serialNumberStringOptionalThe unique serial number assigned to the TBS unit by the manufacturer. Helpful for component tracking, warranty management, and maintenance records.
typeStringOptionalIndicates the braking system type used by the asset. Example values may include:
abs — Anti‑lock Braking System
Other types may apply depending on manufacturer specifications. Allowed values:
none, abs, ebs
vinStringOptionalRepresents the Vehicle Identification Number associated with the trailer or vehicle to which the TBS is installed. This ensures accurate mapping between the TBS configuration and the physical asset.