{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"MapAndNav",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Map and Navigation object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["MAP_AND_NAV"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["MapAndNav"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v2/ClickActionType.json",
			"description":"Required .. Log Click when user clicks on Map and Navigation option in profile. Log Back when user clicks on Back."
		},
		"traffic_setting":{
			"$ref":"/resources/schema/analytics/client/v2/SettingType.json",
			"description":"Whether Traffic option is on or off only if user changed it."
		},
		"camera_setting":{
			"$ref":"/resources/schema/analytics/client/v2/SettingType.json",
			"description":"Whether Traffic Camera is on or off only if user changed it."
		},
		"satellite_setting":{
			"$ref":"/resources/schema/analytics/client/v2/SettingType.json",
			"description":"Whether Satellite view is on or off only if user changed it."
		},
		"region":{
			"$ref":"/resources/schema/analytics/client/v2/RegionType.json",
			"description":"Region selected."
		},
		"units":{
			"$ref":"/resources/schema/analytics/client/v2/UnitType.json",
			"description":"The unit selected like Imperial, Metric only if user changed it."
		},
		"mode":{
			"$ref":"/resources/schema/analytics/client/v2/RouteModeType.json",
			"description":"Whether mode chosen as Automobile, Pedestrian, Fastest, etc in Route options only if user changed it."
		},
		"map_color":{
			"$ref":"/resources/schema/analytics/client/v2/MapColorType.json",
			"description":"Map color chosen only if user changed it."
		},
		"map_style":{
			"$ref":"/resources/schema/analytics/client/v2/MapStyleType.json",
			"description":"Whether 3D or 2D selected only if user changed it."
		},
		"backlight":{
			"$ref":"/resources/schema/analytics/client/v2/BackLightSettingType.json",
			"description":"Whether Always on or Device default selected  only if user changed it."
		},
		"lane_assist":{
			"$ref":"/resources/schema/analytics/client/v2/SettingType.json",
			"description":"Whether on or off only if user changed it."
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action"
	]
}