Skip to content

Latest commit

 

History

History
170 lines (135 loc) · 5.42 KB

resource_descriptor.md

File metadata and controls

170 lines (135 loc) · 5.42 KB

ResourceDescriptor field type specification

Version: v1.0

A size-efficient description of any software artifact or resource (mutable or immutable).

Schema

{
  "name": "<NAME>",
  "uri": "<RESOURCE URI>",
  "digest": { "<ALGORITHM>": "<HEX VALUE>", ... },
  "content": "<BASE64 VALUE>",
  "downloadLocation": "<RESOURCE URI>"
  "mediaType": "<MIME TYPE>",
  "annotations": {
    "<FIELD_1>": { /* object */ },
    "<FIELD_2>": { /* object */ },
    ...
  }
}

Fields

Though all fields are optional, a ResourceDescriptor MUST specify one of uri, digest or content at a minimum.

name string, optional

Machine-readable identifier for distinguishing between descriptors.

The semantics are up to the producer and consumer. The name SHOULD be stable, such as a filename, to allow consumers to reliably use the name as part of their policy.

uri ResourceURI, optional

A URI used to identify the resource or artifact globally. This field is REQUIRED unless either digest or content is set.

digest DigestSet, optional

A set of cryptographic digests of the contents of the resource or artifact. This field is REQUIRED unless either uri or content is set.

When known, the producer SHOULD set this field to denote an immutable artifact or resource. The producer and consumer SHOULD agree on acceptable algorithms.

content base64-encoded bytes, optional

The contents of the resource or artifact. This field is REQUIRED unless either uri or digest is set.

The producer MAY use this field in scenarios where including the contents of the resource/artifact directly in the attestation is deemed more efficient for consumers than providing a pointer to another location. To maintain size efficiency, the size of content SHOULD be less than 1KB.

The semantics are up to the producer and consumer. The uri or mediaType MAY be used by the producer as hints for how consumers should parse content.

downloadLocation ResourceURI, optional

The location of the described resource or artifact, if different from the uri.

To enable automated downloads by consumers, the specified location SHOULD be resolvable.

mediaType string, optional

The MIME Type (i.e., media type) of the described resource or artifact.

For resources or artifacts that do not have a standardized MIME type, producers SHOULD follow RFC 6838 (Sections 3.2-3.4) conventions of prefixing types with x., prs., or vnd. to avoid collisions with other producers.

annotations map <string, object>, optional

This field MAY be used to provide additional information or metadata about the resource or artifact that may be useful to the consumer when evaluating the attestation against a policy.

The producer and consumer SHOULD agree on the semantics, and acceptable fields and objects in the annotations map. Producers SHOULD follow the same formatting conventions used in extension fields.

Semantics

Though the ResourceDescriptor allows for a high degree of flexibility, certain field combinations typically have specific semantics. For consistency, we RECOMMEND the following:

  • A descriptor that specifies a digest is assumed to refer to an immutable resource or artifact. The digest SHOULD match the resource or artifact specified in one of the name, uri, content or downloadLocation fields. The field that consumers are expected to match the digest against is ultimately determined by the predicate type, and SHOULD be documented by the predicate specification.
  • A descriptor without a content field, is assumed to serve as a pointer to the resource/artifact.
  • When uri and name are specified, the scope of name is assumed to be local to the attestation. The name SHOULD be compared to the uri to match the descriptor against the resource or artifact referenced universally.

Examples

Pointer to a file:

{
  "name": "Foo.apk",
  "uri": "git+https://android.googlesource.com/platform/vendor/foo/bar@16244f4e7524d44a8f3060905eaf9190e96e9fb0#prebuilts/Foo/Foo.apk",
  "digest": { "sha256": "7f4714fd..." }
}

Pointer to a git repo (with annotations):

{
  "uri": "git+https://github.com/actions/runner",
  "digest": { "sha1": "d61b27b8395512..." },
  "annotations": { "git-review": { "twoPartyReview": false } }
}

Pointer to another in-toto attestation:

 { 
   "name": "gcc_9.3.0-1ubuntu2_amd64.intoto.json",
   "digest": { "sha256": "abcdabcde..." },
   "downloadLocation": "http://example.com/rebuilderd-instance/gcc_9.3.0-1ubuntu2_amd64.intoto.json",
   "mediaType": "application/x.dsse+json"
 }

Pointer to build service:

{
  "uri": "https://cloudbuild.googleapis.com/GoogleHostedWorker@v1"
}

Descriptor for Tekton TaskRun:

{
  "uri": "https://tekton.dev/TaskRun/check/result/report",
  "digest": {
    "sha256": "ec87961dbfe8e7d8a73890c602ac7bd407b80b9e31c326beb9110bdd255f12e6"
  },
  "content": "eyAicmVzdWx0IjogIlNVQ0NFU1MiLCAidGltZXN0YW1wIjogIjE2Nzc4NzIyMzYiLCAic3VjY2Vzc2VzIjogMjIsICJmYWlsdXJlcyI6IDAsICJ3YXJuaW5ncyI6MCB9",
  "mediaType": "application/json"
}