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

SBOMReferenceOccurrence

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

The occurrence representing an SBOM reference as applied to a specific resource. The occurrence follows the DSSE specification. See https://github.com/secure-systems-lab/dsse/blob/master/envelope.md for more details.

interface SBOMReferenceOccurrence {
payloadType?: string;
signatures?: EnvelopeSignature[];
}

§Properties

§

The actual payload that contains the SBOM reference data.

§
payloadType?: string
[src]

The kind of payload that SbomReferenceIntotoPayload takes. Since it's in the intoto format, this value is expected to be 'application/vnd.in-toto+json'.

§
signatures?: EnvelopeSignature[]
[src]

The signatures over the payload.