REST Resource: projects.occurrences

Resource: Occurrence

An instance of an analysis type that has been found on a resource.

JSON representation
{
  "name": string,
  "resourceUri": string,
  "noteName": string,
  "kind": enum (NoteKind),
  "remediation": string,
  "createTime": string,
  "updateTime": string,
  "envelope": {
    object (Envelope)
  },

  // Union field details can be only one of the following:
  "vulnerability": {
    object (VulnerabilityOccurrence)
  },
  "build": {
    object (BuildOccurrence)
  },
  "image": {
    object (ImageOccurrence)
  },
  "package": {
    object (PackageOccurrence)
  },
  "deployment": {
    object (DeploymentOccurrence)
  },
  "discovery": {
    object (DiscoveryOccurrence)
  },
  "attestation": {
    object (AttestationOccurrence)
  },
  "upgrade": {
    object (UpgradeOccurrence)
  },
  "compliance": {
    object (ComplianceOccurrence)
  },
  "dsseAttestation": {
    object (DSSEAttestationOccurrence)
  },
  "sbomReference": {
    object (SBOMReferenceOccurrence)
  }
  // End of list of possible types for union field details.
}
Fields
name

string

Output only. The name of the occurrence in the form of projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID].

resourceUri

string

Required. Immutable. A URI that represents the resource for which the occurrence applies. For example, https://gcr.io/project/image@sha256:123abc for a Docker image.

noteName

string

Required. Immutable. The analysis note associated with this occurrence, in the form of projects/[PROVIDER_ID]/notes/[NOTE_ID]. This field can be used as a filter in list requests.

kind

enum (NoteKind)

Output only. This explicitly denotes which of the occurrence details are specified. This field can be used as a filter in list requests.

remediation

string

A description of actions that can be taken to remedy the note.

createTime

string (Timestamp format)

Output only. The time this occurrence was created.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

updateTime

string (Timestamp format)

Output only. The time this occurrence was last updated.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

envelope

object (Envelope)

https://github.com/secure-systems-lab/dsse

Union field details. Required. Immutable. Describes the details of the note kind found on this resource. details can be only one of the following:
vulnerability

object (VulnerabilityOccurrence)

Describes a security vulnerability.

build

object (BuildOccurrence)

Describes a verifiable build.

image

object (ImageOccurrence)

Describes how this resource derives from the basis in the associated note.

package

object (PackageOccurrence)

Describes the installation of a package on the linked resource.

deployment

object (DeploymentOccurrence)

Describes the deployment of an artifact on a runtime.

discovery

object (DiscoveryOccurrence)

Describes when a resource was discovered.

attestation

object (AttestationOccurrence)

Describes an attestation of an artifact.

upgrade

object (UpgradeOccurrence)

Describes an available package upgrade on the linked resource.

compliance

object (ComplianceOccurrence)

Describes a compliance violation on a linked resource.

dsseAttestation

object (DSSEAttestationOccurrence)

Describes an attestation of an artifact using dsse.

sbomReference

object (SBOMReferenceOccurrence)

Describes a specific SBOM reference occurrences.

VulnerabilityOccurrence

An occurrence of a severity vulnerability on a resource.

JSON representation
{
  "type": string,
  "severity": enum (Severity),
  "cvssScore": number,
  "cvssv3": {
    object (CVSS)
  },
  "packageIssue": [
    {
      object (PackageIssue)
    }
  ],
  "shortDescription": string,
  "longDescription": string,
  "relatedUrls": [
    {
      object (RelatedUrl)
    }
  ],
  "effectiveSeverity": enum (Severity),
  "fixAvailable": boolean,
  "cvssVersion": enum (CVSSVersion),
  "cvssV2": {
    object (CVSS)
  },
  "vexAssessment": {
    object (VexAssessment)
  }
}
Fields
type

string

The type of package; whether native or non native (e.g., ruby gems, node.js packages, etc.).

severity

enum (Severity)

Output only. The note provider assigned severity of this vulnerability.

cvssScore

number

Output only. The CVSS score of this vulnerability. CVSS score is on a scale of 0 - 10 where 0 indicates low severity and 10 indicates high severity.

cvssv3

object (CVSS)

The cvss v3 score for the vulnerability.

packageIssue[]

object (PackageIssue)

Required. The set of affected locations and their fixes (if available) within the associated resource.

shortDescription

string

Output only. A one sentence description of this vulnerability.

longDescription

string

Output only. A detailed description of this vulnerability.

relatedUrls[]

object (RelatedUrl)

Output only. URLs related to this vulnerability.

effectiveSeverity

enum (Severity)

The distro assigned severity for this vulnerability when it is available, otherwise this is the note provider assigned severity.

When there are multiple PackageIssues for this vulnerability, they can have different effective severities because some might be provided by the distro while others are provided by the language ecosystem for a language pack. For this reason, it is advised to use the effective severity on the PackageIssue level. In the case where multiple PackageIssues have differing effective severities, this field should be the highest severity for any of the PackageIssues.

fixAvailable

boolean

Output only. Whether at least one of the affected packages has a fix available.

cvssVersion

enum (CVSSVersion)

Output only. CVSS version used to populate cvssScore and severity.

cvssV2

object (CVSS)

The cvss v2 score for the vulnerability.

vexAssessment

object (VexAssessment)

PackageIssue

A detail for a distro and package this vulnerability occurrence was found in and its associated fix (if one is available).

JSON representation
{
  "affectedCpeUri": string,
  "affectedPackage": string,
  "affectedVersion": {
    object (Version)
  },
  "fixedCpeUri": string,
  "fixedPackage": string,
  "fixedVersion": {
    object (Version)
  },
  "fixAvailable": boolean,
  "packageType": string,
  "effectiveSeverity": enum (Severity),
  "fileLocation": [
    {
      object (FileLocation)
    }
  ]
}
Fields
affectedCpeUri

string

Required. The CPE URI this vulnerability was found in.

affectedPackage

string

Required. The package this vulnerability was found in.

affectedVersion

object (Version)

Required. The version of the package that is installed on the resource affected by this vulnerability.

fixedCpeUri

string

The CPE URI this vulnerability was fixed in. It is possible for this to be different from the affectedCpeUri.

fixedPackage

string

The package this vulnerability was fixed in. It is possible for this to be different from the affectedPackage.

fixedVersion

object (Version)

Required. The version of the package this vulnerability was fixed in. Setting this to VersionKind.MAXIMUM means no fix is yet available.

fixAvailable

boolean

Output only. Whether a fix is available for this package.

packageType

string

The type of package (e.g. OS, MAVEN, GO).

effectiveSeverity

enum (Severity)

Output only. The distro or language system assigned severity for this vulnerability when that is available and note provider assigned severity when it is not available.

fileLocation[]

object (FileLocation)

The location at which this package was found.

FileLocation

Indicates the location at which a package was found.

JSON representation
{
  "filePath": string
}
Fields
filePath

string

For jars that are contained inside .war files, this filepath can indicate the path to war file combined with the path to jar file.

VexAssessment

VexAssessment provides all publisher provided Vex information that is related to this vulnerability.

JSON representation
{
  "cve": string,
  "relatedUris": [
    {
      object (RelatedUrl)
    }
  ],
  "noteName": string,
  "state": enum (State),
  "impacts": [
    string
  ],
  "remediations": [
    {
      object (Remediation)
    }
  ],
  "justification": {
    object (Justification)
  }
}
Fields
cve

string

Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability.

relatedUris[]

object (RelatedUrl)

Holds a list of references associated with this vulnerability item and assessment.

noteName

string

The VulnerabilityAssessment note from which this VexAssessment was generated. This will be of the form: projects/[PROJECT_ID]/notes/[NOTE_ID].

state

enum (State)

Provides the state of this Vulnerability assessment.

impacts[]

string

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

remediations[]

object (Remediation)

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

justification

object (Justification)

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

BuildOccurrence

Details of a build occurrence.

JSON representation
{
  "provenance": {
    object (BuildProvenance)
  },
  "provenanceBytes": string,
  "intotoProvenance": {
    object (InTotoProvenance)
  },
  "intotoStatement": {
    object (InTotoStatement)
  }
}
Fields
provenance

object (BuildProvenance)

The actual provenance for the build.

provenanceBytes

string

Serialized JSON representation of the provenance, used in generating the build signature in the corresponding build note. After verifying the signature, provenanceBytes can be unmarshalled and compared to the provenance to confirm that it is unchanged. A base64-encoded string representation of the provenance bytes is used for the signature in order to interoperate with openssl which expects this format for signature verification.

The serialized form is captured both to avoid ambiguity in how the provenance is marshalled to json as well to prevent incompatibilities with future changes.

intotoProvenance

object (InTotoProvenance)

Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.

intotoStatement

object (InTotoStatement)

In-toto Statement representation as defined in spec. The intotoStatement can contain any type of provenance. The serialized payload of the statement can be stored and signed in the Occurrence's envelope.

BuildProvenance

Provenance of a build. Contains all information needed to verify the full details about the build from source to completion.

JSON representation
{
  "id": string,
  "projectId": string,
  "commands": [
    {
      object (Command)
    }
  ],
  "builtArtifacts": [
    {
      object (Artifact)
    }
  ],
  "createTime": string,
  "startTime": string,
  "endTime": string,
  "creator": string,
  "logsUri": string,
  "sourceProvenance": {
    object (Source)
  },
  "triggerId": string,
  "buildOptions": {
    string: string,
    ...
  },
  "builderVersion": string
}
Fields
id

string

Required. Unique identifier of the build.

projectId

string

ID of the project.

commands[]

object (Command)

Commands requested by the build.

builtArtifacts[]

object (Artifact)

Output of the build.

createTime

string (Timestamp format)

Time at which the build was created.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

startTime

string (Timestamp format)

Time at which execution of the build was started.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

endTime

string (Timestamp format)

Time at which execution of the build was finished.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

creator

string

E-mail address of the user who initiated this build. Note that this was the user's e-mail address at the time the build was initiated; this address may not represent the same end-user for all time.

logsUri

string

URI where any logs for this provenance were written.

sourceProvenance

object (Source)

Details of the Source input to the build.

triggerId

string

Trigger identifier if the build was triggered automatically; empty if not.

buildOptions

map (key: string, value: string)

Special options applied to this build. This is a catch-all field where build providers can enter any desired additional details.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

builderVersion

string

Version string of the builder at the time this build was executed.

Command

Command describes a step performed as part of the build pipeline.

JSON representation
{
  "name": string,
  "env": [
    string
  ],
  "args": [
    string
  ],
  "dir": string,
  "id": string,
  "waitFor": [
    string
  ]
}
Fields
name

string

Required. Name of the command, as presented on the command line, or if the command is packaged as a Docker container, as presented to docker pull.

env[]

string

Environment variables set before running this command.

args[]

string

Command-line arguments used when executing this command.

dir

string

Working directory (relative to project source root) used when running this command.

id

string

Optional unique identifier for this command, used in waitFor to reference this command as a dependency.

waitFor[]

string

The ID(s) of the command(s) that this command depends on.

Artifact

Artifact describes a build product.

JSON representation
{
  "checksum": string,
  "id": string,
  "names": [
    string
  ]
}
Fields
checksum

string

Hash or checksum value of a binary, or Docker Registry 2.0 digest of a container.

id

string

Artifact ID, if any; for container images, this will be a URL by digest like gcr.io/projectID/imagename@sha256:123456.

names[]

string

Related artifact names. This may be the path to a binary or jar file, or in the case of a container build, the name used to push the container image to Google Container Registry, as presented to docker push. Note that a single Artifact ID can have multiple names, for example if two tags are applied to one image.

Source

Source describes the location of the source used for the build.

JSON representation
{
  "artifactStorageSourceUri": string,
  "fileHashes": {
    string: {
      object (FileHashes)
    },
    ...
  },
  "context": {
    object (SourceContext)
  },
  "additionalContexts": [
    {
      object (SourceContext)
    }
  ]
}
Fields
artifactStorageSourceUri

string

If provided, the input binary artifacts for the build came from this location.

fileHashes

map (key: string, value: object (FileHashes))

Hash(es) of the build source, which can be used to verify that the original source integrity was maintained in the build.

The keys to this map are file paths used as build source and the values contain the hash values for those files.

If the build source came in a single package such as a gzipped tarfile (.tar.gz), the FileHash will be for the single path to that file.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

context

object (SourceContext)

If provided, the source code used for the build came from this location.

additionalContexts[]

object (SourceContext)

If provided, some of the source code used for the build may be found in these locations, in the case where the source repository had multiple remotes or submodules. This list will not include the context specified in the context field.

FileHashes

Container message for hashes of byte content of files, used in source messages to verify integrity of source input to the build.

JSON representation
{
  "fileHash": [
    {
      object (Hash)
    }
  ]
}
Fields
fileHash[]

object (Hash)

Required. Collection of file hashes.

Hash

Container message for hash values.

JSON representation
{
  "type": string,
  "value": string
}
Fields
type

string

Required. The type of hash that was performed, e.g. "SHA-256".

value

string (bytes format)

Required. The hash value.

A base64-encoded string.

SourceContext

A SourceContext is a reference to a tree of files. A SourceContext together with a path point to a unique revision of a single file or directory.

JSON representation
{
  "labels": {
    string: string,
    ...
  },

  // Union field context can be only one of the following:
  "cloudRepo": {
    object (CloudRepoSourceContext)
  },
  "gerrit": {
    object (GerritSourceContext)
  },
  "git": {
    object (GitSourceContext)
  }
  // End of list of possible types for union field context.
}
Fields
labels

map (key: string, value: string)

Labels with user defined metadata.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

Union field context. A SourceContext can refer any one of the following types of repositories. context can be only one of the following:
cloudRepo

object (CloudRepoSourceContext)

A SourceContext referring to a revision in a Google Cloud Source Repo.

gerrit

object (GerritSourceContext)

A SourceContext referring to a Gerrit project.

git

object (GitSourceContext)

A SourceContext referring to any third party Git repo (e.g., GitHub).

CloudRepoSourceContext

A CloudRepoSourceContext denotes a particular revision in a Google Cloud Source Repo.

JSON representation
{
  "repoId": {
    object (RepoId)
  },

  // Union field revision can be only one of the following:
  "revisionId": string,
  "aliasContext": {
    object (AliasContext)
  }
  // End of list of possible types for union field revision.
}
Fields
repoId

object (RepoId)

The ID of the repo.

Union field revision. A revision in a Cloud Repo can be identified by either its revision ID or its alias. revision can be only one of the following:
revisionId

string

A revision ID.

aliasContext

object (AliasContext)

An alias, which may be a branch or tag.

RepoId

A unique identifier for a Cloud Repo.

JSON representation
{

  // Union field id can be only one of the following:
  "projectRepoId": {
    object (ProjectRepoId)
  },
  "uid": string
  // End of list of possible types for union field id.
}
Fields
Union field id. A cloud repo can be identified by either its project ID and repository name combination, or its globally unique identifier. id can be only one of the following:
projectRepoId

object (ProjectRepoId)

A combination of a project ID and a repo name.

uid

string

A server-assigned, globally unique identifier.

ProjectRepoId

Selects a repo using a Google Cloud Platform project ID (e.g., winged-cargo-31) and a repo name within that project.

JSON representation
{
  "projectId": string,
  "repoName": string
}
Fields
projectId

string

The ID of the project.

repoName

string

The name of the repo. Leave empty for the default repo.

AliasContext

An alias to a repo revision.

JSON representation
{
  "kind": enum (Kind),
  "name": string
}
Fields
kind

enum (Kind)

The alias kind.

name

string

The alias name.

Kind

The type of an alias.

Enums
KIND_UNSPECIFIED Unknown.
FIXED Git tag.
MOVABLE Git branch.
OTHER Used to specify non-standard aliases. For example, if a Git repo has a ref named "refs/foo/bar".

GerritSourceContext

A SourceContext referring to a Gerrit project.

JSON representation
{
  "hostUri": string,
  "gerritProject": string,

  // Union field revision can be only one of the following:
  "revisionId": string,
  "aliasContext": {
    object (AliasContext)
  }
  // End of list of possible types for union field revision.
}
Fields
hostUri

string

The URI of a running Gerrit instance.

gerritProject

string

The full project name within the host. Projects may be nested, so "project/subproject" is a valid project name. The "repo name" is the hostURI/project.

Union field revision. A revision in a Gerrit project can be identified by either its revision ID or its alias. revision can be only one of the following:
revisionId

string

A revision (commit) ID.

aliasContext

object (AliasContext)

An alias, which may be a branch or tag.

GitSourceContext

A GitSourceContext denotes a particular revision in a third party Git repository (e.g., GitHub).

JSON representation
{
  "url": string,
  "revisionId": string
}
Fields
url

string

Git repository URL.

revisionId

string

Git commit hash.

InTotoProvenance

JSON representation
{
  "builderConfig": {
    object (BuilderConfig)
  },
  "recipe": {
    object (Recipe)
  },
  "metadata": {
    object (Metadata)
  },
  "materials": [
    string
  ]
}
Fields
builderConfig

object (BuilderConfig)

required

recipe

object (Recipe)

Identifies the configuration used for the build. When combined with materials, this SHOULD fully describe the build, such that re-running this recipe results in bit-for-bit identical output (if the build is reproducible). required

metadata

object (Metadata)

materials[]

string

The collection of artifacts that influenced the build including sources, dependencies, build tools, base images, and so on. This is considered to be incomplete unless metadata.completeness.materials is true. Unset or null is equivalent to empty.

BuilderConfig

JSON representation
{
  "id": string
}
Fields
id

string

Recipe

Steps taken to build the artifact. For a TaskRun, typically each container corresponds to one step in the recipe.

JSON representation
{
  "type": string,
  "definedInMaterial": string,
  "entryPoint": string,
  "arguments": [
    {
      "@type": string,
      field1: ...,
      ...
    }
  ],
  "environment": [
    {
      "@type": string,
      field1: ...,
      ...
    }
  ]
}
Fields
type

string

URI indicating what type of recipe was performed. It determines the meaning of recipe.entryPoint, recipe.arguments, recipe.environment, and materials.

definedInMaterial

string (int64 format)

Index in materials containing the recipe steps that are not implied by recipe.type. For example, if the recipe type were "make", then this would point to the source containing the Makefile, not the make program itself. Set to -1 if the recipe doesn't come from a material, as zero is default unset value for int64.

entryPoint

string

String identifying the entry point into the build. This is often a path to a configuration file and/or a target label within that file. The syntax and meaning are defined by recipe.type. For example, if the recipe type were "make", then this would reference the directory in which to run make as well as which target to use.

arguments[]

object

Collection of all external inputs that influenced the build on top of recipe.definedInMaterial and recipe.entryPoint. For example, if the recipe type were "make", then this might be the flags passed to make aside from the target, which is captured in recipe.entryPoint. Since the arguments field can greatly vary in structure, depending on the builder and recipe type, this is of form "Any".

An object containing fields of an arbitrary type. An additional field "@type" contains a URI identifying the type. Example: { "id": 1234, "@type": "types.example.com/standard/id" }.

environment[]

object

Any other builder-controlled inputs necessary for correctly evaluating the recipe. Usually only needed for reproducing the build but not evaluated as part of policy. Since the environment field can greatly vary in structure, depending on the builder and recipe type, this is of form "Any".

An object containing fields of an arbitrary type. An additional field "@type" contains a URI identifying the type. Example: { "id": 1234, "@type": "types.example.com/standard/id" }.

Metadata

Other properties of the build.

JSON representation
{
  "buildInvocationId": string,
  "buildStartedOn": string,
  "buildFinishedOn": string,
  "completeness": {
    object (Completeness)
  },
  "reproducible": boolean
}
Fields
buildInvocationId

string

Identifies the particular build invocation, which can be useful for finding associated logs or other ad-hoc analysis. The value SHOULD be globally unique, per in-toto Provenance spec.

buildStartedOn

string (Timestamp format)

The timestamp of when the build started.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

buildFinishedOn

string (Timestamp format)

The timestamp of when the build completed.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

completeness

object (Completeness)

Indicates that the builder claims certain fields in this message to be complete.

reproducible

boolean

If true, the builder claims that running the recipe on materials will produce bit-for-bit identical output.

Completeness

Indicates that the builder claims certain fields in this message to be complete.

JSON representation
{
  "arguments": boolean,
  "environment": boolean,
  "materials": boolean
}
Fields
arguments

boolean

If true, the builder claims that recipe.arguments is complete, meaning that all external inputs are properly captured in the recipe.

environment

boolean

If true, the builder claims that recipe.environment is claimed to be complete.

materials

boolean

If true, the builder claims that materials are complete, usually through some controls to prevent network access. Sometimes called "hermetic".

InTotoStatement

Spec defined at https://github.com/in-toto/attestation/tree/main/spec#statement The serialized InTotoStatement will be stored as Envelope.payload. Envelope.payloadType is always "application/vnd.in-toto+json".

JSON representation
{
  "_type": string,
  "subject": [
    {
      object (Subject)
    }
  ],
  "predicateType": string,

  // Union field predicate can be only one of the following:
  "provenance": {
    object (InTotoProvenance)
  },
  "slsaProvenance": {
    object (SlsaProvenance)
  },
  "slsaProvenanceZeroTwo": {
    object (SlsaProvenanceZeroTwo)
  }
  // End of list of possible types for union field predicate.
}
Fields
_type

string

Always https://in-toto.io/Statement/v0.1.

subject[]

object (Subject)

predicateType

string

https://slsa.dev/provenance/v0.1 for SlsaProvenance.

Union field predicate.

predicate can be only one of the following:

provenance

object (InTotoProvenance)

slsaProvenance

object (SlsaProvenance)

slsaProvenanceZeroTwo

object (SlsaProvenanceZeroTwo)

Subject

JSON representation
{
  "name": string,
  "digest": {
    string: string,
    ...
  }
}
Fields
name

string

digest

map (key: string, value: string)

"<ALGORITHM>": "<HEX_VALUE>" Algorithms can be e.g. sha256, sha512 See https://github.com/in-toto/attestation/blob/main/spec/field_types.md#DigestSet

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

SlsaProvenance

JSON representation
{
  "builder": {
    object (SlsaBuilder)
  },
  "recipe": {
    object (SlsaRecipe)
  },
  "metadata": {
    object (SlsaMetadata)
  },
  "materials": [
    {
      object (Material)
    }
  ]
}
Fields
builder

object (SlsaBuilder)

required

recipe

object (SlsaRecipe)

Identifies the configuration used for the build. When combined with materials, this SHOULD fully describe the build, such that re-running this recipe results in bit-for-bit identical output (if the build is reproducible). required

metadata

object (SlsaMetadata)

materials[]

object (Material)

The collection of artifacts that influenced the build including sources, dependencies, build tools, base images, and so on. This is considered to be incomplete unless metadata.completeness.materials is true. Unset or null is equivalent to empty.

SlsaBuilder

JSON representation
{
  "id": string
}
Fields
id

string

SlsaRecipe

Steps taken to build the artifact. For a TaskRun, typically each container corresponds to one step in the recipe.

JSON representation
{
  "type": string,
  "definedInMaterial": string,
  "entryPoint": string,
  "arguments": {
    "@type": string,
    field1: ...,
    ...
  },
  "environment": {
    "@type": string,
    field1: ...,
    ...
  }
}
Fields
type

string

URI indicating what type of recipe was performed. It determines the meaning of recipe.entryPoint, recipe.arguments, recipe.environment, and materials.

definedInMaterial

string (int64 format)

Index in materials containing the recipe steps that are not implied by recipe.type. For example, if the recipe type were "make", then this would point to the source containing the Makefile, not the make program itself. Set to -1 if the recipe doesn't come from a material, as zero is default unset value for int64.

entryPoint

string

String identifying the entry point into the build. This is often a path to a configuration file and/or a target label within that file. The syntax and meaning are defined by recipe.type. For example, if the recipe type were "make", then this would reference the directory in which to run make as well as which target to use.

arguments

object

Collection of all external inputs that influenced the build on top of recipe.definedInMaterial and recipe.entryPoint. For example, if the recipe type were "make", then this might be the flags passed to make aside from the target, which is captured in recipe.entryPoint. Depending on the recipe Type, the structure may be different.

An object containing fields of an arbitrary type. An additional field "@type" contains a URI identifying the type. Example: { "id": 1234, "@type": "types.example.com/standard/id" }.

environment

object

Any other builder-controlled inputs necessary for correctly evaluating the recipe. Usually only needed for reproducing the build but not evaluated as part of policy. Depending on the recipe Type, the structure may be different.

An object containing fields of an arbitrary type. An additional field "@type" contains a URI identifying the type. Example: { "id": 1234, "@type": "types.example.com/standard/id" }.

SlsaMetadata

Other properties of the build.

JSON representation
{
  "buildInvocationId": string,
  "buildStartedOn": string,
  "buildFinishedOn": string,
  "completeness": {
    object (SlsaCompleteness)
  },
  "reproducible": boolean
}
Fields
buildInvocationId

string

Identifies the particular build invocation, which can be useful for finding associated logs or other ad-hoc analysis. The value SHOULD be globally unique, per in-toto Provenance spec.

buildStartedOn

string (Timestamp format)

The timestamp of when the build started.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

buildFinishedOn

string (Timestamp format)

The timestamp of when the build completed.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

completeness

object (SlsaCompleteness)

Indicates that the builder claims certain fields in this message to be complete.

reproducible

boolean

If true, the builder claims that running the recipe on materials will produce bit-for-bit identical output.

SlsaCompleteness

Indicates that the builder claims certain fields in this message to be complete.

JSON representation
{
  "arguments": boolean,
  "environment": boolean,
  "materials": boolean
}
Fields
arguments

boolean

If true, the builder claims that recipe.arguments is complete, meaning that all external inputs are properly captured in the recipe.

environment

boolean

If true, the builder claims that recipe.environment is claimed to be complete.

materials

boolean

If true, the builder claims that materials are complete, usually through some controls to prevent network access. Sometimes called "hermetic".

Material

JSON representation
{
  "uri": string,
  "digest": {
    string: string,
    ...
  }
}
Fields
uri

string

digest

map (key: string, value: string)

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

SlsaProvenanceZeroTwo

See full explanation of fields at slsa.dev/provenance/v0.2.

JSON representation
{
  "builder": {
    object (SlsaBuilder)
  },
  "buildType": string,
  "invocation": {
    object (SlsaInvocation)
  },
  "buildConfig": {
    object
  },
  "metadata": {
    object (SlsaMetadata)
  },
  "materials": [
    {
      object (SlsaMaterial)
    }
  ]
}
Fields
builder

object (SlsaBuilder)

buildType

string

invocation

object (SlsaInvocation)

buildConfig

object (Struct format)

metadata

object (SlsaMetadata)

materials[]

object (SlsaMaterial)

SlsaBuilder

Identifies the entity that executed the recipe, which is trusted to have correctly performed the operation and populated this provenance.

JSON representation
{
  "id": string
}
Fields
id

string

SlsaInvocation

Identifies the event that kicked off the build.

JSON representation
{
  "configSource": {
    object (SlsaConfigSource)
  },
  "parameters": {
    object
  },
  "environment": {
    object
  }
}
Fields
configSource

object (SlsaConfigSource)

parameters

object (Struct format)

environment

object (Struct format)

SlsaConfigSource

Describes where the config file that kicked off the build came from. This is effectively a pointer to the source where buildConfig came from.

JSON representation
{
  "uri": string,
  "digest": {
    string: string,
    ...
  },
  "entryPoint": string
}
Fields
uri

string

digest

map (key: string, value: string)

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

entryPoint

string

SlsaMetadata

Other properties of the build.

JSON representation
{
  "buildInvocationId": string,
  "buildStartedOn": string,
  "buildFinishedOn": string,
  "completeness": {
    object (SlsaCompleteness)
  },
  "reproducible": boolean
}
Fields
buildInvocationId

string

buildStartedOn

string (Timestamp format)

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

buildFinishedOn

string (Timestamp format)

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

completeness

object (SlsaCompleteness)

reproducible

boolean

SlsaCompleteness

Indicates that the builder claims certain fields in this message to be complete.

JSON representation
{
  "parameters": boolean,
  "environment": boolean,
  "materials": boolean
}
Fields
parameters

boolean

environment

boolean

materials

boolean

SlsaMaterial

The collection of artifacts that influenced the build including sources, dependencies, build tools, base images, and so on.

JSON representation
{
  "uri": string,
  "digest": {
    string: string,
    ...
  }
}
Fields
uri

string

digest

map (key: string, value: string)

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

ImageOccurrence

Details of the derived image portion of the DockerImage relationship. This image would be produced from a Dockerfile with FROM <DockerImage.Basis in attached Note>.

JSON representation
{
  "fingerprint": {
    object (Fingerprint)
  },
  "distance": integer,
  "layerInfo": [
    {
      object (Layer)
    }
  ],
  "baseResourceUrl": string
}
Fields
fingerprint

object (Fingerprint)

Required. The fingerprint of the derived image.

distance

integer

Output only. The number of layers by which this image differs from the associated image basis.

layerInfo[]

object (Layer)

This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.

baseResourceUrl

string

Output only. This contains the base image URL for the derived image occurrence.

Layer

Layer holds metadata specific to a layer of a Docker image.

JSON representation
{
  "directive": string,
  "arguments": string
}
Fields
directive

string

Required. The recovered Dockerfile directive used to construct this layer. See https://docs.docker.com/engine/reference/builder/ for more information.

arguments

string

The recovered arguments to the Dockerfile directive.

PackageOccurrence

Details on how a particular software package was installed on a system.

JSON representation
{
  "name": string,
  "location": [
    {
      object (Location)
    }
  ],
  "packageType": string,
  "cpeUri": string,
  "architecture": enum (Architecture),
  "license": {
    object (License)
  },
  "version": {
    object (Version)
  }
}
Fields
name

string

Required. Output only. The name of the installed package.

location[]

object (Location)

All of the places within the filesystem versions of this package have been found.

packageType

string

Output only. The type of package; whether native or non native (e.g., ruby gems, node.js packages, etc.).

cpeUri

string

Output only. The cpeUri in CPE format denoting the package manager version distributing a package. The cpeUri will be blank for language packages.

architecture

enum (Architecture)

Output only. The CPU architecture for which packages in this distribution channel were built. Architecture will be blank for language packages.

license

object (License)

Licenses that have been declared by the authors of the package.

version

object (Version)

Output only. The version of the package.

Location

An occurrence of a particular package installation found within a system's filesystem. E.g., glibc was found in /var/lib/dpkg/status.

JSON representation
{
  "cpeUri": string,
  "version": {
    object (Version)
  },
  "path": string
}
Fields
cpeUri

string

Deprecated. The CPE URI in CPE format

version

object (Version)

Deprecated. The version installed at this location.

path

string

The path from which we gathered that this package/version is installed.

DeploymentOccurrence

The period during which some deployable was active in a runtime.

JSON representation
{
  "userEmail": string,
  "deployTime": string,
  "undeployTime": string,
  "config": string,
  "address": string,
  "resourceUri": [
    string
  ],
  "platform": enum (Platform)
}
Fields
userEmail

string

Identity of the user that triggered this deployment.

deployTime

string (Timestamp format)

Required. Beginning of the lifetime of this deployment.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

undeployTime

string (Timestamp format)

End of the lifetime of this deployment.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

config

string

Configuration used to create this deployment.

address

string

Address of the runtime element hosting this deployment.

resourceUri[]

string

Output only. Resource URI for the artifact being deployed taken from the deployable field with the same name.

platform

enum (Platform)

Platform hosting this deployment.

Platform

Types of platforms.

Enums
PLATFORM_UNSPECIFIED Unknown.
GKE Google Container Engine.
FLEX Google App Engine: Flexible Environment.
CUSTOM Custom user-defined platform.

DiscoveryOccurrence

Provides information about the analysis status of a discovered resource.

JSON representation
{
  "continuousAnalysis": enum (ContinuousAnalysis),
  "analysisStatus": enum (AnalysisStatus),
  "analysisCompleted": {
    object (AnalysisCompleted)
  },
  "analysisError": [
    {
      object (Status)
    }
  ],
  "analysisStatusError": {
    object (Status)
  },
  "cpe": string,
  "lastScanTime": string,
  "archiveTime": string
}
Fields
continuousAnalysis

enum (ContinuousAnalysis)

Whether the resource is continuously analyzed.

analysisStatus

enum (AnalysisStatus)

The status of discovery for the resource.

analysisCompleted

object (AnalysisCompleted)

analysisError[]

object (Status)

Indicates any errors encountered during analysis of a resource. There could be 0 or more of these errors.

analysisStatusError

object (Status)

When an error is encountered this will contain a LocalizedMessage under details to show to the user. The LocalizedMessage is output only and populated by the API.

cpe

string

The CPE of the resource being scanned.

lastScanTime

string (Timestamp format)

The last time this resource was scanned.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

archiveTime

string (Timestamp format)

Output only. The time occurrences related to this discovery occurrence were archived.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

ContinuousAnalysis

Whether the resource is continuously analyzed.

Enums
CONTINUOUS_ANALYSIS_UNSPECIFIED Unknown.
ACTIVE The resource is continuously analyzed.
INACTIVE The resource is ignored for continuous analysis.

AnalysisStatus

Analysis status for a resource. Currently for initial analysis only (not updated in continuous analysis).

Enums
ANALYSIS_STATUS_UNSPECIFIED Unknown.
PENDING Resource is known but no action has been taken yet.
SCANNING Resource is being analyzed.
FINISHED_SUCCESS Analysis has finished successfully.
COMPLETE Analysis has completed.
FINISHED_FAILED Analysis has finished unsuccessfully, the analysis itself is in a bad state.
FINISHED_UNSUPPORTED The resource is known not to be supported.

AnalysisCompleted

Indicates which analysis completed successfully. Multiple types of analysis can be performed on a single resource.

JSON representation
{
  "analysisType": [
    string
  ]
}
Fields
analysisType[]

string

AttestationOccurrence

Occurrence that represents a single "attestation". The authenticity of an attestation can be verified using the attached signature. If the verifier trusts the public key of the signer, then verifying the signature is sufficient to establish trust. In this circumstance, the authority to which this attestation is attached is primarily useful for lookup (how to find this attestation if you already know the authority and artifact to be verified) and intent (for which authority this attestation was intended to sign.

JSON representation
{
  "serializedPayload": string,
  "signatures": [
    {
      object (Signature)
    }
  ],
  "jwts": [
    {
      object (Jwt)
    }
  ]
}
Fields
serializedPayload

string (bytes format)

Required. The serialized payload that is verified by one or more signatures.

A base64-encoded string.

signatures[]

object (Signature)

One or more signatures over serializedPayload. Verifier implementations should consider this attestation message verified if at least one signature verifies serializedPayload. See Signature in common.proto for more details on signature structure and verification.

jwts[]

object (Jwt)

One or more JWTs encoding a self-contained attestation. Each JWT encodes the payload that it verifies within the JWT itself. Verifier implementation SHOULD ignore the serializedPayload field when verifying these JWTs. If only JWTs are present on this AttestationOccurrence, then the serializedPayload SHOULD be left empty. Each JWT SHOULD encode a claim specific to the resourceUri of this Occurrence, but this is not validated by Grafeas metadata API implementations. The JWT itself is opaque to Grafeas.

Signature

Verifiers (e.g. Kritis implementations) MUST verify signatures with respect to the trust anchors defined in policy (e.g. a Kritis policy). Typically this means that the verifier has been configured with a map from publicKeyId to public key material (and any required parameters, e.g. signing algorithm).

In particular, verification implementations MUST NOT treat the signature publicKeyId as anything more than a key lookup hint. The publicKeyId DOES NOT validate or authenticate a public key; it only provides a mechanism for quickly selecting a public key ALREADY CONFIGURED on the verifier through a trusted channel. Verification implementations MUST reject signatures in any of the following circumstances: * The publicKeyId is not recognized by the verifier. * The public key that publicKeyId refers to does not verify the signature with respect to the payload.

The signature contents SHOULD NOT be "attached" (where the payload is included with the serialized signature bytes). Verifiers MUST ignore any "attached" payload and only verify signatures with respect to explicitly provided payload (e.g. a payload field on the proto message that holds this Signature, or the canonical serialization of the proto message that holds this signature).

JSON representation
{
  "signature": string,
  "publicKeyId": string
}
Fields
signature

string (bytes format)

The content of the signature, an opaque bytestring. The payload that this signature verifies MUST be unambiguously provided with the Signature during verification. A wrapper message might provide the payload explicitly. Alternatively, a message might have a canonical serialization that can always be unambiguously computed to derive the payload.

A base64-encoded string.

publicKeyId

string

The identifier for the public key that verifies this signature. * The publicKeyId is required. * The publicKeyId SHOULD be an RFC3986 conformant URI. * When possible, the publicKeyId SHOULD be an immutable reference, such as a cryptographic digest.

Examples of valid publicKeyIds:

OpenPGP V4 public key fingerprint: * "openpgp4fpr:74FAF3B861BDA0870C7B6DEF607E48D2A663AEEA" See https://www.iana.org/assignments/uri-schemes/prov/openpgp4fpr for more details on this scheme.

RFC6920 digest-named SubjectPublicKeyInfo (digest of the DER serialization): * "ni:///sha-256;cD9o9Cq6LG3jD0iKXqEi_vdjJGecm_iXkbqVoScViaU" * "nih:///sha-256;703f68f42aba2c6de30f488a5ea122fef76324679c9bf89791ba95a1271589a5"

Jwt

JSON representation
{
  "compactJwt": string
}
Fields
compactJwt

string

The compact encoding of a JWS, which is always three base64 encoded strings joined by periods. For details, see: https://tools.ietf.org/html/rfc7515.html#section-3.1

UpgradeOccurrence

An Upgrade Occurrence represents that a specific resourceUrl could install a specific upgrade. This presence is supplied via local sources (i.e. it is present in the mirror and the running system has noticed its availability). For Windows, both distribution and windowsUpdate contain information for the Windows update.

JSON representation
{
  "package": string,
  "parsedVersion": {
    object (Version)
  },
  "distribution": {
    object (UpgradeDistribution)
  },
  "windowsUpdate": {
    object (WindowsUpdate)
  }
}
Fields
package

string

Required for non-Windows OS. The package this Upgrade is for.

parsedVersion

object (Version)

Required for non-Windows OS. The version of the package in a machine + human readable form.

distribution

object (UpgradeDistribution)

Metadata about the upgrade for available for the specific operating system for the resourceUrl. This allows efficient filtering, as well as making it easier to use the occurrence.

windowsUpdate

object (WindowsUpdate)

Required for Windows OS. Represents the metadata about the Windows update.

ComplianceOccurrence

An indication that the compliance checks in the associated ComplianceNote were not satisfied for particular resources or a specified reason.

JSON representation
{
  "nonCompliantFiles": [
    {
      object (NonCompliantFile)
    }
  ],
  "nonComplianceReason": string
}
Fields
nonCompliantFiles[]

object (NonCompliantFile)

nonComplianceReason

string

NonCompliantFile

Details about files that caused a compliance check to fail. displayCommand is a single command that can be used to display a list of non compliant files. When there is no such command, we can also iterate a list of non compliant file using 'path'.

JSON representation
{
  "path": string,
  "displayCommand": string,
  "reason": string
}
Fields
path

string

Empty if displayCommand is set.

displayCommand

string

Command to display the non-compliant files.

reason

string

Explains why a file is non compliant for a CIS check.

DSSEAttestationOccurrence

Deprecated. Prefer to use a regular Occurrence, and populate the Envelope at the top level of the Occurrence.

JSON representation
{
  "envelope": {
    object (Envelope)
  },

  // Union field decoded_payload can be only one of the following:
  "statement": {
    object (InTotoStatement)
  }
  // End of list of possible types for union field decoded_payload.
}
Fields
envelope

object (Envelope)

If doing something security critical, make sure to verify the signatures in this metadata.

Union field decoded_payload.

decoded_payload can be only one of the following:

statement

object (InTotoStatement)

Envelope

MUST match https://github.com/secure-systems-lab/dsse/blob/master/envelope.proto. An authenticated message of arbitrary type.

JSON representation
{
  "payload": string,
  "payloadType": string,
  "signatures": [
    {
      object (EnvelopeSignature)
    }
  ]
}
Fields
payload

string (bytes format)

A base64-encoded string.

payloadType

string

signatures[]

object (EnvelopeSignature)

EnvelopeSignature

JSON representation
{
  "sig": string,
  "keyid": string
}
Fields
sig

string (bytes format)

A base64-encoded string.

keyid

string

SBOMReferenceOccurrence

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.

JSON representation
{
  "payload": {
    object (SbomReferenceIntotoPayload)
  },
  "payloadType": string,
  "signatures": [
    {
      object (EnvelopeSignature)
    }
  ]
}
Fields
payload

object (SbomReferenceIntotoPayload)

The actual payload that contains the SBOM reference data.

payloadType

string

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[]

object (EnvelopeSignature)

The signatures over the payload.

SbomReferenceIntotoPayload

The actual payload that contains the SBOM Reference data. The payload follows the intoto statement specification. See https://github.com/in-toto/attestation/blob/main/spec/v1.0/statement.md for more details.

JSON representation
{
  "_type": string,
  "predicateType": string,
  "subject": [
    {
      object (Subject)
    }
  ],
  "predicate": {
    object (SbomReferenceIntotoPredicate)
  }
}
Fields
_type

string

Identifier for the schema of the Statement.

predicateType

string

URI identifying the type of the Predicate.

subject[]

object (Subject)

Set of software artifacts that the attestation applies to. Each element represents a single software artifact.

predicate

object (SbomReferenceIntotoPredicate)

Additional parameters of the Predicate. Includes the actual data about the SBOM.

SbomReferenceIntotoPredicate

A predicate which describes the SBOM being referenced.

JSON representation
{
  "referrerId": string,
  "location": string,
  "mimeType": string,
  "digest": {
    string: string,
    ...
  }
}
Fields
referrerId

string

The person or system referring this predicate to the consumer.

location

string

The location of the SBOM.

mimeType

string

The mime type of the SBOM.

digest

map (key: string, value: string)

A map of algorithm to digest of the contents of the SBOM.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

Methods

batchCreate

Creates new occurrences in batch.

create

Creates a new occurrence.

delete

Deletes the specified occurrence.

get

Gets the specified occurrence.

getIamPolicy

Gets the access control policy for a note or an occurrence resource.

getNotes

Gets the note attached to the specified occurrence.

getVulnerabilitySummary

Gets a summary of the number and severity of occurrences.

list

Lists occurrences for the specified project.

patch

Updates the specified occurrence.

setIamPolicy

Sets the access control policy on the specified note or occurrence.

testIamPermissions

Returns the permissions that a caller has on the specified note or occurrence.