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

InsiderThreatFindingDetail

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

A detail object for a InsiderThreat finding.

interface InsiderThreatFindingDetail {
documentId?: string;
matchScore?: number;
severity?:
| "SEVERITY_UNSPECIFIED"
| "LOW"
| "MEDIUM"
| "HIGH"
| "CRITICAL";
}

§Properties

§
documentId?: string
[src]

Required. The unique identifier of the document that triggered the InsiderThreat finding. This ID can be used to retrieve the content of the document for further analysis.

§
matchScore?: number
[src]

Required. Reference to the match score of the InsiderThreat finding. This is a float value greater than 0 and less than or equal to 1 calculated by the matching engine based on the similarity of the document and the user provided configurations.

§
severity?: "SEVERITY_UNSPECIFIED" | "LOW" | "MEDIUM" | "HIGH" | "CRITICAL"
[src]

Required. The severity of the InsiderThreat finding. This indicates the potential impact of the threat.