{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "EVRangeAdvisor",
	"type": "object",
	"additionalProperties": false,
	"description": "Analytics-v3 .. EV range advisor object",
	"properties": {
		"log_context": {
			"$ref": "/resources/schema/analytics/client/v3/LogContext.json",
			"description": "Required Log Context Reference"
		},
		"event_name": {
			"type": "string",
			"enum": ["EV_CHARGE_ADVISOR"]
		},
		"schema_definition": {
			"type": "string",
			"enum": ["EVRangeAdvisor"]
		},
		"status": {
			"type": "integer",
			"enum": [0, 1, 2],
			"description": "status of charge advisor process: 0 - the ev charge advisor recommendations was turned off by user.1 - user terminated/cancelled the current EV advisor process.2 - all required charge stations were successfully added to route "
		},
		"range_check_id": {
			"type": "string",
			"description": "Log id of the range check event"
		},
		"charge_station_list": {
			"$ref": "/resources/schema/analytics/client/v3/ChargeStationListItems.json",
			"description": "Details for each charge stations that were added to this route. "
		},
		"request_time": {
			"type": "integer",
			"description": "UTC Timestamp of the request (in milliseconds)"
		},
		"response_time": {
			"type": "integer",
			"description": "UTC Timestamp of the response (in milliseconds)"
		}
	},
	"required": [
		"log_context",
		"event_name",
		"schema_definition",
		"status",
		"range_check_id",
		"charge_station_list",
		"response_time",
		"request_time"
	]
}