{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"NavEnd",
	"type":"object",
	"additionalProperties":false,
	"description":"TAnalytics-v1",
	"properties":{
		"Cause":{
			"enum":[
				"EXIT",
				"ARRIVAL"
			],
			"description":"Required reason why navigation was ended"
		},
		"Distance":{
			"type":"number",
			"description":"Optional Actual distance"
		},
		"Duration":{
			"type":"number",
			"description":"Optional Actual time"
		},
		"RouteID":{
			"type":"string",
			"description":"The LogID of a Route Calculation which was used for the current segment of turn by turn navigation"
		},
		"ParentRouteID":{
			"type":"string",
			"description":"The ParentRouteID from corresponding Route Calculation which was used for the current segment of turn by turn navigation"
		}
		
	},
	"required":[
		"Cause",
		"RouteID",
		"ParentRouteID"
	]
}