{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"FollowMeEnd",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Follow Me End object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["FOLLOW_ME_END"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["FollowMeEnd"]
		},
		"follow_me_start_id":{
			"type":"string",
			"description":"Required .. The log_id or follow_me_start_id of the corresponding FOLLOW_ME_START event."
		},
		"trigger":{
			"$ref":"/resources/schema/analytics/client/v2/FollowMeEndTriggerType.json",
			"description":"Required .. What triggered the app to exit from follow me mode. Log Background when user moves the app to the background. Log Recenter when user clicks the recenter button. "
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"follow_me_start_id",
		"trigger"
	]
}