{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "RangeProjection",
    "type" : "object",
    "additionalProperties" : false,
    "description" : "TAnalytics-v3 .. RANGE PROJECTION event",
    "properties" : {
        "log_context" : {
            "$ref" : "/resources/schema/analytics/client/v3/LogContext.json",
            "description" : "Required Log Context Reference"
        },
        "event_name" : {
            "type" : "string",
            "enum" : [
                "RANGE_PROJECTION"
            ]
        },
        "schema_definition" : {
            "type" : "string",
            "enum" : [
                "RangeProjection"
            ]
        },
        "distance_to_empty" : {
            "type" : "number",
            "description" : "Log Maximum Vehicle Distance to empty in miles/km"
        },
        "interaction_method": {
            "$ref": "/resources/schema/analytics/client/v3/InteractionMethodValues.json",
            "description": "for each user interaction log the interation method"
        }
    },
    "required" : [
        "log_context",
        "event_name",
        "schema_definition",
        "distance_to_empty"
    ]
}