Skip to main content
Omnitracs Knowledge Base

LandmarkAttribute

Information about a Landmark Attribute is implemented in the LandmarkAttribute object.  The attributes of the LandmarkAttribute object are:

 

Attribute

 

 

Description

 

attributeID

A string of maximum length 20 containing the name/identifier of the landmark attribute.
For a list of attributeIDs and landmark type/attribute relationships see the Landmark Types & Attributes page.

value

A string of maximum length 1024 containing the named attribute's value.

WSDL Definition

Here is how the LandmarkAttribute object is defined within the WSDL

<complexType name="LandmarkAttribute">

   <sequence>

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

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

   </sequence>

</complexType>


 

Sample XML

Here is a sample showing what the LandmarkAttribute object would look like in XML

<LandmarkAttribute>

   <attributeID>contactAName</attributeID>

   <value>John E. Smith</value>

</LandmarkAttribute>

 

  • Was this article helpful?