Example #1
0
    class SchemaExample(schemas.ResultSet):

        results = schemas.ListType(schemas.StringType)
Example #2
0
 class SchemaExample(schemas.Model):
     arg1 = schemas.StringType(required=True)
     arg2 = schemas.ListType(schemas.IntType)
Example #3
0
        class SchemaExample(schemas.Model):

            string_list = schemas.ListType(schemas.StringType)