{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"CommuteAlertSent",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Commute Alert Sent object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/ServerLogContext.json",
			"description":"Required Server Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["COMMUTE_ALERT_SENT"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["CommuteAlertSent"]
		},
		"type":{
			"$ref":"/resources/schema/analytics/client/v2/CommuteAlertType.json",
			"description":"Required .. Whether HomeToWork alert or WorkToHome alert received."
		},
        	"transaction_id" : {
            		"type" : "string",
            		"description" : "The alert ID or transaction ID for the request"
        	}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"type"
	]
}