{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"GyroscopeAxes",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. basic Gyroscope Axes",
	"properties":{
		"gyroscope_x_axis":{
			"type":"number",
			"description":"Rate of rotation around the X axis."
		},
		"gyroscope_y_axis":{
			"type":"number",
			"description":"Rate of rotation around the Y axis."
		},
		"gyroscope_z_axis":{
			"type":"number",
			"description":"Rate of rotation around the Z axis."
		}
	},
	"required":[
		"gyroscope_x_axis",
		"gyroscope_y_axis",
		"gyroscope_z_axis"
	]
	
}