Microsoft Azure · Schema

Descriptor

Docker V2 image layer descriptor.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
mediaType string Layer media type.
size integer Layer size.
digest string Layer digest.
urls array Specifies a list of URLs from which this object may be downloaded.
annotations object Additional information about the descriptor.
View JSON Schema on GitHub

JSON Schema

azure-container-registry-descriptor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Descriptor",
  "type": "object",
  "description": "Docker V2 image layer descriptor.",
  "properties": {
    "mediaType": {
      "type": "string",
      "description": "Layer media type."
    },
    "size": {
      "type": "integer",
      "description": "Layer size."
    },
    "digest": {
      "type": "string",
      "description": "Layer digest."
    },
    "urls": {
      "type": "array",
      "description": "Specifies a list of URLs from which this object may be downloaded."
    },
    "annotations": {
      "type": "object",
      "description": "Additional information about the descriptor."
    }
  }
}