Skip to main content
Omnitracs Knowledge Base

License Plate

License Plates are implemented as the LicensePlate class. A LicensePlate uniquely identifies a license plate of a vehicle. The attributes of a LicensePlate are:

 

Attribute

 

 

Description

 

number

A string of maximum length 10 that contains the license plate number of the vehicle

jurisdiction

A string of maximum length 10 containing the full ISO-3166-2 designation for the license plate (e.g. US-PA)

WSDL Definition

Below is how the LicensePlate object is defined in the WSDL

<complexType name="LicensePlate">

   <sequence>

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

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

   </sequence>

</complexType>

Sample XML

Here is some sample XML that shows what the LicensePlate object will look like in XML.

<LicensePlate>

   <number>FHN3465</number>

   <jurisdiction>US-PA</jurisdiction>

</LicensePlate>

 

  • Was this article helpful?