{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "v1 of user Insight data.  It defines the time bucket for profiling data based on millisecs passed on a given day such that 00:00:00 (HH:MM:SS) is 0L",
	"properties" : {
		"start" : {
			"type" : "integer",
			"description" : "Starting timestamp offset from 00:00:00 of a day"
		},

		"end" : {
			"type" : "integer",
			"description" : "Starting timestamp offset from 00:00:00 of a day"
		}
	},

	"title" : "TimeBucket",
	"type" : "object"
}