{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"NavDirectionList",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. Nav Direction List object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["NAV_DIRECTION_LIST"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["NavDirectionList"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v3/ClickActionType.json",
			"description":"Required .. Log Click when user lists the route steps. Log Cancel when user clicks again to return to turn by turn navigation on map."
		},
		"route_id":{
			"type":"string",
			"description":"Required .. LogID of the Route that was chosen"
		},
		"nav_id":{
			"type":"string",
			"description":"LogID of the NavStart for the navigation underway if list is expanded while navigating"
		},
		"interaction_method": {
			"$ref": "/resources/schema/analytics/client/v3/InteractionMethodValues.json",
			"description": "for each user interaction log the interation method"
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"route_id"
	]
}