{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "FuelLevel",
	"type": "object",
	"additionalProperties": false,
	"description": "FuelLevel",
	"properties": {
		"log_context": {
			"$ref": "/resources/schema/analytics/client/v4/LogContext.json",
			"description": "Required Log Context Reference"
		},
		"event_name": {
			"type": "string",
			"enum": ["FUEL_LEVEL"]
		},
		"schema_definition": {
			"type": "string",
			"enum": ["FuelLevel"]
		},
		"fuel_level_list": {
			"type": "array",
			"items": {
				"$ref": "/resources/schema/analytics/client/v4/type/FuelLevelItem.json"
			},
			"description": "Required List of fuel level from vehicle sensor at periodic intervals"
		}
	},
	"required": [
		"log_context",
		"event_name",
		"schema_definition",
		"fuel_level_list"
	]
}