Document blocked-task 409 error code in OpenAPI + add regression tests

This commit is contained in:
Abhimanyu Saharan
2026-02-14 18:56:38 +00:00
committed by Abhimanyu Saharan
parent 2ae1c219f7
commit 8b77eae0f2
3 changed files with 129 additions and 0 deletions

View File

@@ -55,6 +55,7 @@ class BlockedTaskDetail(SQLModel):
"""Error detail payload listing blocking dependency task identifiers."""
message: str
code: str | None = None
blocked_by_task_ids: list[str] = Field(default_factory=list)