VinLabelAssociation Data Type
Models the labels currently associated to a vehicle identified by the VIN.
| name | data type | description | 
|---|---|---|
| vin | string | |
|  |  |  | 
| labels-with-values | array of Label | 
Example
{
  "vin" : "...",
  "labels-with-values" : [ {
    "label" : "...",
    "value" : "...",
    "global" : true
  }, {
    "label" : "...",
    "value" : "...",
    "global" : true
  } ]
}