{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"HMIKeyboard",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. HMI Keyboard object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["HMI_KEYBOARD"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["HMIKeyboard"]
		},
		"display_screen":{
			"$ref":"/resources/schema/analytics/client/v3/HMIDisplayScreenType.json",
			"description":"Required .. The screen on which the user tapped to hide or show the keyboard"
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v3/ClickActionType.json",
			"description":"Required .. Log the tap on onebox to show the keyboard as click and the minimize as close"
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"display_screen",
		"action"
	]
}