{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"HMIScroll",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. HMI Scroll object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["HMI_SCROLL"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["HMIScroll"]
		},
		"display_screen":{
			"$ref":"/resources/schema/analytics/client/v3/HMIDisplayScreenType.json",
			"description":"Required .. The screen on which the items are listed and the user scrolls"
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v3/ClickActionType.json",
			"description":"Required .. Log the user actions to scroll through the list whether up or down"
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"display_screen",
		"action"
	]
}