{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "PredictiveDestinationRequest",
	"type": "object",
	"description": "API Path: /dpalgo/v2/CalculatePredictiveDestination, the Calculate Predictive Destination object ",
	"properties": {
		"current_location_and_time": {
			"$ref": "/resources/schema/dpalgo/v2/LocationAndTime.json",
			"description": "Current Lat Lon Location and UTC Epoch of User"
		},
		"user_id": {
			"type": "string",
			"description": "User ID of user. Same as reg_vid in log_context"
		},
		"time_zone": {
			"type": "string",
			"description": "Current Time Zone of User"
		},
		"max_results": {
			"type": "integer",
			"description": "Maximum Number of Predictive Destinations that client can accept"
		}
	},
	"required": [
		"current_location_and_time",
		"user_id"
	]
}