{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"DeleteFavorite",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. Delete Favorite object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["DELETE_FAVORITE"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["DeleteFavorite"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v3/DeleteActionType.json",
			"description":"Required .. User clicks on button to delete all favorites/likes - log Click. Log Delete/Cancel depending on user choice in the following popup"
		},
		"number_of_listed_items":{
			"type":"number",
			"description":"Required .. Insert total number of Favorites ."
		},
		"status":{
			"$ref":"/resources/schema/analytics/client/v3/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",
		"status"
	]
}