{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "WheelSlip",
    "type" : "object",
    "additionalProperties" : false,
    "description" : "TAnalytics-v2 .. Log when any speech recognition feature in the app is used",
    "properties" : {
        "log_context" : {
            "$ref" : "/resources/schema/analytics/client/v2/LogContext.json",
            "description" : "Required Log Context Reference"
        },
	"event_name":{
	    "type": "string",
	    "enum": ["WHEELSLIP"]		
	},
	"schema_definition":{
	    "type": "string",
	    "enum": ["WheelSlip"]
	},
        "wheel_angle" : {
            "type" : "string",
            "description" : "Required name of the speech engine vendor"
        },
        "lat_accel" : {
            "type" : "string",
            "description" : "values of Map SRP_List SRP_Map Meetup Other"
        },
        "yaw_rate" : {
            "type" : "string",
            "description" : "values of Map SRP_List SRP_Map Meetup Other"
        },
        "abs_active" : {
            "type" : "string",
            "description" : "values of Map SRP_List SRP_Map Meetup Other"
        },
        "traction_control_active" : {
            "type" : "string",
            "description" : "values of Map SRP_List SRP_Map Meetup Other"
        }
    },
    "required" : [
        "log_context",
        "event_name",
        "schema_definition",
        "lat_accel",
        "yaw_rate",
        "abs_active",
        "traction_control_active"
    ]
}