{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "CalculateLocalAreaRequest",
	"type": "object",
	"description": "API Path: /dpalgo/v1/calculatelocalArea, the Calculate Local Area Request object ",
	"properties": {
		"debug": {
			"$ref": "/resources/schema/dpalgo/v1/DebugValues.json",
			"description": "Debug Can either be On or Off"
		},
		"debug_context": {
			"$ref": "/resources/schema/dpalgo/v1/DebugContext.json",
			"description": "Additional Debug information when we need to debug local Area Calculation"
		},
		"trace": {
			"type": "array",
			"items": {
				"$ref": "/resources/schema/dpalgo/v1/TraceDetails.json",
				"description": "Location Lat Lon Points for the last 30 day rolling window"
			}
		},
		"area_type": {
			"$ref": "/resources/schema/dpalgo/v1/AreaType.json",
			"description": "Shape of Area Type to get"
		},
		"current_location": {
			"$ref": "/resources/schema/dpalgo/v1/CurrentLocation.json",
			"description": "Current Location of the car"
		}
	},
	"required": [
		"debug",
		"trace",
		"area_type",
		"current_location"
	]
}