{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"CollectionStopped",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. Collection Stopped object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["COLLECTION_STOPPED"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["CollectionStopped"]
		},
		"description":{
			"type": "string",
			"description":"description of why the collection has stopped"
		}
	},
	"required":[
        "log_context",
        "event_name",
        "schema_definition",
        "description"
	]
}