{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "HardBraking",
    "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": ["HARDBRAKING"]		
	},
	"schema_definition":{
	    "type": "string",
	    "enum": ["HardBraking"]
	},
        "accelerometer" : {
            "type" : "string",
            "description" : "Required name of the speech engine vendor"
        },
        "abs_active" : {
            "type" : "string",
            "description" : "values of Map SRP_List SRP_Map Meetup Other"
        },
        "brake_pedal_status" : {
            "type" : "string",
            "description" : "values of Map SRP_List SRP_Map Meetup Other"
        }
    },
    "required" : [
        "log_context",
        "event_name",
        "schema_definition",
        "accelerometer",
        "abs_active",
        "brake_pedal_status"
    ]
}