{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "CVPJump",
	"type": "object",
	"additionalProperties": false,
	"description": "TAnalytics-v3 .. DRG Alert event",
	"properties": {
		"log_context": {
			"$ref": "/resources/schema/analytics/client/v3/LogContext.json",
			"description": "Required Log Context Reference"
		},
		"event_name": {
			"type": "string",
			"enum": [
				"CVP_JUMP"
			]
		},
		"schema_definition": {
			"type": "string",
			"enum": [
				"CVPJump"
			]
		},
		"trigger": {
			"$ref": "/resources/schema/analytics/client/v3/CVPJumpTriggerValues.json",
			"description": "Trigger OFFROAD for changes in the CVP go from a Matched Road location to a raw DR location Trigger SNAPBACK for changes in the CVP go from a raw DR location  to a Matched Road location"
		},
		"raw_dr_lat": {
			"type": "number",
			"description": "Insert Raw Dead Reckoning DR Latitude"
		},
		"raw_dr_lon": {
			"type": "number",
			"description": "Insert Raw Dead Reckoning DR longitude"
		},
		"raw_dr_ehpe": {
			"type": "number",
			"description": "Insert Raw Dead Reckoning DR EHPE"
		},
		"matched_road_lat": {
			"type": "number",
			"description": "Insert Matched Road latitude"
		},
		"matched_road_lon": {
			"type": "number",
			"description": "Insert Matched Road longitude"
		}
	},
	"required": [
		"log_context",
		"event_name",
		"trigger",
		"raw_dr_lat",
		"raw_dr_lon",
		"raw_dr_ehpe",
		"matched_road_lat",
		"matched_road_lon"
	]
}