{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"AlternativeRoutes",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Alternative Routes object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["ALTERNATIVE_ROUTES"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["AlternativeRoutes"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v2/ClickActionType.json",
			"description":"Required .. Log Click when user clicks on the option to view alternative routes. Log Back when user clicks back.Log Select when user taps on any route to view it."
		},
		"route_position":{
			"type": "number",
			"description":"Route position if user selected any particular route."
		},
		"route_id":{
			"type": "number",
			"description":"The log ID of the ROUTE event for which the route was clicked on."
		},
		"interaction_method": {
			"$ref": "/resources/schema/analytics/client/v2/InteractionMethodValues.json",
			"description": "for each user interaction log the interation method"
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action"
	]
}