summaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/app/schemas.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/backend/app/schemas.py b/backend/app/schemas.py
index aafe45d..86664e4 100644
--- a/backend/app/schemas.py
+++ b/backend/app/schemas.py
@@ -242,25 +242,25 @@ class FilingItem(BaseModel):
class FilingKpis(BaseModel):
- total: int
- count_10k: int
- count_10q: int
- count_8k: int
- distinct_forms: int
+ total: int = 0
+ count_10k: int = 0
+ count_10q: int = 0
+ count_8k: int = 0
+ distinct_forms: int = 0
class FormMixRow(BaseModel):
form: str
count: int
- pct: float
+ pct: float | None = None
class CadencePoint(BaseModel):
- month: str # "YYYY-MM"
- count_10k: int
- count_10q: int
- count_8k: int
- count_other: int
+ month: str
+ count_10k: int = 0
+ count_10q: int = 0
+ count_8k: int = 0
+ count_other: int = 0
class FilingsResponse(BaseModel):