class ATestingSchema(object): namespace = 'my_testing_namespace' config_path = 'my.thing' one = schema.int(default=5) two = schema.string(help='the value for two') some_value = schema.any(config_key='three.four') when = schema.date() really_when = schema.datetime() at_time = schema.time() really = schema.bool() ratio = schema.float() all_of_them = schema.list() some_of_them = schema.set() wrapped = schema.tuple() options = schema.list_of_bool()
class ExampleSchema(schema.Schema): namespace = 'DEFAULT' thing = schema.int()