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

Justification

import type { Justification } from "https://googleapis.deno.dev/v1/containeranalysis:v1.ts";

Justification provides the justification when the state of the assessment if NOT_AFFECTED.

interface Justification {
details?: string;
justificationType?:
| "JUSTIFICATION_TYPE_UNSPECIFIED"
| "COMPONENT_NOT_PRESENT"
| "VULNERABLE_CODE_NOT_PRESENT"
| "VULNERABLE_CODE_NOT_IN_EXECUTE_PATH"
| "VULNERABLE_CODE_CANNOT_BE_CONTROLLED_BY_ADVERSARY"
| "INLINE_MITIGATIONS_ALREADY_EXIST";
}

§Properties

§
details?: string
[src]

Additional details on why this justification was chosen.

§
justificationType?: "JUSTIFICATION_TYPE_UNSPECIFIED" | "COMPONENT_NOT_PRESENT" | "VULNERABLE_CODE_NOT_PRESENT" | "VULNERABLE_CODE_NOT_IN_EXECUTE_PATH" | "VULNERABLE_CODE_CANNOT_BE_CONTROLLED_BY_ADVERSARY" | "INLINE_MITIGATIONS_ALREADY_EXIST"
[src]

The justification type for this vulnerability.