{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"OpenVoice",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Open Voice object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["OPEN_VOICE"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["OpenVoice"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v2/ClickActionType.json",
			"description":"Required .. If user tapped on the VoiceSearch button or Cancelled VoiceSearch after tapping"
		},
		"display_screen":{
			"$ref":"/resources/schema/analytics/client/v2/OneboxDisplayScreenType.json",
			"description":"Required .. The screen on which VoiceSearch button was tapped on"
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"display_screen"
	]
}