{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "BrandUsage",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "EntityUserInsight .. brand_usage object",
	"properties" : {
		"weight" : {
			"type" : "number",
			"description" : "weight associated with the brand"
		},
		
		"brand_name" : {
			"type" : "string",
			"description" : "brand name"
		},
		
		"brand_names" : {
          	"type" : "array",
          	"items" : {
          		"$ref" : "/resources/schema/data/entity/user/insight/v1/NameAndLanguage.json"
          	},
          	"description" : "multiple official names"
        },
        
		"brand_code" : {
			"type" : "string",
			"description" : "brand code"
		},

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

		"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",
		"brand_name",
		"brand_code",
		"categories",
		"actions"
	]
}