Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SeverityAnalysis

import type { SeverityAnalysis } from "https://googleapis.deno.dev/v1/threatintelligence:v1beta.ts";

Structured severity analysis for a threat.

interface SeverityAnalysis {
confidence?:
| "CONFIDENCE_LEVEL_UNSPECIFIED"
| "CONFIDENCE_LEVEL_LOW"
| "CONFIDENCE_LEVEL_MEDIUM"
| "CONFIDENCE_LEVEL_HIGH";
reasoning?: string;
severityLevel?:
| "SEVERITY_LEVEL_UNSPECIFIED"
| "SEVERITY_LEVEL_LOW"
| "SEVERITY_LEVEL_MEDIUM"
| "SEVERITY_LEVEL_HIGH";
}

§Properties

§
confidence?: "CONFIDENCE_LEVEL_UNSPECIFIED" | "CONFIDENCE_LEVEL_LOW" | "CONFIDENCE_LEVEL_MEDIUM" | "CONFIDENCE_LEVEL_HIGH"
[src]

The level of confidence in the given verdict.

§
reasoning?: string
[src]

Human-readable explanation from the model, detailing why a particular result is considered to have a certain severity.

§
severityLevel?: "SEVERITY_LEVEL_UNSPECIFIED" | "SEVERITY_LEVEL_LOW" | "SEVERITY_LEVEL_MEDIUM" | "SEVERITY_LEVEL_HIGH"
[src]

The level of severity.