class FriendSchema(rest.Schema): name = rest.String() age = rest.Int()
class CSVSchema(Schema): dog_type = rest.String(validators=[rest.nonempty]) food = rest.String(validators=[rest.nonempty]) pounds = rest.Int()