{
"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"
}
}
}
}