{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"Initialize",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Failed in home area",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["INITIALIZE"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["Initialize"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v2/ClickActionType.json",
			"description":"Required .. Whether clicked on avatar or canceled"
		},
		"GUID":{
			"type":"string",
			"description":"Required .. id of device."
		},
		"error_id":{
			"type":"string",
			"description":"id associated with the error"
		},
		"transaction_tag":{
			"type":"string",
			"description":"Required .. id associated with the update."
		},
		"layer":{
			"type":"string",
			"description":"The change set returned by data service"
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"GUID",
		"transaction_tag",
		"error_id"
	]
}