How can I validate that certain type is a list and it contains only e.g string elements, of unknown number?
My current solution is
'categories_id' : {'required' : False, 'type' : ['string','list']},
but it doesn't do the trick, is also returns True when you supply just a single string, not in a list.