{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"MapAttributesShortcut",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Map Attributes Shortcut object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["MAP_ATTRIBUTES_SHORTCUT"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["MapAttributesShortcut"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v2/MapAttributesActionType.json",
			"description":"Required .. Log Expand or Collapse when user clicks on traffic option button on Dashboard to Expand or Collapse setting options. Log Select or Deselect depening on user selection on the options displayed."
		},
		"type":{
			"$ref":"/resources/schema/analytics/client/v2/MapAttributesType.json",
			"description":"The setting options the user clicks on after expanding."
		},
		"display_screen":{
			"$ref":"/resources/schema/analytics/client/v2/MapDisplayScreenType.json",
			"description":"Required .. On what page is the map being displayed."
		},
		"entity_id":{
			"type":"string",
			"description":"EntityID of place if on details page map."
		},
		"search_id":{
			"type":"string",
			"description":"LogID of Search that led to the result if Details page."
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"display_screen"
	]
}