{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"CheckUpdate",
	"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": ["CHECK_UPDATE"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["CheckUpdate"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v2/ClickActionType.json",
			"description":"Required .. only report fail"
		},
		"GUID":{
			"type":"string",
			"description":"Required .. id of device."
		},
		"error_id":{
			"type":"string",
			"description":"id associated with the error"
		},
		"change_set":{			
			"type":"array",
			"items":{
				"type":"string"
			},
			"description":"Array of change set ids returned by delta service"
		},
		"new_transaction_tag":{
			"type":"string",
			"description":"new transaction tag for the update if any."
		},
		"current_space_info":{
			"type": "array",
			"items": {
				"$ref":"/resources/schema/analytics/client/v2/SpaceLayerInfo.json"
			},			
			"description":"Array of Space,layer and transaction tag information of the current data on client for this request."
		},		
		"summary_id":{
			"type":"string",
			"description":"unique id for each summary"
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"GUID",
		"error_id",
		"summary_id"
	]
}