File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
libs/labelbox/src/labelbox/schema Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 25
25
dataRowsDoneCount
26
26
mediaType
27
27
editorTaskType
28
+ tags
28
29
"""
29
30
30
31
32
+ class LabelingServiceDashboardTags (BaseModel ):
33
+ name : str
34
+ color : str
35
+ type : str
36
+
37
+
31
38
class LabelingServiceDashboard (BaseModel ):
32
39
"""
33
40
Represent labeling service data for a project
@@ -52,6 +59,7 @@ class LabelingServiceDashboard(BaseModel):
52
59
data_rows_done_count : int = Field (frozen = True )
53
60
media_type : Optional [MediaType ] = Field (frozen = True , default = None )
54
61
editor_task_type : EditorTaskType = Field (frozen = True , default = None )
62
+ tags : List [LabelingServiceDashboardTags ] = Field (frozen = True , default = None )
55
63
56
64
client : Any # type Any to avoid circular import from client
57
65
You can’t perform that action at this time.
0 commit comments