{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"Share",
	"type":"object",
	"additionalProperties":false,
	"description":"TAnalytics-v1",
	"properties":{
		"Type":{
			"enum":[
				"ETA",
				"POI",
				"ADDRESS",
				"APP"
			],
			"description":"The aspect of the app/about the app was shared by the user"
		},
		"ShareType":{
			"enum":[
				"FB",
				"TWIT",
				"GPLUS",
				"EMAIL",
				"SMS"
			],
			"description":"Medium used for the share"
		},
		"EntityId":{
			"type":"string",
			"description":"Required entity ID, if share_event is POI or Address"
		},
		"ETA":{
			"type":"number",
			"description":"Required eta, if share_event is ETA"
		},
		"Distance":{
			"type":"number",
			"description":"Optional distance for place shared"
		},
		"RecipientCount":{
			"type":"number",
			"description":"Optional Number of users the share was with"
		},
		"RouteID":{
			"type":"string",
			"description":"The LogID of the chosen Route, if ETA was shared during navigation"
		},
		"DestLat":{
			"type":"number",
			"description":"Optional Latitude for place shared"
		},
		"DestLon":{
			"type":"number",
			"description":"Optional longitude for place shared"
		}
		
	},
	"required":[
		"Type",
		"ShareType"
	]
}