{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"MapStyleDimension",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. Map Style Dimension object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["MAP_STYLE_DIMENSION"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["MapStyleDimension"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v3/MapStyleType.json",
			"description":"Required .. Whether user clicked on 2D or 3D option"
		},
		"display_screen":{
			"$ref":"/resources/schema/analytics/client/v3/MapDisplayScreenType.json",
			"description":"Required .. On what page is the user tapping on 2D/3D icon."
		},
		"search_id":{
			"type":"string",
			"description":"LogID of Search that led to the result if Details page"
		},
		"nav_id":{
			"type":"string",
			"description":"LogID of NavStart if the DisplayScreen is Navigation"
		},
		"trigger":{
			"$ref":"/resources/schema/analytics/client/v3/MapStyleDimensionTrigger.json",
			"description":"Trigger for the change"
		},
		"interaction_method": {
			"$ref": "/resources/schema/analytics/client/v3/InteractionMethodValues.json",
			"description": "for each user interaction log the interation method"
		}
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"display_screen",
		"search_id",
		"nav_id"
	]
}