{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"FollowMeStart",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Follow Me Start object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["FOLLOW_ME_START"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["FollowMeStart"]
		},
		"follow_me_start_id":{
			"type":"string",
			"description":"Required .. This would be same as the log_id generated for the event."
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"follow_me_start_id"
	]
}