次の方法で共有


OciImageManifest type

OCI イメージ マニフェストを表す型 (メディアの種類 "application/vnd.oci.image.manifest.v1+json" のマニフェスト)。 詳細については、 の https://github.com/opencontainers/image-spec/blob/main/manifest.md 仕様を参照してください。

type OciImageManifest = {
  annotations?: OciAnnotations
  artifactType?: string
  config: OciDescriptor
  layers: OciDescriptor[]
  mediaType?: Object
  schemaVersion: 2
}