コード例 #1
0
ファイル: tests.py プロジェクト: intxparts/PySchemaModel
 class Model(psm.SchemaModel):
     bag = psm.ListField([
         psm.IntegerField(),
         psm.ListField([psm.ObjectField(SubModel)])
     ])
コード例 #2
0
ファイル: tests.py プロジェクト: intxparts/PySchemaModel
 class Model(psm.SchemaModel):
     vectors = psm.ListField([psm.ObjectField(Vector)])
コード例 #3
0
ファイル: tests.py プロジェクト: intxparts/PySchemaModel
 class Model(psm.SchemaModel):
     transformations = psm.ListField([psm.ObjectField(Transformation)])
コード例 #4
0
ファイル: tests.py プロジェクト: intxparts/PySchemaModel
 class Model(psm.SchemaModel):
     field = psm.ListField([psm.ObjectField(SubModel)])
コード例 #5
0
ファイル: tests.py プロジェクト: intxparts/PySchemaModel
 class Model(psm.SchemaModel):
     obj_field = psm.ObjectField(SubModel)
コード例 #6
0
ファイル: tests.py プロジェクト: intxparts/PySchemaModel
 class Model2(psm.SchemaModel):
     obj_field = psm.ObjectField(Model1)