{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "TirePressureStatusItems",
	"type": "object",
	"properties": {
		"value": {
			"type": "array",
			"minItems": 4,
			"maxItems": 4,
			"items": {
				"type": "integer",
				"description": "array of tire pressure status of the 4 wheels.Each array position it maps to a tire position."
			}
		},
		"timestamp": {
			"type": "integer",
			"description": "Required timestamp in milliseconds for event/click"
		}
	},
	"required": [
		"value",
		"timestamp"
	]
}