VinLabelAssociation Data Type

Models the labels currently associated to a vehicle identified by the VIN.

Properties
name data type description
vin string
labels array of string The labels associated with the vehicle. Use 'labels-with-values' to also get any value associated.
labels-with-values array of Label

Example

{
  "vin" : "...",
  "labels-with-values" : [ {
    "label" : "...",
    "value" : "...",
    "global" : true
  }, {
    "label" : "...",
    "value" : "...",
    "global" : true
  } ]
}