Doors

Signal code: closure-doors An object containing information about the vehicle’s doors.
values
array
required
An array of objects containing information about the state of the vehicle’s doors.
rowCount
number
Indicates the total number of door rows present in the vehicle. This field, along with columnCount, provides information about the vehicle’s door layout and the total number of doors available.
columnCount
number
Indicates the total number of door columns present in the vehicle. This field, along with rowCount, provides information about the vehicle’s door layout and the total number of doors available.
Example
{
  "values": [
    {
      "row": 0,
      "column": 0,
      "isOpen": false,
      "isLocked": true
    },
    {
      "row": 0,
      "column": 1,
      "isOpen": false,
      "isLocked": true
    }
  ],
  "rowCount": 2,
  "columnCount": 2
}

Engine Cover

Signal code: closure-enginecover An object containing information about the state of the vehicle’s engine cover for ICE or PHEV vehicles.
isOpen
boolean
Indicates if the trunk is open.

Front Trunk

Signal code: closure-fronttrunk An object containing information about the state of the vehicle’s front trunk.
isOpen
boolean
Indicates if the trunk is open.
isLocked
boolean
Indicates if the trunk is locked.

Is Locked

Signal code: closure-islocked A boolean value indicating whether the vehicle’s closures are currently locked.
value
boolean
A boolean value indicating whether the vehicle’s closures are currently locked.

Rear Trunk

Signal code: closure-reartrunk An object containing information about the state of the vehicle’s rear trunk.
isOpen
boolean
Indicates if the trunk is open.
isLocked
boolean
Indicates if the trunk is locked.

Sunroof

Signal code: closure-sunroof An object containing information about the state of the vehicle’s sunroof.
isOpen
boolean
Indicates if the trunk is open.

Windows

Signal code: closure-windows An object containing information about the vehicle’s windows.
values
array
required
An array of objects, where each object represents a specific window in the vehicle.
rowCount
number
Indicates the total number of window rows present in the vehicle. This field, along with columnCount, provides information about the vehicle’s window layout and the total number of windows available.
columnCount
number
Indicates the total number of window columns present in the vehicle. This field, along with rowCount, provides information about the vehicle’s window layout and the total number of windows available.
Example
{
  "values": [
    {
      "row": 0,
      "column": 0,
      "isOpen": false
    },
    {
      "row": 0,
      "column": 1,
      "isOpen": false
    }
  ],
  "rowCount": 2,
  "columnCount": 2
}