Skip to content

status

StatusReadV2

Bases: BaseModel

Response type for the /project/{project_id}/status/ endpoint

Source code in fractal_server/app/schemas/v2/status.py
 7
 8
 9
10
11
12
13
14
15
16
class StatusReadV2(BaseModel):
    """
    Response type for the
    `/project/{project_id}/status/` endpoint
    """

    status: dict[
        str,
        WorkflowTaskStatusTypeV2,
    ] = Field(default_factory=dict)