{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"MPPMismatch",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v4 .. To log MPP(most probable path) mismatch",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v4/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["MPP_MISMATCH"]
		},
		"schema_definition":{
			"type": "string",
			"enum": ["MPPMismatch"]
		},
		"guidance_mode":{
			"enum": ["AGV", "IGV"],
			"description":"Whether the user is in active or inactive guidance mode."
		},
		"type":{
			"$ref":"/resources/schema/analytics/client/v4/type/MPPMismatchTypeValues.json",
			"description":"The reason behind the mismatch."
		}
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"guidance_mode",
		"type"
	]
}