{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"ResumeRoute",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. Resume Route object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["RESUME_ROUTE"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["ResumeRoute"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v3/ClickActionType.json",
			"description":"Required .. Log Resume when user clicks on the ResumeRoute on Dashboard to continue Nav.Log Close when user cancels the trip by clicking on the 'X'."
		},
		"route_id":{
			"type":"string",
			"description":"Required .. LogID of Route that was closed earlier. The original route for which the banner was shown."
		},
		"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"
	]
}