{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "KeyDestination",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Key Destination as inferred by the analytics engine",
	"properties" : {
		"lat" : {
			"type":"number",
			"description" : "Latitude for the destination"
		},

		"lon" : {
			"type":"number",
			"description" : "Longitude for the destination"
		},

		"rank" : {
			"type":"number",
			"description" : "Ranks the key destination from the scale defined in the Rank"
		},

		"time_bucket" : {
			"$ref" : "/resources/schema/data/user/insight/v1/TimeBucket.json",
			"description" : "Optional time bucket/time-frame associated with the Key Destination."
		}
	},

	"required" : 
	[
		"lat",
		"lon",
		"rank"
	]
}