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

Assessment

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

Assessment provides all information that is related to a single vulnerability for this product.

interface Assessment {
cve?: string;
impacts?: string[];
justification?: Justification;
longDescription?: string;
relatedUris?: RelatedUrl[];
remediations?: Remediation[];
shortDescription?: string;
state?:
| "STATE_UNSPECIFIED"
| "AFFECTED"
| "NOT_AFFECTED"
| "FIXED"
| "UNDER_INVESTIGATION";
vulnerabilityId?: string;
}

§Properties

§
cve?: string
[src]

Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.

§
impacts?: string[]
[src]

Contains information about the impact of this vulnerability, this will change with time.

§
justification?: Justification
[src]

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

§
longDescription?: string
[src]

A detailed description of this Vex.

§
relatedUris?: RelatedUrl[]
[src]

Holds a list of references associated with this vulnerability item and assessment. These uris have additional information about the vulnerability and the assessment itself. E.g. Link to a document which details how this assessment concluded the state of this vulnerability.

§
remediations?: Remediation[]
[src]

Specifies details on how to handle (and presumably, fix) a vulnerability.

§
shortDescription?: string
[src]

A one sentence description of this Vex.

§
state?: "STATE_UNSPECIFIED" | "AFFECTED" | "NOT_AFFECTED" | "FIXED" | "UNDER_INVESTIGATION"
[src]

Provides the state of this Vulnerability assessment.

§
vulnerabilityId?: string
[src]

The vulnerability identifier for this Assessment. Will hold one of common identifiers e.g. CVE, GHSA etc.