{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"StaticNavDirection",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Static Navigation Direction list object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["STATIC_NAV_DIRECTION"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["StaticNavDirection"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v2/StaticNavActionType.json",
			"description":"Required .. Log Click when user lists the route steps. Log Scroll when user scrolls through each direction. Log Cancel when user exits the free directions function."
		},
		"route_id":{
			"type":"string",
			"description":"LogID of the Route that was chosen."
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action"
	]
}