{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "HighwayExitList",
    "type": "object",
    "additionalProperties": false,
    "description": "TAnalytics-v2 .. Highway Exit List event",
    "properties": {
        "log_context": {
            "$ref": "/resources/schema/analytics/client/v2/LogContext.json",
            "description": "Required Log Context Reference"
        },
        "event_name": {
            "type": "string",
            "enum": [
                "HIGHWAY_EXIT_LIST"
            ]
        },
        "schema_definition": {
            "type": "string",
            "enum": [
                "HighwayExitList"
            ]
        },
        "start_engine_id": {
            "type": "string",
            "description": "Required .. log id of the last START_ENGINE event"
        },
        "interaction_method": {
            "$ref": "/resources/schema/analytics/client/v2/InteractionMethodValues.json",
            "description": "for each user interaction log the interation method"
        }
    },
    "required": [
        "log_context",
        "event_name",
        "start_engine_id"
    ]
}