{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "CheckEnvironment",
	"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_ENVIRONMENT"
			]
		},

		"schema_definition" : {
			"type" : "string",
			"enum" : 
			[
				"CheckEnvironment"
			]
		},

		"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"
		},

		"transaction_tag" : {
			"type" : "string",
			"description" : "Required .. id associated with the update."
		}
	},

	"required" : 
	[
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"GUID",
		"transaction_tag",
		"error_id"
	]
}