{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "v1 of user profile data.  It defines user's preferred route",
	"properties" : {
		"origin_dest" : {
			"type" : "string",
			"description" : "origin_destination string, an example is: -83.03829,42.51563,-83.03838,42.51521 "
		},

		"edges" : {
			"type" : "array",
			"items" : {
				"$ref" : "/resources/schema/data/map/user/insight/v1/Edge.json"
			},
			"description" : "Array of user's preferred edges"
		}
	},

	"required" : 
	[
		"origin_dest",
		"edges"
	],

	"title" : "Route",
	"type" : "object"
}