Skip to main content
Omnitracs Knowledge Base

Trailer Spec

Information about trailer specs are implemented in the Trailer Spec object.  The attributes of the Trailer Spec object are:

 

Attribute

 

 

Description

 

id

A string indicating the identifier for the trailer spec.
Valid values are shown in the table below.

label

A string indicating the label text for the trailer spec.

value

A string indicating the value of the trailer spec.

Valid values for each specific identifier are shown below:

 

Trailer Spec ID

 

 

Valid Values

 

trailerType

Max length 3 characters. (Valid trailer type)

length

0-80

doorType

swing
roll
other
unknown

suspensionType

air
spring
other
unknown

liftGate

true
false
other
unknown

roofType

aluminum
translucent
other
unknown

manufacturer

Max length 20 characters.

modelYear

0 or 1951-2100

vin

Max length 17 characters.

customSpec1

label/value - Max length 20 characters each.

customSpec2

label/value - Max length 20 characters each.

customSpec3

label/value - Max length 20 characters each.

WSDL Definition

Here is how the Trailer Information object is defined within the WSDL

<complexType name="TrailerSpec">

   <sequence>

      <element name="id" nillable="true" type="xsd:string"/>

      <element name="label" nillable="true" type="xsd:string"/>

      <element name="value" nillable="true" type="xsd:string"/>

   </sequence>

</complexType>


 

Sample XML

Here is some sample XML that shows what the Trailer Information object will look like in XML

<getTrailerSpecsReturn>

   <trailerSpec>

      <id>trailerType</id>

      <label>Trailer Type</label>

      <value>DFT</value>

   </trailerSpec>

   <trailerSpec>

      <id>length</id>

      <label>Length</label>

      <value>53</value>

   </trailerSpec>

   <trailerSpec>

      <id>customSpec1</id>

      <label>Trailer Color</label>

      <value>White</value>

   </trailerSpec>

</getTrailerSpecsReturn>

 

  • Was this article helpful?