Let's say I would like a dictionary with at least one of the three key foo', 'bar',
baz`. The following would allow an empty set.
Schema({
'foo': str,
'bar': int,
'baz': bool
})
Unfortunately, I cannot do this:
Any(
Schema({'foo': str}),
Schema({'bar': int}),
Schema({'baz': bool)
)
What would be the best way of doing it?