{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "TimeBucket",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Time bucket for insights",
	"properties" : {
		"from" : {
			"type" : "number",
			"description" : "Zero-based (0 inclusive) Time bucket start for a day/month/year"
		},

		"to" : {
			"type" : "number",
			"description" : "Zero-based (0 inclusive) Time bucket end for a day/month/year"
		},

		"time_unit" : {
			"$ref" : "/resources/schema/data/user/insight/v1/TimeUnit.json",
			"description" : "Units used to define this time bucket"
		}
	},

	"required" : 
	[
		"from",
		"to",
		"time_unit"
	]
}