MCPcopy Create free account
hub / github.com/TheSecuredAnalyst/security-suite / FindingResponse

Class FindingResponse

api/models.py:21–29  ·  view source on GitHub ↗

Response model for a finding.

Source from the content-addressed store, hash-verified

19class FindingResponse(BaseModel):
20 """Response model for a finding."""
21 id: str
22 title: str
23 description: str
24 severity: SeverityEnum
25 module: str
26 data: dict[str, Any] = Field(default_factory=dict)
27 created_at: datetime
28
29
30class ScanRequest(BaseModel):
31 """Request model for creating a scan."""
32 target: str = Field(..., description="Target to scan (domain, IP, URL, email)")

Callers 2

get_scan_findingsFunction · 0.90
get_scanFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected