{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"FatalError",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v4 .. Failed in home area",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v4/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["FATAL_ERROR"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["FatalError"]
		},
		"db_content":{
			"type":"string",
			"description":"Required "
		},
		"transaction_tag":{
			"type":"string",
			"description":"The change set returned by data service"
		},
		"space_transaction_list": {
			"type": "array",
			"items": {
				"$ref": "/resources/schema/analytics/client/v4/item/SpaceTransactionListItem.json"
			},
			"description": "List of space_id and transaction_tag pair. For each space id corresponding transaction_tag."
		},
		"base_transaction_tag": {
			"type": "string",
			"description": "Required: Base data transaction_tag (contains data version (e.g. 17Q2) + region + compile format ++)"
		}
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"db_content",
		"base_transaction_tag",
		"space_transaction_list",
		"transaction_tag"
	]
}