{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"GasGrade",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. Gas Grade object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["GAS_GRADE"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["GasGrade"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v3/ClickActionType.json",
			"description":"Required .. Log Click when user clicks on gas grade in profile. Log Select if user select a different grade of gas. Log Back if user clicks back."
		},
		"type":{
			"$ref":"/resources/schema/analytics/client/v3/GasType.json",
			"description":"Required .. Grade of gas selected."
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"type"
	]
}