Create scaffolding for case management (#21293)

This commit is contained in:
Nicolas Mowen
2026-02-26 21:27:56 -07:00
parent bc457743b6
commit 48164f6dfc
7 changed files with 267 additions and 1 deletions
@@ -15,6 +15,9 @@ class ExportModel(BaseModel):
in_progress: bool = Field(
description="Whether the export is currently being processed"
)
export_case_id: Optional[str] = Field(
default=None, description="ID of the export case this export belongs to"
)
class StartExportResponse(BaseModel):