{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "ATWRoadsenseNotify",
	"type": "object",
	"additionalProperties": false,
	"description": "Analytics-v3 .. ATW Roadsense Notify event",
	"properties": {
		"log_context": {
			"$ref": "/resources/schema/analytics/client/v3/LogContext.json",
			"description": "Required Log Context Reference"
		},
		"event_name": {
			"type": "string",
			"enum": ["ATW_ROADSENSE_NOTIFY"]
		},
		"schema_definition": {
			"type": "string",
			"enum": ["ATWRoadsenseNotify"]
		},
		"atw_event_list": {
			"type": "array",
			"items": {
				"$ref": "/resources/schema/analytics/client/v3/ATWEventListItems.json"
			},
			"description": "List of event_id, last_updated_time, event_status"
		},
		"atw_notification_id": {
			"type": "string",
			"description": "Globally unique ID of ATW notification"
		}
	},
	"required": [
		"log_context",
		"event_name",
		"schema_definition",
		"atw_event_list",
		"atw_notification_id"
	]
}