implement case management for export apis (#21295)

This commit is contained in:
Nicolas Mowen
2026-02-26 21:27:56 -07:00
parent 48164f6dfc
commit cffa54c80d
4 changed files with 113 additions and 20 deletions
@@ -23,3 +23,13 @@ class ExportCaseUpdateBody(BaseModel):
description: Optional[str] = Field(
default=None, description="Updated description of the export case"
)
class ExportCaseAssignBody(BaseModel):
"""Request body for assigning or unassigning an export to a case."""
export_case_id: Optional[str] = Field(
default=None,
max_length=30,
description="Case ID to assign to the export, or null to unassign",
)