{
	"meanFrameTime_raf": {
		"type": "total",
		"tags": ["Paint"],
		"unit": "ms",
		"source": "RafRenderingStats",
		"importance": 99,
		"summary": "Average time for each frame, calculated using requestAnimationFrame",
		"details": "May not be very accurate since heavy UI threads see one event for multiple frames drawn on the screen.",
		"browsers": ["chrome", "firefox", "safari", "ie", "android"]
	},
	"framesPerSec_raf": {
		"type": "total",
		"tags": ["Frames"],
		"unit": "fps",
		"source": "RafRenderingStats",
		"importance": 100,
		"summary": "Number of Frames per second (fps) drawn on the screen, calculated using requestAnimationFrame.",
		"details": " 60 fps is a good benchmark for a smooth experience. May not be very accurate since heavy UI threads see one event for multiple frames drawn on the screen.",
		"browsers": ["chrome", "firefox", "safari", "ie", "android"]
	},
	"droppedFrameCount": {
		"type": "total",
		"tags": ["Paint"],
		"unit": "count",
		"source": "RafRenderingStats",
		"importance": 40,
		"summary": "The number of frames produced by the GPU were over 16.6ms apart",
		"details": "",
		"browsers": ["chrome", "firefox", "safari", "ie", "android"]
	},
	"numAnimationFrames": {
		"type": "total",
		"tags": ["Paint"],
		"unit": "count",
		"source": "RafRenderingStats",
		"importance": 50,
		"summary": "Total number of times requestAnimationFrame was called",
		"details": "",
		"browsers": ["chrome", "firefox", "safari", "ie", "android"]
	},
	"numFramesSentToScreen": {
		"type": "total",
		"tags": ["Paint"],
		"unit": "count",
		"source": "RafRenderingStats",
		"importance": 50,
		"summary": "The number of frames the GPU sent to the screen",
		"details": "",
		"browsers": ["chrome", "firefox", "safari", "ie", "android"]
	}
}