{
    "$schema" : "http://json-schema.org/draft-04/schema#",
    "title" : "AirbagDeployed",
    "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": ["AIRBAGDEPLOYED"]		
	},
	"schema_definition":{
	    "type": "string",
	    "enum": ["AirbagDeployed"]
	},
        "airbag_deployed" : {
            "type" : "string",
            "description" : "Required name of the speech engine vendor"
        }
    },
    "required" : [
        "log_context",
        "event_name",
        "schema_definition",
        "airbag_deployed"
    ]
}