Skip to main content
GET
/
ociartifacts
/
{artifact}
/
{
  "$schema": "https://example.com/schemas/OCIArtifact.json",
  "architecture": "amd64",
  "created_by": "<string>",
  "created_on": "2023-11-07T05:31:56Z",
  "digest": "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad",
  "last_modified_by": "<string>",
  "last_modified_on": "2023-11-07T05:31:56Z",
  "media_type": "application/vnd.docker.distribution.manifest.v2+json",
  "package_releases": [
    "<string>"
  ],
  "project_releases": [
    "<string>"
  ],
  "size_bytes": 1276217,
  "tags": [
    "<string>"
  ]
}

Response

OK

created_by
string
required

user who created the record.

created_on
string<date-time>
required

timestamp of when the record was created.

digest
string
required

Digest is the SHA-256 hash of the OCI Artifact's content.

Examples:

"ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad"

last_modified_by
string
required

user who last modified the record.

last_modified_on
string<date-time>
required

timestamp of when the record was last modified.

media_type
string
required

MediaType of the OCI Artifact.

Examples:

"application/vnd.docker.distribution.manifest.v2+json"

package_releases
string[] | null
required

PackageReleases is the list of PackageRelease IDs that this OCI Artifact is associated with.

project_releases
string[] | null
required

ProjectReleases is the list of ProjectRelease IDs that this OCI Artifact is associated with.

size_bytes
integer
required

Size of the content in bytes.

Examples:

1276217

tags
string[] | null
required

Tags is the list of OCITag IDs that this OCI Artifact is associated with.

$schema
string<uri>

A URL to the JSON Schema for this object.

Examples:

"https://example.com/schemas/OCIArtifact.json"

architecture
string

Architecture is the string code for the architecture of the built OCI Artifact, if any.

Examples:

"amd64"

I