{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"YAHMenu",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. YAH Menu object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["YAH_MENU"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["YAHMenu"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v2/YAHActionType.json",
			"description":"Required .. Log Click when user clicks on one of the YAH menu items like Faves, Report,etc. Log Select or Cancel depending on user action on the displayed screen"
		},
		"item":{
			"type":"string",
			"description":"Required .. Menu item clicked under YAH. This would be different based on which option the user clicked on."
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"item"
	]
}