{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "CategoryUsage",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "EntityUserInsight .. Category_usage object",
	"properties" : {
		"weight" : {
			"type" : "number",
			"description" : "weight associated with the category"
		},

		"category_name" : {
			"type" : "string",
			"description" : "category name"
		},

		"category_id" : {
			"type" : "string",
			"description" : "category id"
		},

		"actions" : {
			"type" : "array",
            "items" : {
			"$ref" : "/resources/schema/data/entity/user/insight/v1/Actions.json"},
			"description" : "array of associated actions"
		},

		"markers" : {
			"type" : "array",
            "items" : {
			"$ref" : "/resources/schema/data/entity/user/insight/v1/Markers.json"},
			"description" : "array of associated markers"
		}
	},

	"required" : 
	[
		"weight",
		"category_name",
		"category_id",
		"actions"
	]
}