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
@@ -0,0 +1,25 @@
from typing import Optional
from pydantic import BaseModel, Field
class ExportCaseCreateBody(BaseModel):
"""Request body for creating a new export case."""
name: str = Field(max_length=100, description="Friendly name of the export case")
description: Optional[str] = Field(
default=None, description="Optional description of the export case"
)
class ExportCaseUpdateBody(BaseModel):
"""Request body for updating an existing export case."""
name: Optional[str] = Field(
default=None,
max_length=100,
description="Updated friendly name of the export case",
)
description: Optional[str] = Field(
default=None, description="Updated description of the export case"
)