{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"DeleteRecent",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Delete Recent object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["DELETE_RECENT"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["DeleteRecent"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v2/DeleteActionType.json",
			"description":"Required .. User clicks on button to delete all recents - log Click. Log Delete or Cancel depending on user choice in the following screen"
		},
		"number_of_listed_items":{
			"type":"number",
			"description":"Required .. Insert total number of Recents ."
		},
		"status":{
			"$ref":"/resources/schema/analytics/client/v2/StatusType.json",
			"description":"If Action was Delete, then whether successfully deleted or not."
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"number_of_listed_items"
	]
}