| 28 | export type VerificationStatus = 'passed' | 'failed' | 'needs_review' | 'skipped' |
| 29 | |
| 30 | export interface VerificationCheck { |
| 31 | id: string |
| 32 | kind: string |
| 33 | description: string |
| 34 | status: VerificationStatus |
| 35 | required?: boolean |
| 36 | suggested_tools?: Array<string> |
| 37 | evidence_uris?: Array<string> |
| 38 | residual_risk?: string |
| 39 | } |
| 40 | |
| 41 | export interface VerificationReport { |
| 42 | schema: string |
nothing calls this directly
no outgoing calls
no test coverage detected