class SchemaExample(schemas.ResultSet): results = schemas.ListType(schemas.StringType)
class SchemaExample(schemas.Model): arg1 = schemas.StringType(required=True) arg2 = schemas.ListType(schemas.IntType)
class SchemaExample(schemas.Model): string_list = schemas.ListType(schemas.StringType)