RelevanceAnalysis
import type { RelevanceAnalysis } from "https://googleapis.deno.dev/v1/threatintelligence:v1beta.ts";Structured relevance analysis for a threat.
interface RelevanceAnalysis {
confidence?:
| "CONFIDENCE_LEVEL_UNSPECIFIED"
| "CONFIDENCE_LEVEL_LOW"
| "CONFIDENCE_LEVEL_MEDIUM"
| "CONFIDENCE_LEVEL_HIGH";
evidence?: Evidence;
reasoning?: string;
relevanceLevel?:
| "RELEVANCE_LEVEL_UNSPECIFIED"
| "RELEVANCE_LEVEL_LOW"
| "RELEVANCE_LEVEL_MEDIUM"
| "RELEVANCE_LEVEL_HIGH";
relevant?: boolean;
}§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 matcher, detailing why a particular result is considered relevant or not relevant.