{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "Version v1,filter definiition for data retrive ",
	"properties" : {
		"type" : {
			"$ref" : "/resources/schema/data/api/v1/FilterType.json",
			"description" : "the filter type"
		},

		"params" : {
			"type" : "array",
			"description" : "Value of the filter to match.  For example to retrieve user.entity.insight for users 'user01' and 'user02', put the values 'user01' and 'user02' in this array.",
			"items" : {
				"type" : "string",
				"description" : "For simplicity and wide-range spanning, all values are treated as strings"
			}
		}
	},

	"title" : "filter",
	"type" : "object"
}