{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"SwitchWaypoint",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. Switch Waypoint object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["SWITCH_WAYPOINT"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["SwitchWaypoint"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v3/SwitchWaypointAction.json",
			"description":""
		},
		"entity_id":{
			"type":"string",
			"description":"Entity ID of the POI added or deleted"
		},
		"parent_route_id":{
			"type":"string",
			"description":"Required .. LogID of Search that led to the detail page"
		},
		"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",
		"entity_id",
		"parent_route_id"
	]
}