{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "StartEngine",
    "type": "object",
    "additionalProperties": false,
    "description": "Start Engine Event Schema",
    "properties": {
        "log_context": {
            "$ref": "/resources/schema/analytics/client/v4/LogContext.json",
            "description": "Required Log Context Reference"
        },
        "event_name": {
            "type": "string",
            "enum": [
                "START_ENGINE"
            ]
        },
        "schema_definition": {
            "type": "string",
            "enum": [
                "StartEngine"
            ]
        }
    },
    "required": [
        "log_context",
        "event_name",
        "schema_definition"
    ]
}