{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "UserInitDeltaDiagnostics",
	"type": "object",
	"additionalProperties": false,
	"description": "Analytics-v2 .. User Initiated True Delta Diagnostics for true delta",
	"properties": {
		"log_context": {
			"$ref": "/resources/schema/analytics/client/v2/LogContext.json",
			"description": "Required Log Context Reference"
		},
		"event_name": {
			"type": "string",
			"enum": ["USER_INIT_DELTA_DIAGNOSTICS"]
		},
		"schema_definition": {
			"type": "string",
			"enum": ["UserInitDeltaDiagnostics"]
		},
		"db_content": {
			"type": "string",
			"description": "Optional data dump"
		},
		"base_transaction_tag": {
			"type": "string",
			"description": "Required: Base data transaction_tag (contains data version (e.g. 17Q2) + region + compile format ++)"
		},
		"space_transaction_list": {
			"type": "array",
			"items": {
				"$ref": "/resources/schema/analytics/client/v2/SpaceTransactionListItems.json"
			},
			"description": "List of space_id and transaction_tag pair. For each space id corresponding transaction_tag."
		},
		"state": {
			"type": "string",
			"description": "Required: State of True Delta"
		},
		"sdcard_cid": {
			"type": "string",
			"description": "Required: SD card CID"
		},
		"interaction_method": {
			"$ref": "/resources/schema/analytics/client/v2/InteractionMethodValues.json",
			"description": "for each user interaction log the interation method"
		}
	},
	"required": [
		"log_context",
		"event_name",
		"schema_definition",
		"base_transaction_tag",
		"state",
		"sdcard_cid"
	]
}