OciBlobAccess

Access to a specific OCI blob

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
type object
imageReference string
mediaType string
digest string
size integer
ref string
View JSON Schema on GitHub

JSON Schema

application-research-ociblobaccess-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OciBlobAccess",
  "title": "OciBlobAccess",
  "type": "object",
  "description": "Access to a specific OCI blob",
  "required": [
    "type",
    "imageReference",
    "mediaType",
    "digest",
    "size"
  ],
  "properties": {
    "type": {
      "const": "ociBlob"
    },
    "imageReference": {
      "type": "string"
    },
    "mediaType": {
      "type": "string"
    },
    "digest": {
      "type": "string"
    },
    "size": {
      "type": "integer"
    },
    "ref": {
      "type": "string"
    }
  }
}