{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "GPSPoint",
	"description": "GPS Point Details for User",
	"type": "object",
	"properties": {
		"location": {
			"$ref": "/resources/schema/common/v1/LatLon.json",
			"description": "Lat Lon Location of User"
		},
		"utc_epoch": {
			"type": "integer",
			"description": "UTC Epoch for this Lat Lon"
		},
		"speed": {
			"type": "number",
			"description": "Speed in Miles/Hour"
		}

	},
	"required": [
		"location"
	]
}