Just leaving this here for anyone else experiencing this issue
# this fails with voluptuous.error.MultipleInvalid: required key not provided @ data['test'][0]['ok']
Schema({'test': (Object({'ok': 1}),)}, required=True)({'test': ({'ok': 1},)})
# but this works
Schema({'test': ({'ok': 1},)}, required=True)({'test': ({'ok': 1},)})