// Import other types
import WizSeverity from './WizSeverity';

/**
 * Relevant information from Wiz CVE report included in the review CVEs screen.
 * @author Allison Zhang
 */
type WizReportItem = {
  wizURL: string, // WizURL
  cve: string, // Name
  severity: WizSeverity, // Severity
  remediation: string, // Remediation
  locationPath: string, // LocationPath
  package: string, // DetailedName
  version: string, // Version
  fixedVersion: string, // FixedVersion
  advisoryLink: string, // Link
  awsAccount: string, // SubscriptionName
};

export default WizReportItem;
