{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"OpenOnebox",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. Open Onebox object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["OPEN_ONEBOX"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["OpenOnebox"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v3/ClickActionType.json",
			"description":"Required .. If user tapped inside the Onebox Search or Cancel"
		},
		"display_screen":{
			"$ref":"/resources/schema/analytics/client/v3/OneboxDisplayScreenType.json",
			"description":"Required .. The screen on which onebox was tapped"
		},
		"interaction_method": {
			"$ref": "/resources/schema/analytics/client/v3/InteractionMethodValues.json",
			"description": "for each user interaction log the interation method"
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"display_screen"
	]
}