{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "ArrivalCardShown",
	"type": "object",
	"additionalProperties": false,
	"description": "Analytics-v3 .. ARRIVAL CARD SHOWN object",
	"properties": {
		"log_context": {
			"$ref": "/resources/schema/analytics/client/v3/LogContext.json",
			"description": "Required Log Context Reference"
		},
		"event_name": {
			"type": "string",
			"enum": ["ARRIVAL_CARD_SHOWN"]
		},
		"schema_definition": {
			"type": "string",
			"enum": ["ArrivalCardShown"]
		},
		"action": {
			"type": "string",
			"enum": ["DISMISS", "TIMEOUT", "STOP_ENGINE"],
			"description": "Action taken on the card shown."
		},
		"route_id": {
			"type": "string",
			"description": "route_id of the current route being used"
		}
	},
	"required": [
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"route_id"
	]
}