python
from voluptuous import Schema, Required, Length, Range
person_schema = Schema({
Required('name'): str,
Required('age'): int,
'email': str,
'address': str,
'phone': str,
'height': Range(min=0),
})
person_data = {
'name': 'Alice',
'age': 25,
'email': 'alice@example.com',
'address': '123 Main St',
'phone': '+1 123-456-7890',
'height': 165,
}
person_schema(person_data)