Share feedback
Answers are generated based on the documentation.

Experimental

Schema

ImageBlobRef

Type: object

ImageBlobRef describes one pullable blob.
digest

Type: string

digest is the content digest.
All schema constraints and annotations
{
  "description": "digest is the content digest.",
  "type": "string"
}
mediaType

Type: string

media_type is the OCI media type.
All schema constraints and annotations
{
  "description": "media_type is the OCI media type.",
  "type": "string"
}
size

Type: integer | string

size is the blob size in bytes.
All schema constraints and annotations
{
  "description": "size is the blob size in bytes.",
  "format": "int64",
  "type": [
    "integer",
    "string"
  ]
}
url

Type: string

url is a short-lived pull URL.
All schema constraints and annotations
{
  "description": "url is a short-lived pull URL.",
  "type": "string"
}
All schema constraints and annotations
{
  "description": "ImageBlobRef describes one pullable blob.",
  "properties": {
    "digest": {
      "description": "digest is the content digest.",
      "type": "string"
    },
    "mediaType": {
      "description": "media_type is the OCI media type.",
      "type": "string"
    },
    "size": {
      "description": "size is the blob size in bytes.",
      "format": "int64",
      "type": [
        "integer",
        "string"
      ]
    },
    "url": {
      "description": "url is a short-lived pull URL.",
      "type": "string"
    }
  },
  "title": "ImageBlobRef",
  "type": "object"
}