{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"MapColor",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. Map Colors object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["MAP_COLOR"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["MapColor"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v3/ClickActionType.json",
			"description":"Required .. If user tapped on the VoiceSearch button or Cancelled VoiceSearch after tapping"
		},
		"trigger":{
			"$ref":"/resources/schema/analytics/client/v3/MapColorsTrigger.json",
			"description":"Shows the new state of map color"
		},
		"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"
	]
}