{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "DestinationDetail",
	"description": "Destination Detail for the location",
	"type": "object",
	"properties": {
		"location": {
			"$ref": "/resources/schema/common/v1/LatLon.json",
			"description": "Current Lat Lon Location of User"
		},
		"label": {
			"type": "string",
			"description": "Label String"
		}
	},
	"required": [
		"location",
		"label"
	]
}