{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "Categories",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "EntityUserInsight .. Categories object",
	"properties" : {
		"id" : {
			"type" : "string",
			"description" : "category id"
		},

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

	"required" : 
	[
		"id",
		"name"
	]
}