{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"SharePlace",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Share Place object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["SHARE_PLACE"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["SharePlace"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v2/ClickActionType.json",
			"description":"Required .. Log as Click when user clicks on Share on Details page. Log Select or Cancel depending on user choice on following screen."
		},
		"share_type":{
			"$ref":"/resources/schema/analytics/client/v2/ShareType.json",
			"description":"Medium used for the share if action is select."
		},
		"display_screen":{
			"$ref":"/resources/schema/analytics/client/v2/PlaceDisplayScreenType.json",
			"description":"Required .. The screen where the place was shared from. Differs depending on whether from recents, favorites, search results etc. "
		},
		"entity_id":{
			"type":"string",
			"description":"Required .. EntityID of the place."
		},
		"search_id":{
			"type":"string",
			"description":"LogID of Search that led to the detail page if from search result."
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"display_screen",
		"entity_id"
	]
}