Report
A report is generated for each target created during an analysis.
interface Report {
// Meta
targetId: string;
openerId: string;
// Error
error: boolean;
errorType: string;
errorMessage: string;
// Data
audits: Audit[];
detections: Detection[];
frames: Frame[];
targets: Target[];
requests: Request[];
}
Fields
Reference
Fields
targetId
version : 1.0.0
stability: stable
targetId: string;
The unique identifier of the target in which the analysis was processed.
openerId
version : 1.0.0
stability: stable
openerId: string;
The unique identifier of the target that issued the current target creation.
error
version : 1.0.0
stability: stable
error: boolean;
Whether the Report
encounter an error during the analysis process.
errorType
version : 1.0.0
stability: stable
errorType: string;
Type of the error
that occurred.
errorMessage
version : 1.0.0
stability: stable
errorMessage: string;
Message of the error
that occurred.
audits
version : 1.0.0
stability: stable
audits: Audit[];
List of Audit
s recorded during the target analysis.
detections
version : 1.0.0
stability: stable
detections: Detection[];
List Detection
s recorded during the target analysis.
frames
version : 1.0.0
stability: stable
frames: Frame[];
List of frame
s recorded during the analysis process.
targets
version : 1.0.0
stability: stable
targets: Target[];
List of the history of the Target
recorded during the analysis process.
requests
version : 1.0.0
stability: stable
requests: Request[];
List of network Request
s recorded during the target analysis.