Nav context data model

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
  "title": "Navigation Context",
  "type": "object",
  "required": [
    "location",
    "drive_mode"
  ],
  "properties": {
    "location": {
      "type": "coordinate",
      "description": "CVP Location"
    },
    "drive_mode": {
      "type": "string",
      "description": "free | navigation",
      "enum": [
        "free",
        "navigation"
      ]
    },
    "eta": {
      "description": "Estimated Time of Arrival in seconds",
      "type": "integer",
      "minimum": 0
    },
    "route_list": {
      "type": "array",
      "description": "List of route points, if under navigation",
      "items": {
        "$ref": "#/coordinate"
      }
    },
    "destination_list": {
      "type": "array",
      "description": "List of destinations, if under navigation",
      "items": {
        "$ref": "#/entity"
      }
    }
  }
}