GET /api/gov/dashboard
Response
{
"stats": {
"totalSubmissions": 42,
"pendingReviews": 8,
"approvedThisMonth": 12,
"avgReviewDays": 3.5,
"greenCount": 20,
"yellowCount": 15,
"redCount": 7
},
"recentSubmissions": [
{
"id": "sub_abc123",
"status": "PENDING",
"submittedAt": "2026-03-01T10:00:00Z",
"round": 1,
"assignedTo": null,
"profile": {
"address": "123 Main St",
"city": "Austin",
"state": "TX",
"firmId": "firm_xyz",
"verdictSummary": {
"overall": "YELLOW",
"passCount": 18,
"failCount": 2,
"needsReviewCount": 5
}
},
"jurisdiction": {
"name": "City of Austin"
}
}
]
}
Fields
| Field | Type | Description |
|---|---|---|
totalSubmissions | number | All submissions for this jurisdiction |
pendingReviews | number | PENDING status count |
approvedThisMonth | number | Approvals in current month |
avgReviewDays | number | Average days to completion |
greenCount | number | All-pass AI verdict |
yellowCount | number | Items needing review |
redCount | number | Failing items |
