VehicleAttributeLog

  • Vehicle attributes are represented as key-value pairs in JSON format.

  • Attributes can have string, boolean, or number values.

  • The key field represents the attribute name, and the value field represents the attribute's actual value, which can be a string, boolean, or number.

Describes a vehicle attribute as a key-value pair.

JSON representation
{
  "key": string,
  "value": string,

  // Union field vehicle_attribute_value can be only one of the following:
  "stringValue": string,
  "boolValue": boolean,
  "numberValue": number
  // End of list of possible types for union field vehicle_attribute_value.
}
Fields
key

string

The attribute's key; for example, allowed_use_carpool_lane.

value

string

The attribute's value; for example, true.

Union field vehicle_attribute_value. The attribute's value, can be in string, bool, or double type. vehicle_attribute_value can be only one of the following:
stringValue

string

String typed attribute value.

boolValue

boolean

Boolean typed attribute value.

numberValue

number

Double typed attribute value.