{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "SoftwareUpdateNotification",
	"type": "object",
	"additionalProperties": false,
	"description": "Analytics-v3 .. SOFTWARE UPDATE NOTIFICATION object",
	"properties": {
		"log_context": {
			"$ref": "/resources/schema/analytics/client/v3/LogContext.json",
			"description": "Required Log Context Reference"
		},
		"event_name": {
			"type": "string",
			"enum": ["SOFTWARE_UPDATE_NOTIFICATION"]
		},
		"schema_definition": {
			"type": "string",
			"enum": ["SoftwareUpdateNotification"]
		},
		"type": {
			"type": "string",
			"enum": ["OPTIONAL", "FORCED"],
			"description": "Type of update"
		},
		"action": {
			"$ref":"/resources/schema/analytics/client/v3/ClickActionType.json",
			"description": "Action taken by user on the update notification"
		}
	},
	"required": [
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"type"
	]
}