/** * Security violation entry. */ export interface SecurityPolicyFailureVulnerabilityV3 { /** * CVE identifier. */ cveId: string; /** * CVSS score. * @format double */ cvssScore: number; /** * CVSS threshold. * @format double */ cvssThreshold: number; }