{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "SelectedEntity",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "EntityUserInsight ..  Entity that user selected and the position.",
	"properties" : {
		"id" : {
			"type" : "string",
			"description" : "entity id of the clicked entity."
		},

		"clicked_position" : {
			"type" : "number",
			"description" : "Position of the clicked entity."
		}
	},

	"required" : 
	[
		"id",
		"clicked_position"
	]
}