{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"StopEngine",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. Stop Engine object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["STOP_ENGINE"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["StopEngine"]
		},
		"start_engine_id":{
			"type":"string",
			"description":"Required .. Log id of the START_ENGINE event preceding the stop engine event"
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"start_engine_id"
	]
}