{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"DownloadMap",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Download Map object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["DOWNLOAD_MAP"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["DownloadMap"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v2/DownloadActionType.json",
			"description":"Required .. Log Click when user clicks on download maps option in profile. Log Select when user picks the region to download. Log download when ser clicks on download button. Log as Back if user clicks back"
		},
		"region":{
			"$ref":"/resources/schema/analytics/client/v2/RegionType.json",
			"description":"Which region the user picked to download. If user did not make a selection explicitly, log the default region."
		},
		"status":{
			"$ref":"/resources/schema/analytics/client/v2/StatusType.json",
			"description":"If Action was Download, then whether successfully completed or not."
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action"
	]
}