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

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.

§
evidence?: Evidence
[src]

Evidence supporting the verdict, including matched and unmatched items.

§
reasoning?: string
[src]

Human-readable explanation from the matcher, detailing why a particular result is considered relevant or not relevant.

§
relevanceLevel?: "RELEVANCE_LEVEL_UNSPECIFIED" | "RELEVANCE_LEVEL_LOW" | "RELEVANCE_LEVEL_MEDIUM" | "RELEVANCE_LEVEL_HIGH"
[src]

The level of relevance.

§
relevant?: boolean
[src]

Indicates whether the threat is considered relevant.