{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"SendDiagnostics",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Send 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": ["SEND_DIAGNOSTICS"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["SendDiagnostics"]
		},
		"db_content":{
			"type":"string",
			"description":"Optional data dump"
		},
		"transaction_tag":{
			"type":"string",
			"description":"Delta transaction tag"
		},
		"base_transaction_tag":{
			"type":"string",
			"description":"Base data transaction_tag (contains data version (e.g. 17Q2) + region + compile format ++)"
		},
		"space_id":{
			"type":"string",
			"description":"space id"
		},
		"state":{
			"type":"string",
			"description":"State of True Delta"
		},
        "sdcard_cid": {
            "type": "string",
            "description": "Required: SD card CID"
        }
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"transaction_tag",
		"base_transaction_tag",
		"space_id",
		"state",
		"sdcard_cid"
	]
}