{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "v1 of map-user insight data.  It defines the spatial bounding box in lat-lon format",
	"properties" : {
		"min_lat" : {
			"type" : "number",
			"description" : "Starting Latitude of bounding box"
		},

		"min_lon" : {
			"type" : "number",
			"description" : "Starting Longitude of bounding box"
		},

		"max_lat" : {
			"type" : "number",
			"description" : "Ending Latitude of bounding box"
		},

		"max_lon" : {
			"type" : "number",
			"description" : "Ending Longitude of bounding box"
		},

		"center_lat" : {
			"type" : "number",
			"description" : "Optional Center Latitude of bounding box.  This can potentially be a device-matched Latitude"
		},

		"center_lon" : {
			"type" : "number",
			"description" : "Optional Center Longitude of bounding box.  This can potentially be a device-matched Longitude"
		}
	},

	"required" : 
	[
		"min_lat",
		"min_lon",
		"max_lat",
		"max_lon"
	],

	"title" : "BoundingBox",
	"type" : "object"
}