1{
2    "MyDeviceId": 0,
3    "Devices": [
4        {
5            "DeviceId": 0,
6            "OccupantZones": [
7                {
8                    "ZoneId": 0,
9                    "OccupantType": "DRIVER",
10                    "Seat": 1,
11                    "Comments": "Occupant zone for driver and FRONT_LEFT seat"
12                },
13                {
14                    "ZoneId": 1,
15                    "OccupantType": "FRONT_PASSENGER",
16                    "Seat": 4,
17                    "Comments": "Occupant zone for FRONT_RIGHT passenger"
18                }
19            ],
20            "EndpointInfo": {
21                "IpAddress": "10.10.10.1",
22                "PortNumber": 1234,
23                "BrandName": "MyBrand",
24                "DeviceName": "MyDevice",
25                "ProductName": "MyProduct",
26                "ManufacturerName": "MyCompany",
27                "ModelName": "MyModel",
28                "SerialNumber": "Serial1234"
29            },
30            "Comments": "Device for front row"
31        },
32        {
33            "DeviceId": 1,
34            "OccupantZones": [
35                {
36                    "ZoneId": 2,
37                    "OccupantType": "REAR_PASSENGER",
38                    "Seat": 16
39                },
40                {
41                    "ZoneId": 3,
42                    "OccupantType": "REAR_PASSENGER",
43                    "Seat": 64
44                }
45            ],
46            "EndpointInfo": {
47                "IpAddress": "10.10.10.2",
48                "PortNumber": 2345,
49                "BrandName": "MyBrand",
50                "DeviceName": "MyDevice",
51                "ProductName": "MyProduct",
52                "ManufacturerName": "MyCompany",
53                "ModelName": "MyModel",
54                "SerialNumber": "Serial2345"
55            },
56            "Comments": "Device for back row"
57        }
58    ],
59    "Comment":
60            "This simulates a vehicle with two Android devices, one for front row, one for back row"
61}
62