{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "Favorites",
	"type": "object",
	"additionalProperties": false,
	"description": "Analytics-v2 .. Favorites object",
	"properties": {
		"log_context": {
			"$ref": "/resources/schema/analytics/client/v2/LogContext.json",
			"description": "Required Log Context Reference"
		},
		"event_name": {
			"type": "string",
			"enum": ["FAVORITES"]
		},
		"schema_definition": {
			"type": "string",
			"enum": ["Favorites"]
		},
		"trigger": {
			"$ref": "/resources/schema/analytics/client/v2/FavoritesRecentsTrigger.json",
			"description": "Required Entry point from which the app was launched. If a user launced the app from a Facebook link, the trigger would be FB"
		},
		"interaction_method": {
			"$ref": "/resources/schema/analytics/client/v2/InteractionMethodValues.json",
			"description": "for each user interaction log the interation method"
		}
	},
	"required": [
		"log_context",
		"event_name",
		"schema_definition",
		"trigger"
	]
}