Schema: Possible type error in image-average-color
The range of image-average-color suggests that the average of each color channel should be given as a unsigned 8-bit integer. As zero is included in this range, the maximum allowed value should be
rather then
.
"image-average-color": {
"description": "The average colour for each image / frame and the n channels of an image (e.g. 3 for RGB)",
"type": "array",
"minItems": 3,
"maxItems": 3,
"items": {
"type": "integer",
"minimum": 0,
"maximum": 256
}
},